diff --git a/airtime_mvc/application/forms/BillingClient.php b/airtime_mvc/application/forms/BillingClient.php
index 87835d1de..7cbac545d 100644
--- a/airtime_mvc/application/forms/BillingClient.php
+++ b/airtime_mvc/application/forms/BillingClient.php
@@ -14,7 +14,7 @@ class Application_Form_BillingClient extends Zend_Form
$emailValidator = Application_Form_Helper_ValidationTypes::overrideEmailAddressValidator();
$firstname = new Zend_Form_Element_Text('firstname');
- $firstname->setLabel(_('First Name:'))
+ $firstname->setLabel(_pro('First Name:'))
->setValue($client["firstname"])
->setAttrib('class', 'input_text')
->setRequired(true)
@@ -23,7 +23,7 @@ class Application_Form_BillingClient extends Zend_Form
$this->addElement($firstname);
$lastname = new Zend_Form_Element_Text('lastname');
- $lastname->setLabel(_('Last Name:'))
+ $lastname->setLabel(_pro('Last Name:'))
->setValue($client["lastname"])
->setAttrib('class', 'input_text')
->setRequired(true)
@@ -32,7 +32,7 @@ class Application_Form_BillingClient extends Zend_Form
$this->addElement($lastname);
$companyname = new Zend_Form_Element_Text('companyname');
- $companyname->setLabel(_('Company Name:'))
+ $companyname->setLabel(_pro('Company Name:'))
->setValue($client["companyname"])
->setAttrib('class', 'input_text')
->setRequired(false)
@@ -41,7 +41,7 @@ class Application_Form_BillingClient extends Zend_Form
$this->addElement($companyname);
$email = new Zend_Form_Element_Text('email');
- $email->setLabel(_('Email Address:'))
+ $email->setLabel(_pro('Email Address:'))
->setValue($client["email"])
->setAttrib('class', 'input_text')
->setRequired(true)
@@ -51,7 +51,7 @@ class Application_Form_BillingClient extends Zend_Form
$this->addElement($email);
$address1 = new Zend_Form_Element_Text('address1');
- $address1->setLabel(_('Address 1:'))
+ $address1->setLabel(_pro('Address 1:'))
->setValue($client["address1"])
->setAttrib('class', 'input_text')
->setRequired(true)
@@ -60,14 +60,14 @@ class Application_Form_BillingClient extends Zend_Form
$this->addElement($address1);
$address2 = new Zend_Form_Element_Text('address2');
- $address2->setLabel(_('Address 2:'))
+ $address2->setLabel(_pro('Address 2:'))
->setValue($client["address2"])
->setAttrib('class', 'input_text')
->addFilter('StringTrim');
$this->addElement($address2);
$city = new Zend_Form_Element_Text('city');
- $city->setLabel(_('City:'))
+ $city->setLabel(_pro('City:'))
->setValue($client["city"])
->setAttrib('class', 'input_text')
->setRequired(true)
@@ -77,7 +77,7 @@ class Application_Form_BillingClient extends Zend_Form
//TODO: get list from whmcs?
$state = new Zend_Form_Element_Text('state');
- $state->setLabel(_('State/Region:'))
+ $state->setLabel(_pro('State/Region:'))
->setValue($client["state"])
->setAttrib('class', 'input_text')
->setRequired(true)
@@ -86,7 +86,7 @@ class Application_Form_BillingClient extends Zend_Form
$this->addElement($state);
$postcode = new Zend_Form_Element_Text('postcode');
- $postcode->setLabel(_('Zip Code / Postal Code:'))
+ $postcode->setLabel(_pro('Zip Code / Postal Code:'))
->setValue($client["postcode"])
->setAttrib('class', 'input_text')
->setRequired(true)
@@ -99,7 +99,7 @@ class Application_Form_BillingClient extends Zend_Form
asort($countries, SORT_LOCALE_STRING);
$country = new Zend_Form_Element_Select('country');
- $country->setLabel(_('Country:'))
+ $country->setLabel(_pro('Country:'))
->setValue($client["country"])
->setAttrib('class', 'input_text')
->setMultiOptions($countries)
@@ -109,7 +109,7 @@ class Application_Form_BillingClient extends Zend_Form
$this->addElement($country);
$phonenumber = new Zend_Form_Element_Text('phonenumber');
- $phonenumber->setLabel(_('Phone Number:'))
+ $phonenumber->setLabel(_pro('Phone Number:'))
->setValue($client["phonenumber"])
->setAttrib('class', 'input_text')
->setRequired(true)
@@ -118,7 +118,7 @@ class Application_Form_BillingClient extends Zend_Form
$this->addElement($phonenumber);
$securityqid = new Zend_Form_Element_Select('securityqid');
- $securityqid->setLabel(_('Please choose a security question:'))
+ $securityqid->setLabel(_pro('Please choose a security question:'))
->setValue($client["securityqid"])
->setAttrib('class', 'input_text')
->setRequired(true)
@@ -132,7 +132,7 @@ class Application_Form_BillingClient extends Zend_Form
$this->addElement($securityqid);
$securityqans = new Zend_Form_Element_Text('securityqans');
- $securityqans->setLabel(_('Please enter an answer:'))
+ $securityqans->setLabel(_pro('Please enter an answer:'))
->setValue($client["securityqans"])
->setAttrib('class', 'input_text')
->setRequired(true)
@@ -149,7 +149,7 @@ class Application_Form_BillingClient extends Zend_Form
}
$vat = new Zend_Form_Element_Text("7");
- $vat->setLabel(_('VAT/Tax ID (EU only)'))
+ $vat->setLabel(_pro('VAT/Tax ID (EU only)'))
->setBelongsTo('customfields')
->setValue($vatvalue)
->setAttrib('class', 'input_text')
@@ -159,7 +159,7 @@ class Application_Form_BillingClient extends Zend_Form
$this->addElement($vat);
$subscribe = new Zend_Form_Element_Checkbox('71');
- $subscribe->setLabel(_('Subscribe to Sourcefabric newsletter'))
+ $subscribe->setLabel(_pro('Subscribe to Sourcefabric newsletter'))
->setValue($subscribevalue)
->setBelongsTo('customfields')
->setAttrib('class', 'billing-details-checkbox')
@@ -169,7 +169,7 @@ class Application_Form_BillingClient extends Zend_Form
$this->addElement($subscribe);
$password = new Zend_Form_Element_Password('password2');
- $password->setLabel(_('Password:'));
+ $password->setLabel(_pro('Password:'));
$password->setAttrib('class', 'input_text');
$password->setValue("xxxxxx");
$password->setRequired(true);
@@ -178,7 +178,7 @@ class Application_Form_BillingClient extends Zend_Form
$this->addElement($password);
$passwordVerify = new Zend_Form_Element_Password('password2verify');
- $passwordVerify->setLabel(_('Verify Password:'));
+ $passwordVerify->setLabel(_pro('Verify Password:'));
$passwordVerify->setAttrib('class', 'input_text');
$passwordVerify->setValue("xxxxxx");
$passwordVerify->setRequired(true);
@@ -190,7 +190,7 @@ class Application_Form_BillingClient extends Zend_Form
$submit = new Zend_Form_Element_Submit("submit");
$submit->setIgnore(true)
- ->setLabel(_("Save"));
+ ->setLabel(_pro("Save"));
$this->addElement($submit);
}
}
\ No newline at end of file
diff --git a/airtime_mvc/application/views/scripts/billing/upgrade.phtml b/airtime_mvc/application/views/scripts/billing/upgrade.phtml
index 9cb428b9b..8d2fbe828 100644
--- a/airtime_mvc/application/views/scripts/billing/upgrade.phtml
+++ b/airtime_mvc/application/views/scripts/billing/upgrade.phtml
@@ -168,8 +168,8 @@ $(document).ready(function() {
- Save 15% on annual plans (Hobbyist plan excluded).
+ Save 15% on annual plans (Hobbyist plan excluded).
@@ -288,7 +288,7 @@ echo($currentProduct["name"]);
VAT will be added below if you are an EU resident without a valid VAT number.
- Enter your payment details:
+ =_pro("Please enter your payment details:");?>
errorMessage)) {?>
errorMessage ?>
diff --git a/airtime_mvc/application/views/scripts/partialviews/trialBox.phtml b/airtime_mvc/application/views/scripts/partialviews/trialBox.phtml
index 70f8ba322..087d2936e 100644
--- a/airtime_mvc/application/views/scripts/partialviews/trialBox.phtml
+++ b/airtime_mvc/application/views/scripts/partialviews/trialBox.phtml
@@ -6,7 +6,7 @@
diff --git a/airtime_mvc/locale/az/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/az/LC_MESSAGES/airtime.mo
index 8ef98c758..ae1250f39 100644
Binary files a/airtime_mvc/locale/az/LC_MESSAGES/airtime.mo and b/airtime_mvc/locale/az/LC_MESSAGES/airtime.mo differ
diff --git a/airtime_mvc/locale/az/LC_MESSAGES/airtime.po b/airtime_mvc/locale/az/LC_MESSAGES/airtime.po
index 7ed77b248..541fe7ce2 100644
--- a/airtime_mvc/locale/az/LC_MESSAGES/airtime.po
+++ b/airtime_mvc/locale/az/LC_MESSAGES/airtime.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Airtime\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-09-03 10:24-0400\n"
-"PO-Revision-Date: 2015-07-02 10:07+0000\n"
+"POT-Creation-Date: 2015-09-04 11:17-0400\n"
+"PO-Revision-Date: 2015-09-04 08:15+0000\n"
"Last-Translator: Daniel James \n"
"Language-Team: Azerbaijani (http://www.transifex.com/sourcefabric/airtime/language/az/)\n"
"Language: az\n"
@@ -17,132 +17,6 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: airtime_mvc/public/setup/rabbitmq-setup.php:78
-msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1117
-#: airtime_mvc/application/services/HistoryService.php:1157
-#: airtime_mvc/application/services/HistoryService.php:1174
-#: airtime_mvc/application/models/Block.php:1375
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
-#: airtime_mvc/application/controllers/LocaleController.php:76
-msgid "Title"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1118
-#: airtime_mvc/application/services/HistoryService.php:1158
-#: airtime_mvc/application/services/HistoryService.php:1175
-#: airtime_mvc/application/models/Block.php:1360
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
-#: airtime_mvc/application/controllers/LocaleController.php:77
-msgid "Creator"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1119
-#: airtime_mvc/application/models/Block.php:1352
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
-#: airtime_mvc/application/controllers/LocaleController.php:78
-msgid "Album"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1120
-#: airtime_mvc/application/services/HistoryService.php:1177
-#: airtime_mvc/application/models/Block.php:1369
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
-#: airtime_mvc/application/controllers/LocaleController.php:91
-msgid "Length"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1121
-#: airtime_mvc/application/models/Block.php:1362
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
-#: airtime_mvc/application/controllers/LocaleController.php:85
-msgid "Genre"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1122
-#: airtime_mvc/application/models/Block.php:1371
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
-#: airtime_mvc/application/controllers/LocaleController.php:93
-msgid "Mood"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1123
-#: airtime_mvc/application/models/Block.php:1364
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
-#: airtime_mvc/application/controllers/LocaleController.php:87
-msgid "Label"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1124
-#: airtime_mvc/application/services/HistoryService.php:1178
-#: airtime_mvc/application/models/Block.php:1355
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
-#: airtime_mvc/application/controllers/LocaleController.php:81
-msgid "Composer"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1125
-#: airtime_mvc/application/models/Block.php:1363
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
-#: airtime_mvc/application/controllers/LocaleController.php:86
-msgid "ISRC"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1126
-#: airtime_mvc/application/services/HistoryService.php:1179
-#: airtime_mvc/application/models/Block.php:1357
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
-#: airtime_mvc/application/controllers/LocaleController.php:83
-msgid "Copyright"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1127
-#: airtime_mvc/application/models/Block.php:1379
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
-#: airtime_mvc/application/controllers/LocaleController.php:100
-msgid "Year"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1128
-msgid "Track"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1129
-#: airtime_mvc/application/models/Block.php:1356
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
-#: airtime_mvc/application/controllers/LocaleController.php:82
-msgid "Conductor"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1130
-#: airtime_mvc/application/models/Block.php:1365
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
-#: airtime_mvc/application/controllers/LocaleController.php:88
-msgid "Language"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1155
-#: airtime_mvc/application/forms/EditHistoryItem.php:32
-msgid "Start Time"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1156
-#: airtime_mvc/application/forms/EditHistoryItem.php:44
-msgid "End Time"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1176
-msgid "Played"
-msgstr ""
-
#: airtime_mvc/application/services/CalendarService.php:50
msgid "Record file doesn't exist"
msgstr ""
@@ -238,2601 +112,380 @@ msgstr ""
msgid "Must wait 1 hour to rebroadcast."
msgstr ""
-#: airtime_mvc/application/models/Schedule.php:206
-msgid "livestream"
+#: airtime_mvc/application/services/HistoryService.php:1117
+#: airtime_mvc/application/services/HistoryService.php:1157
+#: airtime_mvc/application/services/HistoryService.php:1174
+#: airtime_mvc/application/controllers/LocaleController.php:76
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
+#: airtime_mvc/application/models/Block.php:1375
+msgid "Title"
msgstr ""
-#: airtime_mvc/application/models/ShowBuilder.php:212
+#: airtime_mvc/application/services/HistoryService.php:1118
+#: airtime_mvc/application/services/HistoryService.php:1158
+#: airtime_mvc/application/services/HistoryService.php:1175
+#: airtime_mvc/application/controllers/LocaleController.php:77
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
+#: airtime_mvc/application/models/Block.php:1360
+msgid "Creator"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1119
+#: airtime_mvc/application/controllers/LocaleController.php:78
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
+#: airtime_mvc/application/models/Block.php:1352
+msgid "Album"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1120
+#: airtime_mvc/application/services/HistoryService.php:1177
+#: airtime_mvc/application/controllers/LocaleController.php:91
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
+#: airtime_mvc/application/models/Block.php:1369
+msgid "Length"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1121
+#: airtime_mvc/application/controllers/LocaleController.php:85
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
+#: airtime_mvc/application/models/Block.php:1362
+msgid "Genre"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1122
+#: airtime_mvc/application/controllers/LocaleController.php:93
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
+#: airtime_mvc/application/models/Block.php:1371
+msgid "Mood"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1123
+#: airtime_mvc/application/controllers/LocaleController.php:87
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
+#: airtime_mvc/application/models/Block.php:1364
+msgid "Label"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1124
+#: airtime_mvc/application/services/HistoryService.php:1178
+#: airtime_mvc/application/controllers/LocaleController.php:81
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
+#: airtime_mvc/application/models/Block.php:1355
+msgid "Composer"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1125
+#: airtime_mvc/application/controllers/LocaleController.php:86
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
+#: airtime_mvc/application/models/Block.php:1363
+msgid "ISRC"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1126
+#: airtime_mvc/application/services/HistoryService.php:1179
+#: airtime_mvc/application/controllers/LocaleController.php:83
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
+#: airtime_mvc/application/models/Block.php:1357
+msgid "Copyright"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1127
+#: airtime_mvc/application/controllers/LocaleController.php:100
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
+#: airtime_mvc/application/models/Block.php:1379
+msgid "Year"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1128
+msgid "Track"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1129
+#: airtime_mvc/application/controllers/LocaleController.php:82
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
+#: airtime_mvc/application/models/Block.php:1356
+msgid "Conductor"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1130
+#: airtime_mvc/application/controllers/LocaleController.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
+#: airtime_mvc/application/models/Block.php:1365
+msgid "Language"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1155
+#: airtime_mvc/application/forms/EditHistoryItem.php:32
+msgid "Start Time"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1156
+#: airtime_mvc/application/forms/EditHistoryItem.php:44
+msgid "End Time"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1176
+msgid "Played"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:31
+#: airtime_mvc/application/controllers/PlaylistController.php:147
#, php-format
-msgid "Rebroadcast of %s from %s"
+msgid "%s not found"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:166
-msgid "Length needs to be greater than 0 minutes"
+#: airtime_mvc/application/controllers/LibraryController.php:40
+#: airtime_mvc/application/controllers/PlaylistController.php:168
+msgid "Something went wrong."
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:171
-msgid "Length should be of form \"00h 00m\""
+#: airtime_mvc/application/controllers/LibraryController.php:95
+#: airtime_mvc/application/controllers/ShowbuilderController.php:136
+msgid "Preview"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:184
-msgid "URL should be of form \"http://domain\""
+#: airtime_mvc/application/controllers/LibraryController.php:115
+#: airtime_mvc/application/controllers/LibraryController.php:177
+#: airtime_mvc/application/controllers/LibraryController.php:200
+msgid "Add to Playlist"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:187
-msgid "URL should be 512 characters or less"
+#: airtime_mvc/application/controllers/LibraryController.php:117
+msgid "Add to Smart Block"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:193
-msgid "No MIME type found for webstream."
+#: airtime_mvc/application/controllers/LibraryController.php:123
+#: airtime_mvc/application/controllers/LocaleController.php:66
+msgid "Edit Metadata"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:209
-msgid "Webstream name cannot be empty"
+#: airtime_mvc/application/controllers/LibraryController.php:131
+#: airtime_mvc/application/controllers/ScheduleController.php:712
+msgid "Download"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:278
-msgid "Could not parse XSPF playlist"
+#: airtime_mvc/application/controllers/LibraryController.php:147
+msgid "View track"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:298
-msgid "Could not parse PLS playlist"
+#: airtime_mvc/application/controllers/LibraryController.php:148
+msgid "Remove track"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:318
-msgid "Could not parse M3U playlist"
+#: airtime_mvc/application/controllers/LibraryController.php:154
+#: airtime_mvc/application/controllers/LibraryController.php:159
+msgid "Upload track"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:332
-msgid "Invalid webstream - This appears to be a file download."
+#: airtime_mvc/application/controllers/LibraryController.php:169
+msgid "Duplicate Playlist"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:336
+#: airtime_mvc/application/controllers/LibraryController.php:213
+msgid "No action available"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:233
+msgid "You don't have permission to delete selected items."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:279
+msgid "Could not delete file because it is scheduled in the future."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:282
+msgid "Could not delete file(s)."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:322
#, php-format
-msgid "Unrecognized stream type: %s"
+msgid "Copy of %s"
msgstr ""
-#: airtime_mvc/application/models/Preference.php:460
-#, php-format
-msgid "Powered by %s"
+#: airtime_mvc/application/controllers/WebstreamController.php:28
+#: airtime_mvc/application/controllers/WebstreamController.php:32
+msgid "Untitled Webstream"
msgstr ""
-#: airtime_mvc/application/models/Preference.php:588
-msgid "Select Country"
+#: airtime_mvc/application/controllers/WebstreamController.php:150
+msgid "Webstream saved."
msgstr ""
-#: airtime_mvc/application/models/MusicDir.php:160
-#, php-format
-msgid "%s is already watched."
+#: airtime_mvc/application/controllers/WebstreamController.php:158
+msgid "Invalid form values."
msgstr ""
-#: airtime_mvc/application/models/MusicDir.php:164
-#, php-format
-msgid "%s contains nested watched directory: %s"
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:168
-#, php-format
-msgid "%s is nested within existing watched directory: %s"
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:189
-#: airtime_mvc/application/models/MusicDir.php:370
-#, php-format
-msgid "%s is not a valid directory."
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:232
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list"
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:388
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list."
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:431
-#, php-format
-msgid "%s doesn't exist in the watched list."
-msgstr ""
-
-#: airtime_mvc/application/models/Show.php:184
-msgid "Shows can have a max length of 24 hours."
-msgstr ""
-
-#: airtime_mvc/application/models/Show.php:282
-#: airtime_mvc/application/forms/AddShowWhen.php:156
-msgid "End date/time cannot be in the past"
-msgstr ""
-
-#: airtime_mvc/application/models/Show.php:293
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
msgid ""
-"Cannot schedule overlapping shows.\n"
-"Note: Resizing a repeating show affects all of its repeats."
+"To configure and use the embeddable player you must:
\n"
+" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
+" 2. Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/models/Auth.php:33
-#, php-format
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
msgid ""
-"Hi %s, \n"
-"\n"
-"Please click this link to reset your password: "
+"To use the embeddable weekly schedule widget you must:
\n"
+" Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/models/Auth.php:38
+#: airtime_mvc/application/controllers/ListenerstatController.php:51
+msgid "Please make sure admin user/password is correct on System->Streams page."
+msgstr ""
+
+#: airtime_mvc/application/controllers/UserController.php:86
+msgid "User added successfully!"
+msgstr ""
+
+#: airtime_mvc/application/controllers/UserController.php:88
+msgid "User updated successfully!"
+msgstr ""
+
+#: airtime_mvc/application/controllers/UserController.php:187
+msgid "Settings updated successfully!"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PlaylistController.php:53
#, php-format
-msgid "%s Password Reset"
+msgid "You are viewing an older version of %s"
msgstr ""
-#: airtime_mvc/application/models/Block.php:333
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
-msgid "items"
+#: airtime_mvc/application/controllers/PlaylistController.php:140
+msgid "You cannot add tracks to dynamic blocks."
msgstr ""
-#: airtime_mvc/application/models/Block.php:833
-#: airtime_mvc/application/models/Playlist.php:812
-msgid "Cue in and cue out are null."
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:868
-#: airtime_mvc/application/models/Block.php:924
-#: airtime_mvc/application/models/Playlist.php:851
-#: airtime_mvc/application/models/Playlist.php:895
-msgid "Can't set cue out to be greater than file length."
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:879
-#: airtime_mvc/application/models/Block.php:900
-#: airtime_mvc/application/models/Playlist.php:843
-#: airtime_mvc/application/models/Playlist.php:868
-msgid "Can't set cue in to be larger than cue out."
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:935
-#: airtime_mvc/application/models/Playlist.php:887
-msgid "Can't set cue out to be smaller than cue in."
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1351
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
-msgid "Select criteria"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1353
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
-msgid "Bit Rate (Kbps)"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1354
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
-#: airtime_mvc/application/controllers/LocaleController.php:80
-msgid "BPM"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1358
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
-#: airtime_mvc/application/controllers/LocaleController.php:281
-#: airtime_mvc/application/layouts/scripts/layout.phtml:140
-msgid "Cue In"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1359
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:282
-#: airtime_mvc/application/layouts/scripts/layout.phtml:147
-msgid "Cue Out"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1361
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
-#: airtime_mvc/application/controllers/LocaleController.php:84
-msgid "Encoded By"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1366
-msgid "Upload Time"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1367
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
-#: airtime_mvc/application/controllers/LocaleController.php:89
-msgid "Last Modified"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1368
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
-#: airtime_mvc/application/controllers/LocaleController.php:90
-msgid "Last Played"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1370
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
-#: airtime_mvc/application/controllers/LocaleController.php:92
-msgid "Mime"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1372
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
-#: airtime_mvc/application/controllers/LocaleController.php:94
-msgid "Owner"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1373
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
-#: airtime_mvc/application/controllers/LocaleController.php:95
-msgid "Replay Gain"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1374
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
-msgid "Sample Rate (kHz)"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1376
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
-#: airtime_mvc/application/controllers/LocaleController.php:97
-msgid "Track Number"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1377
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
-#: airtime_mvc/application/controllers/LocaleController.php:98
-msgid "Uploaded"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1378
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
-#: airtime_mvc/application/controllers/LocaleController.php:99
-msgid "Website"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1383
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
-#: airtime_mvc/application/controllers/LocaleController.php:151
-msgid "Select modifier"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1384
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
-#: airtime_mvc/application/controllers/LocaleController.php:152
-msgid "contains"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1385
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
-#: airtime_mvc/application/controllers/LocaleController.php:153
-msgid "does not contain"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1386
-#: airtime_mvc/application/models/Block.php:1390
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
-#: airtime_mvc/application/controllers/LocaleController.php:154
-msgid "is"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1387
-#: airtime_mvc/application/models/Block.php:1391
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
-#: airtime_mvc/application/controllers/LocaleController.php:155
-msgid "is not"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1388
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
-#: airtime_mvc/application/controllers/LocaleController.php:156
-msgid "starts with"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1389
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
-#: airtime_mvc/application/controllers/LocaleController.php:157
-msgid "ends with"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
-#: airtime_mvc/application/controllers/LocaleController.php:158
-msgid "is greater than"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1393
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
-#: airtime_mvc/application/controllers/LocaleController.php:159
-msgid "is less than"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1394
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
-#: airtime_mvc/application/controllers/LocaleController.php:160
-msgid "is in the range"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:73
-msgid "Cannot move items out of linked shows"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:119
-msgid "The schedule you're viewing is out of date! (sched mismatch)"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:124
-msgid "The schedule you're viewing is out of date! (instance mismatch)"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:132
-#: airtime_mvc/application/models/Scheduler.php:458
-#: airtime_mvc/application/models/Scheduler.php:490
-msgid "The schedule you're viewing is out of date!"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:142
+#: airtime_mvc/application/controllers/PlaylistController.php:161
#, php-format
-msgid "You are not allowed to schedule show %s."
+msgid "You don't have permission to delete selected %s(s)."
msgstr ""
-#: airtime_mvc/application/models/Scheduler.php:146
-msgid "You cannot add files to recording shows."
+#: airtime_mvc/application/controllers/PlaylistController.php:174
+msgid "You can only add tracks to smart block."
msgstr ""
-#: airtime_mvc/application/models/Scheduler.php:152
+#: airtime_mvc/application/controllers/PlaylistController.php:180
+#: airtime_mvc/application/controllers/LocaleController.php:50
+msgid "You can only add tracks, smart blocks, and webstreams to playlists."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PlaylistController.php:192
+msgid "Untitled Playlist"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PlaylistController.php:194
+msgid "Untitled Smart Block"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PlaylistController.php:522
+msgid "Unknown Playlist"
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:78
+msgid "Page not found."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:87
+msgid "The requested action is not supported."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:98
+msgid "You do not have permission to access this resource."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:109
+msgid "An internal application error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/controllers/Apiv2Controller.php:77
+#: airtime_mvc/application/controllers/ApiController.php:79
+msgid "You are not allowed to access this resource."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:72
+msgid "Preferences updated."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:115
+msgid "Support setting updated."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:123
+msgid "Support Feedback"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:251
+msgid "Stream Setting Updated."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:342
+msgid "path should be specified"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:437
+msgid "Problem with Liquidsoap..."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:493
+msgid "Request method not accepted"
+msgstr ""
+
+#: airtime_mvc/application/controllers/DashboardController.php:35
+#: airtime_mvc/application/controllers/DashboardController.php:84
+msgid "You don't have permission to disconnect source."
+msgstr ""
+
+#: airtime_mvc/application/controllers/DashboardController.php:37
+#: airtime_mvc/application/controllers/DashboardController.php:86
+msgid "There is no source connected to this input."
+msgstr ""
+
+#: airtime_mvc/application/controllers/DashboardController.php:81
+msgid "You don't have permission to switch source."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:43
+msgid "Please enter your username and password."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:93
+msgid "Wrong username or password provided. Please try again."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:167
+msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:173
+msgid "There was a problem with the username or email address you entered."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ApiController.php:244
+#: airtime_mvc/application/controllers/ApiController.php:317
+#: airtime_mvc/application/controllers/ApiController.php:392
+#: airtime_mvc/application/controllers/ApiController.php:435
+#: airtime_mvc/application/controllers/ApiController.php:474
+#: airtime_mvc/application/controllers/ApiController.php:507
+msgid "You are not allowed to access this resource. "
+msgstr ""
+
+#: airtime_mvc/application/controllers/ApiController.php:698
+#: airtime_mvc/application/controllers/ApiController.php:718
+#: airtime_mvc/application/controllers/ApiController.php:730
#, php-format
-msgid "The show %s is over and cannot be scheduled."
+msgid "File does not exist in %s"
msgstr ""
-#: airtime_mvc/application/models/Scheduler.php:159
-#, php-format
-msgid "The show %s has been previously updated!"
+#: airtime_mvc/application/controllers/ApiController.php:781
+msgid "Bad request. no 'mode' parameter passed."
msgstr ""
-#: airtime_mvc/application/models/Scheduler.php:178
-msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:195
-msgid "Cannot schedule a playlist that contains missing files."
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:216
-#: airtime_mvc/application/models/Scheduler.php:305
-msgid "A selected File does not exist!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
-#: airtime_mvc/application/configs/navigation.php:40
-msgid "Weekly Schedule"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
-#: airtime_mvc/application/forms/Player.php:77
-msgid "Preview:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
-#: airtime_mvc/application/configs/navigation.php:34
-msgid "Player"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
-#: airtime_mvc/application/controllers/LocaleController.php:362
-#: airtime_mvc/application/controllers/LocaleController.php:390
-msgid "Close"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Add this show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Update show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
-msgid "What"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
-msgid "When"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
-msgid "Live Stream Input"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
-msgid "Who"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
-msgid "Style"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
-#: airtime_mvc/application/controllers/LocaleController.php:273
-msgid "Start"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
-msgid "Password Reset"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
-msgid "Email Sent!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
-msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
-msgid "Back"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
-msgid "New password"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
-msgid "Please enter and confirm your new password in the fields below."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:3
-#: airtime_mvc/application/forms/Login.php:83
-msgid "Login"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:7
-#, php-format
-msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:97
-msgid "Playout History"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
-msgid "Log Sheet"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
-msgid "File Summary"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
-msgid "Show Summary"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
-msgid "Your trial expires in"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
-msgid "days"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-#, php-format
-msgid "Purchase an %s Pro plan!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-msgid "My Account"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
-msgid "Previous:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
-msgid "Next:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
-msgid "Source Streams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
-msgid "Master Source"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
-msgid "Show Source"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
-msgid "ON AIR"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
-msgid "Listen"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
-msgid "Logout"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
-msgid "Drop files here or click to browse your computer."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
-#: airtime_mvc/application/controllers/LocaleController.php:314
-msgid "in use"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
-#: airtime_mvc/application/controllers/LocaleController.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:401
-msgid "All"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
-msgid "Failed"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
-msgid "Pending"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
-msgid "Recent Uploads"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
-#: airtime_mvc/application/configs/navigation.php:120
-msgid "Account Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
-msgid "Upgrade today to get more listeners and storage space!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
-msgid "View Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
-msgid "About"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
-#, php-format
-msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
-#, php-format
-msgid "%1$s %2$s is distributed under the %3$s"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
-#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
-msgid "Live stream"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
-msgid "Share"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
-msgid "Select stream:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
-msgid "mute"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
-msgid "unmute"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
-#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
-#, php-format
-msgid "Welcome to %s!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
-#, php-format
-msgid "Here's how you can get started using %s to automate your broadcasts: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
-msgid "Upload audio tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
-msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
-msgid "Schedule a show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
-msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
-msgid "Add tracks to your show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
-msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
-msgid "Now you're good to go!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
-#, php-format
-msgid "For more detailed help, read the %suser manual%s."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
-msgid "Listeners"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
-msgid "Stream Data Collection Status"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
-#: airtime_mvc/application/views/scripts/error/error.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
-msgid "An error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
-msgid "Access Denied!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
-msgid "You do not have permission to access this page!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
-#: airtime_mvc/application/views/scripts/error/error.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
-#: airtime_mvc/application/configs/navigation.php:143
-msgid "Help"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
-msgid "Page not found!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
-msgid "We couldn't find the page you were looking for."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error.phtml:12
-msgid "Looks like the page you were looking for doesn't exist!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
-msgid "Oops!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
-msgid "Something went wrong!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
-msgid "Bad Request!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
-msgid "The requested action is not supported!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
-msgid "Viewing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
-msgid "Editing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:3
-msgid "File import in progress..."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:10
-#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
-msgid "Advanced Search Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
-#: airtime_mvc/application/forms/Player.php:15
-#: airtime_mvc/application/forms/EditAudioMD.php:24
-msgid "Title:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
-#: airtime_mvc/application/forms/EditAudioMD.php:34
-msgid "Creator:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
-#: airtime_mvc/application/forms/EditAudioMD.php:44
-msgid "Album:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
-msgid "Track:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
-msgid "Length:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
-msgid "Sample Rate:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
-msgid "Bit Rate:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
-#: airtime_mvc/application/forms/EditAudioMD.php:115
-msgid "Mood:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
-#: airtime_mvc/application/forms/EditAudioMD.php:62
-#: airtime_mvc/application/forms/AddShowWhat.php:45
-msgid "Genre:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
-#: airtime_mvc/application/forms/EditAudioMD.php:72
-msgid "Year:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
-#: airtime_mvc/application/forms/EditAudioMD.php:85
-msgid "Label:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
-#: airtime_mvc/application/forms/EditAudioMD.php:125
-msgid "BPM:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
-#: airtime_mvc/application/forms/EditAudioMD.php:95
-msgid "Composer:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
-#: airtime_mvc/application/forms/EditAudioMD.php:105
-msgid "Conductor:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
-#: airtime_mvc/application/forms/EditAudioMD.php:135
-msgid "Copyright:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
-msgid "Isrc Number:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
-#: airtime_mvc/application/forms/EditAudioMD.php:155
-msgid "Website:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
-#: airtime_mvc/application/forms/EditUser.php:119
-#: airtime_mvc/application/forms/EditAudioMD.php:165
-#: airtime_mvc/application/forms/Login.php:68
-msgid "Language:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
-msgid "File Path:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
-#: airtime_mvc/application/forms/AddShowWhat.php:26
-msgid "Name:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
-#: airtime_mvc/application/forms/AddShowWhat.php:54
-msgid "Description:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
-msgid "Web Stream"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
-msgid "Dynamic Smart Block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
-msgid "Static Smart Block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
-msgid "Audio Track"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
-msgid "Playlist Contents: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
-msgid "Static Smart Block Contents: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
-msgid "Dynamic Smart Block Criteria: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
-msgid "Limit to "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
-#: airtime_mvc/application/forms/AddShowWhat.php:36
-msgid "URL:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/login.phtml:41
-msgid "Forgot your password?"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
-#, php-format
-msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
-#, php-format
-msgid "Click the box below to promote your station on %s."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
-msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
-msgid "(Required)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
-msgid "(for verification purposes only, will not be published)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
-msgid "Choose folder"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
-msgid "Set"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
-msgid "Current Import Folder:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
-msgid "Add"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
-#, php-format
-msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
-msgid "Remove watched directory"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
-msgid "You are not watching any media folders."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
-msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
-msgid "Live Broadcasting"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
-msgid "Use these settings in your broadcasting software to stream live at any time."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
-msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
-msgid "Choose Show Instance"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
-#: airtime_mvc/application/forms/EditHistoryItem.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:400
-msgid "No Show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
-msgid "Find"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
-msgid "Choose Days:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
-#: airtime_mvc/application/forms/AddShowStyle.php:64
-#: airtime_mvc/application/forms/GeneralPreferences.php:53
-msgid "Remove"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
-msgid "Stream "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
-msgid "Additional Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
-msgid "The following info will be displayed to listeners in their media player:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
-msgid "(Your radio station website)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
-msgid "Stream URL: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
-msgid "Find Shows"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
-msgid "TuneIn Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
-msgid "SoundCloud Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
-msgid "Dangerous Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
-msgid "Search Criteria:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
-msgid "New Criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
-msgid "or"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
-msgid "and"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
-msgid "New Modifier"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
-msgid " to "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
-msgid "files meet the criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
-msgid "file meets the criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
-msgid "Filter History"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
-#: airtime_mvc/application/configs/navigation.php:61
-msgid "My Profile"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
-#, php-format
-msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
-#: airtime_mvc/application/forms/Preferences.php:40
-#: airtime_mvc/application/forms/PasswordChange.php:43
-#: airtime_mvc/application/forms/AddUser.php:110
-#: airtime_mvc/application/forms/BillingClient.php:193
-#: airtime_mvc/application/forms/SupportSettings.php:131
-#: airtime_mvc/application/forms/EditHistory.php:131
-#: airtime_mvc/application/controllers/LocaleController.php:294
-msgid "Save"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
-msgid "Repeat Days:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
-msgid "Register Airtime"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
-#: airtime_mvc/application/forms/GeneralPreferences.php:43
-msgid "Note: Anything larger than 600x600 will be resized."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
-msgid "Show me what I am sending "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
-msgid "Terms and Conditions"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
-msgid "Creating File Summary Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
-msgid "Creating Log Sheet Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
-msgid "Name"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
-msgid "Add more elements"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
-msgid "Add New Field"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
-msgid "Set Default Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
-msgid "Playout History Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
-msgid "Log Sheet Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
-msgid "New Log Sheet Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
-msgid "No Log Sheet Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
-#: airtime_mvc/application/controllers/LocaleController.php:397
-msgid "Set Default"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
-msgid "File Summary Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
-msgid "New File Summary Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
-msgid "No File Summary Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
-msgid "Disk Space"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
-#: airtime_mvc/application/controllers/LocaleController.php:315
-msgid "Disk"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
-#: airtime_mvc/application/forms/AddShowWhen.php:89
-msgid "Duration:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
-msgid "Toggle Details"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
-msgid "Playlist crossfade"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-msgid "Remove all content from this smart block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Clear"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "Fade in: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "(ss.t)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-msgid "Fade out: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
-#: airtime_mvc/application/forms/EditAudioMD.php:186
-#: airtime_mvc/application/forms/EditHistory.php:141
-#: airtime_mvc/application/controllers/LocaleController.php:295
-#: airtime_mvc/application/controllers/LocaleController.php:318
-msgid "Cancel"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
-msgid "No smart block currently open"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
-msgid "Show Waveform"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-msgid "Cue In: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "(hh:mm:ss.t)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "Cue Out: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
-msgid "Original Length:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
-msgid "Expand Static Block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
-msgid "Expand Dynamic Block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
-msgid "Choose some search criteria above and click Generate to create this playlist."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
-msgid "A track list will be generated when you schedule this smart block into a show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
-msgid "Drag tracks here from your library to add them to the playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-msgid "Shuffle playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
-msgid "Shuffle"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Empty playlist content"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-msgid "Save playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
-msgid "No open playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
-msgid "previous"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
-msgid "play"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
-msgid "pause"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
-msgid "next"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
-msgid "stop"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
-msgid "max volume"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
-msgid "Update Required"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
-#, php-format
-msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
-msgid "Stream Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
-msgid "Global"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
-msgid "dB"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
-msgid "Output Streams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
-#: airtime_mvc/application/controllers/LocaleController.php:166
-msgid "Manage Media Folders"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:56
-msgid "General"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
-msgid "Description"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
-msgid "Stream URL:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
-msgid "Default Length:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
-msgid "No webstream"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
-msgid "Manage Users"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
-msgid "New User"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
-msgid "id"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
-#: airtime_mvc/application/forms/PasswordRestore.php:25
-msgid "Username"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
-msgid "First Name"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
-msgid "Last Name"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
-msgid "User Type"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
-#, php-format
-msgid "Super Admin details can be changed in your Billing Settings."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
-#: airtime_mvc/application/controllers/LocaleController.php:74
-#: airtime_mvc/application/layouts/scripts/layout.phtml:78
-msgid "Tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
-#: airtime_mvc/application/controllers/LocaleController.php:104
-#: airtime_mvc/application/layouts/scripts/layout.phtml:80
-msgid "Playlists"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
-#: airtime_mvc/application/controllers/LocaleController.php:105
-#: airtime_mvc/application/layouts/scripts/layout.phtml:82
-msgid "Smart Blocks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
-#: airtime_mvc/application/layouts/scripts/layout.phtml:84
-msgid "Webstreams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
-#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
-#: airtime_mvc/application/layouts/scripts/layout.phtml:76
-msgid "Dashboard"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:12
-msgid "Radio Page"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:19
-msgid "Calendar"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:26
-msgid "Widgets"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:48
-msgid "Settings"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:67
-msgid "Users"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:74
-msgid "Streams"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:82
-msgid "Analytics"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:90
-msgid "Listener Stats"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:104
-msgid "History Templates"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:113
-msgid "Billing"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:127
-msgid "Account Details"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:134
-msgid "View Invoices"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:150
-msgid "Getting Started"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:157
-msgid "FAQ"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:162
-msgid "User Manual"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:167
-msgid "File a Support Ticket"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:12
-msgid "Background Colour:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:31
-msgid "Text Colour:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:49
-msgid "Current Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:72
-msgid "Show Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:87
-msgid "Logo Preview:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:19
-msgid "Push metadata to your station on TuneIn?"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:24
-msgid "Station ID:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:30
-msgid "Partner Key:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:36
-msgid "Partner Id:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:77
-#: airtime_mvc/application/forms/TuneInPreferences.php:86
-msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:14
-msgid "Now Playing"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:25
-msgid "Select Stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:28
-msgid "Auto detect the most appropriate stream to use."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:29
-msgid "Select a stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:41
-msgid " - Mobile friendly"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:45
-msgid " - The player does not support Opus streams."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:71
-msgid "Embeddable code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:72
-msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:37
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
-#: airtime_mvc/application/forms/Login.php:41
-#: airtime_mvc/application/forms/AddUser.php:29
-msgid "Username:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:48
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
-#: airtime_mvc/application/forms/Login.php:54
-#: airtime_mvc/application/forms/AddUser.php:38
-#: airtime_mvc/application/forms/BillingClient.php:172
-msgid "Password:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:57
-#: airtime_mvc/application/forms/AddUser.php:46
-#: airtime_mvc/application/forms/BillingClient.php:181
-msgid "Verify Password:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:67
-#: airtime_mvc/application/forms/AddUser.php:55
-msgid "Firstname:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:75
-#: airtime_mvc/application/forms/AddUser.php:61
-msgid "Lastname:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:83
-#: airtime_mvc/application/forms/RegisterAirtime.php:51
-#: airtime_mvc/application/forms/AddUser.php:67
-#: airtime_mvc/application/forms/SupportSettings.php:43
-msgid "Email:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:94
-#: airtime_mvc/application/forms/AddUser.php:76
-msgid "Mobile Phone:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:102
-#: airtime_mvc/application/forms/AddUser.php:82
-msgid "Skype:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:110
-#: airtime_mvc/application/forms/AddUser.php:88
-msgid "Jabber:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:129
-msgid "Interface Timezone:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:155
-#: airtime_mvc/application/forms/AddUser.php:120
-msgid "Login name is not unique."
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRR.php:10
-msgid "Record from Line In?"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRR.php:16
-msgid "Rebroadcast?"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:16
-msgid "'%value%' does not fit the time format 'HH:mm'"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:22
-msgid "Start Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:37
-msgid "In the Future:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:64
-msgid "End Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:98
-msgid "Timezone:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:107
-msgid "Repeats?"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:139
-msgid "Cannot create show in the past"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:147
-msgid "Cannot modify start date/time of the show that is already started"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:164
-msgid "Cannot have duration < 0m"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:168
-msgid "Cannot have duration 00h 00m"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:175
-msgid "Cannot have duration greater than 24h"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWho.php:10
-msgid "Search Users:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWho.php:24
-msgid "DJs:"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordChange.php:17
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
-msgid "Password"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordChange.php:28
-msgid "Confirm new password"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordChange.php:36
-msgid "Password confirmation does not match your password."
-msgstr ""
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
-msgid "Station Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
-#: airtime_mvc/application/forms/GeneralPreferences.php:127
-msgid "Station Timezone"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
-msgid "Auto Switch Off:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
-msgid "Auto Switch On:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
-msgid "Switch Transition Fade (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
-#: airtime_mvc/application/forms/GeneralPreferences.php:68
-#: airtime_mvc/application/forms/GeneralPreferences.php:82
-#: airtime_mvc/application/forms/GeneralPreferences.php:96
-msgid "Please enter a time in seconds (eg. 0.5)"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
-#: airtime_mvc/application/forms/AddShowLiveStream.php:48
-msgid "Host:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
-#: airtime_mvc/application/forms/AddShowLiveStream.php:54
-msgid "Port:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
-#: airtime_mvc/application/forms/AddShowLiveStream.php:60
-msgid "Mount:"
-msgstr ""
-
-#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
-msgid "Value is required and can't be empty"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:25
-#: airtime_mvc/application/forms/RegisterAirtime.php:30
-#: airtime_mvc/application/forms/SupportSettings.php:18
-msgid "Station Name"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:33
-msgid "Station Description"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:42
-#: airtime_mvc/application/forms/RegisterAirtime.php:106
-msgid "Station Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:62
-msgid "Default Crossfade Duration (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:76
-msgid "Default Fade In (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:90
-msgid "Default Fade Out (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:102
-msgid "Public Airtime API"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:103
-msgid "Required for embeddable schedule widget."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:105
-msgid "Disabled"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:106
-msgid "Enabled"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:109
-msgid ""
-"Enabling this feature will allow Airtime to provide schedule data\n"
-" to external widgets that can be embedded in your website."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:120
-msgid "Default Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:134
-msgid "Week Starts On"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:150
-msgid "Display login button on your Radio Page?"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:158
-#: airtime_mvc/application/controllers/LocaleController.php:249
-msgid "Sunday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:159
-#: airtime_mvc/application/controllers/LocaleController.php:250
-msgid "Monday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:160
-#: airtime_mvc/application/controllers/LocaleController.php:251
-msgid "Tuesday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:161
-#: airtime_mvc/application/controllers/LocaleController.php:252
-msgid "Wednesday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:162
-#: airtime_mvc/application/controllers/LocaleController.php:253
-msgid "Thursday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:163
-#: airtime_mvc/application/controllers/LocaleController.php:254
-msgid "Friday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:164
-#: airtime_mvc/application/controllers/LocaleController.php:255
-msgid "Saturday"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
-msgid "Default License:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
-msgid "All rights are reserved"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
-msgid "The work is in the public domain"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
-msgid "Creative Commons Attribution"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
-msgid "Creative Commons Attribution Noncommercial"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
-msgid "Creative Commons Attribution No Derivative Works"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
-msgid "Creative Commons Attribution Share Alike"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
-msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
-msgid "Creative Commons Attribution Noncommercial Share Alike"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
-msgid "Default Sharing Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
-msgid "Public"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
-msgid "Private"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:18
-#: airtime_mvc/application/forms/DateRange.php:16
-msgid "Date Start:"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:37
-#: airtime_mvc/application/forms/ShowBuilder.php:65
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
-#: airtime_mvc/application/forms/DateRange.php:35
-#: airtime_mvc/application/forms/DateRange.php:63
-msgid "Invalid character entered"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:46
-#: airtime_mvc/application/forms/AddShowRepeats.php:56
-#: airtime_mvc/application/forms/DateRange.php:44
-msgid "Date End:"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:72
-#: airtime_mvc/application/forms/ShowBuilder.php:88
-msgid "Filter by Show"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:80
-msgid "All My Shows:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditAudioMD.php:145
-msgid "ISRC Number:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditAudioMD.php:176
-msgid "OK"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
-msgid "Day must be specified"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
-msgid "Time must be specified"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
-msgid "Must wait at least 1 hour to rebroadcast"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhat.php:30
-msgid "Untitled Show"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhat.php:69
-msgid "Instance Description:"
-msgstr ""
-
-#: airtime_mvc/application/forms/DangerousPreferences.php:12
-msgid "Delete All Tracks in Library"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:39
-#: airtime_mvc/application/forms/SupportSettings.php:31
-msgid "Phone:"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:62
-#: airtime_mvc/application/forms/SupportSettings.php:54
-msgid "Station Web Site:"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:73
-#: airtime_mvc/application/forms/BillingClient.php:102
-#: airtime_mvc/application/forms/SupportSettings.php:65
-msgid "Country:"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:84
-#: airtime_mvc/application/forms/BillingClient.php:70
-#: airtime_mvc/application/forms/SupportSettings.php:76
-msgid "City:"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:96
-#: airtime_mvc/application/forms/SupportSettings.php:88
-msgid "Station Description:"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:116
-#: airtime_mvc/application/forms/SupportSettings.php:98
-#: airtime_mvc/application/controllers/LocaleController.php:341
-msgid "Send support feedback"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:126
-#: airtime_mvc/application/forms/SupportSettings.php:108
-#, php-format
-msgid "Promote my station on %s"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:151
-#: airtime_mvc/application/forms/SupportSettings.php:120
-#, php-format
-msgid "By checking this box, I agree to %s's %sprivacy policy%s."
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:169
-#: airtime_mvc/application/forms/SupportSettings.php:143
-msgid "You have to agree to privacy policy."
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:10
-msgid "Link:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:16
-msgid "Repeat Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:19
-msgid "weekly"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:20
-msgid "every 2 weeks"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:21
-msgid "every 3 weeks"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:22
-msgid "every 4 weeks"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:23
-msgid "monthly"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:32
-msgid "Select Days:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:35
-#: airtime_mvc/application/controllers/LocaleController.php:256
-msgid "Sun"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:36
-#: airtime_mvc/application/controllers/LocaleController.php:257
-msgid "Mon"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:37
-#: airtime_mvc/application/controllers/LocaleController.php:258
-msgid "Tue"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:38
-#: airtime_mvc/application/controllers/LocaleController.php:259
-msgid "Wed"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:39
-#: airtime_mvc/application/controllers/LocaleController.php:260
-msgid "Thu"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:40
-#: airtime_mvc/application/controllers/LocaleController.php:261
-msgid "Fri"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:41
-#: airtime_mvc/application/controllers/LocaleController.php:262
-msgid "Sat"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:47
-msgid "Repeat By:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the month"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the week"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:69
-msgid "No End?"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:106
-msgid "End date must be after start date"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:113
-msgid "Please select a repeat day"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:10
-#, php-format
-msgid "Use %s Authentication:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:16
-msgid "Use Custom Authentication:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:25
-msgid "Custom Username"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:37
-msgid "Custom Password"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:77
-msgid "Username field cannot be empty."
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:82
-msgid "Password field cannot be empty."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
-msgid "Enabled:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
-msgid "Mobile:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
-msgid "Stream Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
-msgid "Service Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
-msgid "Channels:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "1 - Mono"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "2 - Stereo"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
-msgid "Server"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
-msgid "Port"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
-msgid "Only numbers are allowed."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
-msgid "URL"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
-msgid "Mount Point"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
-msgid "Admin User"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
-msgid "Admin Password"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
-#: airtime_mvc/application/controllers/LocaleController.php:173
-msgid "Getting information from the server..."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
-msgid "Server cannot be empty."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
-msgid "Port cannot be empty."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
-msgid "Mount cannot be empty with Icecast server."
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
-msgid "'%value%' is no valid email address in the basic format local-part@hostname"
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
-msgid "'%value%' does not fit the date format '%format%'"
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
-msgid "'%value%' is less than %min% characters long"
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
-msgid "'%value%' is more than %max% characters long"
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
-msgid "'%value%' is not between '%min%' and '%max%', inclusively"
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
-msgid "Passwords do not match"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
-msgid "hours"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
-msgid "minutes"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
-msgid "Randomly"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
-msgid "Newest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
-msgid "Oldest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
-msgid "Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
-msgid "Static"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
-msgid "Dynamic"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
-msgid "Allow Repeated Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
-msgid "Sort Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
-msgid "Limit to:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
-msgid "Generate playlist content and save criteria"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
-msgid "Generate"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
-msgid "Shuffle playlist content"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
-msgid "Limit cannot be empty or smaller than 0"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
-msgid "Limit cannot be more than 24 hrs"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
-msgid "The value should be an integer"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
-msgid "500 is the max item limit value you can set"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
-msgid "You must select Criteria and Modifier"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
-msgid "'Length' should be in '00:00:00' format"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
-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:594
-msgid "The value has to be numeric"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
-msgid "The value should be less then 2147483648"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
-#, php-format
-msgid "The value should be less than %s characters"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
-msgid "Value cannot be empty"
-msgstr ""
-
-#: airtime_mvc/application/forms/Login.php:102
-msgid "Type the characters you see in the picture below."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:26
-msgid "Icecast Vorbis Metadata"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:36
-msgid "Stream Label:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:37
-msgid "Artist - Title"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:38
-msgid "Show - Artist - Title"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:39
-msgid "Station name - Show name"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:45
-msgid "Off Air Metadata"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:51
-msgid "Enable Replay Gain"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:57
-msgid "Replay Gain Modifier"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:65
-msgid "Streaming Server:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Airtime Pro Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Custom / 3rd Party Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:95
-msgid "User Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:99
-#: airtime_mvc/application/controllers/LocaleController.php:324
-msgid "Guest"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:100
-#: airtime_mvc/application/controllers/LocaleController.php:322
-msgid "DJ"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:101
-#: airtime_mvc/application/controllers/LocaleController.php:323
-msgid "Program Manager"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:321
-msgid "Admin"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:17
-msgid "First Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:26
-msgid "Last Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:35
-msgid "Company Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:44
-msgid "Email Address:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:54
-msgid "Address 1:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:63
-msgid "Address 2:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:80
-msgid "State/Region:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:89
-msgid "Zip Code / Postal Code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:112
-msgid "Phone Number:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:121
-msgid "Please choose a security question:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:126
-msgid "What is the name of your favorite childhood friend?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:127
-msgid "What school did you attend for sixth grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:128
-msgid "In what city did you meet your spouse/significant other?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:129
-msgid "What street did you live on in third grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:130
-msgid "What is the first name of the boy or girl that you first kissed?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:131
-msgid "In what city or town was your first job?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:135
-msgid "Please enter an answer:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:152
-msgid "VAT/Tax ID (EU only)"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:162
-msgid "Subscribe to Sourcefabric newsletter"
-msgstr ""
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
-msgid "Import Folder:"
-msgstr ""
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
-msgid "Watched Folders:"
-msgstr ""
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
-msgid "Not a valid Directory"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordRestore.php:14
-msgid "Email"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordRestore.php:36
-msgid "Reset password"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
-msgid "Plan type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
-msgid "Billing cycle:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
-msgid "Payment method:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
-msgid "PayPal"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
-msgid "Credit Card via 2Checkout"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:213
-#, php-format
-msgid "The year %s must be within the range of 1753 - 9999"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:216
-#, php-format
-msgid "%s-%s-%s is not a valid date"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:240
-#, php-format
-msgid "%s:%s:%s is not a valid time"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:55
-msgid "Upload some tracks below to add them to your library!"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:57
-#, php-format
-msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:63
-msgid "Click the 'New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:65
-#, php-format
-msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:73
-msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:75
-#, php-format
-msgid ""
-"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
-" %sCreate an unlinked show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:80
-msgid "To start broadcasting, click on the current show and select 'Schedule Show'"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:82
-#, php-format
-msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:89
-msgid "Click on the show starting next and select 'Schedule Show'"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:91
-#, php-format
-msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+#: airtime_mvc/application/controllers/ApiController.php:791
+msgid "Bad request. 'mode' parameter is invalid"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:30
@@ -2905,11 +558,6 @@ msgstr ""
msgid "You can only add tracks to smart blocks."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:50
-#: airtime_mvc/application/controllers/PlaylistController.php:180
-msgid "You can only add tracks, smart blocks, and webstreams to playlists."
-msgstr ""
-
#: airtime_mvc/application/controllers/LocaleController.php:53
msgid "Please select a cursor position on timeline."
msgstr ""
@@ -2950,11 +598,6 @@ msgstr ""
msgid "Click 'New' to create one."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:66
-#: airtime_mvc/application/controllers/LibraryController.php:123
-msgid "Edit Metadata"
-msgstr ""
-
#: airtime_mvc/application/controllers/LocaleController.php:67
msgid "Add to selected show"
msgstr ""
@@ -2983,6 +626,12 @@ msgstr ""
msgid "Scheduled"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:74
+#: airtime_mvc/application/layouts/scripts/layout.phtml:78
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
+msgid "Tracks"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:75
#: airtime_mvc/application/layouts/scripts/layout.phtml:60
msgid "Playlist"
@@ -2992,18 +641,96 @@ msgstr ""
msgid "Bit Rate"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:80
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
+#: airtime_mvc/application/models/Block.php:1354
+msgid "BPM"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:84
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
+#: airtime_mvc/application/models/Block.php:1361
+msgid "Encoded By"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:89
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
+#: airtime_mvc/application/models/Block.php:1367
+msgid "Last Modified"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:90
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
+#: airtime_mvc/application/models/Block.php:1368
+msgid "Last Played"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
+#: airtime_mvc/application/models/Block.php:1370
+msgid "Mime"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:94
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
+#: airtime_mvc/application/models/Block.php:1372
+msgid "Owner"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:95
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
+#: airtime_mvc/application/models/Block.php:1373
+msgid "Replay Gain"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:96
msgid "Sample Rate"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:97
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
+#: airtime_mvc/application/models/Block.php:1376
+msgid "Track Number"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:98
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
+#: airtime_mvc/application/models/Block.php:1377
+msgid "Uploaded"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:99
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
+#: airtime_mvc/application/models/Block.php:1378
+msgid "Website"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:101
msgid "Loading..."
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:102
+#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
+msgid "All"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:103
msgid "Files"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:104
+#: airtime_mvc/application/layouts/scripts/layout.phtml:80
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
+msgid "Playlists"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:105
+#: airtime_mvc/application/layouts/scripts/layout.phtml:82
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
+msgid "Smart Blocks"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:106
msgid "Web Streams"
msgstr ""
@@ -3148,6 +875,74 @@ msgstr ""
msgid "Processing..."
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:151
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
+#: airtime_mvc/application/models/Block.php:1383
+msgid "Select modifier"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:152
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
+#: airtime_mvc/application/models/Block.php:1384
+msgid "contains"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:153
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
+#: airtime_mvc/application/models/Block.php:1385
+msgid "does not contain"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:154
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
+#: airtime_mvc/application/models/Block.php:1386
+#: airtime_mvc/application/models/Block.php:1390
+msgid "is"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:155
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
+#: airtime_mvc/application/models/Block.php:1387
+#: airtime_mvc/application/models/Block.php:1391
+msgid "is not"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:156
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
+#: airtime_mvc/application/models/Block.php:1388
+msgid "starts with"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:157
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
+#: airtime_mvc/application/models/Block.php:1389
+msgid "ends with"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:158
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
+#: airtime_mvc/application/models/Block.php:1392
+msgid "is greater than"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:159
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
+#: airtime_mvc/application/models/Block.php:1393
+msgid "is less than"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:160
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
+#: airtime_mvc/application/models/Block.php:1394
+msgid "is in the range"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:162
msgid "Choose Storage Folder"
msgstr ""
@@ -3162,6 +957,11 @@ msgid ""
"This will remove the files from your Airtime library!"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:166
+#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
+msgid "Manage Media Folders"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:167
msgid "Are you sure you want to remove the watched folder?"
msgstr ""
@@ -3183,6 +983,11 @@ msgstr ""
msgid "The stream is disabled"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:173
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
+msgid "Getting information from the server..."
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:174
msgid "Can not connect to the streaming server"
msgstr ""
@@ -3410,6 +1215,76 @@ msgstr ""
msgid "Month"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:249
+#: airtime_mvc/application/forms/GeneralPreferences.php:158
+msgid "Sunday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:250
+#: airtime_mvc/application/forms/GeneralPreferences.php:159
+msgid "Monday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:251
+#: airtime_mvc/application/forms/GeneralPreferences.php:160
+msgid "Tuesday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:252
+#: airtime_mvc/application/forms/GeneralPreferences.php:161
+msgid "Wednesday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:253
+#: airtime_mvc/application/forms/GeneralPreferences.php:162
+msgid "Thursday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:254
+#: airtime_mvc/application/forms/GeneralPreferences.php:163
+msgid "Friday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:255
+#: airtime_mvc/application/forms/GeneralPreferences.php:164
+msgid "Saturday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:256
+#: airtime_mvc/application/forms/AddShowRepeats.php:35
+msgid "Sun"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:257
+#: airtime_mvc/application/forms/AddShowRepeats.php:36
+msgid "Mon"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:258
+#: airtime_mvc/application/forms/AddShowRepeats.php:37
+msgid "Tue"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:259
+#: airtime_mvc/application/forms/AddShowRepeats.php:38
+msgid "Wed"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:260
+#: airtime_mvc/application/forms/AddShowRepeats.php:39
+msgid "Thu"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:261
+#: airtime_mvc/application/forms/AddShowRepeats.php:40
+msgid "Fri"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:262
+#: airtime_mvc/application/forms/AddShowRepeats.php:41
+msgid "Sat"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:263
msgid "Shows longer than their scheduled time will be cut off by a following show."
msgstr ""
@@ -3419,7 +1294,7 @@ msgid "Cancel Current Show?"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:265
-#: airtime_mvc/application/controllers/LocaleController.php:309
+#: airtime_mvc/application/controllers/LocaleController.php:312
msgid "Stop recording current show?"
msgstr ""
@@ -3439,6 +1314,11 @@ msgstr ""
msgid "Delete selected item(s)?"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:273
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
+msgid "Start"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:274
msgid "End"
msgstr ""
@@ -3447,580 +1327,467 @@ msgstr ""
msgid "Duration"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:283
+#: airtime_mvc/application/controllers/LocaleController.php:276
+msgid "Filtering out "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:277
+msgid " of "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:278
+msgid " records"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/layouts/scripts/layout.phtml:140
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
+#: airtime_mvc/application/models/Block.php:1358
+msgid "Cue In"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/layouts/scripts/layout.phtml:147
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
+#: airtime_mvc/application/models/Block.php:1359
+msgid "Cue Out"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:286
#: airtime_mvc/application/layouts/scripts/layout.phtml:167
msgid "Fade In"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/controllers/LocaleController.php:287
#: airtime_mvc/application/layouts/scripts/layout.phtml:168
msgid "Fade Out"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/controllers/LocaleController.php:288
msgid "Show Empty"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:286
+#: airtime_mvc/application/controllers/LocaleController.php:289
msgid "Recording From Line In"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:287
+#: airtime_mvc/application/controllers/LocaleController.php:290
msgid "Track preview"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:291
+#: airtime_mvc/application/controllers/LocaleController.php:294
msgid "Cannot schedule outside a show."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:292
+#: airtime_mvc/application/controllers/LocaleController.php:295
msgid "Moving 1 Item"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:293
+#: airtime_mvc/application/controllers/LocaleController.php:296
#, php-format
msgid "Moving %s Items"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:296
-msgid "Fade Editor"
-msgstr ""
-
#: airtime_mvc/application/controllers/LocaleController.php:297
-msgid "Cue Editor"
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
+#: airtime_mvc/application/forms/Preferences.php:40
+#: airtime_mvc/application/forms/EditHistory.php:131
+#: airtime_mvc/application/forms/AddUser.php:110
+#: airtime_mvc/application/forms/PasswordChange.php:43
+#: airtime_mvc/application/forms/SupportSettings.php:131
+msgid "Save"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:298
-msgid "Waveform features are available in a browser supporting the Web Audio API"
+#: airtime_mvc/application/controllers/LocaleController.php:321
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
+#: airtime_mvc/application/forms/EditHistory.php:141
+#: airtime_mvc/application/forms/EditAudioMD.php:186
+msgid "Cancel"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:299
+msgid "Fade Editor"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:300
+msgid "Cue Editor"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:301
-msgid "Select all"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LocaleController.php:302
-msgid "Select none"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LocaleController.php:303
-msgid "Trim overbooked shows"
+msgid "Waveform features are available in a browser supporting the Web Audio API"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:304
-msgid "Remove selected scheduled items"
+msgid "Select all"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:305
-msgid "Jump to the current playing track"
+msgid "Select none"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:306
+msgid "Trim overbooked shows"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:307
+msgid "Remove selected scheduled items"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:308
+msgid "Jump to the current playing track"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:309
msgid "Cancel current show"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:311
+#: airtime_mvc/application/controllers/LocaleController.php:314
msgid "Open library to add or remove content"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:312
+#: airtime_mvc/application/controllers/LocaleController.php:315
msgid "Add / Remove Content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:317
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
+msgid "in use"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:318
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
+msgid "Disk"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:320
msgid "Look in"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:319
+#: airtime_mvc/application/controllers/LocaleController.php:322
msgid "Open"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:324
+#: airtime_mvc/application/forms/AddUser.php:102
+msgid "Admin"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:325
-msgid "Guests can do the following:"
+#: airtime_mvc/application/forms/AddUser.php:100
+msgid "DJ"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:326
-msgid "View schedule"
+#: airtime_mvc/application/forms/AddUser.php:101
+msgid "Program Manager"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:327
-msgid "View show content"
+#: airtime_mvc/application/forms/AddUser.php:99
+msgid "Guest"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:328
-msgid "DJs can do the following:"
+msgid "Guests can do the following:"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:329
-msgid "Manage assigned show content"
+msgid "View schedule"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:330
-msgid "Import media files"
+msgid "View show content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:331
-msgid "Create playlists, smart blocks, and webstreams"
+msgid "DJs can do the following:"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:332
-msgid "Manage their own library content"
+msgid "Manage assigned show content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:333
-msgid "Progam Managers can do the following:"
+msgid "Import media files"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:334
-msgid "View and manage show content"
+msgid "Create playlists, smart blocks, and webstreams"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:335
-msgid "Schedule shows"
+msgid "Manage their own library content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:336
-msgid "Manage all library content"
+msgid "Progam Managers can do the following:"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:337
-msgid "Admins can do the following:"
+msgid "View and manage show content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:338
-msgid "Manage preferences"
+msgid "Schedule shows"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:339
-msgid "Manage users"
+msgid "Manage all library content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:340
-msgid "Manage watched folders"
+msgid "Admins can do the following:"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:341
+msgid "Manage preferences"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:342
-msgid "View system status"
+msgid "Manage users"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:343
-msgid "Access playout history"
+msgid "Manage watched folders"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:344
-msgid "View listener stats"
+#: airtime_mvc/application/forms/RegisterAirtime.php:116
+#: airtime_mvc/application/forms/SupportSettings.php:98
+msgid "Send support feedback"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:345
+msgid "View system status"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:346
-msgid "Show / hide columns"
+msgid "Access playout history"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:348
-msgid "From {from} to {to}"
+#: airtime_mvc/application/controllers/LocaleController.php:347
+msgid "View listener stats"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:349
-msgid "kbps"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LocaleController.php:350
-msgid "yyyy-mm-dd"
+msgid "Show / hide columns"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:351
-msgid "hh:mm:ss.t"
+msgid "From {from} to {to}"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:352
-msgid "kHz"
+msgid "kbps"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:353
+msgid "yyyy-mm-dd"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:354
+msgid "hh:mm:ss.t"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:355
-msgid "Su"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LocaleController.php:356
-msgid "Mo"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LocaleController.php:357
-msgid "Tu"
+msgid "kHz"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:358
-msgid "We"
+msgid "Su"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:359
-msgid "Th"
+msgid "Mo"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:360
-msgid "Fr"
+msgid "Tu"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:361
-msgid "Sa"
+msgid "We"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:362
+msgid "Th"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:363
+msgid "Fr"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:364
-msgid "Hour"
+msgid "Sa"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
+msgid "Close"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:367
+msgid "Hour"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:368
msgid "Minute"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:366
+#: airtime_mvc/application/controllers/LocaleController.php:369
msgid "Done"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:369
+#: airtime_mvc/application/controllers/LocaleController.php:372
msgid "Select files"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:370
-#: airtime_mvc/application/controllers/LocaleController.php:371
+#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:374
msgid "Add files to the upload queue and click the start button."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:372
-#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:376
msgid "Status"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:374
+#: airtime_mvc/application/controllers/LocaleController.php:377
msgid "Add Files"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:378
msgid "Stop Upload"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:376
+#: airtime_mvc/application/controllers/LocaleController.php:379
msgid "Start upload"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:377
+#: airtime_mvc/application/controllers/LocaleController.php:380
msgid "Add files"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:378
+#: airtime_mvc/application/controllers/LocaleController.php:381
#, php-format
msgid "Uploaded %d/%d files"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:379
+#: airtime_mvc/application/controllers/LocaleController.php:382
msgid "N/A"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:380
+#: airtime_mvc/application/controllers/LocaleController.php:383
msgid "Drag files here."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:381
+#: airtime_mvc/application/controllers/LocaleController.php:384
msgid "File extension error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:382
+#: airtime_mvc/application/controllers/LocaleController.php:385
msgid "File size error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:383
+#: airtime_mvc/application/controllers/LocaleController.php:386
msgid "File count error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:384
+#: airtime_mvc/application/controllers/LocaleController.php:387
msgid "Init error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:385
+#: airtime_mvc/application/controllers/LocaleController.php:388
msgid "HTTP Error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:386
+#: airtime_mvc/application/controllers/LocaleController.php:389
msgid "Security error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:387
+#: airtime_mvc/application/controllers/LocaleController.php:390
msgid "Generic error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:388
+#: airtime_mvc/application/controllers/LocaleController.php:391
msgid "IO error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:389
+#: airtime_mvc/application/controllers/LocaleController.php:392
#, php-format
msgid "File: %s"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:391
+#: airtime_mvc/application/controllers/LocaleController.php:394
#, php-format
msgid "%d files queued"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:392
+#: airtime_mvc/application/controllers/LocaleController.php:395
msgid "File: %f, size: %s, max file size: %m"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/controllers/LocaleController.php:396
msgid "Upload URL might be wrong or doesn't exist"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:394
+#: airtime_mvc/application/controllers/LocaleController.php:397
msgid "Error: File too large: "
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:395
+#: airtime_mvc/application/controllers/LocaleController.php:398
msgid "Error: Invalid file extension: "
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:398
+#: airtime_mvc/application/controllers/LocaleController.php:400
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
+msgid "Set Default"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:401
msgid "Create Entry"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:399
+#: airtime_mvc/application/controllers/LocaleController.php:402
msgid "Edit History Record"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:402
+#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
+#: airtime_mvc/application/forms/EditHistoryItem.php:57
+msgid "No Show"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:405
#, php-format
msgid "Copied %s row%s to the clipboard"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/controllers/LocaleController.php:406
#, php-format
msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/controllers/LocaleController.php:407
msgid "New Show"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:405
+#: airtime_mvc/application/controllers/LocaleController.php:408
msgid "New Log Entry"
msgstr ""
-#: airtime_mvc/application/controllers/ScheduleController.php:389
-#, php-format
-msgid "Rebroadcast of show %s from %s at %s"
-msgstr ""
-
-#: airtime_mvc/application/controllers/ScheduleController.php:712
-#: airtime_mvc/application/controllers/LibraryController.php:131
-msgid "Download"
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:78
-msgid "Page not found."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:87
-msgid "The requested action is not supported."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:98
-msgid "You do not have permission to access this resource."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:109
-msgid "An internal application error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ListenerstatController.php:51
-msgid "Please make sure admin user/password is correct on System->Streams page."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:53
-#, php-format
-msgid "You are viewing an older version of %s"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:140
-msgid "You cannot add tracks to dynamic blocks."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:147
-#: airtime_mvc/application/controllers/LibraryController.php:31
-#, php-format
-msgid "%s not found"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:161
-#, php-format
-msgid "You don't have permission to delete selected %s(s)."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:168
-#: airtime_mvc/application/controllers/LibraryController.php:40
-msgid "Something went wrong."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:174
-msgid "You can only add tracks to smart block."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:192
-msgid "Untitled Playlist"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:194
-msgid "Untitled Smart Block"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:522
-msgid "Unknown Playlist"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:43
-msgid "Please enter your username and password."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:93
-msgid "Wrong username or password provided. Please try again."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:167
-msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:173
-msgid "There was a problem with the username or email address you entered."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:35
-#: airtime_mvc/application/controllers/DashboardController.php:84
-msgid "You don't have permission to disconnect source."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:37
-#: airtime_mvc/application/controllers/DashboardController.php:86
-msgid "There is no source connected to this input."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:81
-msgid "You don't have permission to switch source."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:72
-msgid "Preferences updated."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:115
-msgid "Support setting updated."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:123
-msgid "Support Feedback"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:251
-msgid "Stream Setting Updated."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:342
-msgid "path should be specified"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:437
-msgid "Problem with Liquidsoap..."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:493
-msgid "Request method not accepted"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:86
-msgid "User added successfully!"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:88
-msgid "User updated successfully!"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:187
-msgid "Settings updated successfully!"
-msgstr ""
-
-#: airtime_mvc/application/controllers/WebstreamController.php:28
-#: airtime_mvc/application/controllers/WebstreamController.php:32
-msgid "Untitled Webstream"
-msgstr ""
-
-#: airtime_mvc/application/controllers/WebstreamController.php:150
-msgid "Webstream saved."
-msgstr ""
-
-#: airtime_mvc/application/controllers/WebstreamController.php:158
-msgid "Invalid form values."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:95
-#: airtime_mvc/application/controllers/ShowbuilderController.php:136
-msgid "Preview"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:115
-#: airtime_mvc/application/controllers/LibraryController.php:177
-#: airtime_mvc/application/controllers/LibraryController.php:200
-msgid "Add to Playlist"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:117
-msgid "Add to Smart Block"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:147
-msgid "View track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:148
-msgid "Remove track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:154
-#: airtime_mvc/application/controllers/LibraryController.php:159
-msgid "Upload track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:169
-msgid "Duplicate Playlist"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:213
-msgid "No action available"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:233
-msgid "You don't have permission to delete selected items."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:279
-msgid "Could not delete file because it is scheduled in the future."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:282
-msgid "Could not delete file(s)."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:322
-#, php-format
-msgid "Copy of %s"
-msgstr ""
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
-msgid ""
-"To configure and use the embeddable player you must:
\n"
-" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
-" 2. Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
-msgid ""
-"To use the embeddable weekly schedule widget you must:
\n"
-" Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
#: airtime_mvc/application/controllers/ShowbuilderController.php:138
msgid "Select cursor"
msgstr ""
@@ -4033,37 +1800,76 @@ msgstr ""
msgid "show does not exist"
msgstr ""
-#: airtime_mvc/application/controllers/ApiController.php:79
-msgid "You are not allowed to access this resource."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ApiController.php:244
-#: airtime_mvc/application/controllers/ApiController.php:317
-#: airtime_mvc/application/controllers/ApiController.php:392
-#: airtime_mvc/application/controllers/ApiController.php:435
-#: airtime_mvc/application/controllers/ApiController.php:474
-#: airtime_mvc/application/controllers/ApiController.php:507
-msgid "You are not allowed to access this resource. "
-msgstr ""
-
-#: airtime_mvc/application/controllers/ApiController.php:698
-#: airtime_mvc/application/controllers/ApiController.php:718
-#: airtime_mvc/application/controllers/ApiController.php:730
+#: airtime_mvc/application/controllers/ScheduleController.php:389
#, php-format
-msgid "File does not exist in %s"
+msgid "Rebroadcast of show %s from %s at %s"
msgstr ""
-#: airtime_mvc/application/controllers/ApiController.php:781
-msgid "Bad request. no 'mode' parameter passed."
+#: airtime_mvc/application/common/UsabilityHints.php:55
+msgid "Upload some tracks below to add them to your library!"
msgstr ""
-#: airtime_mvc/application/controllers/ApiController.php:791
-msgid "Bad request. 'mode' parameter is invalid"
-msgstr ""
-
-#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#: airtime_mvc/application/common/UsabilityHints.php:57
#, php-format
-msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:63
+msgid "Click the 'New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:65
+#, php-format
+msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:73
+msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:75
+#, php-format
+msgid ""
+"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
+" %sCreate an unlinked show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:80
+msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:82
+#, php-format
+msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:89
+msgid "Click on the show starting next and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:91
+#, php-format
+msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/DateHelper.php:213
+#, php-format
+msgid "The year %s must be within the range of 1753 - 9999"
+msgstr ""
+
+#: airtime_mvc/application/common/DateHelper.php:216
+#, php-format
+msgid "%s-%s-%s is not a valid date"
+msgstr ""
+
+#: airtime_mvc/application/common/DateHelper.php:240
+#, php-format
+msgid "%s:%s:%s is not a valid time"
+msgstr ""
+
+#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
+msgid "Live stream"
msgstr ""
#: airtime_mvc/application/layouts/scripts/layout.phtml:63
@@ -4078,6 +1884,17 @@ msgstr ""
msgid "Upload"
msgstr ""
+#: airtime_mvc/application/layouts/scripts/layout.phtml:76
+#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
+msgid "Dashboard"
+msgstr ""
+
+#: airtime_mvc/application/layouts/scripts/layout.phtml:84
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
+msgid "Webstreams"
+msgstr ""
+
#: airtime_mvc/application/layouts/scripts/layout.phtml:135
#: airtime_mvc/application/layouts/scripts/layout.phtml:161
msgid "Play"
@@ -4099,3 +1916,2124 @@ msgstr ""
#: airtime_mvc/application/layouts/scripts/layout.phtml:166
msgid "Cursor"
msgstr ""
+
+#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#, php-format
+msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
+msgid "Drop files here or click to browse your computer."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
+msgid "Failed"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
+msgid "Pending"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
+msgid "Recent Uploads"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
+msgid "Share"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
+msgid "Select stream:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
+msgid "mute"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
+msgid "unmute"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
+msgid "About"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
+#, php-format
+msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
+#, php-format
+msgid "%1$s %2$s is distributed under the %3$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
+#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
+#, php-format
+msgid "Welcome to %s!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
+#, php-format
+msgid "Here's how you can get started using %s to automate your broadcasts: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
+msgid "Upload audio tracks"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
+msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
+msgid "Schedule a show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
+msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
+msgid "Add tracks to your show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
+msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
+msgid "Now you're good to go!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
+#, php-format
+msgid "For more detailed help, read the %suser manual%s."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
+#: airtime_mvc/application/configs/navigation.php:40
+msgid "Weekly Schedule"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
+#: airtime_mvc/application/forms/Player.php:77
+msgid "Preview:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
+#: airtime_mvc/application/configs/navigation.php:34
+msgid "Player"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:97
+msgid "Playout History"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
+msgid "Log Sheet"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
+msgid "File Summary"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
+msgid "Show Summary"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
+msgid "Expand Static Block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
+msgid "Expand Dynamic Block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
+msgid "Choose some search criteria above and click Generate to create this playlist."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
+msgid "A track list will be generated when you schedule this smart block into a show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
+msgid "Drag tracks here from your library to add them to the playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
+msgid "Editing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:26
+msgid "Name:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
+#: airtime_mvc/application/forms/AddShowWhat.php:54
+msgid "Description:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
+#: airtime_mvc/application/forms/AddShowWhen.php:89
+msgid "Duration:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
+msgid "Toggle Details"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+msgid "Shuffle playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
+msgid "Shuffle"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
+msgid "Playlist crossfade"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+msgid "Empty playlist content"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Clear"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+msgid "Fade in: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "Fade out: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+msgid "Save playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
+msgid "No open playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
+msgid "Show Waveform"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "(ss.t)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Remove all content from this smart block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
+msgid "No smart block currently open"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+msgid "Cue In: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "(hh:mm:ss.t)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "Cue Out: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
+msgid "Original Length:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:56
+msgid "General"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
+msgid "Stream Settings"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
+msgid "Global"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
+msgid "dB"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
+msgid "Output Streams"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:3
+#: airtime_mvc/application/forms/Login.php:83
+msgid "Login"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:7
+#, php-format
+msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
+msgid "Email Sent!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
+msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
+msgid "Back"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
+msgid "Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
+msgid "New password"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
+msgid "Please enter and confirm your new password in the fields below."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
+msgid "Manage Users"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
+msgid "New User"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
+msgid "id"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
+#: airtime_mvc/application/forms/PasswordRestore.php:25
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
+msgid "Username"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
+msgid "First Name"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
+msgid "Last Name"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
+msgid "User Type"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
+#, php-format
+msgid "Super Admin details can be changed in your Billing Settings."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
+msgid "Find Shows"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
+msgid "Choose Show Instance"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
+msgid "Find"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
+#: airtime_mvc/application/configs/navigation.php:61
+msgid "My Profile"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
+#, php-format
+msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
+msgid "Repeat Days:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
+#: airtime_mvc/application/forms/GeneralPreferences.php:53
+#: airtime_mvc/application/forms/AddShowStyle.php:64
+msgid "Remove"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
+msgid "Add"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
+msgid "Show Source"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
+msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
+msgid "Register Airtime"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
+#, php-format
+msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
+#, php-format
+msgid "Click the box below to promote your station on %s."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
+msgid "(Required)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
+msgid "(for verification purposes only, will not be published)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
+#: airtime_mvc/application/forms/GeneralPreferences.php:43
+msgid "Note: Anything larger than 600x600 will be resized."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
+msgid "Show me what I am sending "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
+msgid "Terms and Conditions"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
+msgid "Choose Days:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
+msgid "Search Criteria:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
+msgid "New Criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
+msgid "or"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
+msgid "and"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
+msgid "New Modifier"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
+msgid " to "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
+msgid "files meet the criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
+msgid "file meets the criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
+msgid "Filter History"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/login.phtml:41
+msgid "Forgot your password?"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
+msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
+msgid "Stream "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
+msgid "Additional Options"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
+msgid "The following info will be displayed to listeners in their media player:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
+msgid "(Your radio station website)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
+msgid "Stream URL: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
+msgid "Choose folder"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
+msgid "Set"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
+msgid "Current Import Folder:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
+#, php-format
+msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
+msgid "Remove watched directory"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
+msgid "You are not watching any media folders."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
+msgid "Live Broadcasting"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
+msgid "Master Source"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
+msgid "Use these settings in your broadcasting software to stream live at any time."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
+msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
+msgid "TuneIn Settings"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
+msgid "SoundCloud Settings"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
+msgid "Dangerous Options"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Add this show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Update show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
+msgid "What"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
+msgid "When"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
+msgid "Live Stream Input"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
+msgid "Who"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
+msgid "Style"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
+msgid "Disk Space"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:3
+msgid "File import in progress..."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:10
+#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
+msgid "Advanced Search Options"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
+#: airtime_mvc/application/forms/EditAudioMD.php:24
+#: airtime_mvc/application/forms/Player.php:15
+msgid "Title:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
+#: airtime_mvc/application/forms/EditAudioMD.php:34
+msgid "Creator:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
+#: airtime_mvc/application/forms/EditAudioMD.php:44
+msgid "Album:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
+msgid "Track:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
+msgid "Length:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
+msgid "Sample Rate:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
+msgid "Bit Rate:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
+#: airtime_mvc/application/forms/EditAudioMD.php:115
+msgid "Mood:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:45
+#: airtime_mvc/application/forms/EditAudioMD.php:62
+msgid "Genre:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
+#: airtime_mvc/application/forms/EditAudioMD.php:72
+msgid "Year:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
+#: airtime_mvc/application/forms/EditAudioMD.php:85
+msgid "Label:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
+#: airtime_mvc/application/forms/EditAudioMD.php:125
+msgid "BPM:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
+#: airtime_mvc/application/forms/EditAudioMD.php:95
+msgid "Composer:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
+#: airtime_mvc/application/forms/EditAudioMD.php:105
+msgid "Conductor:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
+#: airtime_mvc/application/forms/EditAudioMD.php:135
+msgid "Copyright:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
+msgid "Isrc Number:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
+#: airtime_mvc/application/forms/EditAudioMD.php:155
+msgid "Website:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
+#: airtime_mvc/application/forms/EditAudioMD.php:165
+#: airtime_mvc/application/forms/EditUser.php:119
+#: airtime_mvc/application/forms/Login.php:68
+msgid "Language:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
+msgid "File Path:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
+msgid "Web Stream"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
+msgid "Dynamic Smart Block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
+msgid "Static Smart Block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
+msgid "Audio Track"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
+msgid "Playlist Contents: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
+msgid "Static Smart Block Contents: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
+msgid "Dynamic Smart Block Criteria: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
+msgid "Limit to "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
+#: airtime_mvc/application/forms/AddShowWhat.php:36
+msgid "URL:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
+msgid "Viewing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
+msgid "Listeners"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
+msgid "Stream Data Collection Status"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
+msgid "Your trial expires in"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
+msgid "days"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
+msgid "Previous:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
+msgid "Next:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
+msgid "Source Streams"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
+msgid "ON AIR"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
+msgid "Listen"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
+msgid "Logout"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
+msgid "Playout History Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
+msgid "Log Sheet Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
+msgid "New Log Sheet Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
+msgid "No Log Sheet Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
+msgid "File Summary Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
+msgid "New File Summary Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
+msgid "No File Summary Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
+msgid "Creating File Summary Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
+msgid "Creating Log Sheet Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
+msgid "Name"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
+msgid "Add more elements"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
+msgid "Add New Field"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
+msgid "Set Default Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
+msgid "Description"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
+msgid "Stream URL:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
+msgid "Default Length:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
+msgid "No webstream"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
+#: airtime_mvc/application/views/scripts/error/error.phtml:6
+msgid "An error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
+msgid "Access Denied!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
+msgid "You do not have permission to access this page!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
+#: airtime_mvc/application/views/scripts/error/error.phtml:14
+#: airtime_mvc/application/configs/navigation.php:143
+msgid "Help"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
+msgid "Oops!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
+msgid "Something went wrong!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
+msgid "Bad Request!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
+msgid "The requested action is not supported!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
+msgid "Page not found!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
+msgid "We couldn't find the page you were looking for."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error.phtml:12
+msgid "Looks like the page you were looking for doesn't exist!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
+msgid "previous"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
+msgid "play"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
+msgid "pause"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
+msgid "next"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
+msgid "stop"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
+msgid "max volume"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
+msgid "Update Required"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
+#, php-format
+msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
+msgid "Plan type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
+msgid "Billing cycle:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
+msgid "Payment method:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
+msgid "PayPal"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
+msgid "Credit Card via 2Checkout"
+msgstr ""
+
+#: airtime_mvc/application/forms/DateRange.php:16
+#: airtime_mvc/application/forms/ShowBuilder.php:18
+msgid "Date Start:"
+msgstr ""
+
+#: airtime_mvc/application/forms/DateRange.php:35
+#: airtime_mvc/application/forms/DateRange.php:63
+#: airtime_mvc/application/forms/ShowBuilder.php:37
+#: airtime_mvc/application/forms/ShowBuilder.php:65
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
+msgid "Invalid character entered"
+msgstr ""
+
+#: airtime_mvc/application/forms/DateRange.php:44
+#: airtime_mvc/application/forms/ShowBuilder.php:46
+#: airtime_mvc/application/forms/AddShowRepeats.php:56
+msgid "Date End:"
+msgstr ""
+
+#: airtime_mvc/application/forms/ShowBuilder.php:72
+#: airtime_mvc/application/forms/ShowBuilder.php:88
+msgid "Filter by Show"
+msgstr ""
+
+#: airtime_mvc/application/forms/ShowBuilder.php:80
+msgid "All My Shows:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWho.php:10
+msgid "Search Users:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWho.php:24
+msgid "DJs:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:30
+#: airtime_mvc/application/forms/GeneralPreferences.php:25
+#: airtime_mvc/application/forms/SupportSettings.php:18
+msgid "Station Name"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:39
+#: airtime_mvc/application/forms/SupportSettings.php:31
+msgid "Phone:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:51
+#: airtime_mvc/application/forms/AddUser.php:67
+#: airtime_mvc/application/forms/EditUser.php:83
+#: airtime_mvc/application/forms/SupportSettings.php:43
+msgid "Email:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:62
+#: airtime_mvc/application/forms/SupportSettings.php:54
+msgid "Station Web Site:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:73
+#: airtime_mvc/application/forms/SupportSettings.php:65
+msgid "Country:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:84
+#: airtime_mvc/application/forms/SupportSettings.php:76
+msgid "City:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:96
+#: airtime_mvc/application/forms/SupportSettings.php:88
+msgid "Station Description:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:106
+#: airtime_mvc/application/forms/GeneralPreferences.php:42
+msgid "Station Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:126
+#: airtime_mvc/application/forms/SupportSettings.php:108
+#, php-format
+msgid "Promote my station on %s"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:151
+#: airtime_mvc/application/forms/SupportSettings.php:120
+#, php-format
+msgid "By checking this box, I agree to %s's %sprivacy policy%s."
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:169
+#: airtime_mvc/application/forms/SupportSettings.php:143
+msgid "You have to agree to privacy policy."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRR.php:10
+msgid "Record from Line In?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRR.php:16
+msgid "Rebroadcast?"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
+#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
+msgid "Value is required and can't be empty"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
+msgid "'%value%' is no valid email address in the basic format local-part@hostname"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
+msgid "'%value%' does not fit the date format '%format%'"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
+msgid "'%value%' is less than %min% characters long"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
+msgid "'%value%' is more than %max% characters long"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
+msgid "'%value%' is not between '%min%' and '%max%', inclusively"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
+msgid "Passwords do not match"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
+msgid "Day must be specified"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
+msgid "Time must be specified"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
+msgid "Must wait at least 1 hour to rebroadcast"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordRestore.php:14
+msgid "Email"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordRestore.php:36
+msgid "Reset password"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhat.php:30
+msgid "Untitled Show"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhat.php:69
+msgid "Instance Description:"
+msgstr ""
+
+#: airtime_mvc/application/forms/DangerousPreferences.php:12
+msgid "Delete All Tracks in Library"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditAudioMD.php:145
+msgid "ISRC Number:"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditAudioMD.php:176
+msgid "OK"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:33
+msgid "Station Description"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:62
+msgid "Default Crossfade Duration (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:68
+#: airtime_mvc/application/forms/GeneralPreferences.php:82
+#: airtime_mvc/application/forms/GeneralPreferences.php:96
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
+msgid "Please enter a time in seconds (eg. 0.5)"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:76
+msgid "Default Fade In (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:90
+msgid "Default Fade Out (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:102
+msgid "Public Airtime API"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:103
+msgid "Required for embeddable schedule widget."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:105
+msgid "Disabled"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:106
+msgid "Enabled"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:109
+msgid ""
+"Enabling this feature will allow Airtime to provide schedule data\n"
+" to external widgets that can be embedded in your website."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:120
+msgid "Default Language"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:127
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
+msgid "Station Timezone"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:134
+msgid "Week Starts On"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:150
+msgid "Display login button on your Radio Page?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:29
+#: airtime_mvc/application/forms/EditUser.php:37
+#: airtime_mvc/application/forms/Login.php:41
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
+msgid "Username:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:38
+#: airtime_mvc/application/forms/EditUser.php:48
+#: airtime_mvc/application/forms/Login.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
+msgid "Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:46
+#: airtime_mvc/application/forms/EditUser.php:57
+msgid "Verify Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:55
+#: airtime_mvc/application/forms/EditUser.php:67
+msgid "Firstname:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:61
+#: airtime_mvc/application/forms/EditUser.php:75
+msgid "Lastname:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:76
+#: airtime_mvc/application/forms/EditUser.php:94
+msgid "Mobile Phone:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:82
+#: airtime_mvc/application/forms/EditUser.php:102
+msgid "Skype:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:88
+#: airtime_mvc/application/forms/EditUser.php:110
+msgid "Jabber:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:95
+msgid "User Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:120
+#: airtime_mvc/application/forms/EditUser.php:155
+msgid "Login name is not unique."
+msgstr ""
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
+msgid "Import Folder:"
+msgstr ""
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
+msgid "Watched Folders:"
+msgstr ""
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
+msgid "Not a valid Directory"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:126
+msgid "What is the name of your favorite childhood friend?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:127
+msgid "What school did you attend for sixth grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:128
+msgid "In what city did you meet your spouse/significant other?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:129
+msgid "What street did you live on in third grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:130
+msgid "What is the first name of the boy or girl that you first kissed?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:131
+msgid "In what city or town was your first job?"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
+msgid "Default License:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
+msgid "All rights are reserved"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
+msgid "The work is in the public domain"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
+msgid "Creative Commons Attribution"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
+msgid "Creative Commons Attribution Noncommercial"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
+msgid "Creative Commons Attribution No Derivative Works"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
+msgid "Creative Commons Attribution Share Alike"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
+msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
+msgid "Creative Commons Attribution Noncommercial Share Alike"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
+msgid "Default Sharing Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
+msgid "Public"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
+msgid "Private"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditUser.php:129
+msgid "Interface Timezone:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:14
+msgid "Now Playing"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:25
+msgid "Select Stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:28
+msgid "Auto detect the most appropriate stream to use."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:29
+msgid "Select a stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:41
+msgid " - Mobile friendly"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:45
+msgid " - The player does not support Opus streams."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:71
+msgid "Embeddable code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:72
+msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
+#: airtime_mvc/application/models/Block.php:1351
+msgid "Select criteria"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
+#: airtime_mvc/application/models/Block.php:1353
+msgid "Bit Rate (Kbps)"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
+#: airtime_mvc/application/models/Block.php:1374
+msgid "Sample Rate (kHz)"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
+msgid "hours"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
+msgid "minutes"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
+#: airtime_mvc/application/models/Block.php:333
+msgid "items"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
+msgid "Randomly"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
+msgid "Newest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
+msgid "Oldest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
+msgid "Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
+msgid "Static"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
+msgid "Dynamic"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
+msgid "Allow Repeated Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
+msgid "Sort Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
+msgid "Limit to:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
+msgid "Generate playlist content and save criteria"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
+msgid "Generate"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
+msgid "Shuffle playlist content"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
+msgid "Limit cannot be empty or smaller than 0"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
+msgid "Limit cannot be more than 24 hrs"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
+msgid "The value should be an integer"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
+msgid "500 is the max item limit value you can set"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
+msgid "You must select Criteria and Modifier"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
+msgid "'Length' should be in '00:00:00' format"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
+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:594
+msgid "The value has to be numeric"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
+msgid "The value should be less then 2147483648"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
+#, php-format
+msgid "The value should be less than %s characters"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
+msgid "Value cannot be empty"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:26
+msgid "Icecast Vorbis Metadata"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:36
+msgid "Stream Label:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:37
+msgid "Artist - Title"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:38
+msgid "Show - Artist - Title"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:39
+msgid "Station name - Show name"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:45
+msgid "Off Air Metadata"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:51
+msgid "Enable Replay Gain"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:57
+msgid "Replay Gain Modifier"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:65
+msgid "Streaming Server:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Airtime Pro Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Custom / 3rd Party Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordChange.php:17
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
+msgid "Password"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordChange.php:28
+msgid "Confirm new password"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordChange.php:36
+msgid "Password confirmation does not match your password."
+msgstr ""
+
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
+msgid "Station Language"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
+msgid "Enabled:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
+msgid "Mobile:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
+msgid "Stream Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
+msgid "Service Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
+msgid "Channels:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "1 - Mono"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "2 - Stereo"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
+msgid "Server"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
+msgid "Port"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
+msgid "Only numbers are allowed."
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
+msgid "URL"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
+msgid "Mount Point"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
+msgid "Admin User"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
+msgid "Admin Password"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
+msgid "Server cannot be empty."
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
+msgid "Port cannot be empty."
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
+msgid "Mount cannot be empty with Icecast server."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:16
+msgid "'%value%' does not fit the time format 'HH:mm'"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:22
+msgid "Start Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:37
+msgid "In the Future:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:64
+msgid "End Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:98
+msgid "Timezone:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:107
+msgid "Repeats?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:139
+msgid "Cannot create show in the past"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:147
+msgid "Cannot modify start date/time of the show that is already started"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:156
+#: airtime_mvc/application/models/Show.php:282
+msgid "End date/time cannot be in the past"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:164
+msgid "Cannot have duration < 0m"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:168
+msgid "Cannot have duration 00h 00m"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:175
+msgid "Cannot have duration greater than 24h"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:19
+msgid "Push metadata to your station on TuneIn?"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:24
+msgid "Station ID:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:30
+msgid "Partner Key:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:36
+msgid "Partner Id:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:77
+#: airtime_mvc/application/forms/TuneInPreferences.php:86
+msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:10
+#, php-format
+msgid "Use %s Authentication:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:16
+msgid "Use Custom Authentication:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:25
+msgid "Custom Username"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:37
+msgid "Custom Password"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:48
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
+msgid "Host:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
+msgid "Port:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:60
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
+msgid "Mount:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:77
+msgid "Username field cannot be empty."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:82
+msgid "Password field cannot be empty."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:12
+msgid "Background Colour:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:31
+msgid "Text Colour:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:49
+msgid "Current Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:72
+msgid "Show Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:87
+msgid "Logo Preview:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Login.php:102
+msgid "Type the characters you see in the picture below."
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
+msgid "Auto Switch Off:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
+msgid "Auto Switch On:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
+msgid "Switch Transition Fade (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:10
+msgid "Link:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:16
+msgid "Repeat Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:19
+msgid "weekly"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:20
+msgid "every 2 weeks"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:21
+msgid "every 3 weeks"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:22
+msgid "every 4 weeks"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:23
+msgid "monthly"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:32
+msgid "Select Days:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:47
+msgid "Repeat By:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the month"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the week"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:69
+msgid "No End?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:106
+msgid "End date must be after start date"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:113
+msgid "Please select a repeat day"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:12
+msgid "Radio Page"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:19
+msgid "Calendar"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:26
+msgid "Widgets"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:48
+msgid "Settings"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:67
+msgid "Users"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:74
+msgid "Streams"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:82
+msgid "Analytics"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:90
+msgid "Listener Stats"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:104
+msgid "History Templates"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:113
+msgid "Billing"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:120
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:127
+msgid "Account Details"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:134
+msgid "View Invoices"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:150
+msgid "Getting Started"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:157
+msgid "FAQ"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:162
+msgid "User Manual"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:167
+msgid "File a Support Ticket"
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:833
+#: airtime_mvc/application/models/Playlist.php:812
+msgid "Cue in and cue out are null."
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:868
+#: airtime_mvc/application/models/Block.php:924
+#: airtime_mvc/application/models/Playlist.php:851
+#: airtime_mvc/application/models/Playlist.php:895
+msgid "Can't set cue out to be greater than file length."
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:879
+#: airtime_mvc/application/models/Block.php:900
+#: airtime_mvc/application/models/Playlist.php:843
+#: airtime_mvc/application/models/Playlist.php:868
+msgid "Can't set cue in to be larger than cue out."
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:935
+#: airtime_mvc/application/models/Playlist.php:887
+msgid "Can't set cue out to be smaller than cue in."
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:1366
+msgid "Upload Time"
+msgstr ""
+
+#: airtime_mvc/application/models/ShowBuilder.php:212
+#, php-format
+msgid "Rebroadcast of %s from %s"
+msgstr ""
+
+#: airtime_mvc/application/models/Preference.php:460
+#, php-format
+msgid "Powered by %s"
+msgstr ""
+
+#: airtime_mvc/application/models/Preference.php:588
+msgid "Select Country"
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:160
+#, php-format
+msgid "%s is already watched."
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:164
+#, php-format
+msgid "%s contains nested watched directory: %s"
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:168
+#, php-format
+msgid "%s is nested within existing watched directory: %s"
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:189
+#: airtime_mvc/application/models/MusicDir.php:370
+#, php-format
+msgid "%s is not a valid directory."
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:232
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list"
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:388
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list."
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:431
+#, php-format
+msgid "%s doesn't exist in the watched list."
+msgstr ""
+
+#: airtime_mvc/application/models/Auth.php:33
+#, php-format
+msgid ""
+"Hi %s, \n"
+"\n"
+"Please click this link to reset your password: "
+msgstr ""
+
+#: airtime_mvc/application/models/Auth.php:38
+#, php-format
+msgid "%s Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/models/Show.php:184
+msgid "Shows can have a max length of 24 hours."
+msgstr ""
+
+#: airtime_mvc/application/models/Show.php:293
+msgid ""
+"Cannot schedule overlapping shows.\n"
+"Note: Resizing a repeating show affects all of its repeats."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:73
+msgid "Cannot move items out of linked shows"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:119
+msgid "The schedule you're viewing is out of date! (sched mismatch)"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:124
+msgid "The schedule you're viewing is out of date! (instance mismatch)"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:132
+#: airtime_mvc/application/models/Scheduler.php:458
+#: airtime_mvc/application/models/Scheduler.php:490
+msgid "The schedule you're viewing is out of date!"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:142
+#, php-format
+msgid "You are not allowed to schedule show %s."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:146
+msgid "You cannot add files to recording shows."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:152
+#, php-format
+msgid "The show %s is over and cannot be scheduled."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:159
+#, php-format
+msgid "The show %s has been previously updated!"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:178
+msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:195
+msgid "Cannot schedule a playlist that contains missing files."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:216
+#: airtime_mvc/application/models/Scheduler.php:305
+msgid "A selected File does not exist!"
+msgstr ""
+
+#: airtime_mvc/application/models/Schedule.php:206
+msgid "livestream"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:166
+msgid "Length needs to be greater than 0 minutes"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:171
+msgid "Length should be of form \"00h 00m\""
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:184
+msgid "URL should be of form \"http://domain\""
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:187
+msgid "URL should be 512 characters or less"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:193
+msgid "No MIME type found for webstream."
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:209
+msgid "Webstream name cannot be empty"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:278
+msgid "Could not parse XSPF playlist"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:298
+msgid "Could not parse PLS playlist"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:318
+msgid "Could not parse M3U playlist"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:332
+msgid "Invalid webstream - This appears to be a file download."
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:336
+#, php-format
+msgid "Unrecognized stream type: %s"
+msgstr ""
+
+#: airtime_mvc/public/setup/rabbitmq-setup.php:78
+msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
+msgstr ""
diff --git a/airtime_mvc/locale/az/LC_MESSAGES/pro.po b/airtime_mvc/locale/az/LC_MESSAGES/pro.po
index 866ee0acb..f59b52c3d 100644
--- a/airtime_mvc/locale/az/LC_MESSAGES/pro.po
+++ b/airtime_mvc/locale/az/LC_MESSAGES/pro.po
@@ -1,3 +1,139 @@
+#: airtime_mvc/application/controllers/LoginController.php:170
+#, php-format
+msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
+#, php-format
+msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
+#, php-format
+msgid "If you are the primary owner of this station, please reset your password here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
+msgid "Thank you!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
+msgid "Your station has been upgraded successfully."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
+msgid "Return to Airtime"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+#, php-format
+msgid "Purchase an %s plan!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+msgid "My Account"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
+msgid "Upgrade today to get more listeners and storage space!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
+msgid "View Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:257
+msgid "Your Current Plan:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:291
+msgid "Please enter your payment details:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
+msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
+msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:17
+msgid "First Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:26
+msgid "Last Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:35
+msgid "Company Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:44
+msgid "Email Address:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:54
+msgid "Address 1:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:63
+msgid "Address 2:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:70
+msgid "City:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:80
+msgid "State/Region:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:89
+msgid "Zip Code / Postal Code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:102
+msgid "Country:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:112
+msgid "Phone Number:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:121
+msgid "Please choose a security question:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:135
+msgid "Please enter an answer:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:152
+msgid "VAT/Tax ID (EU only)"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:162
+msgid "Subscribe to Sourcefabric newsletter"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:172
+msgid "Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:181
+msgid "Verify Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:193
+msgid "Save"
+msgstr ""
+
#: airtime_mvc/application/models/Auth.php:35
#, php-format
msgid ""
@@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
-msgid "Thank you!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
-msgid "Your station has been upgraded successfully."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
-msgid "Return to Airtime"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
-#, php-format
-msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
-msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
-msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
-#, php-format
-msgid "If you are the primary owner of this station, please reset your password here."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:170
-#, php-format
-msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
-msgstr ""
diff --git a/airtime_mvc/locale/cs_CZ/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/cs_CZ/LC_MESSAGES/airtime.mo
index 136931f64..cdd0269be 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 1d21bf067..2a6287a37 100644
--- a/airtime_mvc/locale/cs_CZ/LC_MESSAGES/airtime.po
+++ b/airtime_mvc/locale/cs_CZ/LC_MESSAGES/airtime.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Airtime\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-09-03 10:24-0400\n"
-"PO-Revision-Date: 2015-05-21 14:19+0000\n"
-"Last-Translator: Iva Heilova \n"
+"POT-Creation-Date: 2015-09-04 11:17-0400\n"
+"PO-Revision-Date: 2015-09-04 08:15+0000\n"
+"Last-Translator: Daniel James \n"
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/sourcefabric/airtime/language/cs_CZ/)\n"
"Language: cs_CZ\n"
"MIME-Version: 1.0\n"
@@ -19,132 +19,6 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-#: airtime_mvc/public/setup/rabbitmq-setup.php:78
-msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1117
-#: airtime_mvc/application/services/HistoryService.php:1157
-#: airtime_mvc/application/services/HistoryService.php:1174
-#: airtime_mvc/application/models/Block.php:1375
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
-#: airtime_mvc/application/controllers/LocaleController.php:76
-msgid "Title"
-msgstr "Název"
-
-#: airtime_mvc/application/services/HistoryService.php:1118
-#: airtime_mvc/application/services/HistoryService.php:1158
-#: airtime_mvc/application/services/HistoryService.php:1175
-#: airtime_mvc/application/models/Block.php:1360
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
-#: airtime_mvc/application/controllers/LocaleController.php:77
-msgid "Creator"
-msgstr "Tvůrce"
-
-#: airtime_mvc/application/services/HistoryService.php:1119
-#: airtime_mvc/application/models/Block.php:1352
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
-#: airtime_mvc/application/controllers/LocaleController.php:78
-msgid "Album"
-msgstr "Album"
-
-#: airtime_mvc/application/services/HistoryService.php:1120
-#: airtime_mvc/application/services/HistoryService.php:1177
-#: airtime_mvc/application/models/Block.php:1369
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
-#: airtime_mvc/application/controllers/LocaleController.php:91
-msgid "Length"
-msgstr "Délka"
-
-#: airtime_mvc/application/services/HistoryService.php:1121
-#: airtime_mvc/application/models/Block.php:1362
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
-#: airtime_mvc/application/controllers/LocaleController.php:85
-msgid "Genre"
-msgstr "Žánr"
-
-#: airtime_mvc/application/services/HistoryService.php:1122
-#: airtime_mvc/application/models/Block.php:1371
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
-#: airtime_mvc/application/controllers/LocaleController.php:93
-msgid "Mood"
-msgstr "Nálada"
-
-#: airtime_mvc/application/services/HistoryService.php:1123
-#: airtime_mvc/application/models/Block.php:1364
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
-#: airtime_mvc/application/controllers/LocaleController.php:87
-msgid "Label"
-msgstr "Označení "
-
-#: airtime_mvc/application/services/HistoryService.php:1124
-#: airtime_mvc/application/services/HistoryService.php:1178
-#: airtime_mvc/application/models/Block.php:1355
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
-#: airtime_mvc/application/controllers/LocaleController.php:81
-msgid "Composer"
-msgstr "Skladatel"
-
-#: airtime_mvc/application/services/HistoryService.php:1125
-#: airtime_mvc/application/models/Block.php:1363
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
-#: airtime_mvc/application/controllers/LocaleController.php:86
-msgid "ISRC"
-msgstr "ISRC"
-
-#: airtime_mvc/application/services/HistoryService.php:1126
-#: airtime_mvc/application/services/HistoryService.php:1179
-#: airtime_mvc/application/models/Block.php:1357
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
-#: airtime_mvc/application/controllers/LocaleController.php:83
-msgid "Copyright"
-msgstr "Autorská práva"
-
-#: airtime_mvc/application/services/HistoryService.php:1127
-#: airtime_mvc/application/models/Block.php:1379
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
-#: airtime_mvc/application/controllers/LocaleController.php:100
-msgid "Year"
-msgstr "Rok "
-
-#: airtime_mvc/application/services/HistoryService.php:1128
-msgid "Track"
-msgstr "Stopa"
-
-#: airtime_mvc/application/services/HistoryService.php:1129
-#: airtime_mvc/application/models/Block.php:1356
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
-#: airtime_mvc/application/controllers/LocaleController.php:82
-msgid "Conductor"
-msgstr "Dirigent"
-
-#: airtime_mvc/application/services/HistoryService.php:1130
-#: airtime_mvc/application/models/Block.php:1365
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
-#: airtime_mvc/application/controllers/LocaleController.php:88
-msgid "Language"
-msgstr "Jazyk"
-
-#: airtime_mvc/application/services/HistoryService.php:1155
-#: airtime_mvc/application/forms/EditHistoryItem.php:32
-msgid "Start Time"
-msgstr "Čas začátku"
-
-#: airtime_mvc/application/services/HistoryService.php:1156
-#: airtime_mvc/application/forms/EditHistoryItem.php:44
-msgid "End Time"
-msgstr "Čas konce"
-
-#: airtime_mvc/application/services/HistoryService.php:1176
-msgid "Played"
-msgstr "Přehráno"
-
#: airtime_mvc/application/services/CalendarService.php:50
msgid "Record file doesn't exist"
msgstr "Soubor s nahrávkou neexistuje"
@@ -240,2604 +114,381 @@ msgstr "Vysílání bylo vymazáno, protože nahrané vysílání neexistuje!"
msgid "Must wait 1 hour to rebroadcast."
msgstr "Musíte počkat 1 hodinu před dalším vysíláním."
-#: airtime_mvc/application/models/Schedule.php:206
-msgid "livestream"
+#: airtime_mvc/application/services/HistoryService.php:1117
+#: airtime_mvc/application/services/HistoryService.php:1157
+#: airtime_mvc/application/services/HistoryService.php:1174
+#: airtime_mvc/application/controllers/LocaleController.php:76
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
+#: airtime_mvc/application/models/Block.php:1375
+msgid "Title"
+msgstr "Název"
+
+#: airtime_mvc/application/services/HistoryService.php:1118
+#: airtime_mvc/application/services/HistoryService.php:1158
+#: airtime_mvc/application/services/HistoryService.php:1175
+#: airtime_mvc/application/controllers/LocaleController.php:77
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
+#: airtime_mvc/application/models/Block.php:1360
+msgid "Creator"
+msgstr "Tvůrce"
+
+#: airtime_mvc/application/services/HistoryService.php:1119
+#: airtime_mvc/application/controllers/LocaleController.php:78
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
+#: airtime_mvc/application/models/Block.php:1352
+msgid "Album"
+msgstr "Album"
+
+#: airtime_mvc/application/services/HistoryService.php:1120
+#: airtime_mvc/application/services/HistoryService.php:1177
+#: airtime_mvc/application/controllers/LocaleController.php:91
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
+#: airtime_mvc/application/models/Block.php:1369
+msgid "Length"
+msgstr "Délka"
+
+#: airtime_mvc/application/services/HistoryService.php:1121
+#: airtime_mvc/application/controllers/LocaleController.php:85
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
+#: airtime_mvc/application/models/Block.php:1362
+msgid "Genre"
+msgstr "Žánr"
+
+#: airtime_mvc/application/services/HistoryService.php:1122
+#: airtime_mvc/application/controllers/LocaleController.php:93
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
+#: airtime_mvc/application/models/Block.php:1371
+msgid "Mood"
+msgstr "Nálada"
+
+#: airtime_mvc/application/services/HistoryService.php:1123
+#: airtime_mvc/application/controllers/LocaleController.php:87
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
+#: airtime_mvc/application/models/Block.php:1364
+msgid "Label"
+msgstr "Označení "
+
+#: airtime_mvc/application/services/HistoryService.php:1124
+#: airtime_mvc/application/services/HistoryService.php:1178
+#: airtime_mvc/application/controllers/LocaleController.php:81
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
+#: airtime_mvc/application/models/Block.php:1355
+msgid "Composer"
+msgstr "Skladatel"
+
+#: airtime_mvc/application/services/HistoryService.php:1125
+#: airtime_mvc/application/controllers/LocaleController.php:86
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
+#: airtime_mvc/application/models/Block.php:1363
+msgid "ISRC"
+msgstr "ISRC"
+
+#: airtime_mvc/application/services/HistoryService.php:1126
+#: airtime_mvc/application/services/HistoryService.php:1179
+#: airtime_mvc/application/controllers/LocaleController.php:83
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
+#: airtime_mvc/application/models/Block.php:1357
+msgid "Copyright"
+msgstr "Autorská práva"
+
+#: airtime_mvc/application/services/HistoryService.php:1127
+#: airtime_mvc/application/controllers/LocaleController.php:100
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
+#: airtime_mvc/application/models/Block.php:1379
+msgid "Year"
+msgstr "Rok "
+
+#: airtime_mvc/application/services/HistoryService.php:1128
+msgid "Track"
+msgstr "Stopa"
+
+#: airtime_mvc/application/services/HistoryService.php:1129
+#: airtime_mvc/application/controllers/LocaleController.php:82
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
+#: airtime_mvc/application/models/Block.php:1356
+msgid "Conductor"
+msgstr "Dirigent"
+
+#: airtime_mvc/application/services/HistoryService.php:1130
+#: airtime_mvc/application/controllers/LocaleController.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
+#: airtime_mvc/application/models/Block.php:1365
+msgid "Language"
+msgstr "Jazyk"
+
+#: airtime_mvc/application/services/HistoryService.php:1155
+#: airtime_mvc/application/forms/EditHistoryItem.php:32
+msgid "Start Time"
+msgstr "Čas začátku"
+
+#: airtime_mvc/application/services/HistoryService.php:1156
+#: airtime_mvc/application/forms/EditHistoryItem.php:44
+msgid "End Time"
+msgstr "Čas konce"
+
+#: airtime_mvc/application/services/HistoryService.php:1176
+msgid "Played"
+msgstr "Přehráno"
+
+#: airtime_mvc/application/controllers/LibraryController.php:31
+#: airtime_mvc/application/controllers/PlaylistController.php:147
+#, php-format
+msgid "%s not found"
+msgstr "%s nenalezen"
+
+#: airtime_mvc/application/controllers/LibraryController.php:40
+#: airtime_mvc/application/controllers/PlaylistController.php:168
+msgid "Something went wrong."
+msgstr "Něco je špatně."
+
+#: airtime_mvc/application/controllers/LibraryController.php:95
+#: airtime_mvc/application/controllers/ShowbuilderController.php:136
+msgid "Preview"
+msgstr "Náhled"
+
+#: airtime_mvc/application/controllers/LibraryController.php:115
+#: airtime_mvc/application/controllers/LibraryController.php:177
+#: airtime_mvc/application/controllers/LibraryController.php:200
+msgid "Add to Playlist"
+msgstr "Přidat do Playlistu"
+
+#: airtime_mvc/application/controllers/LibraryController.php:117
+msgid "Add to Smart Block"
+msgstr "Přidat do chytrého bloku"
+
+#: airtime_mvc/application/controllers/LibraryController.php:123
+#: airtime_mvc/application/controllers/LocaleController.php:66
+msgid "Edit Metadata"
+msgstr "Upravit metadata"
+
+#: airtime_mvc/application/controllers/LibraryController.php:131
+#: airtime_mvc/application/controllers/ScheduleController.php:712
+msgid "Download"
+msgstr "Stáhnout"
+
+#: airtime_mvc/application/controllers/LibraryController.php:147
+msgid "View track"
msgstr ""
-#: airtime_mvc/application/models/ShowBuilder.php:212
-#, php-format
-msgid "Rebroadcast of %s from %s"
-msgstr "Znovu odvysílat %s od %s"
-
-#: airtime_mvc/application/models/Webstream.php:166
-msgid "Length needs to be greater than 0 minutes"
-msgstr "Délka musí být větší než 0 minut"
-
-#: airtime_mvc/application/models/Webstream.php:171
-msgid "Length should be of form \"00h 00m\""
-msgstr "Délka by měla mít tvar \"00h 00m\""
-
-#: airtime_mvc/application/models/Webstream.php:184
-msgid "URL should be of form \"http://domain\""
-msgstr "URL by měla mít tvar \"http://domain\""
-
-#: airtime_mvc/application/models/Webstream.php:187
-msgid "URL should be 512 characters or less"
-msgstr "URL by měla mít 512 znaků nebo méně"
-
-#: airtime_mvc/application/models/Webstream.php:193
-msgid "No MIME type found for webstream."
-msgstr "Nenalezen žádný MIME typ pro webstream."
-
-#: airtime_mvc/application/models/Webstream.php:209
-msgid "Webstream name cannot be empty"
-msgstr "Název webstreamu nemůže být prázdný"
-
-#: airtime_mvc/application/models/Webstream.php:278
-msgid "Could not parse XSPF playlist"
-msgstr "Nelze zpracovat XSPF playlist"
-
-#: airtime_mvc/application/models/Webstream.php:298
-msgid "Could not parse PLS playlist"
-msgstr "Nelze zpracovat PLS playlist"
-
-#: airtime_mvc/application/models/Webstream.php:318
-msgid "Could not parse M3U playlist"
-msgstr "Nelze zpracovat M3U playlist"
-
-#: airtime_mvc/application/models/Webstream.php:332
-msgid "Invalid webstream - This appears to be a file download."
-msgstr "Neplatný webstream - tento vypadá jako stažení souboru."
-
-#: airtime_mvc/application/models/Webstream.php:336
-#, php-format
-msgid "Unrecognized stream type: %s"
-msgstr "Neznámý typ streamu: %s"
-
-#: airtime_mvc/application/models/Preference.php:460
-#, php-format
-msgid "Powered by %s"
+#: airtime_mvc/application/controllers/LibraryController.php:148
+msgid "Remove track"
msgstr ""
-#: airtime_mvc/application/models/Preference.php:588
-msgid "Select Country"
-msgstr "Vyberte zemi"
+#: airtime_mvc/application/controllers/LibraryController.php:154
+#: airtime_mvc/application/controllers/LibraryController.php:159
+msgid "Upload track"
+msgstr ""
-#: airtime_mvc/application/models/MusicDir.php:160
+#: airtime_mvc/application/controllers/LibraryController.php:169
+msgid "Duplicate Playlist"
+msgstr "Duplikátní Playlist"
+
+#: airtime_mvc/application/controllers/LibraryController.php:213
+msgid "No action available"
+msgstr "Žádná akce není k dispozici"
+
+#: airtime_mvc/application/controllers/LibraryController.php:233
+msgid "You don't have permission to delete selected items."
+msgstr "Nemáte oprávnění odstranit vybrané položky."
+
+#: airtime_mvc/application/controllers/LibraryController.php:279
+msgid "Could not delete file because it is scheduled in the future."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:282
+msgid "Could not delete file(s)."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:322
#, php-format
-msgid "%s is already watched."
-msgstr "%s je již sledován."
+msgid "Copy of %s"
+msgstr "Kopie %s"
-#: airtime_mvc/application/models/MusicDir.php:164
-#, php-format
-msgid "%s contains nested watched directory: %s"
-msgstr "%s obsahuje vložený sledovaný adresář: %s"
+#: airtime_mvc/application/controllers/WebstreamController.php:28
+#: airtime_mvc/application/controllers/WebstreamController.php:32
+msgid "Untitled Webstream"
+msgstr "Webstream bez názvu"
-#: airtime_mvc/application/models/MusicDir.php:168
-#, php-format
-msgid "%s is nested within existing watched directory: %s"
-msgstr "%s je vložený do stávajícího sledovaného adresáře: %s"
+#: airtime_mvc/application/controllers/WebstreamController.php:150
+msgid "Webstream saved."
+msgstr "Webstream uložen."
-#: airtime_mvc/application/models/MusicDir.php:189
-#: airtime_mvc/application/models/MusicDir.php:370
-#, php-format
-msgid "%s is not a valid directory."
-msgstr "%s není platný adresář."
+#: airtime_mvc/application/controllers/WebstreamController.php:158
+msgid "Invalid form values."
+msgstr "Neplatná forma hodnot."
-#: airtime_mvc/application/models/MusicDir.php:232
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list"
-msgstr "%s je již nastaveno jako aktuální uložiště adresáře nebo ve sledovaném seznamu souborů."
-
-#: airtime_mvc/application/models/MusicDir.php:388
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list."
-msgstr "%s je již nastaven jako aktuální adresář úložiště nebo v seznamu sledovaných složek."
-
-#: airtime_mvc/application/models/MusicDir.php:431
-#, php-format
-msgid "%s doesn't exist in the watched list."
-msgstr "%s neexistuje v seznamu sledovaných."
-
-#: airtime_mvc/application/models/Show.php:184
-msgid "Shows can have a max length of 24 hours."
-msgstr "Vysílání může mít max. délku 24 hodin."
-
-#: airtime_mvc/application/models/Show.php:282
-#: airtime_mvc/application/forms/AddShowWhen.php:156
-msgid "End date/time cannot be in the past"
-msgstr "Datum/čas ukončení nemůže být v minulosti"
-
-#: airtime_mvc/application/models/Show.php:293
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
msgid ""
-"Cannot schedule overlapping shows.\n"
-"Note: Resizing a repeating show affects all of its repeats."
+"To configure and use the embeddable player you must:
\n"
+" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
+" 2. Enable the Public Airtime API under System -> Preferences"
msgstr ""
-"Nelze naplánovat překrývající se vysílání.\n"
-"Poznámka:. Změna velikosti opakujícího se vysílání ovlivňuje všechny opakování tohoto vysílání."
-#: airtime_mvc/application/models/Auth.php:33
-#, php-format
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
msgid ""
-"Hi %s, \n"
-"\n"
-"Please click this link to reset your password: "
+"To use the embeddable weekly schedule widget you must:
\n"
+" Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/models/Auth.php:38
+#: airtime_mvc/application/controllers/ListenerstatController.php:51
+msgid "Please make sure admin user/password is correct on System->Streams page."
+msgstr "Zkontrolujte prosím zda je správné administrátorské jméno/heslo v Systému->Streamovací stránka."
+
+#: airtime_mvc/application/controllers/UserController.php:86
+msgid "User added successfully!"
+msgstr "Uživatel byl úspěšně přidán!"
+
+#: airtime_mvc/application/controllers/UserController.php:88
+msgid "User updated successfully!"
+msgstr "Uživatel byl úspěšně aktualizován!"
+
+#: airtime_mvc/application/controllers/UserController.php:187
+msgid "Settings updated successfully!"
+msgstr "Nastavení úspěšně aktualizováno!"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:53
#, php-format
-msgid "%s Password Reset"
-msgstr "%s Heslo onboveno"
+msgid "You are viewing an older version of %s"
+msgstr "Prohlížíte si starší verzi %s"
-#: airtime_mvc/application/models/Block.php:333
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
-msgid "items"
-msgstr "položka"
+#: airtime_mvc/application/controllers/PlaylistController.php:140
+msgid "You cannot add tracks to dynamic blocks."
+msgstr "Nemůžete přidávat skladby do dynamických bloků."
-#: airtime_mvc/application/models/Block.php:833
-#: airtime_mvc/application/models/Playlist.php:812
-msgid "Cue in and cue out are null."
-msgstr "Cue in a cue out jsou prázné."
-
-#: airtime_mvc/application/models/Block.php:868
-#: airtime_mvc/application/models/Block.php:924
-#: airtime_mvc/application/models/Playlist.php:851
-#: airtime_mvc/application/models/Playlist.php:895
-msgid "Can't set cue out to be greater than file length."
-msgstr "Nelze nastavit delší cue out než je délka souboru."
-
-#: airtime_mvc/application/models/Block.php:879
-#: airtime_mvc/application/models/Block.php:900
-#: airtime_mvc/application/models/Playlist.php:843
-#: airtime_mvc/application/models/Playlist.php:868
-msgid "Can't set cue in to be larger than cue out."
-msgstr "Nelze nastavit větší cue in než cue out."
-
-#: airtime_mvc/application/models/Block.php:935
-#: airtime_mvc/application/models/Playlist.php:887
-msgid "Can't set cue out to be smaller than cue in."
-msgstr "Nelze nastavit menší cue out než je cue in."
-
-#: airtime_mvc/application/models/Block.php:1351
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
-msgid "Select criteria"
-msgstr "Vyberte kritéria"
-
-#: airtime_mvc/application/models/Block.php:1353
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
-msgid "Bit Rate (Kbps)"
-msgstr "Kvalita (Kbps)"
-
-#: airtime_mvc/application/models/Block.php:1354
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
-#: airtime_mvc/application/controllers/LocaleController.php:80
-msgid "BPM"
-msgstr "BPM"
-
-#: airtime_mvc/application/models/Block.php:1358
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
-#: airtime_mvc/application/controllers/LocaleController.php:281
-#: airtime_mvc/application/layouts/scripts/layout.phtml:140
-msgid "Cue In"
-msgstr "Cue in"
-
-#: airtime_mvc/application/models/Block.php:1359
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:282
-#: airtime_mvc/application/layouts/scripts/layout.phtml:147
-msgid "Cue Out"
-msgstr "Cue out"
-
-#: airtime_mvc/application/models/Block.php:1361
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
-#: airtime_mvc/application/controllers/LocaleController.php:84
-msgid "Encoded By"
-msgstr "Zakódováno"
-
-#: airtime_mvc/application/models/Block.php:1366
-msgid "Upload Time"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1367
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
-#: airtime_mvc/application/controllers/LocaleController.php:89
-msgid "Last Modified"
-msgstr "Naposledy změněno"
-
-#: airtime_mvc/application/models/Block.php:1368
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
-#: airtime_mvc/application/controllers/LocaleController.php:90
-msgid "Last Played"
-msgstr "Naposledy vysíláno"
-
-#: airtime_mvc/application/models/Block.php:1370
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
-#: airtime_mvc/application/controllers/LocaleController.php:92
-msgid "Mime"
-msgstr "Mime"
-
-#: airtime_mvc/application/models/Block.php:1372
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
-#: airtime_mvc/application/controllers/LocaleController.php:94
-msgid "Owner"
-msgstr "Vlastník"
-
-#: airtime_mvc/application/models/Block.php:1373
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
-#: airtime_mvc/application/controllers/LocaleController.php:95
-msgid "Replay Gain"
-msgstr "Opakovat Gain"
-
-#: airtime_mvc/application/models/Block.php:1374
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
-msgid "Sample Rate (kHz)"
-msgstr "Vzorkovací frekvence (kHz)"
-
-#: airtime_mvc/application/models/Block.php:1376
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
-#: airtime_mvc/application/controllers/LocaleController.php:97
-msgid "Track Number"
-msgstr "Číslo stopy"
-
-#: airtime_mvc/application/models/Block.php:1377
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
-#: airtime_mvc/application/controllers/LocaleController.php:98
-msgid "Uploaded"
-msgstr "Nahráno"
-
-#: airtime_mvc/application/models/Block.php:1378
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
-#: airtime_mvc/application/controllers/LocaleController.php:99
-msgid "Website"
-msgstr "Internetové stránky"
-
-#: airtime_mvc/application/models/Block.php:1383
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
-#: airtime_mvc/application/controllers/LocaleController.php:151
-msgid "Select modifier"
-msgstr "Vyberte modifikátor"
-
-#: airtime_mvc/application/models/Block.php:1384
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
-#: airtime_mvc/application/controllers/LocaleController.php:152
-msgid "contains"
-msgstr "obsahuje"
-
-#: airtime_mvc/application/models/Block.php:1385
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
-#: airtime_mvc/application/controllers/LocaleController.php:153
-msgid "does not contain"
-msgstr "neobsahuje"
-
-#: airtime_mvc/application/models/Block.php:1386
-#: airtime_mvc/application/models/Block.php:1390
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
-#: airtime_mvc/application/controllers/LocaleController.php:154
-msgid "is"
-msgstr "je"
-
-#: airtime_mvc/application/models/Block.php:1387
-#: airtime_mvc/application/models/Block.php:1391
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
-#: airtime_mvc/application/controllers/LocaleController.php:155
-msgid "is not"
-msgstr "není"
-
-#: airtime_mvc/application/models/Block.php:1388
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
-#: airtime_mvc/application/controllers/LocaleController.php:156
-msgid "starts with"
-msgstr "začíná s"
-
-#: airtime_mvc/application/models/Block.php:1389
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
-#: airtime_mvc/application/controllers/LocaleController.php:157
-msgid "ends with"
-msgstr "končí s"
-
-#: airtime_mvc/application/models/Block.php:1392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
-#: airtime_mvc/application/controllers/LocaleController.php:158
-msgid "is greater than"
-msgstr "je větší než"
-
-#: airtime_mvc/application/models/Block.php:1393
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
-#: airtime_mvc/application/controllers/LocaleController.php:159
-msgid "is less than"
-msgstr "je menší než"
-
-#: airtime_mvc/application/models/Block.php:1394
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
-#: airtime_mvc/application/controllers/LocaleController.php:160
-msgid "is in the range"
-msgstr "se pohybuje v rozmezí"
-
-#: airtime_mvc/application/models/Scheduler.php:73
-msgid "Cannot move items out of linked shows"
-msgstr "Nemůže přesunout položky z linkovaných vysílání"
-
-#: airtime_mvc/application/models/Scheduler.php:119
-msgid "The schedule you're viewing is out of date! (sched mismatch)"
-msgstr "Program, který si prohlížíte, je zastaralý!"
-
-#: airtime_mvc/application/models/Scheduler.php:124
-msgid "The schedule you're viewing is out of date! (instance mismatch)"
-msgstr "Program který si prohlížíte je zastaralý!"
-
-#: airtime_mvc/application/models/Scheduler.php:132
-#: airtime_mvc/application/models/Scheduler.php:458
-#: airtime_mvc/application/models/Scheduler.php:490
-msgid "The schedule you're viewing is out of date!"
-msgstr "Program který si prohlížíte je zastaralý! "
-
-#: airtime_mvc/application/models/Scheduler.php:142
+#: airtime_mvc/application/controllers/PlaylistController.php:161
#, php-format
-msgid "You are not allowed to schedule show %s."
-msgstr "Nemáte povoleno plánovat vysílání %s ."
+msgid "You don't have permission to delete selected %s(s)."
+msgstr "Nemáte oprávnění odstranit vybrané %s (s)."
-#: airtime_mvc/application/models/Scheduler.php:146
-msgid "You cannot add files to recording shows."
-msgstr "Nemůžete přidávat soubory do nahrávaného vysílání."
+#: airtime_mvc/application/controllers/PlaylistController.php:174
+msgid "You can only add tracks to smart block."
+msgstr "Můžete pouze přidat skladby do chytrého bloku."
-#: airtime_mvc/application/models/Scheduler.php:152
+#: airtime_mvc/application/controllers/PlaylistController.php:180
+#: airtime_mvc/application/controllers/LocaleController.php:50
+msgid "You can only add tracks, smart blocks, and webstreams to playlists."
+msgstr "Můžete přidat pouze skladby, chytré bloky a webstreamy do playlistů."
+
+#: airtime_mvc/application/controllers/PlaylistController.php:192
+msgid "Untitled Playlist"
+msgstr "Playlist bez názvu"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:194
+msgid "Untitled Smart Block"
+msgstr "Chytrý block bez názvu"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:522
+msgid "Unknown Playlist"
+msgstr "Neznámý Playlist"
+
+#: airtime_mvc/application/controllers/ErrorController.php:78
+msgid "Page not found."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:87
+msgid "The requested action is not supported."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:98
+msgid "You do not have permission to access this resource."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:109
+msgid "An internal application error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/controllers/Apiv2Controller.php:77
+#: airtime_mvc/application/controllers/ApiController.php:79
+msgid "You are not allowed to access this resource."
+msgstr "Nemáte udělen přístup k tomuto zdroji."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:72
+msgid "Preferences updated."
+msgstr "Preference aktualizovány."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:115
+msgid "Support setting updated."
+msgstr "Podpora nastavení aktualizována."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:123
+msgid "Support Feedback"
+msgstr "Technická podpora"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:251
+msgid "Stream Setting Updated."
+msgstr "Nastavení streamu aktualizováno."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:342
+msgid "path should be specified"
+msgstr "cesta by měla být specifikována"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:437
+msgid "Problem with Liquidsoap..."
+msgstr "Problém s Liquidsoap ..."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:493
+msgid "Request method not accepted"
+msgstr ""
+
+#: airtime_mvc/application/controllers/DashboardController.php:35
+#: airtime_mvc/application/controllers/DashboardController.php:84
+msgid "You don't have permission to disconnect source."
+msgstr "Nemáte oprávnění k odpojení zdroje."
+
+#: airtime_mvc/application/controllers/DashboardController.php:37
+#: airtime_mvc/application/controllers/DashboardController.php:86
+msgid "There is no source connected to this input."
+msgstr "Neexistuje zdroj připojený k tomuto vstupu."
+
+#: airtime_mvc/application/controllers/DashboardController.php:81
+msgid "You don't have permission to switch source."
+msgstr "Nemáte oprávnění ke změně zdroje."
+
+#: airtime_mvc/application/controllers/LoginController.php:43
+msgid "Please enter your username and password."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:93
+msgid "Wrong username or password provided. Please try again."
+msgstr "Zadali jste chybně uživatelské jméno nebo heslo. Prosím, zkuste zadat znovu."
+
+#: airtime_mvc/application/controllers/LoginController.php:167
+msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
+msgstr "E-mail se nepodařilo odeslat. Zkontrolujte nastavení poštovního serveru a ujistěte se, že byl správně nakonfigurován."
+
+#: airtime_mvc/application/controllers/LoginController.php:173
+msgid "There was a problem with the username or email address you entered."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ApiController.php:244
+#: airtime_mvc/application/controllers/ApiController.php:317
+#: airtime_mvc/application/controllers/ApiController.php:392
+#: airtime_mvc/application/controllers/ApiController.php:435
+#: airtime_mvc/application/controllers/ApiController.php:474
+#: airtime_mvc/application/controllers/ApiController.php:507
+msgid "You are not allowed to access this resource. "
+msgstr "Nemáte udělen přístup k tomuto zdroji. "
+
+#: airtime_mvc/application/controllers/ApiController.php:698
+#: airtime_mvc/application/controllers/ApiController.php:718
+#: airtime_mvc/application/controllers/ApiController.php:730
#, php-format
-msgid "The show %s is over and cannot be scheduled."
-msgstr "Vysílání %s skončilo a nemůže být nasazeno."
+msgid "File does not exist in %s"
+msgstr "Soubor neexistuje v %s"
-#: airtime_mvc/application/models/Scheduler.php:159
-#, php-format
-msgid "The show %s has been previously updated!"
-msgstr "Vysílání %s bylo již dříve aktualizováno!"
+#: airtime_mvc/application/controllers/ApiController.php:781
+msgid "Bad request. no 'mode' parameter passed."
+msgstr "Špatný požadavek. Žádný 'mode' parametr neprošel."
-#: airtime_mvc/application/models/Scheduler.php:178
-msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
-msgstr "Obsah v propojených show musí být zařazen před nebo po kterémkoliv, který je vysílaný "
-
-#: airtime_mvc/application/models/Scheduler.php:195
-msgid "Cannot schedule a playlist that contains missing files."
-msgstr "Nelze naplánovat playlist, který obsahuje chybějící soubory."
-
-#: airtime_mvc/application/models/Scheduler.php:216
-#: airtime_mvc/application/models/Scheduler.php:305
-msgid "A selected File does not exist!"
-msgstr "Vybraný soubor neexistuje!"
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
-#: airtime_mvc/application/configs/navigation.php:40
-msgid "Weekly Schedule"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
-#: airtime_mvc/application/forms/Player.php:77
-msgid "Preview:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
-#: airtime_mvc/application/configs/navigation.php:34
-msgid "Player"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
-#: airtime_mvc/application/controllers/LocaleController.php:362
-#: airtime_mvc/application/controllers/LocaleController.php:390
-msgid "Close"
-msgstr "Zavřít"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Add this show"
-msgstr "Přidat toto vysílání"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Update show"
-msgstr "Aktualizace vysílání"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
-msgid "What"
-msgstr "Co"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
-msgid "When"
-msgstr "Kdy"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
-msgid "Live Stream Input"
-msgstr "Vložení Live Streamu"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
-msgid "Who"
-msgstr "Kdo"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
-msgid "Style"
-msgstr "Styl"
-
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
-#: airtime_mvc/application/controllers/LocaleController.php:273
-msgid "Start"
-msgstr "Začátek"
-
-#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
-msgid "Password Reset"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
-msgid "Email Sent!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
-msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
-msgid "Back"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
-msgid "New password"
-msgstr "Nové heslo"
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
-msgid "Please enter and confirm your new password in the fields below."
-msgstr "Prosím zadejte a potvrďte své nové heslo v políčkách níže."
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:3
-#: airtime_mvc/application/forms/Login.php:83
-msgid "Login"
-msgstr "Přihlásit"
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:7
-#, php-format
-msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
-msgstr "Vítejte v %s demo! Můžete se přihlásit přes uživatelské jméno 'admin' a heslo 'admin'."
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:97
-msgid "Playout History"
-msgstr "Historie odvysílaného"
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
-msgid "Log Sheet"
-msgstr "Přehled logu"
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
-msgid "File Summary"
-msgstr "Shrnutí souboru"
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
-msgid "Show Summary"
-msgstr "Shrnutí show"
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
-msgid "Your trial expires in"
-msgstr "Váše zkušební období vyprší "
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
-msgid "days"
-msgstr "dny"
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-#, php-format
-msgid "Purchase an %s Pro plan!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-msgid "My Account"
-msgstr "Můj účet"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
-msgid "Previous:"
-msgstr "Předchozí:"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
-msgid "Next:"
-msgstr "Další:"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
-msgid "Source Streams"
-msgstr "Zdrojové Streamy"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
-msgid "Master Source"
-msgstr "Hlavní zdroj"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
-msgid "Show Source"
-msgstr "Zobrazit zdroj"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
-msgid "ON AIR"
-msgstr "ON AIR"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
-msgid "Listen"
-msgstr "Poslech"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
-msgid "Logout"
-msgstr "Odhlásit "
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
-msgid "Drop files here or click to browse your computer."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
-#: airtime_mvc/application/controllers/LocaleController.php:314
-msgid "in use"
-msgstr "používá se"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
-#: airtime_mvc/application/controllers/LocaleController.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:401
-msgid "All"
-msgstr "Vše"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
-msgid "Failed"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
-msgid "Pending"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
-msgid "Recent Uploads"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
-#: airtime_mvc/application/configs/navigation.php:120
-msgid "Account Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
-msgid "Upgrade today to get more listeners and storage space!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
-msgid "View Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
-msgid "About"
-msgstr "O aplikaci"
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
-#, php-format
-msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
-msgstr "%1$s %2$s, open radio software pro plánování a řízení vzdálené stanice. "
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
-#, php-format
-msgid "%1$s %2$s is distributed under the %3$s"
-msgstr "%1$s %2$s je distribuován pod %3$s"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
-#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
-msgid "Live stream"
-msgstr "Live stream"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
-msgid "Share"
-msgstr "Sdílet"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
-msgid "Select stream:"
-msgstr "Vyberte stream:"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
-msgid "mute"
-msgstr "vypnout zvuk"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
-msgid "unmute"
-msgstr "zapnout zvuk"
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
-#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
-#, php-format
-msgid "Welcome to %s!"
-msgstr "Vítejte v %s!"
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
-#, php-format
-msgid "Here's how you can get started using %s to automate your broadcasts: "
-msgstr "Zde můžete vidět jak začít s používáním %s pro automatizované vysílání:"
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
-msgid "Upload audio tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
-msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
-msgid "Schedule a show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
-msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
-msgid "Add tracks to your show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
-msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
-msgid "Now you're good to go!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
-#, php-format
-msgid "For more detailed help, read the %suser manual%s."
-msgstr "Pro podrobnější nápovědu si přečtěte %suživatelský manuál%s."
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
-msgid "Listeners"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
-msgid "Stream Data Collection Status"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
-#: airtime_mvc/application/views/scripts/error/error.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
-msgid "An error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
-msgid "Access Denied!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
-msgid "You do not have permission to access this page!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
-#: airtime_mvc/application/views/scripts/error/error.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
-#: airtime_mvc/application/configs/navigation.php:143
-msgid "Help"
-msgstr "Nápověda"
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
-msgid "Page not found!"
-msgstr "Stránka nebyla nalezena!"
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
-msgid "We couldn't find the page you were looking for."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error.phtml:12
-msgid "Looks like the page you were looking for doesn't exist!"
-msgstr "Stránka, kterou hledáte, neexistuje!"
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
-msgid "Oops!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
-msgid "Something went wrong!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
-msgid "Bad Request!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
-msgid "The requested action is not supported!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
-msgid "Viewing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
-msgid "Editing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:3
-msgid "File import in progress..."
-msgstr "Probíhá importování souboru ..."
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:10
-#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
-msgid "Advanced Search Options"
-msgstr "Rozšířené možnosti hledání"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
-#: airtime_mvc/application/forms/Player.php:15
-#: airtime_mvc/application/forms/EditAudioMD.php:24
-msgid "Title:"
-msgstr "Název:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
-#: airtime_mvc/application/forms/EditAudioMD.php:34
-msgid "Creator:"
-msgstr "Tvůrce:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
-#: airtime_mvc/application/forms/EditAudioMD.php:44
-msgid "Album:"
-msgstr "Album:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
-msgid "Track:"
-msgstr "Skladba:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
-msgid "Length:"
-msgstr "Délka:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
-msgid "Sample Rate:"
-msgstr "Vzorová frekvence:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
-msgid "Bit Rate:"
-msgstr "Bit frekvence:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
-#: airtime_mvc/application/forms/EditAudioMD.php:115
-msgid "Mood:"
-msgstr "Nálada:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
-#: airtime_mvc/application/forms/EditAudioMD.php:62
-#: airtime_mvc/application/forms/AddShowWhat.php:45
-msgid "Genre:"
-msgstr "Žánr:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
-#: airtime_mvc/application/forms/EditAudioMD.php:72
-msgid "Year:"
-msgstr "Rok:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
-#: airtime_mvc/application/forms/EditAudioMD.php:85
-msgid "Label:"
-msgstr "Označení:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
-#: airtime_mvc/application/forms/EditAudioMD.php:125
-msgid "BPM:"
-msgstr "BPM:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
-#: airtime_mvc/application/forms/EditAudioMD.php:95
-msgid "Composer:"
-msgstr "Skladatel:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
-#: airtime_mvc/application/forms/EditAudioMD.php:105
-msgid "Conductor:"
-msgstr "Dirigent:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
-#: airtime_mvc/application/forms/EditAudioMD.php:135
-msgid "Copyright:"
-msgstr "Autorská práva:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
-msgid "Isrc Number:"
-msgstr "ISRC číslo"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
-#: airtime_mvc/application/forms/EditAudioMD.php:155
-msgid "Website:"
-msgstr "Internetová stránka:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
-#: airtime_mvc/application/forms/EditUser.php:119
-#: airtime_mvc/application/forms/EditAudioMD.php:165
-#: airtime_mvc/application/forms/Login.php:68
-msgid "Language:"
-msgstr "Jazyk:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
-msgid "File Path:"
-msgstr "Cesta souboru:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
-#: airtime_mvc/application/forms/AddShowWhat.php:26
-msgid "Name:"
-msgstr "Název:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
-#: airtime_mvc/application/forms/AddShowWhat.php:54
-msgid "Description:"
-msgstr "Popis:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
-msgid "Web Stream"
-msgstr "Web Stream"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
-msgid "Dynamic Smart Block"
-msgstr "Dynamický Smart Block"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
-msgid "Static Smart Block"
-msgstr "Statický Smart Block"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
-msgid "Audio Track"
-msgstr "Audio stopa"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
-msgid "Playlist Contents: "
-msgstr "Obsah Playlistu: "
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
-msgid "Static Smart Block Contents: "
-msgstr "Obsah statistického Smart Blocku: "
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
-msgid "Dynamic Smart Block Criteria: "
-msgstr "Kritéria dynamickeho Smart Blocku: "
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
-msgid "Limit to "
-msgstr "Omezit na "
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
-#: airtime_mvc/application/forms/AddShowWhat.php:36
-msgid "URL:"
-msgstr "URL"
-
-#: airtime_mvc/application/views/scripts/form/login.phtml:41
-msgid "Forgot your password?"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
-#, php-format
-msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
-#, php-format
-msgid "Click the box below to promote your station on %s."
-msgstr "Klikněte na box níže pro podporu vaší stanice na %s."
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
-msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
-msgstr "(Za účelem podpory vaší stanice musí být povolena funkce 'Zaslat Váš názor')."
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
-msgid "(Required)"
-msgstr "(Požadováno)"
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
-msgid "(for verification purposes only, will not be published)"
-msgstr "(pouze pro ověřovací účely, nebude zveřejněno)"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
-msgid "Choose folder"
-msgstr "Vyberte soubor"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
-msgid "Set"
-msgstr "Nastavit"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
-msgid "Current Import Folder:"
-msgstr "Aktuálně importovaný soubor:"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
-msgid "Add"
-msgstr "Přidat"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
-#, php-format
-msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
-msgstr "Znovu projít sledovaný adresář (Tato funkce je užitečná, pokud je síť přeplněna a nedojde k synchronizaci s %s)"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
-msgid "Remove watched directory"
-msgstr "Odebrat sledovaný adresář"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
-msgid "You are not watching any media folders."
-msgstr "Nesledujete žádné mediální soubory."
-
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
-msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
-msgid "Live Broadcasting"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
-msgid "Use these settings in your broadcasting software to stream live at any time."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
-msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
-msgid "Choose Show Instance"
-msgstr "Vybrat instanci show"
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
-#: airtime_mvc/application/forms/EditHistoryItem.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:400
-msgid "No Show"
-msgstr "Žádné vysílání"
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
-msgid "Find"
-msgstr "Najdi"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
-msgid "Choose Days:"
-msgstr "Vyberte dny:"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
-#: airtime_mvc/application/forms/AddShowStyle.php:64
-#: airtime_mvc/application/forms/GeneralPreferences.php:53
-msgid "Remove"
-msgstr "Odstranit"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
-msgid "Stream "
-msgstr "Stream "
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
-msgid "Additional Options"
-msgstr "Dodatečné možnosti"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
-msgid "The following info will be displayed to listeners in their media player:"
-msgstr "Následující informace se zobrazí u posluchačů na jejich přehrávačích:"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
-msgid "(Your radio station website)"
-msgstr "(Webová stránka vaší rádiové stanice)"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
-msgid "Stream URL: "
-msgstr "URL streamu: "
-
-#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
-msgid "Find Shows"
-msgstr "Najít vysílání"
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
-msgid "TuneIn Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
-msgid "SoundCloud Settings"
-msgstr "Nastavení SoundCloud "
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
-msgid "Dangerous Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
-msgid "Search Criteria:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
-msgid "New Criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
-msgid "or"
-msgstr "nebo"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
-msgid "and"
-msgstr "a"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
-msgid "New Modifier"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
-msgid " to "
-msgstr " do "
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
-msgid "files meet the criteria"
-msgstr "soubory splňují kritéria"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
-msgid "file meets the criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
-msgid "Filter History"
-msgstr "Filtrovat historii"
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
-#: airtime_mvc/application/configs/navigation.php:61
-msgid "My Profile"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
-#, php-format
-msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
-#: airtime_mvc/application/forms/Preferences.php:40
-#: airtime_mvc/application/forms/PasswordChange.php:43
-#: airtime_mvc/application/forms/AddUser.php:110
-#: airtime_mvc/application/forms/BillingClient.php:193
-#: airtime_mvc/application/forms/SupportSettings.php:131
-#: airtime_mvc/application/forms/EditHistory.php:131
-#: airtime_mvc/application/controllers/LocaleController.php:294
-msgid "Save"
-msgstr "Uložit"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
-msgid "Repeat Days:"
-msgstr "Opakovat dny:"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
-msgid "Register Airtime"
-msgstr "Registrovat Airtime"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
-#: airtime_mvc/application/forms/GeneralPreferences.php:43
-msgid "Note: Anything larger than 600x600 will be resized."
-msgstr "Poznámka: Cokoli většího než 600x600 bude zmenšeno."
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
-msgid "Show me what I am sending "
-msgstr "Zobrazit co posílám "
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
-msgid "Terms and Conditions"
-msgstr "Pravidla a podmínky"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
-msgid "Creating File Summary Template"
-msgstr "Vytvořit soubor přehledu nastavení"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
-msgid "Creating Log Sheet Template"
-msgstr "Vytvořit vzor přehledu logů"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
-msgid "Name"
-msgstr "Jméno"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
-msgid "Add more elements"
-msgstr "Přidat elementy"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
-msgid "Add New Field"
-msgstr "Přidat nové pole"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
-msgid "Set Default Template"
-msgstr "Nastavit defolní šablnu"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
-msgid "Playout History Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
-msgid "Log Sheet Templates"
-msgstr "Vzory přehledu logů"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
-msgid "New Log Sheet Template"
-msgstr "Nový vzor přehledu logů"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
-msgid "No Log Sheet Templates"
-msgstr "Vzory přehledu logů nejsou"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
-#: airtime_mvc/application/controllers/LocaleController.php:397
-msgid "Set Default"
-msgstr "Nastavit jako default"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
-msgid "File Summary Templates"
-msgstr "Vzory přehledu souboru"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
-msgid "New File Summary Template"
-msgstr "Nový vzor přehledu souboru"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
-msgid "No File Summary Templates"
-msgstr "Nový vzor přehledu souboru"
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
-msgid "Disk Space"
-msgstr "Velikost disku"
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
-#: airtime_mvc/application/controllers/LocaleController.php:315
-msgid "Disk"
-msgstr "Disk"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
-#: airtime_mvc/application/forms/AddShowWhen.php:89
-msgid "Duration:"
-msgstr "Doba trvání:"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
-msgid "Toggle Details"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
-msgid "Playlist crossfade"
-msgstr "Playlist crossfade"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-msgid "Remove all content from this smart block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Clear"
-msgstr "Vymazat"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "Fade in: "
-msgstr "Zesílit: "
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "(ss.t)"
-msgstr "(ss.t)"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-msgid "Fade out: "
-msgstr "Zeslabit: "
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
-#: airtime_mvc/application/forms/EditAudioMD.php:186
-#: airtime_mvc/application/forms/EditHistory.php:141
-#: airtime_mvc/application/controllers/LocaleController.php:295
-#: airtime_mvc/application/controllers/LocaleController.php:318
-msgid "Cancel"
-msgstr "Zrušit"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
-msgid "No smart block currently open"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
-msgid "Show Waveform"
-msgstr "UKázat Waveform"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-msgid "Cue In: "
-msgstr "Cue in: "
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "(hh:mm:ss.t)"
-msgstr "(hh:mm:ss.t)"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "Cue Out: "
-msgstr "Cue out: "
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
-msgid "Original Length:"
-msgstr "Původní délka:"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
-msgid "Expand Static Block"
-msgstr "Rozšířit statický blok"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
-msgid "Expand Dynamic Block"
-msgstr "Rozšířit dynamický blok"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
-msgid "Choose some search criteria above and click Generate to create this playlist."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
-msgid "A track list will be generated when you schedule this smart block into a show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
-msgid "Drag tracks here from your library to add them to the playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-msgid "Shuffle playlist"
-msgstr "Promíchat Playlist"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
-msgid "Shuffle"
-msgstr "Promíchat"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Empty playlist content"
-msgstr "Prázdný playlist"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-msgid "Save playlist"
-msgstr "Uložit playlist"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
-msgid "No open playlist"
-msgstr "Neotevřený playlist"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
-msgid "previous"
-msgstr "předchozí"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
-msgid "play"
-msgstr "přehrát"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
-msgid "pause"
-msgstr "pauza"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
-msgid "next"
-msgstr "další"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
-msgid "stop"
-msgstr "stop"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
-msgid "max volume"
-msgstr "max. hlasitost"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
-msgid "Update Required"
-msgstr "Nutná aktualizace"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
-#, php-format
-msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
-msgstr "Chcete-li přehrávat média, budete si muset buď nastavit svůj prohlížeč na nejnovější verzi nebo aktualizovat svůj%sFlash plugin%s."
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
-msgid "Stream Settings"
-msgstr "Nastavení Streamu"
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
-msgid "Global"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
-msgid "dB"
-msgstr "dB"
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
-msgid "Output Streams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
-#: airtime_mvc/application/controllers/LocaleController.php:166
-msgid "Manage Media Folders"
-msgstr "Správa složek médií"
-
-#: airtime_mvc/application/views/scripts/preference/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:56
-msgid "General"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
-msgid "Description"
-msgstr "Popis"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
-msgid "Stream URL:"
-msgstr "URL streamu:"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
-msgid "Default Length:"
-msgstr "Defaultní délka:"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
-msgid "No webstream"
-msgstr "Žádný webstream"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
-msgid "Manage Users"
-msgstr "Správa uživatelů"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
-msgid "New User"
-msgstr "Nový uživatel"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
-msgid "id"
-msgstr "id"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
-#: airtime_mvc/application/forms/PasswordRestore.php:25
-msgid "Username"
-msgstr "Uživatelské jméno"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
-msgid "First Name"
-msgstr "Jméno"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
-msgid "Last Name"
-msgstr "Příjmení"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
-msgid "User Type"
-msgstr "Typ uživatele"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
-#, php-format
-msgid "Super Admin details can be changed in your Billing Settings."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
-#: airtime_mvc/application/controllers/LocaleController.php:74
-#: airtime_mvc/application/layouts/scripts/layout.phtml:78
-msgid "Tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
-#: airtime_mvc/application/controllers/LocaleController.php:104
-#: airtime_mvc/application/layouts/scripts/layout.phtml:80
-msgid "Playlists"
-msgstr "Playlisty"
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
-#: airtime_mvc/application/controllers/LocaleController.php:105
-#: airtime_mvc/application/layouts/scripts/layout.phtml:82
-msgid "Smart Blocks"
-msgstr "Chytré bloky"
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
-#: airtime_mvc/application/layouts/scripts/layout.phtml:84
-msgid "Webstreams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
-#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
-#: airtime_mvc/application/layouts/scripts/layout.phtml:76
-msgid "Dashboard"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:12
-msgid "Radio Page"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:19
-msgid "Calendar"
-msgstr "Kalendář"
-
-#: airtime_mvc/application/configs/navigation.php:26
-msgid "Widgets"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:48
-msgid "Settings"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:67
-msgid "Users"
-msgstr "Uživatelé"
-
-#: airtime_mvc/application/configs/navigation.php:74
-msgid "Streams"
-msgstr "Streamy"
-
-#: airtime_mvc/application/configs/navigation.php:82
-msgid "Analytics"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:90
-msgid "Listener Stats"
-msgstr "Statistiky poslechovost"
-
-#: airtime_mvc/application/configs/navigation.php:104
-msgid "History Templates"
-msgstr "Historie nastavení"
-
-#: airtime_mvc/application/configs/navigation.php:113
-msgid "Billing"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:127
-msgid "Account Details"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:134
-msgid "View Invoices"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:150
-msgid "Getting Started"
-msgstr "Začínáme"
-
-#: airtime_mvc/application/configs/navigation.php:157
-msgid "FAQ"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:162
-msgid "User Manual"
-msgstr "Návod k obsluze"
-
-#: airtime_mvc/application/configs/navigation.php:167
-msgid "File a Support Ticket"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:12
-msgid "Background Colour:"
-msgstr "Barva pozadí:"
-
-#: airtime_mvc/application/forms/AddShowStyle.php:31
-msgid "Text Colour:"
-msgstr "Barva textu:"
-
-#: airtime_mvc/application/forms/AddShowStyle.php:49
-msgid "Current Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:72
-msgid "Show Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:87
-msgid "Logo Preview:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:19
-msgid "Push metadata to your station on TuneIn?"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:24
-msgid "Station ID:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:30
-msgid "Partner Key:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:36
-msgid "Partner Id:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:77
-#: airtime_mvc/application/forms/TuneInPreferences.php:86
-msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:14
-msgid "Now Playing"
-msgstr "Právě se přehrává"
-
-#: airtime_mvc/application/forms/Player.php:25
-msgid "Select Stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:28
-msgid "Auto detect the most appropriate stream to use."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:29
-msgid "Select a stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:41
-msgid " - Mobile friendly"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:45
-msgid " - The player does not support Opus streams."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:71
-msgid "Embeddable code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:72
-msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:37
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
-#: airtime_mvc/application/forms/Login.php:41
-#: airtime_mvc/application/forms/AddUser.php:29
-msgid "Username:"
-msgstr "Uživatelské jméno:"
-
-#: airtime_mvc/application/forms/EditUser.php:48
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
-#: airtime_mvc/application/forms/Login.php:54
-#: airtime_mvc/application/forms/AddUser.php:38
-#: airtime_mvc/application/forms/BillingClient.php:172
-msgid "Password:"
-msgstr "Heslo:"
-
-#: airtime_mvc/application/forms/EditUser.php:57
-#: airtime_mvc/application/forms/AddUser.php:46
-#: airtime_mvc/application/forms/BillingClient.php:181
-msgid "Verify Password:"
-msgstr "Ověřit heslo:"
-
-#: airtime_mvc/application/forms/EditUser.php:67
-#: airtime_mvc/application/forms/AddUser.php:55
-msgid "Firstname:"
-msgstr "Jméno:"
-
-#: airtime_mvc/application/forms/EditUser.php:75
-#: airtime_mvc/application/forms/AddUser.php:61
-msgid "Lastname:"
-msgstr "Příjmení:"
-
-#: airtime_mvc/application/forms/EditUser.php:83
-#: airtime_mvc/application/forms/RegisterAirtime.php:51
-#: airtime_mvc/application/forms/AddUser.php:67
-#: airtime_mvc/application/forms/SupportSettings.php:43
-msgid "Email:"
-msgstr "E-mail:"
-
-#: airtime_mvc/application/forms/EditUser.php:94
-#: airtime_mvc/application/forms/AddUser.php:76
-msgid "Mobile Phone:"
-msgstr "Mobilní telefon:"
-
-#: airtime_mvc/application/forms/EditUser.php:102
-#: airtime_mvc/application/forms/AddUser.php:82
-msgid "Skype:"
-msgstr "Skype:"
-
-#: airtime_mvc/application/forms/EditUser.php:110
-#: airtime_mvc/application/forms/AddUser.php:88
-msgid "Jabber:"
-msgstr "Jabber:"
-
-#: airtime_mvc/application/forms/EditUser.php:129
-msgid "Interface Timezone:"
-msgstr "Časové pásmo uživatelského rozhraní"
-
-#: airtime_mvc/application/forms/EditUser.php:155
-#: airtime_mvc/application/forms/AddUser.php:120
-msgid "Login name is not unique."
-msgstr "Přihlašovací jméno není jedinečné."
-
-#: airtime_mvc/application/forms/AddShowRR.php:10
-msgid "Record from Line In?"
-msgstr "Nahráno z Line In?"
-
-#: airtime_mvc/application/forms/AddShowRR.php:16
-msgid "Rebroadcast?"
-msgstr "Vysílat znovu?"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:16
-msgid "'%value%' does not fit the time format 'HH:mm'"
-msgstr "'%hodnota%' nesedí formát času 'HH:mm'"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:22
-msgid "Start Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:37
-msgid "In the Future:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:64
-msgid "End Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:98
-msgid "Timezone:"
-msgstr "Časová zó"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:107
-msgid "Repeats?"
-msgstr "Opakovat?"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:139
-msgid "Cannot create show in the past"
-msgstr "Nelze vytvořit vysílání v minulosti"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:147
-msgid "Cannot modify start date/time of the show that is already started"
-msgstr "Nelze měnit datum/čas vysílání, které bylo již spuštěno"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:164
-msgid "Cannot have duration < 0m"
-msgstr "Nelze mít dobu trvání < 0m"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:168
-msgid "Cannot have duration 00h 00m"
-msgstr "Nelze nastavit dobu trvání 00h 00m"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:175
-msgid "Cannot have duration greater than 24h"
-msgstr "Nelze mít dobu trvání delší než 24 hodin"
-
-#: airtime_mvc/application/forms/AddShowWho.php:10
-msgid "Search Users:"
-msgstr "Hledat uživatele:"
-
-#: airtime_mvc/application/forms/AddShowWho.php:24
-msgid "DJs:"
-msgstr "DJs:"
-
-#: airtime_mvc/application/forms/PasswordChange.php:17
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
-msgid "Password"
-msgstr "Heslo"
-
-#: airtime_mvc/application/forms/PasswordChange.php:28
-msgid "Confirm new password"
-msgstr "Potvrďte nové heslo"
-
-#: airtime_mvc/application/forms/PasswordChange.php:36
-msgid "Password confirmation does not match your password."
-msgstr "Potvrzené heslo neodpovídá vašemu heslu."
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
-msgid "Station Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
-#: airtime_mvc/application/forms/GeneralPreferences.php:127
-msgid "Station Timezone"
-msgstr "Časové pásmo stanice"
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
-msgid "Auto Switch Off:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
-msgid "Auto Switch On:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
-msgid "Switch Transition Fade (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
-#: airtime_mvc/application/forms/GeneralPreferences.php:68
-#: airtime_mvc/application/forms/GeneralPreferences.php:82
-#: airtime_mvc/application/forms/GeneralPreferences.php:96
-msgid "Please enter a time in seconds (eg. 0.5)"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
-#: airtime_mvc/application/forms/AddShowLiveStream.php:48
-msgid "Host:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
-#: airtime_mvc/application/forms/AddShowLiveStream.php:54
-msgid "Port:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
-#: airtime_mvc/application/forms/AddShowLiveStream.php:60
-msgid "Mount:"
-msgstr ""
-
-#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
-msgid "Value is required and can't be empty"
-msgstr "Hodnota je požadována a nemůže zůstat prázdná"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:25
-#: airtime_mvc/application/forms/RegisterAirtime.php:30
-#: airtime_mvc/application/forms/SupportSettings.php:18
-msgid "Station Name"
-msgstr "Název stanice"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:33
-msgid "Station Description"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:42
-#: airtime_mvc/application/forms/RegisterAirtime.php:106
-msgid "Station Logo:"
-msgstr "Logo stanice:"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:62
-msgid "Default Crossfade Duration (s):"
-msgstr "Defoltní nastavení doby plynulého přechodu"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:76
-msgid "Default Fade In (s):"
-msgstr "Přednastavení Fade In:"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:90
-msgid "Default Fade Out (s):"
-msgstr "Přednastavení Fade Out:"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:102
-msgid "Public Airtime API"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:103
-msgid "Required for embeddable schedule widget."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:105
-msgid "Disabled"
-msgstr "Vypnuto"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:106
-msgid "Enabled"
-msgstr "Povoleno"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:109
-msgid ""
-"Enabling this feature will allow Airtime to provide schedule data\n"
-" to external widgets that can be embedded in your website."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:120
-msgid "Default Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:134
-msgid "Week Starts On"
-msgstr "Týden začíná"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:150
-msgid "Display login button on your Radio Page?"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:158
-#: airtime_mvc/application/controllers/LocaleController.php:249
-msgid "Sunday"
-msgstr "Neděle"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:159
-#: airtime_mvc/application/controllers/LocaleController.php:250
-msgid "Monday"
-msgstr "Pondělí"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:160
-#: airtime_mvc/application/controllers/LocaleController.php:251
-msgid "Tuesday"
-msgstr "Úterý"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:161
-#: airtime_mvc/application/controllers/LocaleController.php:252
-msgid "Wednesday"
-msgstr "Středa"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:162
-#: airtime_mvc/application/controllers/LocaleController.php:253
-msgid "Thursday"
-msgstr "Čtvrtek"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:163
-#: airtime_mvc/application/controllers/LocaleController.php:254
-msgid "Friday"
-msgstr "Pátek"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:164
-#: airtime_mvc/application/controllers/LocaleController.php:255
-msgid "Saturday"
-msgstr "Sobota"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
-msgid "Default License:"
-msgstr "Výchozí licence:"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
-msgid "All rights are reserved"
-msgstr "Všechna práva jsou vyhrazena"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
-msgid "The work is in the public domain"
-msgstr "Práce je ve veřejné doméně"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
-msgid "Creative Commons Attribution"
-msgstr "Creative Commons označení"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
-msgid "Creative Commons Attribution Noncommercial"
-msgstr "Creative Commons nekomerční"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
-msgid "Creative Commons Attribution No Derivative Works"
-msgstr "Creative Commons Nezasahujte do díla"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
-msgid "Creative Commons Attribution Share Alike"
-msgstr "Creative Commons Zachovejte licenci"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
-msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
-msgstr "Creative Commons nekomerční Nezasahujte do díla"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
-msgid "Creative Commons Attribution Noncommercial Share Alike"
-msgstr "Creative Commons nekomerční Zachovejte licenci"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
-msgid "Default Sharing Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
-msgid "Public"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
-msgid "Private"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:18
-#: airtime_mvc/application/forms/DateRange.php:16
-msgid "Date Start:"
-msgstr "Datum zahájení:"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:37
-#: airtime_mvc/application/forms/ShowBuilder.php:65
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
-#: airtime_mvc/application/forms/DateRange.php:35
-#: airtime_mvc/application/forms/DateRange.php:63
-msgid "Invalid character entered"
-msgstr "Zadán neplatný znak "
-
-#: airtime_mvc/application/forms/ShowBuilder.php:46
-#: airtime_mvc/application/forms/AddShowRepeats.php:56
-#: airtime_mvc/application/forms/DateRange.php:44
-msgid "Date End:"
-msgstr "Datum ukončení:"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:72
-#: airtime_mvc/application/forms/ShowBuilder.php:88
-msgid "Filter by Show"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:80
-msgid "All My Shows:"
-msgstr "Všechna má vysílání:"
-
-#: airtime_mvc/application/forms/EditAudioMD.php:145
-msgid "ISRC Number:"
-msgstr "ISRC číslo:"
-
-#: airtime_mvc/application/forms/EditAudioMD.php:176
-msgid "OK"
-msgstr "OK"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
-msgid "Day must be specified"
-msgstr "Den musí být zadán"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
-msgid "Time must be specified"
-msgstr "Čas musí být zadán"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
-msgid "Must wait at least 1 hour to rebroadcast"
-msgstr "Musíte počkat alespoň 1 hodinu před dalším vysíláním"
-
-#: airtime_mvc/application/forms/AddShowWhat.php:30
-msgid "Untitled Show"
-msgstr "Pořad bez názvu"
-
-#: airtime_mvc/application/forms/AddShowWhat.php:69
-msgid "Instance Description:"
-msgstr ""
-
-#: airtime_mvc/application/forms/DangerousPreferences.php:12
-msgid "Delete All Tracks in Library"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:39
-#: airtime_mvc/application/forms/SupportSettings.php:31
-msgid "Phone:"
-msgstr "Telefon:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:62
-#: airtime_mvc/application/forms/SupportSettings.php:54
-msgid "Station Web Site:"
-msgstr "Webová stránka stanice:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:73
-#: airtime_mvc/application/forms/BillingClient.php:102
-#: airtime_mvc/application/forms/SupportSettings.php:65
-msgid "Country:"
-msgstr "Stát:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:84
-#: airtime_mvc/application/forms/BillingClient.php:70
-#: airtime_mvc/application/forms/SupportSettings.php:76
-msgid "City:"
-msgstr "Město:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:96
-#: airtime_mvc/application/forms/SupportSettings.php:88
-msgid "Station Description:"
-msgstr "Popis stanice:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:116
-#: airtime_mvc/application/forms/SupportSettings.php:98
-#: airtime_mvc/application/controllers/LocaleController.php:341
-msgid "Send support feedback"
-msgstr "Odeslat zpětnou vazbu"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:126
-#: airtime_mvc/application/forms/SupportSettings.php:108
-#, php-format
-msgid "Promote my station on %s"
-msgstr "Podpořit mou stanici na %s"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:151
-#: airtime_mvc/application/forms/SupportSettings.php:120
-#, php-format
-msgid "By checking this box, I agree to %s's %sprivacy policy%s."
-msgstr "Zaškrtnutí tohoto okénka souhlasím s %s's %spravidly ochrany osobních údajů%s."
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:169
-#: airtime_mvc/application/forms/SupportSettings.php:143
-msgid "You have to agree to privacy policy."
-msgstr "Musíte souhlasit se zásadami ochrany osobních údajů."
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:10
-msgid "Link:"
-msgstr "Link:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:16
-msgid "Repeat Type:"
-msgstr "Typ opakování:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:19
-msgid "weekly"
-msgstr "týdně"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:20
-msgid "every 2 weeks"
-msgstr "každé 2 týdny"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:21
-msgid "every 3 weeks"
-msgstr "každé 3 týdny"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:22
-msgid "every 4 weeks"
-msgstr "každé 4 týdny"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:23
-msgid "monthly"
-msgstr "měsíčně"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:32
-msgid "Select Days:"
-msgstr "Vyberte dny:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:35
-#: airtime_mvc/application/controllers/LocaleController.php:256
-msgid "Sun"
-msgstr "Ne"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:36
-#: airtime_mvc/application/controllers/LocaleController.php:257
-msgid "Mon"
-msgstr "Po"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:37
-#: airtime_mvc/application/controllers/LocaleController.php:258
-msgid "Tue"
-msgstr "Út"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:38
-#: airtime_mvc/application/controllers/LocaleController.php:259
-msgid "Wed"
-msgstr "St"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:39
-#: airtime_mvc/application/controllers/LocaleController.php:260
-msgid "Thu"
-msgstr "Čt"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:40
-#: airtime_mvc/application/controllers/LocaleController.php:261
-msgid "Fri"
-msgstr "Pá"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:41
-#: airtime_mvc/application/controllers/LocaleController.php:262
-msgid "Sat"
-msgstr "So"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:47
-msgid "Repeat By:"
-msgstr "Opakovat:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the month"
-msgstr "den v měsíci"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the week"
-msgstr "den v týdnu"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:69
-msgid "No End?"
-msgstr "Nekončí?"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:106
-msgid "End date must be after start date"
-msgstr "Datum ukončení musí být po počátečním datumu"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:113
-msgid "Please select a repeat day"
-msgstr "Prosím vyberte den opakování"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:10
-#, php-format
-msgid "Use %s Authentication:"
-msgstr "Použij %s ověření pravosti:"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:16
-msgid "Use Custom Authentication:"
-msgstr "Použít ověření uživatele:"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:25
-msgid "Custom Username"
-msgstr "Uživatelské jméno"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:37
-msgid "Custom Password"
-msgstr "Uživatelské heslo"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:77
-msgid "Username field cannot be empty."
-msgstr "Uživatelské jméno musí být zadáno."
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:82
-msgid "Password field cannot be empty."
-msgstr "Heslo musí být zadáno."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
-msgid "Enabled:"
-msgstr "Povoleno:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
-msgid "Mobile:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
-msgid "Stream Type:"
-msgstr "Typ streamu:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
-msgid "Service Type:"
-msgstr "Typ služby:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
-msgid "Channels:"
-msgstr "Kanály:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "1 - Mono"
-msgstr "1 - Mono"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "2 - Stereo"
-msgstr "2 - Stereo"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
-msgid "Server"
-msgstr "Server"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
-msgid "Port"
-msgstr "Port"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
-msgid "Only numbers are allowed."
-msgstr "Jsou povolena pouze čísla."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
-msgid "URL"
-msgstr "URL"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
-msgid "Mount Point"
-msgstr "Přípojný bod"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
-msgid "Admin User"
-msgstr "Administrátorské jméno"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
-msgid "Admin Password"
-msgstr "Administrátorské heslo"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
-#: airtime_mvc/application/controllers/LocaleController.php:173
-msgid "Getting information from the server..."
-msgstr "Získávání informací ze serveru..."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
-msgid "Server cannot be empty."
-msgstr "Server nemůže být prázdný."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
-msgid "Port cannot be empty."
-msgstr "Port nemůže být prázdný."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
-msgid "Mount cannot be empty with Icecast server."
-msgstr "Mount nemůže být prázdný s Icecast serverem."
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
-msgid "'%value%' is no valid email address in the basic format local-part@hostname"
-msgstr "'%hodnota%' není platná e-mailová adresa v základním formátu local-part@hostname"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
-msgid "'%value%' does not fit the date format '%format%'"
-msgstr "'%hodnota%' neodpovídá formátu datumu '%formátu%'"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
-msgid "'%value%' is less than %min% characters long"
-msgstr "'%hodnota%' je kratší než požadovaných %min% znaků"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
-msgid "'%value%' is more than %max% characters long"
-msgstr "'%hodnota%' je více než %max% znaků dlouhá"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
-msgid "'%value%' is not between '%min%' and '%max%', inclusively"
-msgstr "'%hodnota%' není mezi '%min%' a '%max%', včetně"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
-msgid "Passwords do not match"
-msgstr "Hesla se neshodují"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
-msgid "hours"
-msgstr "hodiny"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
-msgid "minutes"
-msgstr "minuty"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
-msgid "Randomly"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
-msgid "Newest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
-msgid "Oldest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
-msgid "Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
-msgid "Static"
-msgstr "Statický"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
-msgid "Dynamic"
-msgstr "Dynamický"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
-msgid "Allow Repeated Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
-msgid "Sort Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
-msgid "Limit to:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
-msgid "Generate playlist content and save criteria"
-msgstr "Generovat obsah playlistu a uložit kritéria"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
-msgid "Generate"
-msgstr "Generovat"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
-msgid "Shuffle playlist content"
-msgstr "Promíchat obsah playlistu"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
-msgid "Limit cannot be empty or smaller than 0"
-msgstr "Limit nemůže být prázdný nebo menší než 0"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
-msgid "Limit cannot be more than 24 hrs"
-msgstr "Limit nemůže být větší než 24 hodin"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
-msgid "The value should be an integer"
-msgstr "Hodnota by měla být celé číslo"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
-msgid "500 is the max item limit value you can set"
-msgstr "500 je max hodnota položky, kterou lze nastavit"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
-msgid "You must select Criteria and Modifier"
-msgstr "Musíte vybrat kritéria a modifikátor"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
-msgid "'Length' should be in '00:00:00' format"
-msgstr "'Délka' by měla být ve formátu '00:00:00'"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
-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:594
-msgid "The value has to be numeric"
-msgstr "Hodnota musí být číslo"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
-msgid "The value should be less then 2147483648"
-msgstr "Hodnota by měla být menší než 2147483648"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
-#, php-format
-msgid "The value should be less than %s characters"
-msgstr "Hodnota by měla mít méně znaků než %s"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
-msgid "Value cannot be empty"
-msgstr "Hodnota nemůže být prázdná"
-
-#: airtime_mvc/application/forms/Login.php:102
-msgid "Type the characters you see in the picture below."
-msgstr "Opište znaky, které vidíte na obrázku níže."
-
-#: airtime_mvc/application/forms/StreamSetting.php:26
-msgid "Icecast Vorbis Metadata"
-msgstr "Metadata Icecast Vorbis"
-
-#: airtime_mvc/application/forms/StreamSetting.php:36
-msgid "Stream Label:"
-msgstr "Označení streamu:"
-
-#: airtime_mvc/application/forms/StreamSetting.php:37
-msgid "Artist - Title"
-msgstr "Umělec - Název"
-
-#: airtime_mvc/application/forms/StreamSetting.php:38
-msgid "Show - Artist - Title"
-msgstr "Vysílání - Umělec - Název"
-
-#: airtime_mvc/application/forms/StreamSetting.php:39
-msgid "Station name - Show name"
-msgstr "Název stanice - Název vysílání"
-
-#: airtime_mvc/application/forms/StreamSetting.php:45
-msgid "Off Air Metadata"
-msgstr "Off Air metadata"
-
-#: airtime_mvc/application/forms/StreamSetting.php:51
-msgid "Enable Replay Gain"
-msgstr "Povolit Replay Gain"
-
-#: airtime_mvc/application/forms/StreamSetting.php:57
-msgid "Replay Gain Modifier"
-msgstr "Replay Gain Modifikátor"
-
-#: airtime_mvc/application/forms/StreamSetting.php:65
-msgid "Streaming Server:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Airtime Pro Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Custom / 3rd Party Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:95
-msgid "User Type:"
-msgstr "Typ uživatele:"
-
-#: airtime_mvc/application/forms/AddUser.php:99
-#: airtime_mvc/application/controllers/LocaleController.php:324
-msgid "Guest"
-msgstr "Host"
-
-#: airtime_mvc/application/forms/AddUser.php:100
-#: airtime_mvc/application/controllers/LocaleController.php:322
-msgid "DJ"
-msgstr "DJ"
-
-#: airtime_mvc/application/forms/AddUser.php:101
-#: airtime_mvc/application/controllers/LocaleController.php:323
-msgid "Program Manager"
-msgstr "Program manager"
-
-#: airtime_mvc/application/forms/AddUser.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:321
-msgid "Admin"
-msgstr "Administrátor"
-
-#: airtime_mvc/application/forms/BillingClient.php:17
-msgid "First Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:26
-msgid "Last Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:35
-msgid "Company Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:44
-msgid "Email Address:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:54
-msgid "Address 1:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:63
-msgid "Address 2:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:80
-msgid "State/Region:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:89
-msgid "Zip Code / Postal Code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:112
-msgid "Phone Number:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:121
-msgid "Please choose a security question:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:126
-msgid "What is the name of your favorite childhood friend?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:127
-msgid "What school did you attend for sixth grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:128
-msgid "In what city did you meet your spouse/significant other?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:129
-msgid "What street did you live on in third grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:130
-msgid "What is the first name of the boy or girl that you first kissed?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:131
-msgid "In what city or town was your first job?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:135
-msgid "Please enter an answer:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:152
-msgid "VAT/Tax ID (EU only)"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:162
-msgid "Subscribe to Sourcefabric newsletter"
-msgstr ""
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
-msgid "Import Folder:"
-msgstr "Importovaná složka:"
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
-msgid "Watched Folders:"
-msgstr "Sledované složky:"
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
-msgid "Not a valid Directory"
-msgstr "Neplatný adresář"
-
-#: airtime_mvc/application/forms/PasswordRestore.php:14
-msgid "Email"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordRestore.php:36
-msgid "Reset password"
-msgstr "Obnovit heslo"
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
-msgid "Plan type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
-msgid "Billing cycle:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
-msgid "Payment method:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
-msgid "PayPal"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
-msgid "Credit Card via 2Checkout"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:213
-#, php-format
-msgid "The year %s must be within the range of 1753 - 9999"
-msgstr "Rok %s musí být v rozmezí 1753 - 9999"
-
-#: airtime_mvc/application/common/DateHelper.php:216
-#, php-format
-msgid "%s-%s-%s is not a valid date"
-msgstr "%s - %s - %s není platné datum"
-
-#: airtime_mvc/application/common/DateHelper.php:240
-#, php-format
-msgid "%s:%s:%s is not a valid time"
-msgstr "%s : %s : %s není platný čas"
-
-#: airtime_mvc/application/common/UsabilityHints.php:55
-msgid "Upload some tracks below to add them to your library!"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:57
-#, php-format
-msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:63
-msgid "Click the 'New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:65
-#, php-format
-msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:73
-msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:75
-#, php-format
-msgid ""
-"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
-" %sCreate an unlinked show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:80
-msgid "To start broadcasting, click on the current show and select 'Schedule Show'"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:82
-#, php-format
-msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:89
-msgid "Click on the show starting next and select 'Schedule Show'"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:91
-#, php-format
-msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
-msgstr ""
+#: airtime_mvc/application/controllers/ApiController.php:791
+msgid "Bad request. 'mode' parameter is invalid"
+msgstr "Špatný požadavek. 'Mode' parametr je neplatný."
#: airtime_mvc/application/controllers/LocaleController.php:30
#: airtime_mvc/application/layouts/scripts/audio-player.phtml:5
@@ -2909,11 +560,6 @@ msgstr "Přidat %s položek"
msgid "You can only add tracks to smart blocks."
msgstr "Můžete přidat skladby pouze do chytrých bloků."
-#: airtime_mvc/application/controllers/LocaleController.php:50
-#: airtime_mvc/application/controllers/PlaylistController.php:180
-msgid "You can only add tracks, smart blocks, and webstreams to playlists."
-msgstr "Můžete přidat pouze skladby, chytré bloky a webstreamy do playlistů."
-
#: airtime_mvc/application/controllers/LocaleController.php:53
msgid "Please select a cursor position on timeline."
msgstr "Prosím vyberte si pozici kurzoru na časové ose."
@@ -2954,11 +600,6 @@ msgstr ""
msgid "Click 'New' to create one."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:66
-#: airtime_mvc/application/controllers/LibraryController.php:123
-msgid "Edit Metadata"
-msgstr "Upravit metadata"
-
#: airtime_mvc/application/controllers/LocaleController.php:67
msgid "Add to selected show"
msgstr "Přidat k vybranému vysílání"
@@ -2987,6 +628,12 @@ msgstr "Jste si jisti, že chcete smazat vybranou položku(y)?"
msgid "Scheduled"
msgstr "Naplánováno"
+#: airtime_mvc/application/controllers/LocaleController.php:74
+#: airtime_mvc/application/layouts/scripts/layout.phtml:78
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
+msgid "Tracks"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:75
#: airtime_mvc/application/layouts/scripts/layout.phtml:60
msgid "Playlist"
@@ -2996,18 +643,96 @@ msgstr ""
msgid "Bit Rate"
msgstr "Rychlost přenosu"
+#: airtime_mvc/application/controllers/LocaleController.php:80
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
+#: airtime_mvc/application/models/Block.php:1354
+msgid "BPM"
+msgstr "BPM"
+
+#: airtime_mvc/application/controllers/LocaleController.php:84
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
+#: airtime_mvc/application/models/Block.php:1361
+msgid "Encoded By"
+msgstr "Zakódováno"
+
+#: airtime_mvc/application/controllers/LocaleController.php:89
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
+#: airtime_mvc/application/models/Block.php:1367
+msgid "Last Modified"
+msgstr "Naposledy změněno"
+
+#: airtime_mvc/application/controllers/LocaleController.php:90
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
+#: airtime_mvc/application/models/Block.php:1368
+msgid "Last Played"
+msgstr "Naposledy vysíláno"
+
+#: airtime_mvc/application/controllers/LocaleController.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
+#: airtime_mvc/application/models/Block.php:1370
+msgid "Mime"
+msgstr "Mime"
+
+#: airtime_mvc/application/controllers/LocaleController.php:94
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
+#: airtime_mvc/application/models/Block.php:1372
+msgid "Owner"
+msgstr "Vlastník"
+
+#: airtime_mvc/application/controllers/LocaleController.php:95
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
+#: airtime_mvc/application/models/Block.php:1373
+msgid "Replay Gain"
+msgstr "Opakovat Gain"
+
#: airtime_mvc/application/controllers/LocaleController.php:96
msgid "Sample Rate"
msgstr "Vzorkovací rychlost"
+#: airtime_mvc/application/controllers/LocaleController.php:97
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
+#: airtime_mvc/application/models/Block.php:1376
+msgid "Track Number"
+msgstr "Číslo stopy"
+
+#: airtime_mvc/application/controllers/LocaleController.php:98
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
+#: airtime_mvc/application/models/Block.php:1377
+msgid "Uploaded"
+msgstr "Nahráno"
+
+#: airtime_mvc/application/controllers/LocaleController.php:99
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
+#: airtime_mvc/application/models/Block.php:1378
+msgid "Website"
+msgstr "Internetové stránky"
+
#: airtime_mvc/application/controllers/LocaleController.php:101
msgid "Loading..."
msgstr "Nahrávání ..."
+#: airtime_mvc/application/controllers/LocaleController.php:102
+#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
+msgid "All"
+msgstr "Vše"
+
#: airtime_mvc/application/controllers/LocaleController.php:103
msgid "Files"
msgstr "Soubory"
+#: airtime_mvc/application/controllers/LocaleController.php:104
+#: airtime_mvc/application/layouts/scripts/layout.phtml:80
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
+msgid "Playlists"
+msgstr "Playlisty"
+
+#: airtime_mvc/application/controllers/LocaleController.php:105
+#: airtime_mvc/application/layouts/scripts/layout.phtml:82
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
+msgid "Smart Blocks"
+msgstr "Chytré bloky"
+
#: airtime_mvc/application/controllers/LocaleController.php:106
msgid "Web Streams"
msgstr "Webové streamy"
@@ -3152,6 +877,74 @@ msgstr "Chytrý blok uložen"
msgid "Processing..."
msgstr "Zpracovává se..."
+#: airtime_mvc/application/controllers/LocaleController.php:151
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
+#: airtime_mvc/application/models/Block.php:1383
+msgid "Select modifier"
+msgstr "Vyberte modifikátor"
+
+#: airtime_mvc/application/controllers/LocaleController.php:152
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
+#: airtime_mvc/application/models/Block.php:1384
+msgid "contains"
+msgstr "obsahuje"
+
+#: airtime_mvc/application/controllers/LocaleController.php:153
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
+#: airtime_mvc/application/models/Block.php:1385
+msgid "does not contain"
+msgstr "neobsahuje"
+
+#: airtime_mvc/application/controllers/LocaleController.php:154
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
+#: airtime_mvc/application/models/Block.php:1386
+#: airtime_mvc/application/models/Block.php:1390
+msgid "is"
+msgstr "je"
+
+#: airtime_mvc/application/controllers/LocaleController.php:155
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
+#: airtime_mvc/application/models/Block.php:1387
+#: airtime_mvc/application/models/Block.php:1391
+msgid "is not"
+msgstr "není"
+
+#: airtime_mvc/application/controllers/LocaleController.php:156
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
+#: airtime_mvc/application/models/Block.php:1388
+msgid "starts with"
+msgstr "začíná s"
+
+#: airtime_mvc/application/controllers/LocaleController.php:157
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
+#: airtime_mvc/application/models/Block.php:1389
+msgid "ends with"
+msgstr "končí s"
+
+#: airtime_mvc/application/controllers/LocaleController.php:158
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
+#: airtime_mvc/application/models/Block.php:1392
+msgid "is greater than"
+msgstr "je větší než"
+
+#: airtime_mvc/application/controllers/LocaleController.php:159
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
+#: airtime_mvc/application/models/Block.php:1393
+msgid "is less than"
+msgstr "je menší než"
+
+#: airtime_mvc/application/controllers/LocaleController.php:160
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
+#: airtime_mvc/application/models/Block.php:1394
+msgid "is in the range"
+msgstr "se pohybuje v rozmezí"
+
#: airtime_mvc/application/controllers/LocaleController.php:162
msgid "Choose Storage Folder"
msgstr "Vyberte složku k uložení"
@@ -3168,6 +961,11 @@ msgstr ""
"Jste si jisti, že chcete změnit složku úložiště ?\n"
"Tímto odstraníte soubry z vaší Airtime knihovny!"
+#: airtime_mvc/application/controllers/LocaleController.php:166
+#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
+msgid "Manage Media Folders"
+msgstr "Správa složek médií"
+
#: airtime_mvc/application/controllers/LocaleController.php:167
msgid "Are you sure you want to remove the watched folder?"
msgstr "Jste si jisti, že chcete odstranit sledovanou složku?"
@@ -3189,6 +987,11 @@ msgstr "Připojeno k streamovacímu serveru"
msgid "The stream is disabled"
msgstr "Stream je vypnut"
+#: airtime_mvc/application/controllers/LocaleController.php:173
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
+msgid "Getting information from the server..."
+msgstr "Získávání informací ze serveru..."
+
#: airtime_mvc/application/controllers/LocaleController.php:174
msgid "Can not connect to the streaming server"
msgstr "Nelze se připojit k streamovacímu serveru"
@@ -3416,6 +1219,76 @@ msgstr ""
msgid "Month"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:249
+#: airtime_mvc/application/forms/GeneralPreferences.php:158
+msgid "Sunday"
+msgstr "Neděle"
+
+#: airtime_mvc/application/controllers/LocaleController.php:250
+#: airtime_mvc/application/forms/GeneralPreferences.php:159
+msgid "Monday"
+msgstr "Pondělí"
+
+#: airtime_mvc/application/controllers/LocaleController.php:251
+#: airtime_mvc/application/forms/GeneralPreferences.php:160
+msgid "Tuesday"
+msgstr "Úterý"
+
+#: airtime_mvc/application/controllers/LocaleController.php:252
+#: airtime_mvc/application/forms/GeneralPreferences.php:161
+msgid "Wednesday"
+msgstr "Středa"
+
+#: airtime_mvc/application/controllers/LocaleController.php:253
+#: airtime_mvc/application/forms/GeneralPreferences.php:162
+msgid "Thursday"
+msgstr "Čtvrtek"
+
+#: airtime_mvc/application/controllers/LocaleController.php:254
+#: airtime_mvc/application/forms/GeneralPreferences.php:163
+msgid "Friday"
+msgstr "Pátek"
+
+#: airtime_mvc/application/controllers/LocaleController.php:255
+#: airtime_mvc/application/forms/GeneralPreferences.php:164
+msgid "Saturday"
+msgstr "Sobota"
+
+#: airtime_mvc/application/controllers/LocaleController.php:256
+#: airtime_mvc/application/forms/AddShowRepeats.php:35
+msgid "Sun"
+msgstr "Ne"
+
+#: airtime_mvc/application/controllers/LocaleController.php:257
+#: airtime_mvc/application/forms/AddShowRepeats.php:36
+msgid "Mon"
+msgstr "Po"
+
+#: airtime_mvc/application/controllers/LocaleController.php:258
+#: airtime_mvc/application/forms/AddShowRepeats.php:37
+msgid "Tue"
+msgstr "Út"
+
+#: airtime_mvc/application/controllers/LocaleController.php:259
+#: airtime_mvc/application/forms/AddShowRepeats.php:38
+msgid "Wed"
+msgstr "St"
+
+#: airtime_mvc/application/controllers/LocaleController.php:260
+#: airtime_mvc/application/forms/AddShowRepeats.php:39
+msgid "Thu"
+msgstr "Čt"
+
+#: airtime_mvc/application/controllers/LocaleController.php:261
+#: airtime_mvc/application/forms/AddShowRepeats.php:40
+msgid "Fri"
+msgstr "Pá"
+
+#: airtime_mvc/application/controllers/LocaleController.php:262
+#: airtime_mvc/application/forms/AddShowRepeats.php:41
+msgid "Sat"
+msgstr "So"
+
#: airtime_mvc/application/controllers/LocaleController.php:263
msgid "Shows longer than their scheduled time will be cut off by a following show."
msgstr "Vysílání delší než naplánovaný čas bude ukončeno začátkem dalšího vysílání."
@@ -3425,7 +1298,7 @@ msgid "Cancel Current Show?"
msgstr "Zrušit aktuální vysílání?"
#: airtime_mvc/application/controllers/LocaleController.php:265
-#: airtime_mvc/application/controllers/LocaleController.php:309
+#: airtime_mvc/application/controllers/LocaleController.php:312
msgid "Stop recording current show?"
msgstr "Zastavit nahrávání aktuálního vysílání?"
@@ -3445,6 +1318,11 @@ msgstr "Odstranit veškerý obsah?"
msgid "Delete selected item(s)?"
msgstr "Odstranit vybranou položku(y)?"
+#: airtime_mvc/application/controllers/LocaleController.php:273
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
+msgid "Start"
+msgstr "Začátek"
+
#: airtime_mvc/application/controllers/LocaleController.php:274
msgid "End"
msgstr "Konec"
@@ -3453,580 +1331,467 @@ msgstr "Konec"
msgid "Duration"
msgstr "Trvání"
-#: airtime_mvc/application/controllers/LocaleController.php:283
+#: airtime_mvc/application/controllers/LocaleController.php:276
+msgid "Filtering out "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:277
+msgid " of "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:278
+msgid " records"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/layouts/scripts/layout.phtml:140
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
+#: airtime_mvc/application/models/Block.php:1358
+msgid "Cue In"
+msgstr "Cue in"
+
+#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/layouts/scripts/layout.phtml:147
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
+#: airtime_mvc/application/models/Block.php:1359
+msgid "Cue Out"
+msgstr "Cue out"
+
+#: airtime_mvc/application/controllers/LocaleController.php:286
#: airtime_mvc/application/layouts/scripts/layout.phtml:167
msgid "Fade In"
msgstr "Pozvolné zesilování "
-#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/controllers/LocaleController.php:287
#: airtime_mvc/application/layouts/scripts/layout.phtml:168
msgid "Fade Out"
msgstr "Pozvolné zeslabování"
-#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/controllers/LocaleController.php:288
msgid "Show Empty"
msgstr "Vysílání prázdné"
-#: airtime_mvc/application/controllers/LocaleController.php:286
+#: airtime_mvc/application/controllers/LocaleController.php:289
msgid "Recording From Line In"
msgstr "Nahrávání z Line In"
-#: airtime_mvc/application/controllers/LocaleController.php:287
+#: airtime_mvc/application/controllers/LocaleController.php:290
msgid "Track preview"
msgstr "Náhled stopy"
-#: airtime_mvc/application/controllers/LocaleController.php:291
+#: airtime_mvc/application/controllers/LocaleController.php:294
msgid "Cannot schedule outside a show."
msgstr "Nelze naplánovat mimo vysílání."
-#: airtime_mvc/application/controllers/LocaleController.php:292
+#: airtime_mvc/application/controllers/LocaleController.php:295
msgid "Moving 1 Item"
msgstr "Posunutí 1 položky"
-#: airtime_mvc/application/controllers/LocaleController.php:293
+#: airtime_mvc/application/controllers/LocaleController.php:296
#, php-format
msgid "Moving %s Items"
msgstr "Posunutí %s položek"
-#: airtime_mvc/application/controllers/LocaleController.php:296
+#: airtime_mvc/application/controllers/LocaleController.php:297
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
+#: airtime_mvc/application/forms/Preferences.php:40
+#: airtime_mvc/application/forms/EditHistory.php:131
+#: airtime_mvc/application/forms/AddUser.php:110
+#: airtime_mvc/application/forms/PasswordChange.php:43
+#: airtime_mvc/application/forms/SupportSettings.php:131
+msgid "Save"
+msgstr "Uložit"
+
+#: airtime_mvc/application/controllers/LocaleController.php:298
+#: airtime_mvc/application/controllers/LocaleController.php:321
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
+#: airtime_mvc/application/forms/EditHistory.php:141
+#: airtime_mvc/application/forms/EditAudioMD.php:186
+msgid "Cancel"
+msgstr "Zrušit"
+
+#: airtime_mvc/application/controllers/LocaleController.php:299
msgid "Fade Editor"
msgstr "Fade Editor"
-#: airtime_mvc/application/controllers/LocaleController.php:297
+#: airtime_mvc/application/controllers/LocaleController.php:300
msgid "Cue Editor"
msgstr "Cue Editor"
-#: airtime_mvc/application/controllers/LocaleController.php:298
+#: airtime_mvc/application/controllers/LocaleController.php:301
msgid "Waveform features are available in a browser supporting the Web Audio API"
msgstr "Prvky Waveform jsou k dispozici v prohlížeči podporující Web Audio API"
-#: airtime_mvc/application/controllers/LocaleController.php:301
+#: airtime_mvc/application/controllers/LocaleController.php:304
msgid "Select all"
msgstr "Vybrat vše"
-#: airtime_mvc/application/controllers/LocaleController.php:302
+#: airtime_mvc/application/controllers/LocaleController.php:305
msgid "Select none"
msgstr "Nic nevybrat"
-#: airtime_mvc/application/controllers/LocaleController.php:303
+#: airtime_mvc/application/controllers/LocaleController.php:306
msgid "Trim overbooked shows"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:304
+#: airtime_mvc/application/controllers/LocaleController.php:307
msgid "Remove selected scheduled items"
msgstr "Odebrat vybrané naplánované položky"
-#: airtime_mvc/application/controllers/LocaleController.php:305
+#: airtime_mvc/application/controllers/LocaleController.php:308
msgid "Jump to the current playing track"
msgstr "Přejít na aktuálně přehrávanou skladbu"
-#: airtime_mvc/application/controllers/LocaleController.php:306
+#: airtime_mvc/application/controllers/LocaleController.php:309
msgid "Cancel current show"
msgstr "Zrušit aktuální vysílání"
-#: airtime_mvc/application/controllers/LocaleController.php:311
+#: airtime_mvc/application/controllers/LocaleController.php:314
msgid "Open library to add or remove content"
msgstr "Otevřít knihovnu pro přidání nebo odebrání obsahu"
-#: airtime_mvc/application/controllers/LocaleController.php:312
+#: airtime_mvc/application/controllers/LocaleController.php:315
msgid "Add / Remove Content"
msgstr "Přidat / Odebrat obsah"
#: airtime_mvc/application/controllers/LocaleController.php:317
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
+msgid "in use"
+msgstr "používá se"
+
+#: airtime_mvc/application/controllers/LocaleController.php:318
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
+msgid "Disk"
+msgstr "Disk"
+
+#: airtime_mvc/application/controllers/LocaleController.php:320
msgid "Look in"
msgstr "Podívat se"
-#: airtime_mvc/application/controllers/LocaleController.php:319
+#: airtime_mvc/application/controllers/LocaleController.php:322
msgid "Open"
msgstr "Otevřít"
+#: airtime_mvc/application/controllers/LocaleController.php:324
+#: airtime_mvc/application/forms/AddUser.php:102
+msgid "Admin"
+msgstr "Administrátor"
+
#: airtime_mvc/application/controllers/LocaleController.php:325
+#: airtime_mvc/application/forms/AddUser.php:100
+msgid "DJ"
+msgstr "DJ"
+
+#: airtime_mvc/application/controllers/LocaleController.php:326
+#: airtime_mvc/application/forms/AddUser.php:101
+msgid "Program Manager"
+msgstr "Program manager"
+
+#: airtime_mvc/application/controllers/LocaleController.php:327
+#: airtime_mvc/application/forms/AddUser.php:99
+msgid "Guest"
+msgstr "Host"
+
+#: airtime_mvc/application/controllers/LocaleController.php:328
msgid "Guests can do the following:"
msgstr "Hosté mohou dělat následující:"
-#: airtime_mvc/application/controllers/LocaleController.php:326
+#: airtime_mvc/application/controllers/LocaleController.php:329
msgid "View schedule"
msgstr "Zobrazit plán"
-#: airtime_mvc/application/controllers/LocaleController.php:327
+#: airtime_mvc/application/controllers/LocaleController.php:330
msgid "View show content"
msgstr "Zobrazit obsah vysílání"
-#: airtime_mvc/application/controllers/LocaleController.php:328
+#: airtime_mvc/application/controllers/LocaleController.php:331
msgid "DJs can do the following:"
msgstr "DJ může dělat následující:"
-#: airtime_mvc/application/controllers/LocaleController.php:329
+#: airtime_mvc/application/controllers/LocaleController.php:332
msgid "Manage assigned show content"
msgstr "Spravovat přidělený obsah vysílání"
-#: airtime_mvc/application/controllers/LocaleController.php:330
+#: airtime_mvc/application/controllers/LocaleController.php:333
msgid "Import media files"
msgstr "Import media souborů"
-#: airtime_mvc/application/controllers/LocaleController.php:331
+#: airtime_mvc/application/controllers/LocaleController.php:334
msgid "Create playlists, smart blocks, and webstreams"
msgstr "Vytvořit playlisty, smart bloky a webstreamy"
-#: airtime_mvc/application/controllers/LocaleController.php:332
+#: airtime_mvc/application/controllers/LocaleController.php:335
msgid "Manage their own library content"
msgstr "Spravovat obsah vlastní knihovny"
-#: airtime_mvc/application/controllers/LocaleController.php:333
+#: airtime_mvc/application/controllers/LocaleController.php:336
msgid "Progam Managers can do the following:"
msgstr "Progam Manažeři může dělat následující:"
-#: airtime_mvc/application/controllers/LocaleController.php:334
+#: airtime_mvc/application/controllers/LocaleController.php:337
msgid "View and manage show content"
msgstr "Zobrazit a spravovat obsah vysílání"
-#: airtime_mvc/application/controllers/LocaleController.php:335
+#: airtime_mvc/application/controllers/LocaleController.php:338
msgid "Schedule shows"
msgstr "Plán ukazuje"
-#: airtime_mvc/application/controllers/LocaleController.php:336
+#: airtime_mvc/application/controllers/LocaleController.php:339
msgid "Manage all library content"
msgstr "Spravovat celý obsah knihovny"
-#: airtime_mvc/application/controllers/LocaleController.php:337
+#: airtime_mvc/application/controllers/LocaleController.php:340
msgid "Admins can do the following:"
msgstr "Správci mohou provést následující:"
-#: airtime_mvc/application/controllers/LocaleController.php:338
+#: airtime_mvc/application/controllers/LocaleController.php:341
msgid "Manage preferences"
msgstr "Správa předvoleb"
-#: airtime_mvc/application/controllers/LocaleController.php:339
+#: airtime_mvc/application/controllers/LocaleController.php:342
msgid "Manage users"
msgstr "Správa uživatelů"
-#: airtime_mvc/application/controllers/LocaleController.php:340
+#: airtime_mvc/application/controllers/LocaleController.php:343
msgid "Manage watched folders"
msgstr "Správa sledovaných složek"
-#: airtime_mvc/application/controllers/LocaleController.php:342
+#: airtime_mvc/application/controllers/LocaleController.php:344
+#: airtime_mvc/application/forms/RegisterAirtime.php:116
+#: airtime_mvc/application/forms/SupportSettings.php:98
+msgid "Send support feedback"
+msgstr "Odeslat zpětnou vazbu"
+
+#: airtime_mvc/application/controllers/LocaleController.php:345
msgid "View system status"
msgstr "Zobrazit stav systému"
-#: airtime_mvc/application/controllers/LocaleController.php:343
+#: airtime_mvc/application/controllers/LocaleController.php:346
msgid "Access playout history"
msgstr "Přístup playout historii"
-#: airtime_mvc/application/controllers/LocaleController.php:344
+#: airtime_mvc/application/controllers/LocaleController.php:347
msgid "View listener stats"
msgstr "Zobrazit posluchače statistiky"
-#: airtime_mvc/application/controllers/LocaleController.php:346
+#: airtime_mvc/application/controllers/LocaleController.php:349
msgid "Show / hide columns"
msgstr "Zobrazit / skrýt sloupce"
-#: airtime_mvc/application/controllers/LocaleController.php:348
+#: airtime_mvc/application/controllers/LocaleController.php:351
msgid "From {from} to {to}"
msgstr "Z {z} do {do}"
-#: airtime_mvc/application/controllers/LocaleController.php:349
+#: airtime_mvc/application/controllers/LocaleController.php:352
msgid "kbps"
msgstr "kbps"
-#: airtime_mvc/application/controllers/LocaleController.php:350
+#: airtime_mvc/application/controllers/LocaleController.php:353
msgid "yyyy-mm-dd"
msgstr "rrrr-mm-dd"
-#: airtime_mvc/application/controllers/LocaleController.php:351
+#: airtime_mvc/application/controllers/LocaleController.php:354
msgid "hh:mm:ss.t"
msgstr "hh:mm:ss.t"
-#: airtime_mvc/application/controllers/LocaleController.php:352
+#: airtime_mvc/application/controllers/LocaleController.php:355
msgid "kHz"
msgstr "kHz"
-#: airtime_mvc/application/controllers/LocaleController.php:355
+#: airtime_mvc/application/controllers/LocaleController.php:358
msgid "Su"
msgstr "Ne"
-#: airtime_mvc/application/controllers/LocaleController.php:356
+#: airtime_mvc/application/controllers/LocaleController.php:359
msgid "Mo"
msgstr "Po"
-#: airtime_mvc/application/controllers/LocaleController.php:357
+#: airtime_mvc/application/controllers/LocaleController.php:360
msgid "Tu"
msgstr "Út"
-#: airtime_mvc/application/controllers/LocaleController.php:358
+#: airtime_mvc/application/controllers/LocaleController.php:361
msgid "We"
msgstr "St"
-#: airtime_mvc/application/controllers/LocaleController.php:359
+#: airtime_mvc/application/controllers/LocaleController.php:362
msgid "Th"
msgstr "Čt"
-#: airtime_mvc/application/controllers/LocaleController.php:360
+#: airtime_mvc/application/controllers/LocaleController.php:363
msgid "Fr"
msgstr "Pá"
-#: airtime_mvc/application/controllers/LocaleController.php:361
+#: airtime_mvc/application/controllers/LocaleController.php:364
msgid "Sa"
msgstr "So"
-#: airtime_mvc/application/controllers/LocaleController.php:364
+#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
+msgid "Close"
+msgstr "Zavřít"
+
+#: airtime_mvc/application/controllers/LocaleController.php:367
msgid "Hour"
msgstr "Hodina"
-#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:368
msgid "Minute"
msgstr "Minuta"
-#: airtime_mvc/application/controllers/LocaleController.php:366
+#: airtime_mvc/application/controllers/LocaleController.php:369
msgid "Done"
msgstr "Hotovo"
-#: airtime_mvc/application/controllers/LocaleController.php:369
+#: airtime_mvc/application/controllers/LocaleController.php:372
msgid "Select files"
msgstr "Vyberte soubory"
-#: airtime_mvc/application/controllers/LocaleController.php:370
-#: airtime_mvc/application/controllers/LocaleController.php:371
+#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:374
msgid "Add files to the upload queue and click the start button."
msgstr "Přidejte soubory do fronty pro nahrávání a klikněte na tlačítko start."
-#: airtime_mvc/application/controllers/LocaleController.php:372
-#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:376
msgid "Status"
msgstr "Stav"
-#: airtime_mvc/application/controllers/LocaleController.php:374
+#: airtime_mvc/application/controllers/LocaleController.php:377
msgid "Add Files"
msgstr "Přidat soubory."
-#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:378
msgid "Stop Upload"
msgstr "Zastavit Nahrávání"
-#: airtime_mvc/application/controllers/LocaleController.php:376
+#: airtime_mvc/application/controllers/LocaleController.php:379
msgid "Start upload"
msgstr "Začít nahrávat"
-#: airtime_mvc/application/controllers/LocaleController.php:377
+#: airtime_mvc/application/controllers/LocaleController.php:380
msgid "Add files"
msgstr "Přidat soubory"
-#: airtime_mvc/application/controllers/LocaleController.php:378
+#: airtime_mvc/application/controllers/LocaleController.php:381
#, php-format
msgid "Uploaded %d/%d files"
msgstr "Nahráno %d / %d souborů"
-#: airtime_mvc/application/controllers/LocaleController.php:379
+#: airtime_mvc/application/controllers/LocaleController.php:382
msgid "N/A"
msgstr "Nedostupné"
-#: airtime_mvc/application/controllers/LocaleController.php:380
+#: airtime_mvc/application/controllers/LocaleController.php:383
msgid "Drag files here."
msgstr "Soubory přetáhněte zde."
-#: airtime_mvc/application/controllers/LocaleController.php:381
+#: airtime_mvc/application/controllers/LocaleController.php:384
msgid "File extension error."
msgstr "Chybná přípona souboru"
-#: airtime_mvc/application/controllers/LocaleController.php:382
+#: airtime_mvc/application/controllers/LocaleController.php:385
msgid "File size error."
msgstr "Chybná velikost souboru."
-#: airtime_mvc/application/controllers/LocaleController.php:383
+#: airtime_mvc/application/controllers/LocaleController.php:386
msgid "File count error."
msgstr "Chybný součet souborů."
-#: airtime_mvc/application/controllers/LocaleController.php:384
+#: airtime_mvc/application/controllers/LocaleController.php:387
msgid "Init error."
msgstr "Chyba Init."
-#: airtime_mvc/application/controllers/LocaleController.php:385
+#: airtime_mvc/application/controllers/LocaleController.php:388
msgid "HTTP Error."
msgstr "Chyba HTTP."
-#: airtime_mvc/application/controllers/LocaleController.php:386
+#: airtime_mvc/application/controllers/LocaleController.php:389
msgid "Security error."
msgstr "Chyba zabezpečení."
-#: airtime_mvc/application/controllers/LocaleController.php:387
+#: airtime_mvc/application/controllers/LocaleController.php:390
msgid "Generic error."
msgstr "Obecná chyba. "
-#: airtime_mvc/application/controllers/LocaleController.php:388
+#: airtime_mvc/application/controllers/LocaleController.php:391
msgid "IO error."
msgstr "CHyba IO."
-#: airtime_mvc/application/controllers/LocaleController.php:389
+#: airtime_mvc/application/controllers/LocaleController.php:392
#, php-format
msgid "File: %s"
msgstr "Soubor: %s"
-#: airtime_mvc/application/controllers/LocaleController.php:391
+#: airtime_mvc/application/controllers/LocaleController.php:394
#, php-format
msgid "%d files queued"
msgstr "%d souborů ve frontě"
-#: airtime_mvc/application/controllers/LocaleController.php:392
+#: airtime_mvc/application/controllers/LocaleController.php:395
msgid "File: %f, size: %s, max file size: %m"
msgstr "Soubor: %f , velikost: %s , max. velikost souboru:% m"
-#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/controllers/LocaleController.php:396
msgid "Upload URL might be wrong or doesn't exist"
msgstr "Přidané URL může být špatné nebo neexistuje"
-#: airtime_mvc/application/controllers/LocaleController.php:394
+#: airtime_mvc/application/controllers/LocaleController.php:397
msgid "Error: File too large: "
msgstr "Chyba: Soubor je příliš velký: "
-#: airtime_mvc/application/controllers/LocaleController.php:395
+#: airtime_mvc/application/controllers/LocaleController.php:398
msgid "Error: Invalid file extension: "
msgstr "Chyba: Neplatná přípona souboru: "
-#: airtime_mvc/application/controllers/LocaleController.php:398
+#: airtime_mvc/application/controllers/LocaleController.php:400
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
+msgid "Set Default"
+msgstr "Nastavit jako default"
+
+#: airtime_mvc/application/controllers/LocaleController.php:401
msgid "Create Entry"
msgstr "Vytvořit vstup"
-#: airtime_mvc/application/controllers/LocaleController.php:399
+#: airtime_mvc/application/controllers/LocaleController.php:402
msgid "Edit History Record"
msgstr "Editovat historii nahrávky"
-#: airtime_mvc/application/controllers/LocaleController.php:402
+#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
+#: airtime_mvc/application/forms/EditHistoryItem.php:57
+msgid "No Show"
+msgstr "Žádné vysílání"
+
+#: airtime_mvc/application/controllers/LocaleController.php:405
#, php-format
msgid "Copied %s row%s to the clipboard"
msgstr "Kopírovat %s řádků %s do schránky"
-#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/controllers/LocaleController.php:406
#, php-format
msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished."
msgstr "%s náhled tisku %s k vytištění této tabulky použijte funkci tisku ve vašem prohlížeči. Po dokončení stiskněte escape."
-#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/controllers/LocaleController.php:407
msgid "New Show"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:405
+#: airtime_mvc/application/controllers/LocaleController.php:408
msgid "New Log Entry"
msgstr ""
-#: airtime_mvc/application/controllers/ScheduleController.php:389
-#, php-format
-msgid "Rebroadcast of show %s from %s at %s"
-msgstr "Znovu spustit vysílaní %s od %s na %s"
-
-#: airtime_mvc/application/controllers/ScheduleController.php:712
-#: airtime_mvc/application/controllers/LibraryController.php:131
-msgid "Download"
-msgstr "Stáhnout"
-
-#: airtime_mvc/application/controllers/ErrorController.php:78
-msgid "Page not found."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:87
-msgid "The requested action is not supported."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:98
-msgid "You do not have permission to access this resource."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:109
-msgid "An internal application error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ListenerstatController.php:51
-msgid "Please make sure admin user/password is correct on System->Streams page."
-msgstr "Zkontrolujte prosím zda je správné administrátorské jméno/heslo v Systému->Streamovací stránka."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:53
-#, php-format
-msgid "You are viewing an older version of %s"
-msgstr "Prohlížíte si starší verzi %s"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:140
-msgid "You cannot add tracks to dynamic blocks."
-msgstr "Nemůžete přidávat skladby do dynamických bloků."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:147
-#: airtime_mvc/application/controllers/LibraryController.php:31
-#, php-format
-msgid "%s not found"
-msgstr "%s nenalezen"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:161
-#, php-format
-msgid "You don't have permission to delete selected %s(s)."
-msgstr "Nemáte oprávnění odstranit vybrané %s (s)."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:168
-#: airtime_mvc/application/controllers/LibraryController.php:40
-msgid "Something went wrong."
-msgstr "Něco je špatně."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:174
-msgid "You can only add tracks to smart block."
-msgstr "Můžete pouze přidat skladby do chytrého bloku."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:192
-msgid "Untitled Playlist"
-msgstr "Playlist bez názvu"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:194
-msgid "Untitled Smart Block"
-msgstr "Chytrý block bez názvu"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:522
-msgid "Unknown Playlist"
-msgstr "Neznámý Playlist"
-
-#: airtime_mvc/application/controllers/LoginController.php:43
-msgid "Please enter your username and password."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:93
-msgid "Wrong username or password provided. Please try again."
-msgstr "Zadali jste chybně uživatelské jméno nebo heslo. Prosím, zkuste zadat znovu."
-
-#: airtime_mvc/application/controllers/LoginController.php:167
-msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
-msgstr "E-mail se nepodařilo odeslat. Zkontrolujte nastavení poštovního serveru a ujistěte se, že byl správně nakonfigurován."
-
-#: airtime_mvc/application/controllers/LoginController.php:173
-msgid "There was a problem with the username or email address you entered."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:35
-#: airtime_mvc/application/controllers/DashboardController.php:84
-msgid "You don't have permission to disconnect source."
-msgstr "Nemáte oprávnění k odpojení zdroje."
-
-#: airtime_mvc/application/controllers/DashboardController.php:37
-#: airtime_mvc/application/controllers/DashboardController.php:86
-msgid "There is no source connected to this input."
-msgstr "Neexistuje zdroj připojený k tomuto vstupu."
-
-#: airtime_mvc/application/controllers/DashboardController.php:81
-msgid "You don't have permission to switch source."
-msgstr "Nemáte oprávnění ke změně zdroje."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:72
-msgid "Preferences updated."
-msgstr "Preference aktualizovány."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:115
-msgid "Support setting updated."
-msgstr "Podpora nastavení aktualizována."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:123
-msgid "Support Feedback"
-msgstr "Technická podpora"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:251
-msgid "Stream Setting Updated."
-msgstr "Nastavení streamu aktualizováno."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:342
-msgid "path should be specified"
-msgstr "cesta by měla být specifikována"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:437
-msgid "Problem with Liquidsoap..."
-msgstr "Problém s Liquidsoap ..."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:493
-msgid "Request method not accepted"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:86
-msgid "User added successfully!"
-msgstr "Uživatel byl úspěšně přidán!"
-
-#: airtime_mvc/application/controllers/UserController.php:88
-msgid "User updated successfully!"
-msgstr "Uživatel byl úspěšně aktualizován!"
-
-#: airtime_mvc/application/controllers/UserController.php:187
-msgid "Settings updated successfully!"
-msgstr "Nastavení úspěšně aktualizováno!"
-
-#: airtime_mvc/application/controllers/WebstreamController.php:28
-#: airtime_mvc/application/controllers/WebstreamController.php:32
-msgid "Untitled Webstream"
-msgstr "Webstream bez názvu"
-
-#: airtime_mvc/application/controllers/WebstreamController.php:150
-msgid "Webstream saved."
-msgstr "Webstream uložen."
-
-#: airtime_mvc/application/controllers/WebstreamController.php:158
-msgid "Invalid form values."
-msgstr "Neplatná forma hodnot."
-
-#: airtime_mvc/application/controllers/LibraryController.php:95
-#: airtime_mvc/application/controllers/ShowbuilderController.php:136
-msgid "Preview"
-msgstr "Náhled"
-
-#: airtime_mvc/application/controllers/LibraryController.php:115
-#: airtime_mvc/application/controllers/LibraryController.php:177
-#: airtime_mvc/application/controllers/LibraryController.php:200
-msgid "Add to Playlist"
-msgstr "Přidat do Playlistu"
-
-#: airtime_mvc/application/controllers/LibraryController.php:117
-msgid "Add to Smart Block"
-msgstr "Přidat do chytrého bloku"
-
-#: airtime_mvc/application/controllers/LibraryController.php:147
-msgid "View track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:148
-msgid "Remove track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:154
-#: airtime_mvc/application/controllers/LibraryController.php:159
-msgid "Upload track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:169
-msgid "Duplicate Playlist"
-msgstr "Duplikátní Playlist"
-
-#: airtime_mvc/application/controllers/LibraryController.php:213
-msgid "No action available"
-msgstr "Žádná akce není k dispozici"
-
-#: airtime_mvc/application/controllers/LibraryController.php:233
-msgid "You don't have permission to delete selected items."
-msgstr "Nemáte oprávnění odstranit vybrané položky."
-
-#: airtime_mvc/application/controllers/LibraryController.php:279
-msgid "Could not delete file because it is scheduled in the future."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:282
-msgid "Could not delete file(s)."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:322
-#, php-format
-msgid "Copy of %s"
-msgstr "Kopie %s"
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
-msgid ""
-"To configure and use the embeddable player you must:
\n"
-" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
-" 2. Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
-msgid ""
-"To use the embeddable weekly schedule widget you must:
\n"
-" Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
#: airtime_mvc/application/controllers/ShowbuilderController.php:138
msgid "Select cursor"
msgstr "Vybrat kurzor"
@@ -4039,39 +1804,78 @@ msgstr "Odstranit kurzor"
msgid "show does not exist"
msgstr "vysílání neexistuje"
-#: airtime_mvc/application/controllers/ApiController.php:79
-msgid "You are not allowed to access this resource."
-msgstr "Nemáte udělen přístup k tomuto zdroji."
-
-#: airtime_mvc/application/controllers/ApiController.php:244
-#: airtime_mvc/application/controllers/ApiController.php:317
-#: airtime_mvc/application/controllers/ApiController.php:392
-#: airtime_mvc/application/controllers/ApiController.php:435
-#: airtime_mvc/application/controllers/ApiController.php:474
-#: airtime_mvc/application/controllers/ApiController.php:507
-msgid "You are not allowed to access this resource. "
-msgstr "Nemáte udělen přístup k tomuto zdroji. "
-
-#: airtime_mvc/application/controllers/ApiController.php:698
-#: airtime_mvc/application/controllers/ApiController.php:718
-#: airtime_mvc/application/controllers/ApiController.php:730
+#: airtime_mvc/application/controllers/ScheduleController.php:389
#, php-format
-msgid "File does not exist in %s"
-msgstr "Soubor neexistuje v %s"
+msgid "Rebroadcast of show %s from %s at %s"
+msgstr "Znovu spustit vysílaní %s od %s na %s"
-#: airtime_mvc/application/controllers/ApiController.php:781
-msgid "Bad request. no 'mode' parameter passed."
-msgstr "Špatný požadavek. Žádný 'mode' parametr neprošel."
-
-#: airtime_mvc/application/controllers/ApiController.php:791
-msgid "Bad request. 'mode' parameter is invalid"
-msgstr "Špatný požadavek. 'Mode' parametr je neplatný."
-
-#: airtime_mvc/application/layouts/scripts/login.phtml:24
-#, php-format
-msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+#: airtime_mvc/application/common/UsabilityHints.php:55
+msgid "Upload some tracks below to add them to your library!"
msgstr ""
+#: airtime_mvc/application/common/UsabilityHints.php:57
+#, php-format
+msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:63
+msgid "Click the 'New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:65
+#, php-format
+msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:73
+msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:75
+#, php-format
+msgid ""
+"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
+" %sCreate an unlinked show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:80
+msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:82
+#, php-format
+msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:89
+msgid "Click on the show starting next and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:91
+#, php-format
+msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/DateHelper.php:213
+#, php-format
+msgid "The year %s must be within the range of 1753 - 9999"
+msgstr "Rok %s musí být v rozmezí 1753 - 9999"
+
+#: airtime_mvc/application/common/DateHelper.php:216
+#, php-format
+msgid "%s-%s-%s is not a valid date"
+msgstr "%s - %s - %s není platné datum"
+
+#: airtime_mvc/application/common/DateHelper.php:240
+#, php-format
+msgid "%s:%s:%s is not a valid time"
+msgstr "%s : %s : %s není platný čas"
+
+#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
+msgid "Live stream"
+msgstr "Live stream"
+
#: airtime_mvc/application/layouts/scripts/layout.phtml:63
msgid "Smart Block"
msgstr ""
@@ -4084,6 +1888,17 @@ msgstr ""
msgid "Upload"
msgstr ""
+#: airtime_mvc/application/layouts/scripts/layout.phtml:76
+#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
+msgid "Dashboard"
+msgstr ""
+
+#: airtime_mvc/application/layouts/scripts/layout.phtml:84
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
+msgid "Webstreams"
+msgstr ""
+
#: airtime_mvc/application/layouts/scripts/layout.phtml:135
#: airtime_mvc/application/layouts/scripts/layout.phtml:161
msgid "Play"
@@ -4106,416 +1921,2128 @@ msgstr "Nstavit Cue Out"
msgid "Cursor"
msgstr "Kurzor"
-#~ msgid "%1$s copyright © %2$s All rights reserved.%3$sMaintained and distributed under the %4$s by %5$s"
-#~ msgstr "%1$s copyright © %2$sVeškerá práva vyhrazena.%3$sUdržován a distribuován pod %4$s by %5$s"
+#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#, php-format
+msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
+msgid "Drop files here or click to browse your computer."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
+msgid "Failed"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
+msgid "Pending"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
+msgid "Recent Uploads"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
+msgid "Share"
+msgstr "Sdílet"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
+msgid "Select stream:"
+msgstr "Vyberte stream:"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
+msgid "mute"
+msgstr "vypnout zvuk"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
+msgid "unmute"
+msgstr "zapnout zvuk"
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
+msgid "About"
+msgstr "O aplikaci"
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
+#, php-format
+msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
+msgstr "%1$s %2$s, open radio software pro plánování a řízení vzdálené stanice. "
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
+#, php-format
+msgid "%1$s %2$s is distributed under the %3$s"
+msgstr "%1$s %2$s je distribuován pod %3$s"
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
+#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
+#, php-format
+msgid "Welcome to %s!"
+msgstr "Vítejte v %s!"
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
+#, php-format
+msgid "Here's how you can get started using %s to automate your broadcasts: "
+msgstr "Zde můžete vidět jak začít s používáním %s pro automatizované vysílání:"
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
+msgid "Upload audio tracks"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
+msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
+msgid "Schedule a show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
+msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
+msgid "Add tracks to your show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
+msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
+msgid "Now you're good to go!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
+#, php-format
+msgid "For more detailed help, read the %suser manual%s."
+msgstr "Pro podrobnější nápovědu si přečtěte %suživatelský manuál%s."
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
+#: airtime_mvc/application/configs/navigation.php:40
+msgid "Weekly Schedule"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
+#: airtime_mvc/application/forms/Player.php:77
+msgid "Preview:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
+#: airtime_mvc/application/configs/navigation.php:34
+msgid "Player"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:97
+msgid "Playout History"
+msgstr "Historie odvysílaného"
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
+msgid "Log Sheet"
+msgstr "Přehled logu"
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
+msgid "File Summary"
+msgstr "Shrnutí souboru"
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
+msgid "Show Summary"
+msgstr "Shrnutí show"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
+msgid "Expand Static Block"
+msgstr "Rozšířit statický blok"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
+msgid "Expand Dynamic Block"
+msgstr "Rozšířit dynamický blok"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
+msgid "Choose some search criteria above and click Generate to create this playlist."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
+msgid "A track list will be generated when you schedule this smart block into a show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
+msgid "Drag tracks here from your library to add them to the playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
+msgid "Editing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:26
+msgid "Name:"
+msgstr "Název:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
+#: airtime_mvc/application/forms/AddShowWhat.php:54
+msgid "Description:"
+msgstr "Popis:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
+#: airtime_mvc/application/forms/AddShowWhen.php:89
+msgid "Duration:"
+msgstr "Doba trvání:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
+msgid "Toggle Details"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+msgid "Shuffle playlist"
+msgstr "Promíchat Playlist"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
+msgid "Shuffle"
+msgstr "Promíchat"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
+msgid "Playlist crossfade"
+msgstr "Playlist crossfade"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+msgid "Empty playlist content"
+msgstr "Prázdný playlist"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Clear"
+msgstr "Vymazat"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+msgid "Fade in: "
+msgstr "Zesílit: "
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "Fade out: "
+msgstr "Zeslabit: "
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+msgid "Save playlist"
+msgstr "Uložit playlist"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
+msgid "No open playlist"
+msgstr "Neotevřený 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 "UKázat Waveform"
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "(ss.t)"
+msgstr "(ss.t)"
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Remove all content from this smart block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
+msgid "No smart block currently open"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+msgid "Cue In: "
+msgstr "Cue in: "
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "(hh:mm:ss.t)"
+msgstr "(hh:mm:ss.t)"
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "Cue Out: "
+msgstr "Cue out: "
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
+msgid "Original Length:"
+msgstr "Původní délka:"
+
+#: airtime_mvc/application/views/scripts/preference/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:56
+msgid "General"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
+msgid "Stream Settings"
+msgstr "Nastavení Streamu"
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
+msgid "Global"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
+msgid "dB"
+msgstr "dB"
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
+msgid "Output Streams"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:3
+#: airtime_mvc/application/forms/Login.php:83
+msgid "Login"
+msgstr "Přihlásit"
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:7
+#, php-format
+msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
+msgstr "Vítejte v %s demo! Můžete se přihlásit přes uživatelské jméno 'admin' a heslo 'admin'."
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
+msgid "Email Sent!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
+msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
+msgid "Back"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
+msgid "Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
+msgid "New password"
+msgstr "Nové heslo"
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
+msgid "Please enter and confirm your new password in the fields below."
+msgstr "Prosím zadejte a potvrďte své nové heslo v políčkách níže."
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
+msgid "Manage Users"
+msgstr "Správa uživatelů"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
+msgid "New User"
+msgstr "Nový uživatel"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
+msgid "id"
+msgstr "id"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
+#: airtime_mvc/application/forms/PasswordRestore.php:25
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
+msgid "Username"
+msgstr "Uživatelské jméno"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
+msgid "First Name"
+msgstr "Jméno"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
+msgid "Last Name"
+msgstr "Příjmení"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
+msgid "User Type"
+msgstr "Typ uživatele"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
+#, php-format
+msgid "Super Admin details can be changed in your Billing Settings."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
+msgid "Find Shows"
+msgstr "Najít vysílání"
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
+msgid "Choose Show Instance"
+msgstr "Vybrat instanci show"
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
+msgid "Find"
+msgstr "Najdi"
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
+#: airtime_mvc/application/configs/navigation.php:61
+msgid "My Profile"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
+#, php-format
+msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
+msgid "Repeat Days:"
+msgstr "Opakovat dny:"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
+#: airtime_mvc/application/forms/GeneralPreferences.php:53
+#: airtime_mvc/application/forms/AddShowStyle.php:64
+msgid "Remove"
+msgstr "Odstranit"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
+msgid "Add"
+msgstr "Přidat"
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
+msgid "Show Source"
+msgstr "Zobrazit zdroj"
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
+msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
+msgid "Register Airtime"
+msgstr "Registrovat Airtime"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
+#, php-format
+msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
+#, php-format
+msgid "Click the box below to promote your station on %s."
+msgstr "Klikněte na box níže pro podporu vaší stanice na %s."
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
+msgid "(Required)"
+msgstr "(Požadováno)"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
+msgid "(for verification purposes only, will not be published)"
+msgstr "(pouze pro ověřovací účely, nebude zveřejněno)"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
+#: airtime_mvc/application/forms/GeneralPreferences.php:43
+msgid "Note: Anything larger than 600x600 will be resized."
+msgstr "Poznámka: Cokoli většího než 600x600 bude zmenšeno."
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
+msgid "Show me what I am sending "
+msgstr "Zobrazit co posílám "
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
+msgid "Terms and Conditions"
+msgstr "Pravidla a podmínky"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
+msgid "Choose Days:"
+msgstr "Vyberte dny:"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
+msgid "Search Criteria:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
+msgid "New Criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
+msgid "or"
+msgstr "nebo"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
+msgid "and"
+msgstr "a"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
+msgid "New Modifier"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
+msgid " to "
+msgstr " do "
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
+msgid "files meet the criteria"
+msgstr "soubory splňují kritéria"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
+msgid "file meets the criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
+msgid "Filter History"
+msgstr "Filtrovat historii"
+
+#: airtime_mvc/application/views/scripts/form/login.phtml:41
+msgid "Forgot your password?"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
+msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
+msgstr "(Za účelem podpory vaší stanice musí být povolena funkce 'Zaslat Váš názor')."
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
+msgid "Stream "
+msgstr "Stream "
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
+msgid "Additional Options"
+msgstr "Dodatečné možnosti"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
+msgid "The following info will be displayed to listeners in their media player:"
+msgstr "Následující informace se zobrazí u posluchačů na jejich přehrávačích:"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
+msgid "(Your radio station website)"
+msgstr "(Webová stránka vaší rádiové stanice)"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
+msgid "Stream URL: "
+msgstr "URL streamu: "
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
+msgid "Choose folder"
+msgstr "Vyberte soubor"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
+msgid "Set"
+msgstr "Nastavit"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
+msgid "Current Import Folder:"
+msgstr "Aktuálně importovaný soubor:"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
+#, php-format
+msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
+msgstr "Znovu projít sledovaný adresář (Tato funkce je užitečná, pokud je síť přeplněna a nedojde k synchronizaci s %s)"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
+msgid "Remove watched directory"
+msgstr "Odebrat sledovaný adresář"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
+msgid "You are not watching any media folders."
+msgstr "Nesledujete žádné mediální soubory."
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
+msgid "Live Broadcasting"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
+msgid "Master Source"
+msgstr "Hlavní zdroj"
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
+msgid "Use these settings in your broadcasting software to stream live at any time."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
+msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
+msgid "TuneIn Settings"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
+msgid "SoundCloud Settings"
+msgstr "Nastavení SoundCloud "
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
+msgid "Dangerous Options"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Add this show"
+msgstr "Přidat toto vysílání"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Update show"
+msgstr "Aktualizace vysílání"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
+msgid "What"
+msgstr "Co"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
+msgid "When"
+msgstr "Kdy"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
+msgid "Live Stream Input"
+msgstr "Vložení Live Streamu"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
+msgid "Who"
+msgstr "Kdo"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
+msgid "Style"
+msgstr "Styl"
+
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
+msgid "Disk Space"
+msgstr "Velikost disku"
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:3
+msgid "File import in progress..."
+msgstr "Probíhá importování souboru ..."
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:10
+#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
+msgid "Advanced Search Options"
+msgstr "Rozšířené možnosti hledání"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
+#: airtime_mvc/application/forms/EditAudioMD.php:24
+#: airtime_mvc/application/forms/Player.php:15
+msgid "Title:"
+msgstr "Název:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
+#: airtime_mvc/application/forms/EditAudioMD.php:34
+msgid "Creator:"
+msgstr "Tvůrce:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
+#: airtime_mvc/application/forms/EditAudioMD.php:44
+msgid "Album:"
+msgstr "Album:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
+msgid "Track:"
+msgstr "Skladba:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
+msgid "Length:"
+msgstr "Délka:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
+msgid "Sample Rate:"
+msgstr "Vzorová frekvence:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
+msgid "Bit Rate:"
+msgstr "Bit frekvence:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
+#: airtime_mvc/application/forms/EditAudioMD.php:115
+msgid "Mood:"
+msgstr "Nálada:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:45
+#: airtime_mvc/application/forms/EditAudioMD.php:62
+msgid "Genre:"
+msgstr "Žánr:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
+#: airtime_mvc/application/forms/EditAudioMD.php:72
+msgid "Year:"
+msgstr "Rok:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
+#: airtime_mvc/application/forms/EditAudioMD.php:85
+msgid "Label:"
+msgstr "Označení:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
+#: airtime_mvc/application/forms/EditAudioMD.php:125
+msgid "BPM:"
+msgstr "BPM:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
+#: airtime_mvc/application/forms/EditAudioMD.php:95
+msgid "Composer:"
+msgstr "Skladatel:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
+#: airtime_mvc/application/forms/EditAudioMD.php:105
+msgid "Conductor:"
+msgstr "Dirigent:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
+#: airtime_mvc/application/forms/EditAudioMD.php:135
+msgid "Copyright:"
+msgstr "Autorská práva:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
+msgid "Isrc Number:"
+msgstr "ISRC číslo"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
+#: airtime_mvc/application/forms/EditAudioMD.php:155
+msgid "Website:"
+msgstr "Internetová stránka:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
+#: airtime_mvc/application/forms/EditAudioMD.php:165
+#: airtime_mvc/application/forms/EditUser.php:119
+#: airtime_mvc/application/forms/Login.php:68
+msgid "Language:"
+msgstr "Jazyk:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
+msgid "File Path:"
+msgstr "Cesta souboru:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
+msgid "Web Stream"
+msgstr "Web Stream"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
+msgid "Dynamic Smart Block"
+msgstr "Dynamický Smart Block"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
+msgid "Static Smart Block"
+msgstr "Statický Smart Block"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
+msgid "Audio Track"
+msgstr "Audio stopa"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
+msgid "Playlist Contents: "
+msgstr "Obsah Playlistu: "
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
+msgid "Static Smart Block Contents: "
+msgstr "Obsah statistického Smart Blocku: "
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
+msgid "Dynamic Smart Block Criteria: "
+msgstr "Kritéria dynamickeho Smart Blocku: "
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
+msgid "Limit to "
+msgstr "Omezit na "
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
+#: airtime_mvc/application/forms/AddShowWhat.php:36
+msgid "URL:"
+msgstr "URL"
+
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
+msgid "Viewing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
+msgid "Listeners"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
+msgid "Stream Data Collection Status"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
+msgid "Your trial expires in"
+msgstr "Váše zkušební období vyprší "
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
+msgid "days"
+msgstr "dny"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
+msgid "Previous:"
+msgstr "Předchozí:"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
+msgid "Next:"
+msgstr "Další:"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
+msgid "Source Streams"
+msgstr "Zdrojové Streamy"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
+msgid "ON AIR"
+msgstr "ON AIR"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
+msgid "Listen"
+msgstr "Poslech"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
+msgid "Logout"
+msgstr "Odhlásit "
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
+msgid "Playout History Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
+msgid "Log Sheet Templates"
+msgstr "Vzory přehledu logů"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
+msgid "New Log Sheet Template"
+msgstr "Nový vzor přehledu logů"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
+msgid "No Log Sheet Templates"
+msgstr "Vzory přehledu logů nejsou"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
+msgid "File Summary Templates"
+msgstr "Vzory přehledu souboru"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
+msgid "New File Summary Template"
+msgstr "Nový vzor přehledu souboru"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
+msgid "No File Summary Templates"
+msgstr "Nový vzor přehledu souboru"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
+msgid "Creating File Summary Template"
+msgstr "Vytvořit soubor přehledu nastavení"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
+msgid "Creating Log Sheet Template"
+msgstr "Vytvořit vzor přehledu logů"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
+msgid "Name"
+msgstr "Jméno"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
+msgid "Add more elements"
+msgstr "Přidat elementy"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
+msgid "Add New Field"
+msgstr "Přidat nové pole"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
+msgid "Set Default Template"
+msgstr "Nastavit defolní šablnu"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
+msgid "Description"
+msgstr "Popis"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
+msgid "Stream URL:"
+msgstr "URL streamu:"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
+msgid "Default Length:"
+msgstr "Defaultní délka:"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
+msgid "No webstream"
+msgstr "Žádný webstream"
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
+#: airtime_mvc/application/views/scripts/error/error.phtml:6
+msgid "An error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
+msgid "Access Denied!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
+msgid "You do not have permission to access this page!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
+#: airtime_mvc/application/views/scripts/error/error.phtml:14
+#: airtime_mvc/application/configs/navigation.php:143
+msgid "Help"
+msgstr "Nápověda"
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
+msgid "Oops!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
+msgid "Something went wrong!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
+msgid "Bad Request!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
+msgid "The requested action is not supported!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
+msgid "Page not found!"
+msgstr "Stránka nebyla nalezena!"
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
+msgid "We couldn't find the page you were looking for."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error.phtml:12
+msgid "Looks like the page you were looking for doesn't exist!"
+msgstr "Stránka, kterou hledáte, neexistuje!"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
+msgid "previous"
+msgstr "předchozí"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
+msgid "play"
+msgstr "přehrát"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
+msgid "pause"
+msgstr "pauza"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
+msgid "next"
+msgstr "další"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
+msgid "stop"
+msgstr "stop"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
+msgid "max volume"
+msgstr "max. hlasitost"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
+msgid "Update Required"
+msgstr "Nutná aktualizace"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
+#, php-format
+msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
+msgstr "Chcete-li přehrávat média, budete si muset buď nastavit svůj prohlížeč na nejnovější verzi nebo aktualizovat svůj%sFlash plugin%s."
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
+msgid "Plan type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
+msgid "Billing cycle:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
+msgid "Payment method:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
+msgid "PayPal"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
+msgid "Credit Card via 2Checkout"
+msgstr ""
+
+#: airtime_mvc/application/forms/DateRange.php:16
+#: airtime_mvc/application/forms/ShowBuilder.php:18
+msgid "Date Start:"
+msgstr "Datum zahájení:"
+
+#: airtime_mvc/application/forms/DateRange.php:35
+#: airtime_mvc/application/forms/DateRange.php:63
+#: airtime_mvc/application/forms/ShowBuilder.php:37
+#: airtime_mvc/application/forms/ShowBuilder.php:65
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
+msgid "Invalid character entered"
+msgstr "Zadán neplatný znak "
+
+#: airtime_mvc/application/forms/DateRange.php:44
+#: airtime_mvc/application/forms/ShowBuilder.php:46
+#: airtime_mvc/application/forms/AddShowRepeats.php:56
+msgid "Date End:"
+msgstr "Datum ukončení:"
+
+#: airtime_mvc/application/forms/ShowBuilder.php:72
+#: airtime_mvc/application/forms/ShowBuilder.php:88
+msgid "Filter by Show"
+msgstr ""
+
+#: airtime_mvc/application/forms/ShowBuilder.php:80
+msgid "All My Shows:"
+msgstr "Všechna má vysílání:"
+
+#: airtime_mvc/application/forms/AddShowWho.php:10
+msgid "Search Users:"
+msgstr "Hledat uživatele:"
+
+#: airtime_mvc/application/forms/AddShowWho.php:24
+msgid "DJs:"
+msgstr "DJs:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:30
+#: airtime_mvc/application/forms/GeneralPreferences.php:25
+#: airtime_mvc/application/forms/SupportSettings.php:18
+msgid "Station Name"
+msgstr "Název stanice"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:39
+#: airtime_mvc/application/forms/SupportSettings.php:31
+msgid "Phone:"
+msgstr "Telefon:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:51
+#: airtime_mvc/application/forms/AddUser.php:67
+#: airtime_mvc/application/forms/EditUser.php:83
+#: airtime_mvc/application/forms/SupportSettings.php:43
+msgid "Email:"
+msgstr "E-mail:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:62
+#: airtime_mvc/application/forms/SupportSettings.php:54
+msgid "Station Web Site:"
+msgstr "Webová stránka stanice:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:73
+#: airtime_mvc/application/forms/SupportSettings.php:65
+msgid "Country:"
+msgstr "Stát:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:84
+#: airtime_mvc/application/forms/SupportSettings.php:76
+msgid "City:"
+msgstr "Město:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:96
+#: airtime_mvc/application/forms/SupportSettings.php:88
+msgid "Station Description:"
+msgstr "Popis stanice:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:106
+#: airtime_mvc/application/forms/GeneralPreferences.php:42
+msgid "Station Logo:"
+msgstr "Logo stanice:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:126
+#: airtime_mvc/application/forms/SupportSettings.php:108
+#, php-format
+msgid "Promote my station on %s"
+msgstr "Podpořit mou stanici na %s"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:151
+#: airtime_mvc/application/forms/SupportSettings.php:120
+#, php-format
+msgid "By checking this box, I agree to %s's %sprivacy policy%s."
+msgstr "Zaškrtnutí tohoto okénka souhlasím s %s's %spravidly ochrany osobních údajů%s."
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:169
+#: airtime_mvc/application/forms/SupportSettings.php:143
+msgid "You have to agree to privacy policy."
+msgstr "Musíte souhlasit se zásadami ochrany osobních údajů."
+
+#: airtime_mvc/application/forms/AddShowRR.php:10
+msgid "Record from Line In?"
+msgstr "Nahráno z Line In?"
+
+#: airtime_mvc/application/forms/AddShowRR.php:16
+msgid "Rebroadcast?"
+msgstr "Vysílat znovu?"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
+#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
+msgid "Value is required and can't be empty"
+msgstr "Hodnota je požadována a nemůže zůstat prázdná"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
+msgid "'%value%' is no valid email address in the basic format local-part@hostname"
+msgstr "'%hodnota%' není platná e-mailová adresa v základním formátu local-part@hostname"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
+msgid "'%value%' does not fit the date format '%format%'"
+msgstr "'%hodnota%' neodpovídá formátu datumu '%formátu%'"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
+msgid "'%value%' is less than %min% characters long"
+msgstr "'%hodnota%' je kratší než požadovaných %min% znaků"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
+msgid "'%value%' is more than %max% characters long"
+msgstr "'%hodnota%' je více než %max% znaků dlouhá"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
+msgid "'%value%' is not between '%min%' and '%max%', inclusively"
+msgstr "'%hodnota%' není mezi '%min%' a '%max%', včetně"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
+msgid "Passwords do not match"
+msgstr "Hesla se neshodují"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
+msgid "Day must be specified"
+msgstr "Den musí být zadán"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
+msgid "Time must be specified"
+msgstr "Čas musí být zadán"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
+msgid "Must wait at least 1 hour to rebroadcast"
+msgstr "Musíte počkat alespoň 1 hodinu před dalším vysíláním"
+
+#: airtime_mvc/application/forms/PasswordRestore.php:14
+msgid "Email"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordRestore.php:36
+msgid "Reset password"
+msgstr "Obnovit heslo"
+
+#: airtime_mvc/application/forms/AddShowWhat.php:30
+msgid "Untitled Show"
+msgstr "Pořad bez názvu"
+
+#: airtime_mvc/application/forms/AddShowWhat.php:69
+msgid "Instance Description:"
+msgstr ""
+
+#: airtime_mvc/application/forms/DangerousPreferences.php:12
+msgid "Delete All Tracks in Library"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditAudioMD.php:145
+msgid "ISRC Number:"
+msgstr "ISRC číslo:"
+
+#: airtime_mvc/application/forms/EditAudioMD.php:176
+msgid "OK"
+msgstr "OK"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:33
+msgid "Station Description"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:62
+msgid "Default Crossfade Duration (s):"
+msgstr "Defoltní nastavení doby plynulého přechodu"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:68
+#: airtime_mvc/application/forms/GeneralPreferences.php:82
+#: airtime_mvc/application/forms/GeneralPreferences.php:96
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
+msgid "Please enter a time in seconds (eg. 0.5)"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:76
+msgid "Default Fade In (s):"
+msgstr "Přednastavení Fade In:"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:90
+msgid "Default Fade Out (s):"
+msgstr "Přednastavení Fade Out:"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:102
+msgid "Public Airtime API"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:103
+msgid "Required for embeddable schedule widget."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:105
+msgid "Disabled"
+msgstr "Vypnuto"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:106
+msgid "Enabled"
+msgstr "Povoleno"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:109
+msgid ""
+"Enabling this feature will allow Airtime to provide schedule data\n"
+" to external widgets that can be embedded in your website."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:120
+msgid "Default Language"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:127
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
+msgid "Station Timezone"
+msgstr "Časové pásmo stanice"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:134
+msgid "Week Starts On"
+msgstr "Týden začíná"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:150
+msgid "Display login button on your Radio Page?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:29
+#: airtime_mvc/application/forms/EditUser.php:37
+#: airtime_mvc/application/forms/Login.php:41
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
+msgid "Username:"
+msgstr "Uživatelské jméno:"
+
+#: airtime_mvc/application/forms/AddUser.php:38
+#: airtime_mvc/application/forms/EditUser.php:48
+#: airtime_mvc/application/forms/Login.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
+msgid "Password:"
+msgstr "Heslo:"
+
+#: airtime_mvc/application/forms/AddUser.php:46
+#: airtime_mvc/application/forms/EditUser.php:57
+msgid "Verify Password:"
+msgstr "Ověřit heslo:"
+
+#: airtime_mvc/application/forms/AddUser.php:55
+#: airtime_mvc/application/forms/EditUser.php:67
+msgid "Firstname:"
+msgstr "Jméno:"
+
+#: airtime_mvc/application/forms/AddUser.php:61
+#: airtime_mvc/application/forms/EditUser.php:75
+msgid "Lastname:"
+msgstr "Příjmení:"
+
+#: airtime_mvc/application/forms/AddUser.php:76
+#: airtime_mvc/application/forms/EditUser.php:94
+msgid "Mobile Phone:"
+msgstr "Mobilní telefon:"
+
+#: airtime_mvc/application/forms/AddUser.php:82
+#: airtime_mvc/application/forms/EditUser.php:102
+msgid "Skype:"
+msgstr "Skype:"
+
+#: airtime_mvc/application/forms/AddUser.php:88
+#: airtime_mvc/application/forms/EditUser.php:110
+msgid "Jabber:"
+msgstr "Jabber:"
+
+#: airtime_mvc/application/forms/AddUser.php:95
+msgid "User Type:"
+msgstr "Typ uživatele:"
+
+#: airtime_mvc/application/forms/AddUser.php:120
+#: airtime_mvc/application/forms/EditUser.php:155
+msgid "Login name is not unique."
+msgstr "Přihlašovací jméno není jedinečné."
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
+msgid "Import Folder:"
+msgstr "Importovaná složka:"
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
+msgid "Watched Folders:"
+msgstr "Sledované složky:"
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
+msgid "Not a valid Directory"
+msgstr "Neplatný adresář"
+
+#: airtime_mvc/application/forms/BillingClient.php:126
+msgid "What is the name of your favorite childhood friend?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:127
+msgid "What school did you attend for sixth grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:128
+msgid "In what city did you meet your spouse/significant other?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:129
+msgid "What street did you live on in third grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:130
+msgid "What is the first name of the boy or girl that you first kissed?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:131
+msgid "In what city or town was your first job?"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
+msgid "Default License:"
+msgstr "Výchozí licence:"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
+msgid "All rights are reserved"
+msgstr "Všechna práva jsou vyhrazena"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
+msgid "The work is in the public domain"
+msgstr "Práce je ve veřejné doméně"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
+msgid "Creative Commons Attribution"
+msgstr "Creative Commons označení"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
+msgid "Creative Commons Attribution Noncommercial"
+msgstr "Creative Commons nekomerční"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
+msgid "Creative Commons Attribution No Derivative Works"
+msgstr "Creative Commons Nezasahujte do díla"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
+msgid "Creative Commons Attribution Share Alike"
+msgstr "Creative Commons Zachovejte licenci"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
+msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
+msgstr "Creative Commons nekomerční Nezasahujte do díla"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
+msgid "Creative Commons Attribution Noncommercial Share Alike"
+msgstr "Creative Commons nekomerční Zachovejte licenci"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
+msgid "Default Sharing Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
+msgid "Public"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
+msgid "Private"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditUser.php:129
+msgid "Interface Timezone:"
+msgstr "Časové pásmo uživatelského rozhraní"
+
+#: airtime_mvc/application/forms/Player.php:14
+msgid "Now Playing"
+msgstr "Právě se přehrává"
+
+#: airtime_mvc/application/forms/Player.php:25
+msgid "Select Stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:28
+msgid "Auto detect the most appropriate stream to use."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:29
+msgid "Select a stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:41
+msgid " - Mobile friendly"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:45
+msgid " - The player does not support Opus streams."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:71
+msgid "Embeddable code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:72
+msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
+#: airtime_mvc/application/models/Block.php:1351
+msgid "Select criteria"
+msgstr "Vyberte kritéria"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
+#: airtime_mvc/application/models/Block.php:1353
+msgid "Bit Rate (Kbps)"
+msgstr "Kvalita (Kbps)"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
+#: airtime_mvc/application/models/Block.php:1374
+msgid "Sample Rate (kHz)"
+msgstr "Vzorkovací frekvence (kHz)"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
+msgid "hours"
+msgstr "hodiny"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
+msgid "minutes"
+msgstr "minuty"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
+#: airtime_mvc/application/models/Block.php:333
+msgid "items"
+msgstr "položka"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
+msgid "Randomly"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
+msgid "Newest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
+msgid "Oldest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
+msgid "Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
+msgid "Static"
+msgstr "Statický"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
+msgid "Dynamic"
+msgstr "Dynamický"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
+msgid "Allow Repeated Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
+msgid "Sort Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
+msgid "Limit to:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
+msgid "Generate playlist content and save criteria"
+msgstr "Generovat obsah playlistu a uložit kritéria"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
+msgid "Generate"
+msgstr "Generovat"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
+msgid "Shuffle playlist content"
+msgstr "Promíchat obsah playlistu"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
+msgid "Limit cannot be empty or smaller than 0"
+msgstr "Limit nemůže být prázdný nebo menší než 0"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
+msgid "Limit cannot be more than 24 hrs"
+msgstr "Limit nemůže být větší než 24 hodin"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
+msgid "The value should be an integer"
+msgstr "Hodnota by měla být celé číslo"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
+msgid "500 is the max item limit value you can set"
+msgstr "500 je max hodnota položky, kterou lze nastavit"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
+msgid "You must select Criteria and Modifier"
+msgstr "Musíte vybrat kritéria a modifikátor"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
+msgid "'Length' should be in '00:00:00' format"
+msgstr "'Délka' by měla být ve formátu '00:00:00'"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
+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:594
+msgid "The value has to be numeric"
+msgstr "Hodnota musí být číslo"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
+msgid "The value should be less then 2147483648"
+msgstr "Hodnota by měla být menší než 2147483648"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
+#, php-format
+msgid "The value should be less than %s characters"
+msgstr "Hodnota by měla mít méně znaků než %s"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
+msgid "Value cannot be empty"
+msgstr "Hodnota nemůže být prázdná"
+
+#: airtime_mvc/application/forms/StreamSetting.php:26
+msgid "Icecast Vorbis Metadata"
+msgstr "Metadata Icecast Vorbis"
+
+#: airtime_mvc/application/forms/StreamSetting.php:36
+msgid "Stream Label:"
+msgstr "Označení streamu:"
+
+#: airtime_mvc/application/forms/StreamSetting.php:37
+msgid "Artist - Title"
+msgstr "Umělec - Název"
+
+#: airtime_mvc/application/forms/StreamSetting.php:38
+msgid "Show - Artist - Title"
+msgstr "Vysílání - Umělec - Název"
+
+#: airtime_mvc/application/forms/StreamSetting.php:39
+msgid "Station name - Show name"
+msgstr "Název stanice - Název vysílání"
+
+#: airtime_mvc/application/forms/StreamSetting.php:45
+msgid "Off Air Metadata"
+msgstr "Off Air metadata"
+
+#: airtime_mvc/application/forms/StreamSetting.php:51
+msgid "Enable Replay Gain"
+msgstr "Povolit Replay Gain"
+
+#: airtime_mvc/application/forms/StreamSetting.php:57
+msgid "Replay Gain Modifier"
+msgstr "Replay Gain Modifikátor"
+
+#: airtime_mvc/application/forms/StreamSetting.php:65
+msgid "Streaming Server:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Airtime Pro Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Custom / 3rd Party Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordChange.php:17
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
+msgid "Password"
+msgstr "Heslo"
-#~ msgid "Show:"
-#~ msgstr "Vysílání:"
+#: airtime_mvc/application/forms/PasswordChange.php:28
+msgid "Confirm new password"
+msgstr "Potvrďte nové heslo"
-#~ msgid "enter a time in seconds 0{.0}"
-#~ msgstr "zadejte čas v sekundách 0{.0}"
+#: airtime_mvc/application/forms/PasswordChange.php:36
+msgid "Password confirmation does not match your password."
+msgstr "Potvrzené heslo neodpovídá vašemu heslu."
-#~ msgid "Allow Remote Websites To Access \"Schedule\" Info?%s (Enable this to make front-end widgets work.)"
-#~ msgstr "Povolit vzdáleným webovým stránkám přístup k \"rozpisu\" Info? %s (Povolit tuto funkci, aby front-end widgety fungovaly.)"
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
+msgid "Station Language"
+msgstr ""
-#~ msgid "Default Interface Language"
-#~ msgstr "Výchozí jazyk rozhraní"
-
-#~ msgid "Get new password"
-#~ msgstr "Získat nové heslo"
-
-#~ msgid "Set smart block type:"
-#~ msgstr "Nastavit chytrý typ bloku:"
-
-#~ msgid "Allow Repeat Tracks:"
-#~ msgstr "Povolit Opakujte skladby:"
-
-#~ msgid "Limit to"
-#~ msgstr "Omezit na"
-
-#~ msgid "Auto Switch Off"
-#~ msgstr "Automatické přepínání vypnuto"
-
-#~ msgid "Auto Switch On"
-#~ msgstr "Automatické přepínání zapnuto"
-
-#~ msgid "Switch Transition Fade (s)"
-#~ msgstr "Prolnutí při přepnutí (s)"
-
-#~ msgid "enter a time in seconds 00{.000000}"
-#~ msgstr "Zadejte čas v sekundách 00{0.000000}"
-
-#~ msgid "Master Username"
-#~ msgstr "Master uživatelské jméno"
-
-#~ msgid "Master Password"
-#~ msgstr "Master uživatelské jméno"
-
-#~ msgid "Master Source Connection URL"
-#~ msgstr "Master zdrojové URL připojení "
-
-#~ msgid "Show Source Connection URL"
-#~ msgstr "Zobrazit zdrojové URL připojení"
-
-#~ msgid "Master Source Port"
-#~ msgstr "Hlavní zdrojový port"
-
-#~ msgid "Master Source Mount Point"
-#~ msgstr "Hlavní zdrojový přípojný bod"
-
-#~ msgid "Show Source Port"
-#~ msgstr "Zobrazit zdrojový port"
-
-#~ msgid "Show Source Mount Point"
-#~ msgstr "Zobrazit zdrojový přípojný bod"
-
-#~ msgid "You cannot use same port as Master DJ port."
-#~ msgstr "Nemůžete použít stejný port jako Master DJ port."
-
-#~ msgid "Port %s is not available"
-#~ msgstr "Port %s není k dispozici"
-
-#~ msgid "E-mail"
-#~ msgstr "E-mail"
-
-#~ msgid "Restore password"
-#~ msgstr "Obnovení hesla"
-
-#~ msgid "Hardware Audio Output"
-#~ msgstr "Hardware Audio výstup"
-
-#~ msgid "Output Type"
-#~ msgstr "Typ výstupu"
-
-#~ msgid "Date/Time Start:"
-#~ msgstr "Začátek datum/čas:"
-
-#~ msgid "Date/Time End:"
-#~ msgstr "Konec datum/čas:"
-
-#~ msgid "Automatically Upload Recorded Shows"
-#~ msgstr "Automaticky nahrát nahrané vysílání"
-
-#~ msgid "Enable SoundCloud Upload"
-#~ msgstr "Povolit SoundCloud nahrávání"
-
-#~ msgid "Automatically Mark Files \"Downloadable\" on SoundCloud"
-#~ msgstr "Automaticky označit soubory \"Ke stažení\" na SoundCloud"
-
-#~ msgid "SoundCloud Email"
-#~ msgstr "SoundCloud Email"
-
-#~ msgid "SoundCloud Password"
-#~ msgstr "SoundCloud heslo"
-
-#~ msgid "SoundCloud Tags: (separate tags with spaces)"
-#~ msgstr "SoundCloud Tagy: (oddělit tagy mezerami)"
-
-#~ msgid "Default Genre:"
-#~ msgstr "Výchozí žánr:"
-
-#~ msgid "Default Track Type:"
-#~ msgstr "Výchozí typ skladby:"
-
-#~ msgid "Original"
-#~ msgstr "Původní"
-
-#~ msgid "Remix"
-#~ msgstr "Remix"
-
-#~ msgid "Live"
-#~ msgstr "Live"
-
-#~ msgid "Recording"
-#~ msgstr "Záznam"
-
-#~ msgid "Spoken"
-#~ msgstr "Mluvený"
-
-#~ msgid "Podcast"
-#~ msgstr "Podcast"
-
-#~ msgid "Demo"
-#~ msgstr "Demo"
-
-#~ msgid "Work in progress"
-#~ msgstr "Práce v procesu"
-
-#~ msgid "Stem"
-#~ msgstr "Stem"
-
-#~ msgid "Loop"
-#~ msgstr "Smyčka"
-
-#~ msgid "Sound Effect"
-#~ msgstr "Zvukový efekt"
-
-#~ msgid "One Shot Sample"
-#~ msgstr "One Shot ukázka"
-
-#~ msgid "Other"
-#~ msgstr "Další"
-
-#~ msgid "Enable System Emails (Password Reset)"
-#~ msgstr "Povolit systému odesílat e-maily (Obnovení hesla)"
-
-#~ msgid "Reset Password 'From' Email"
-#~ msgstr "Odesílatel E-mailu Obnovení hesla"
-
-#~ msgid "Configure Mail Server"
-#~ msgstr "Konfigurace poštovního serveru"
-
-#~ msgid "Requires Authentication"
-#~ msgstr "Vyžaduje ověření"
-
-#~ msgid "Mail Server"
-#~ msgstr "Poštovní server"
-
-#~ msgid "Email Address"
-#~ msgstr "E-mailová adresa"
-
-#~ msgid "Please enter your user name and password"
-#~ msgstr "Prosím, zadejte své uživatelské jméno a heslo"
-
-#~ msgid "Given email not found."
-#~ msgstr "Zadaný e-mail nebyl nalezen."
-
-#~ msgid "Page not found"
-#~ msgstr "Stránka nebyla nalezena"
-
-#~ msgid "Application error"
-#~ msgstr "Chyba aplikace"
-
-#~ msgid "Playlist / Block"
-#~ msgstr "Playlist/Blok"
-
-#~ msgid "If you change the username or password values for an enabled stream the playout engine will be rebooted and your listeners will hear silence for 5-10 seconds. Changing the following fields will NOT cause a reboot: Stream Label (Global Settings), and Switch Transition Fade(s), Master Username, and Master Password (Input Stream Settings). If Airtime is recording, and if the change causes a playout engine restart, the recording will be interrupted."
-#~ msgstr "Pokud změníte jméno uživatele nebo heslo hodnoty povoleného streamu playout motor bude restartován a vaši posluchači uslyší ticho po dobu 5-10 sekund. Změna následující pole nezpůsobí restartovaní: Stream Label (Globální nastavení) a Switch Transition Fade(s), Master Username, and Master Password (Nastavení vstupního streamu). Pokud Airtime pořizuje záznam, a pokud změna způsobí restart playoutu, nahrávaní bude přerušeno."
-
-#~ msgid "today"
-#~ msgstr "dnes"
-
-#~ msgid "day"
-#~ msgstr "den"
-
-#~ msgid "week"
-#~ msgstr "týden"
-
-#~ msgid "month"
-#~ msgstr "měsíc"
-
-#~ msgid "Remove overbooked tracks"
-#~ msgstr "Odebrat duplicitní skladby"
-
-#~ msgid "Soundcloud"
-#~ msgstr "Soundcloud"
-
-#~ msgid "View on Soundcloud"
-#~ msgstr "Zobrazit na SoundCloud"
-
-#~ msgid "Re-upload to SoundCloud"
-#~ msgstr "Znovu nahrát do SoundCloud"
-
-#~ msgid "Upload to SoundCloud"
-#~ msgstr "Nahrát do SoundCloud"
-
-#~ msgid "Could not delete some scheduled files."
-#~ msgstr "Nelze odstranit některé naplánované soubory."
-
-#~ msgid "Add Media"
-#~ msgstr "Přidat média"
-
-#~ msgid "Library"
-#~ msgstr "Knihovna"
-
-#~ msgid "System"
-#~ msgstr "Systém"
-
-#~ msgid "Preferences"
-#~ msgstr "Nastavení"
-
-#~ msgid "Media Folders"
-#~ msgstr "Složky Médií"
-
-#~ msgid "History"
-#~ msgstr "Historie"
-
-#~ msgid "Service"
-#~ msgstr "Servis"
-
-#~ msgid "Uptime"
-#~ msgstr "Doba provozuschopnosti"
-
-#~ msgid "CPU"
-#~ msgstr "CPU"
-
-#~ msgid "Memory"
-#~ msgstr "Paměť"
-
-#~ msgid "%s Version"
-#~ msgstr "%s Verze"
-
-#~ msgid "Email / Mail Server Settings"
-#~ msgstr "Nastavení Email / Mail Serveru"
-
-#~ msgid "Connection URL: "
-#~ msgstr "Připojovací URL: "
-
-#~ msgid "Input Stream Settings"
-#~ msgstr "Nastavení vstupního streamu"
-
-#~ msgid "Master Source Connection URL:"
-#~ msgstr "URL připojení Master zdoje:"
-
-#~ msgid "Override"
-#~ msgstr "Přepsat"
-
-#~ msgid "RESET"
-#~ msgstr "Obnovit"
-
-#~ msgid "Show Source Connection URL:"
-#~ msgstr "URL připojení Show Source:"
-
-#~ msgid "Help %1$s improve by letting us know how you are using it. This info will be collected regularly in order to enhance your user experience.%2$sClick 'Yes, help %1$s' and we'll make sure the features you use are constantly improving."
-#~ msgstr "Pomozte %1$s zlepšit tím, že nám dáte vědět jak to používáte. Tyto informace budou pravidelně shromažďovány, aby se zvýšila vaše uživatelská zkušenosti. %2$s Zmáčkněte 'Odeslat feedback' 'Ano, pomoc %1$s' my budeme pracovat na tom, aby funkce, které používáte byly neustále zlepšovány."
-
-#~ msgid "Filter By Show:"
-#~ msgstr "Filtrovat dle vysílání:"
-
-#~ msgid "%s's Settings"
-#~ msgstr "%s Nastavení"
-
-#~ msgid "Help %s improve by letting %s know how you are using it. This information will be collected regularly in order to enhance your user experience.%sClick the 'Send support feedback' box and we'll make sure the features you use are constantly improving."
-#~ msgstr "Pomozte %s zlepšit %s tím, že dáte vědět jak to používáte. Tyto informace budou pravidelně shromažďovány, aby se zvýšily vaše uživatelské zkušenosti.%sZmáčkněte 'Odeslat feedback' box a my budeme pracovat na tom, aby funkce, které používáte byly neustále zlepšovány."
-
-#~ msgid "Sourcefabric Privacy Policy"
-#~ msgstr "Zásady ochrany osobních údajů Sourcefabric "
-
-#~ msgid "Smart Block Options"
-#~ msgstr "Možnosti Smart Blocku"
-
-#~ msgid "file meet the criteria"
-#~ msgstr "soubor splňuje kritéria"
-
-#~ msgid "New"
-#~ msgstr "Nový"
-
-#~ msgid "New Playlist"
-#~ msgstr "Nový Playlist"
-
-#~ msgid "New Smart Block"
-#~ msgstr "Nový Smart blok"
-
-#~ msgid "New Webstream"
-#~ msgstr "Nový webstream"
-
-#~ msgid "View / edit description"
-#~ msgstr "Zobrazit / upravit popis"
-
-#~ msgid "Global Settings"
-#~ msgstr "Globální nastavení"
-
-#~ msgid "Output Stream Settings"
-#~ msgstr "Nastavení výstupního streamu"
-
-#~ msgid "Listener Count Over Time"
-#~ msgstr "Počítaní posluchačů v čase"
-
-#~ msgid "Begin by adding your files to the library using the 'Add Media' menu button. You can drag and drop your files to this window too."
-#~ msgstr "Začněte tím, že přidáte soubory do knihovny pomocí 'Přidat média' tlačítka v menu. Můžete jednoduše přetáhnout soubory do tohoto okna."
-
-#~ msgid "Create a show by going to 'Calendar' in the menu bar, and then clicking the '+ Show' icon. This can be either a one-time or repeating show. Only admins and program managers can add shows."
-#~ msgstr "Vytvořte vysílání tím, že v menu půjdete do 'Kalendáře' a kliknete na ikonu '+ Show'. Může se jednat buď o jednorázové nebo opakující se vysílání. Přidávat vysílání mohou pouze administrátoři a manažeři programu."
-
-#~ msgid "Add media to the show by going to your show in the Schedule calendar, left-clicking on it and selecting 'Add / Remove Content'"
-#~ msgstr "Média přidáte do vysílání tak, že půjdete do svého vysílání v Plánovacím kalendáři a kliknutím na levé tlačítko myši se vám otevřou možnosti z kterých si vyberte 'Přidat / odstranit obsah'"
-
-#~ msgid "Select your media from the left pane and drag them to your show in the right pane."
-#~ msgstr "Vyberte si média z levého okna a přetáhněte je do svého vysílání v pravém okně."
-
-#~ msgid "Then you're good to go!"
-#~ msgstr "Pak můžete začít!"
-
-#~ msgid "Please enter your account e-mail address. You will receive a link to create a new password via e-mail."
-#~ msgstr "Prosím zadejte e-mailovou adresu ke svému účtu. Obdržíte e-mailem odkaz na vytvoření nového hesla."
-
-#~ msgid "Email sent"
-#~ msgstr "Odeslat e-mail"
-
-#~ msgid "An email has been sent"
-#~ msgstr "E-mail byl odeslán"
-
-#~ msgid "Back to login screen"
-#~ msgstr "Zpět na přihlašovací stránku"
-
-#~ msgid "Scheduled Play"
-#~ msgstr "Naplánované vysílání"
-
-#~ msgid "Station time"
-#~ msgstr "Čas stanice"
-
-#~ msgid "Purchase your copy of %s"
-#~ msgstr "Kup si svou kopii %s"
-
-#~ msgid "Zend Framework Default Application"
-#~ msgstr "Defaultní aplikace Zend Frameworku "
-
-#~ msgid "Empty smart block"
-#~ msgstr "prázdný Smart blok"
-
-#~ msgid "Empty playlist"
-#~ msgstr "Prázdný playlist"
-
-#~ msgid "Empty smart block content"
-#~ msgstr "Prázný obsah smart block."
-
-#~ msgid "No open smart block"
-#~ msgstr "Smart block není otevřený"
-
-#~ msgid "Record & Rebroadcast"
-#~ msgstr "Nahrát a znovu vysílat"
-
-#~ msgid "Failed to create 'organize' directory."
-#~ msgstr "Nepodařilo se vytvořit adresář 'organize'."
-
-#~ msgid "The file was not uploaded, there is %s MB of disk space left and the file you are uploading has a size of %s MB."
-#~ msgstr "Soubor nebyl nahrán. Máte k dispozici %s MB volného místa na disku a soubor který jste chtěli nahrát má velikost %s MB."
-
-#~ msgid "This file appears to be corrupted and will not be added to media library."
-#~ msgstr "Tento soubor se zdá být poškozený a nebude přidán do knihovny médií."
-
-#~ msgid "The file was not uploaded, this error can occur if the computer hard drive does not have enough disk space or the stor directory does not have correct write permissions."
-#~ msgstr "Soubor nebyl nahrán. K této chybě může dojít, pokud na pevném disku počítače není dostatek místa nebo adresář nemá správná oprávnění pro zápis."
-
-#~ msgid ""
-#~ "Hi %s, \n"
-#~ "\n"
-#~ "Click this link to reset your password: "
-#~ msgstr ""
-#~ "Ahoj %s , \n"
-#~ "\n"
-#~ "Klikněte na tento odkaz pro obnovení vašeho hesla: "
-
-#~ msgid "Show Content"
-#~ msgstr "Zobrazit obsah"
-
-#~ msgid "Remove All Content"
-#~ msgstr "Odstranit celý obsah"
-
-#~ msgid "Cancel Current Show"
-#~ msgstr "Zrušit aktuální vysílání"
-
-#~ msgid "Edit This Instance"
-#~ msgstr "Upravit "
-
-#~ msgid "Delete This Instance"
-#~ msgstr "Odstranit tuto instanci"
-
-#~ msgid "Delete This Instance and All Following"
-#~ msgstr "Odstranit tuto instanci a všechny následující"
-
-#~ msgid "Please selection an option"
-#~ msgstr "Prosím vyberte si možnost"
-
-#~ msgid "No Records"
-#~ msgstr "Žádné záznamy"
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
+msgid "Enabled:"
+msgstr "Povoleno:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
+msgid "Mobile:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
+msgid "Stream Type:"
+msgstr "Typ streamu:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
+msgid "Service Type:"
+msgstr "Typ služby:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
+msgid "Channels:"
+msgstr "Kanály:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "1 - Mono"
+msgstr "1 - Mono"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "2 - Stereo"
+msgstr "2 - Stereo"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
+msgid "Server"
+msgstr "Server"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
+msgid "Port"
+msgstr "Port"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
+msgid "Only numbers are allowed."
+msgstr "Jsou povolena pouze čísla."
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
+msgid "URL"
+msgstr "URL"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
+msgid "Mount Point"
+msgstr "Přípojný bod"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
+msgid "Admin User"
+msgstr "Administrátorské jméno"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
+msgid "Admin Password"
+msgstr "Administrátorské heslo"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
+msgid "Server cannot be empty."
+msgstr "Server nemůže být prázdný."
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
+msgid "Port cannot be empty."
+msgstr "Port nemůže být prázdný."
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
+msgid "Mount cannot be empty with Icecast server."
+msgstr "Mount nemůže být prázdný s Icecast serverem."
+
+#: airtime_mvc/application/forms/AddShowWhen.php:16
+msgid "'%value%' does not fit the time format 'HH:mm'"
+msgstr "'%hodnota%' nesedí formát času 'HH:mm'"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:22
+msgid "Start Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:37
+msgid "In the Future:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:64
+msgid "End Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:98
+msgid "Timezone:"
+msgstr "Časová zó"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:107
+msgid "Repeats?"
+msgstr "Opakovat?"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:139
+msgid "Cannot create show in the past"
+msgstr "Nelze vytvořit vysílání v minulosti"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:147
+msgid "Cannot modify start date/time of the show that is already started"
+msgstr "Nelze měnit datum/čas vysílání, které bylo již spuštěno"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:156
+#: airtime_mvc/application/models/Show.php:282
+msgid "End date/time cannot be in the past"
+msgstr "Datum/čas ukončení nemůže být v minulosti"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:164
+msgid "Cannot have duration < 0m"
+msgstr "Nelze mít dobu trvání < 0m"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:168
+msgid "Cannot have duration 00h 00m"
+msgstr "Nelze nastavit dobu trvání 00h 00m"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:175
+msgid "Cannot have duration greater than 24h"
+msgstr "Nelze mít dobu trvání delší než 24 hodin"
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:19
+msgid "Push metadata to your station on TuneIn?"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:24
+msgid "Station ID:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:30
+msgid "Partner Key:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:36
+msgid "Partner Id:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:77
+#: airtime_mvc/application/forms/TuneInPreferences.php:86
+msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:10
+#, php-format
+msgid "Use %s Authentication:"
+msgstr "Použij %s ověření pravosti:"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:16
+msgid "Use Custom Authentication:"
+msgstr "Použít ověření uživatele:"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:25
+msgid "Custom Username"
+msgstr "Uživatelské jméno"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:37
+msgid "Custom Password"
+msgstr "Uživatelské heslo"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:48
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
+msgid "Host:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
+msgid "Port:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:60
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
+msgid "Mount:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:77
+msgid "Username field cannot be empty."
+msgstr "Uživatelské jméno musí být zadáno."
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:82
+msgid "Password field cannot be empty."
+msgstr "Heslo musí být zadáno."
+
+#: airtime_mvc/application/forms/AddShowStyle.php:12
+msgid "Background Colour:"
+msgstr "Barva pozadí:"
+
+#: airtime_mvc/application/forms/AddShowStyle.php:31
+msgid "Text Colour:"
+msgstr "Barva textu:"
+
+#: airtime_mvc/application/forms/AddShowStyle.php:49
+msgid "Current Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:72
+msgid "Show Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:87
+msgid "Logo Preview:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Login.php:102
+msgid "Type the characters you see in the picture below."
+msgstr "Opište znaky, které vidíte na obrázku níže."
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
+msgid "Auto Switch Off:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
+msgid "Auto Switch On:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
+msgid "Switch Transition Fade (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:10
+msgid "Link:"
+msgstr "Link:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:16
+msgid "Repeat Type:"
+msgstr "Typ opakování:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:19
+msgid "weekly"
+msgstr "týdně"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:20
+msgid "every 2 weeks"
+msgstr "každé 2 týdny"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:21
+msgid "every 3 weeks"
+msgstr "každé 3 týdny"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:22
+msgid "every 4 weeks"
+msgstr "každé 4 týdny"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:23
+msgid "monthly"
+msgstr "měsíčně"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:32
+msgid "Select Days:"
+msgstr "Vyberte dny:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:47
+msgid "Repeat By:"
+msgstr "Opakovat:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the month"
+msgstr "den v měsíci"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the week"
+msgstr "den v týdnu"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:69
+msgid "No End?"
+msgstr "Nekončí?"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:106
+msgid "End date must be after start date"
+msgstr "Datum ukončení musí být po počátečním datumu"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:113
+msgid "Please select a repeat day"
+msgstr "Prosím vyberte den opakování"
+
+#: airtime_mvc/application/configs/navigation.php:12
+msgid "Radio Page"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:19
+msgid "Calendar"
+msgstr "Kalendář"
+
+#: airtime_mvc/application/configs/navigation.php:26
+msgid "Widgets"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:48
+msgid "Settings"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:67
+msgid "Users"
+msgstr "Uživatelé"
+
+#: airtime_mvc/application/configs/navigation.php:74
+msgid "Streams"
+msgstr "Streamy"
+
+#: airtime_mvc/application/configs/navigation.php:82
+msgid "Analytics"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:90
+msgid "Listener Stats"
+msgstr "Statistiky poslechovost"
+
+#: airtime_mvc/application/configs/navigation.php:104
+msgid "History Templates"
+msgstr "Historie nastavení"
+
+#: airtime_mvc/application/configs/navigation.php:113
+msgid "Billing"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:120
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:127
+msgid "Account Details"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:134
+msgid "View Invoices"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:150
+msgid "Getting Started"
+msgstr "Začínáme"
+
+#: airtime_mvc/application/configs/navigation.php:157
+msgid "FAQ"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:162
+msgid "User Manual"
+msgstr "Návod k obsluze"
+
+#: airtime_mvc/application/configs/navigation.php:167
+msgid "File a Support Ticket"
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:833
+#: airtime_mvc/application/models/Playlist.php:812
+msgid "Cue in and cue out are null."
+msgstr "Cue in a cue out jsou prázné."
+
+#: airtime_mvc/application/models/Block.php:868
+#: airtime_mvc/application/models/Block.php:924
+#: airtime_mvc/application/models/Playlist.php:851
+#: airtime_mvc/application/models/Playlist.php:895
+msgid "Can't set cue out to be greater than file length."
+msgstr "Nelze nastavit delší cue out než je délka souboru."
+
+#: airtime_mvc/application/models/Block.php:879
+#: airtime_mvc/application/models/Block.php:900
+#: airtime_mvc/application/models/Playlist.php:843
+#: airtime_mvc/application/models/Playlist.php:868
+msgid "Can't set cue in to be larger than cue out."
+msgstr "Nelze nastavit větší cue in než cue out."
+
+#: airtime_mvc/application/models/Block.php:935
+#: airtime_mvc/application/models/Playlist.php:887
+msgid "Can't set cue out to be smaller than cue in."
+msgstr "Nelze nastavit menší cue out než je cue in."
+
+#: airtime_mvc/application/models/Block.php:1366
+msgid "Upload Time"
+msgstr ""
+
+#: airtime_mvc/application/models/ShowBuilder.php:212
+#, php-format
+msgid "Rebroadcast of %s from %s"
+msgstr "Znovu odvysílat %s od %s"
+
+#: airtime_mvc/application/models/Preference.php:460
+#, php-format
+msgid "Powered by %s"
+msgstr ""
+
+#: airtime_mvc/application/models/Preference.php:588
+msgid "Select Country"
+msgstr "Vyberte zemi"
+
+#: airtime_mvc/application/models/MusicDir.php:160
+#, php-format
+msgid "%s is already watched."
+msgstr "%s je již sledován."
+
+#: airtime_mvc/application/models/MusicDir.php:164
+#, php-format
+msgid "%s contains nested watched directory: %s"
+msgstr "%s obsahuje vložený sledovaný adresář: %s"
+
+#: airtime_mvc/application/models/MusicDir.php:168
+#, php-format
+msgid "%s is nested within existing watched directory: %s"
+msgstr "%s je vložený do stávajícího sledovaného adresáře: %s"
+
+#: airtime_mvc/application/models/MusicDir.php:189
+#: airtime_mvc/application/models/MusicDir.php:370
+#, php-format
+msgid "%s is not a valid directory."
+msgstr "%s není platný adresář."
+
+#: airtime_mvc/application/models/MusicDir.php:232
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list"
+msgstr "%s je již nastaveno jako aktuální uložiště adresáře nebo ve sledovaném seznamu souborů."
+
+#: airtime_mvc/application/models/MusicDir.php:388
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list."
+msgstr "%s je již nastaven jako aktuální adresář úložiště nebo v seznamu sledovaných složek."
+
+#: airtime_mvc/application/models/MusicDir.php:431
+#, php-format
+msgid "%s doesn't exist in the watched list."
+msgstr "%s neexistuje v seznamu sledovaných."
+
+#: airtime_mvc/application/models/Auth.php:33
+#, php-format
+msgid ""
+"Hi %s, \n"
+"\n"
+"Please click this link to reset your password: "
+msgstr ""
+
+#: airtime_mvc/application/models/Auth.php:38
+#, php-format
+msgid "%s Password Reset"
+msgstr "%s Heslo onboveno"
+
+#: airtime_mvc/application/models/Show.php:184
+msgid "Shows can have a max length of 24 hours."
+msgstr "Vysílání může mít max. délku 24 hodin."
+
+#: airtime_mvc/application/models/Show.php:293
+msgid ""
+"Cannot schedule overlapping shows.\n"
+"Note: Resizing a repeating show affects all of its repeats."
+msgstr ""
+"Nelze naplánovat překrývající se vysílání.\n"
+"Poznámka:. Změna velikosti opakujícího se vysílání ovlivňuje všechny opakování tohoto vysílání."
+
+#: airtime_mvc/application/models/Scheduler.php:73
+msgid "Cannot move items out of linked shows"
+msgstr "Nemůže přesunout položky z linkovaných vysílání"
+
+#: airtime_mvc/application/models/Scheduler.php:119
+msgid "The schedule you're viewing is out of date! (sched mismatch)"
+msgstr "Program, který si prohlížíte, je zastaralý!"
+
+#: airtime_mvc/application/models/Scheduler.php:124
+msgid "The schedule you're viewing is out of date! (instance mismatch)"
+msgstr "Program který si prohlížíte je zastaralý!"
+
+#: airtime_mvc/application/models/Scheduler.php:132
+#: airtime_mvc/application/models/Scheduler.php:458
+#: airtime_mvc/application/models/Scheduler.php:490
+msgid "The schedule you're viewing is out of date!"
+msgstr "Program který si prohlížíte je zastaralý! "
+
+#: airtime_mvc/application/models/Scheduler.php:142
+#, php-format
+msgid "You are not allowed to schedule show %s."
+msgstr "Nemáte povoleno plánovat vysílání %s ."
+
+#: airtime_mvc/application/models/Scheduler.php:146
+msgid "You cannot add files to recording shows."
+msgstr "Nemůžete přidávat soubory do nahrávaného vysílání."
+
+#: airtime_mvc/application/models/Scheduler.php:152
+#, php-format
+msgid "The show %s is over and cannot be scheduled."
+msgstr "Vysílání %s skončilo a nemůže být nasazeno."
+
+#: airtime_mvc/application/models/Scheduler.php:159
+#, php-format
+msgid "The show %s has been previously updated!"
+msgstr "Vysílání %s bylo již dříve aktualizováno!"
+
+#: airtime_mvc/application/models/Scheduler.php:178
+msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
+msgstr "Obsah v propojených show musí být zařazen před nebo po kterémkoliv, který je vysílaný "
+
+#: airtime_mvc/application/models/Scheduler.php:195
+msgid "Cannot schedule a playlist that contains missing files."
+msgstr "Nelze naplánovat playlist, který obsahuje chybějící soubory."
+
+#: airtime_mvc/application/models/Scheduler.php:216
+#: airtime_mvc/application/models/Scheduler.php:305
+msgid "A selected File does not exist!"
+msgstr "Vybraný soubor neexistuje!"
+
+#: airtime_mvc/application/models/Schedule.php:206
+msgid "livestream"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:166
+msgid "Length needs to be greater than 0 minutes"
+msgstr "Délka musí být větší než 0 minut"
+
+#: airtime_mvc/application/models/Webstream.php:171
+msgid "Length should be of form \"00h 00m\""
+msgstr "Délka by měla mít tvar \"00h 00m\""
+
+#: airtime_mvc/application/models/Webstream.php:184
+msgid "URL should be of form \"http://domain\""
+msgstr "URL by měla mít tvar \"http://domain\""
+
+#: airtime_mvc/application/models/Webstream.php:187
+msgid "URL should be 512 characters or less"
+msgstr "URL by měla mít 512 znaků nebo méně"
+
+#: airtime_mvc/application/models/Webstream.php:193
+msgid "No MIME type found for webstream."
+msgstr "Nenalezen žádný MIME typ pro webstream."
+
+#: airtime_mvc/application/models/Webstream.php:209
+msgid "Webstream name cannot be empty"
+msgstr "Název webstreamu nemůže být prázdný"
+
+#: airtime_mvc/application/models/Webstream.php:278
+msgid "Could not parse XSPF playlist"
+msgstr "Nelze zpracovat XSPF playlist"
+
+#: airtime_mvc/application/models/Webstream.php:298
+msgid "Could not parse PLS playlist"
+msgstr "Nelze zpracovat PLS playlist"
+
+#: airtime_mvc/application/models/Webstream.php:318
+msgid "Could not parse M3U playlist"
+msgstr "Nelze zpracovat M3U playlist"
+
+#: airtime_mvc/application/models/Webstream.php:332
+msgid "Invalid webstream - This appears to be a file download."
+msgstr "Neplatný webstream - tento vypadá jako stažení souboru."
+
+#: airtime_mvc/application/models/Webstream.php:336
+#, php-format
+msgid "Unrecognized stream type: %s"
+msgstr "Neznámý typ streamu: %s"
+
+#: airtime_mvc/public/setup/rabbitmq-setup.php:78
+msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
+msgstr ""
+
+#~ msgid "My Account"
+#~ msgstr "Můj účet"
diff --git a/airtime_mvc/locale/cs_CZ/LC_MESSAGES/pro.po b/airtime_mvc/locale/cs_CZ/LC_MESSAGES/pro.po
index 866ee0acb..f59b52c3d 100644
--- a/airtime_mvc/locale/cs_CZ/LC_MESSAGES/pro.po
+++ b/airtime_mvc/locale/cs_CZ/LC_MESSAGES/pro.po
@@ -1,3 +1,139 @@
+#: airtime_mvc/application/controllers/LoginController.php:170
+#, php-format
+msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
+#, php-format
+msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
+#, php-format
+msgid "If you are the primary owner of this station, please reset your password here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
+msgid "Thank you!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
+msgid "Your station has been upgraded successfully."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
+msgid "Return to Airtime"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+#, php-format
+msgid "Purchase an %s plan!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+msgid "My Account"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
+msgid "Upgrade today to get more listeners and storage space!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
+msgid "View Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:257
+msgid "Your Current Plan:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:291
+msgid "Please enter your payment details:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
+msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
+msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:17
+msgid "First Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:26
+msgid "Last Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:35
+msgid "Company Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:44
+msgid "Email Address:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:54
+msgid "Address 1:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:63
+msgid "Address 2:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:70
+msgid "City:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:80
+msgid "State/Region:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:89
+msgid "Zip Code / Postal Code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:102
+msgid "Country:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:112
+msgid "Phone Number:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:121
+msgid "Please choose a security question:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:135
+msgid "Please enter an answer:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:152
+msgid "VAT/Tax ID (EU only)"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:162
+msgid "Subscribe to Sourcefabric newsletter"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:172
+msgid "Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:181
+msgid "Verify Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:193
+msgid "Save"
+msgstr ""
+
#: airtime_mvc/application/models/Auth.php:35
#, php-format
msgid ""
@@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
-msgid "Thank you!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
-msgid "Your station has been upgraded successfully."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
-msgid "Return to Airtime"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
-#, php-format
-msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
-msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
-msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
-#, php-format
-msgid "If you are the primary owner of this station, please reset your password here."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:170
-#, php-format
-msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
-msgstr ""
diff --git a/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.mo
index 96b1d01bc..15942d78b 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 de6d4302b..ecb5540e5 100644
--- a/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.po
+++ b/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Airtime\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-09-03 10:24-0400\n"
-"PO-Revision-Date: 2015-07-30 10:01+0000\n"
+"POT-Creation-Date: 2015-09-04 11:17-0400\n"
+"PO-Revision-Date: 2015-09-04 08:15+0000\n"
"Last-Translator: Daniel James \n"
"Language-Team: German (Austria) (http://www.transifex.com/sourcefabric/airtime/language/de_AT/)\n"
"Language: de_AT\n"
@@ -19,132 +19,6 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: airtime_mvc/public/setup/rabbitmq-setup.php:78
-msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1117
-#: airtime_mvc/application/services/HistoryService.php:1157
-#: airtime_mvc/application/services/HistoryService.php:1174
-#: airtime_mvc/application/models/Block.php:1375
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
-#: airtime_mvc/application/controllers/LocaleController.php:76
-msgid "Title"
-msgstr "Titel"
-
-#: airtime_mvc/application/services/HistoryService.php:1118
-#: airtime_mvc/application/services/HistoryService.php:1158
-#: airtime_mvc/application/services/HistoryService.php:1175
-#: airtime_mvc/application/models/Block.php:1360
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
-#: airtime_mvc/application/controllers/LocaleController.php:77
-msgid "Creator"
-msgstr "Interpret"
-
-#: airtime_mvc/application/services/HistoryService.php:1119
-#: airtime_mvc/application/models/Block.php:1352
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
-#: airtime_mvc/application/controllers/LocaleController.php:78
-msgid "Album"
-msgstr "Album"
-
-#: airtime_mvc/application/services/HistoryService.php:1120
-#: airtime_mvc/application/services/HistoryService.php:1177
-#: airtime_mvc/application/models/Block.php:1369
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
-#: airtime_mvc/application/controllers/LocaleController.php:91
-msgid "Length"
-msgstr "Dauer"
-
-#: airtime_mvc/application/services/HistoryService.php:1121
-#: airtime_mvc/application/models/Block.php:1362
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
-#: airtime_mvc/application/controllers/LocaleController.php:85
-msgid "Genre"
-msgstr "Genre"
-
-#: airtime_mvc/application/services/HistoryService.php:1122
-#: airtime_mvc/application/models/Block.php:1371
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
-#: airtime_mvc/application/controllers/LocaleController.php:93
-msgid "Mood"
-msgstr "Stimmung"
-
-#: airtime_mvc/application/services/HistoryService.php:1123
-#: airtime_mvc/application/models/Block.php:1364
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
-#: airtime_mvc/application/controllers/LocaleController.php:87
-msgid "Label"
-msgstr "Label"
-
-#: airtime_mvc/application/services/HistoryService.php:1124
-#: airtime_mvc/application/services/HistoryService.php:1178
-#: airtime_mvc/application/models/Block.php:1355
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
-#: airtime_mvc/application/controllers/LocaleController.php:81
-msgid "Composer"
-msgstr "Komponist"
-
-#: airtime_mvc/application/services/HistoryService.php:1125
-#: airtime_mvc/application/models/Block.php:1363
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
-#: airtime_mvc/application/controllers/LocaleController.php:86
-msgid "ISRC"
-msgstr "ISRC"
-
-#: airtime_mvc/application/services/HistoryService.php:1126
-#: airtime_mvc/application/services/HistoryService.php:1179
-#: airtime_mvc/application/models/Block.php:1357
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
-#: airtime_mvc/application/controllers/LocaleController.php:83
-msgid "Copyright"
-msgstr "Copyright"
-
-#: airtime_mvc/application/services/HistoryService.php:1127
-#: airtime_mvc/application/models/Block.php:1379
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
-#: airtime_mvc/application/controllers/LocaleController.php:100
-msgid "Year"
-msgstr "Jahr"
-
-#: airtime_mvc/application/services/HistoryService.php:1128
-msgid "Track"
-msgstr "Titel"
-
-#: airtime_mvc/application/services/HistoryService.php:1129
-#: airtime_mvc/application/models/Block.php:1356
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
-#: airtime_mvc/application/controllers/LocaleController.php:82
-msgid "Conductor"
-msgstr "Dirigent"
-
-#: airtime_mvc/application/services/HistoryService.php:1130
-#: airtime_mvc/application/models/Block.php:1365
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
-#: airtime_mvc/application/controllers/LocaleController.php:88
-msgid "Language"
-msgstr "Sprache"
-
-#: airtime_mvc/application/services/HistoryService.php:1155
-#: airtime_mvc/application/forms/EditHistoryItem.php:32
-msgid "Start Time"
-msgstr "Beginn"
-
-#: airtime_mvc/application/services/HistoryService.php:1156
-#: airtime_mvc/application/forms/EditHistoryItem.php:44
-msgid "End Time"
-msgstr "Ende"
-
-#: airtime_mvc/application/services/HistoryService.php:1176
-msgid "Played"
-msgstr "Abgespielt"
-
#: airtime_mvc/application/services/CalendarService.php:50
msgid "Record file doesn't exist"
msgstr "Aufeichnung existiert nicht"
@@ -240,2605 +114,382 @@ msgstr "Die Sendung wurde gelöscht, weil die aufgezeichnete Sendung nicht exist
msgid "Must wait 1 hour to rebroadcast."
msgstr "Das Wiederholen einer Sendung ist erst nach einer Stunde Wartezeit möglich."
-#: airtime_mvc/application/models/Schedule.php:206
-msgid "livestream"
-msgstr ""
-
-#: airtime_mvc/application/models/ShowBuilder.php:212
-#, php-format
-msgid "Rebroadcast of %s from %s"
-msgstr "Wiederholung von %s am %s"
-
-#: airtime_mvc/application/models/Webstream.php:166
-msgid "Length needs to be greater than 0 minutes"
-msgstr "Dauer muß länger als 0 Minuten sein."
-
-#: airtime_mvc/application/models/Webstream.php:171
-msgid "Length should be of form \"00h 00m\""
-msgstr "Dauer im Format \"00h 00m\" eingeben."
-
-#: airtime_mvc/application/models/Webstream.php:184
-msgid "URL should be of form \"http://domain\""
-msgstr "URL im Format \"http://domain\" eingeben."
-
-#: airtime_mvc/application/models/Webstream.php:187
-msgid "URL should be 512 characters or less"
-msgstr "URL darf aus höchstens 512 Zeichen bestehen."
-
-#: airtime_mvc/application/models/Webstream.php:193
-msgid "No MIME type found for webstream."
-msgstr "Es konnte kein MIME-Typ für den Webstream gefunden werden."
-
-#: airtime_mvc/application/models/Webstream.php:209
-msgid "Webstream name cannot be empty"
-msgstr "Die Bezeichnung eines Webstreams darf nicht leer sein."
-
-#: airtime_mvc/application/models/Webstream.php:278
-msgid "Could not parse XSPF playlist"
-msgstr "XSPF-Playlist konnte nicht aufgeschlüsselt werden."
-
-#: airtime_mvc/application/models/Webstream.php:298
-msgid "Could not parse PLS playlist"
-msgstr "PLS-Playlist konnte nicht aufgeschlüsselt werden."
-
-#: airtime_mvc/application/models/Webstream.php:318
-msgid "Could not parse M3U playlist"
-msgstr "M3U-Playlist konnte nicht aufgeschlüsselt werden."
-
-#: airtime_mvc/application/models/Webstream.php:332
-msgid "Invalid webstream - This appears to be a file download."
-msgstr "Ungültiger Webstream - Die eingegebene URL scheint ein Dateidownload zu sein."
-
-#: airtime_mvc/application/models/Webstream.php:336
-#, php-format
-msgid "Unrecognized stream type: %s"
-msgstr "Unbekannter Stream-Typ: %s"
-
-#: airtime_mvc/application/models/Preference.php:460
-#, php-format
-msgid "Powered by %s"
-msgstr ""
-
-#: airtime_mvc/application/models/Preference.php:588
-msgid "Select Country"
-msgstr "Land wählen"
-
-#: airtime_mvc/application/models/MusicDir.php:160
-#, php-format
-msgid "%s is already watched."
-msgstr "%s wird bereits überwacht."
-
-#: airtime_mvc/application/models/MusicDir.php:164
-#, php-format
-msgid "%s contains nested watched directory: %s"
-msgstr "%s enthält andere bereits überwachte Verzeichnisse: %s "
-
-#: airtime_mvc/application/models/MusicDir.php:168
-#, php-format
-msgid "%s is nested within existing watched directory: %s"
-msgstr "%s ist ein Unterverzeichnis eines bereits überwachten Verzeichnisses: %s"
-
-#: airtime_mvc/application/models/MusicDir.php:189
-#: airtime_mvc/application/models/MusicDir.php:370
-#, php-format
-msgid "%s is not a valid directory."
-msgstr "%s ist kein gültiges Verzeichnis."
-
-#: airtime_mvc/application/models/MusicDir.php:232
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list"
-msgstr "%s ist bereits als aktuelles Speicherverzeichnis bestimmt oder in der Liste überwachter Verzeichnisse."
-
-#: airtime_mvc/application/models/MusicDir.php:388
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list."
-msgstr "%s ist bereits als aktuelles Speicherverzeichnis bestimmt oder in der Liste überwachter Verzeichnisse."
-
-#: airtime_mvc/application/models/MusicDir.php:431
-#, php-format
-msgid "%s doesn't exist in the watched list."
-msgstr "%s existiert nicht in der Liste überwachter Verzeichnisse."
-
-#: airtime_mvc/application/models/Show.php:184
-msgid "Shows can have a max length of 24 hours."
-msgstr "Die Maximaldauer einer Sendung beträgt 24 Stunden."
-
-#: airtime_mvc/application/models/Show.php:282
-#: airtime_mvc/application/forms/AddShowWhen.php:156
-msgid "End date/time cannot be in the past"
-msgstr "Enddatum / Endzeit darf nicht in der Vergangheit liegen."
-
-#: airtime_mvc/application/models/Show.php:293
-msgid ""
-"Cannot schedule overlapping shows.\n"
-"Note: Resizing a repeating show affects all of its repeats."
-msgstr ""
-"Sendungen können nicht überlappend geplant werden.\n"
-"Beachte: Wird die Dauer einer wiederkehrenden Sendung verändert, wirkt sich das auch auf alle Wiederholungen aus."
-
-#: airtime_mvc/application/models/Auth.php:33
-#, php-format
-msgid ""
-"Hi %s, \n"
-"\n"
-"Please click this link to reset your password: "
-msgstr ""
-
-#: airtime_mvc/application/models/Auth.php:38
-#, php-format
-msgid "%s Password Reset"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:333
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
-msgid "items"
-msgstr "Objekte"
-
-#: airtime_mvc/application/models/Block.php:833
-#: airtime_mvc/application/models/Playlist.php:812
-msgid "Cue in and cue out are null."
-msgstr "Cue In und Cue Out sind Null."
-
-#: airtime_mvc/application/models/Block.php:868
-#: airtime_mvc/application/models/Block.php:924
-#: airtime_mvc/application/models/Playlist.php:851
-#: airtime_mvc/application/models/Playlist.php:895
-msgid "Can't set cue out to be greater than file length."
-msgstr "Cue In darf nicht größer als die Gesamtdauer der Datei sein."
-
-#: airtime_mvc/application/models/Block.php:879
-#: airtime_mvc/application/models/Block.php:900
-#: airtime_mvc/application/models/Playlist.php:843
-#: airtime_mvc/application/models/Playlist.php:868
-msgid "Can't set cue in to be larger than cue out."
-msgstr "Cue In darf nicht größer als Cue Out sein."
-
-#: airtime_mvc/application/models/Block.php:935
-#: airtime_mvc/application/models/Playlist.php:887
-msgid "Can't set cue out to be smaller than cue in."
-msgstr "Cue Out darf nicht kleiner als Cue In sein."
-
-#: airtime_mvc/application/models/Block.php:1351
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
-msgid "Select criteria"
-msgstr "Kriterien wählen"
-
-#: airtime_mvc/application/models/Block.php:1353
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
-msgid "Bit Rate (Kbps)"
-msgstr "Bitrate (Kbps)"
-
-#: airtime_mvc/application/models/Block.php:1354
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
-#: airtime_mvc/application/controllers/LocaleController.php:80
-msgid "BPM"
-msgstr "BPM"
-
-#: airtime_mvc/application/models/Block.php:1358
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
-#: airtime_mvc/application/controllers/LocaleController.php:281
-#: airtime_mvc/application/layouts/scripts/layout.phtml:140
-msgid "Cue In"
-msgstr "Cue In"
-
-#: airtime_mvc/application/models/Block.php:1359
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:282
-#: airtime_mvc/application/layouts/scripts/layout.phtml:147
-msgid "Cue Out"
-msgstr "Cue Out"
-
-#: airtime_mvc/application/models/Block.php:1361
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
-#: airtime_mvc/application/controllers/LocaleController.php:84
-msgid "Encoded By"
-msgstr "Encoded By"
-
-#: airtime_mvc/application/models/Block.php:1366
-msgid "Upload Time"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1367
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
-#: airtime_mvc/application/controllers/LocaleController.php:89
-msgid "Last Modified"
-msgstr "Zuletzt geändert"
-
-#: airtime_mvc/application/models/Block.php:1368
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
-#: airtime_mvc/application/controllers/LocaleController.php:90
-msgid "Last Played"
-msgstr "Zuletzt gespielt"
-
-#: airtime_mvc/application/models/Block.php:1370
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
-#: airtime_mvc/application/controllers/LocaleController.php:92
-msgid "Mime"
-msgstr "Mime"
-
-#: airtime_mvc/application/models/Block.php:1372
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
-#: airtime_mvc/application/controllers/LocaleController.php:94
-msgid "Owner"
-msgstr "Besitzer"
-
-#: airtime_mvc/application/models/Block.php:1373
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
-#: airtime_mvc/application/controllers/LocaleController.php:95
-msgid "Replay Gain"
-msgstr "Replay Gain"
-
-#: airtime_mvc/application/models/Block.php:1374
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
-msgid "Sample Rate (kHz)"
-msgstr "Sample Rate (KHz)"
-
-#: airtime_mvc/application/models/Block.php:1376
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
-#: airtime_mvc/application/controllers/LocaleController.php:97
-msgid "Track Number"
-msgstr "Titelnummer"
-
-#: airtime_mvc/application/models/Block.php:1377
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
-#: airtime_mvc/application/controllers/LocaleController.php:98
-msgid "Uploaded"
-msgstr "Hochgeladen"
-
-#: airtime_mvc/application/models/Block.php:1378
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
-#: airtime_mvc/application/controllers/LocaleController.php:99
-msgid "Website"
-msgstr "Webseite"
-
-#: airtime_mvc/application/models/Block.php:1383
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
-#: airtime_mvc/application/controllers/LocaleController.php:151
-msgid "Select modifier"
-msgstr "Wähle Modifikator"
-
-#: airtime_mvc/application/models/Block.php:1384
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
-#: airtime_mvc/application/controllers/LocaleController.php:152
-msgid "contains"
-msgstr "enthält"
-
-#: airtime_mvc/application/models/Block.php:1385
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
-#: airtime_mvc/application/controllers/LocaleController.php:153
-msgid "does not contain"
-msgstr "enthält nicht"
-
-#: airtime_mvc/application/models/Block.php:1386
-#: airtime_mvc/application/models/Block.php:1390
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
-#: airtime_mvc/application/controllers/LocaleController.php:154
-msgid "is"
-msgstr "ist"
-
-#: airtime_mvc/application/models/Block.php:1387
-#: airtime_mvc/application/models/Block.php:1391
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
-#: airtime_mvc/application/controllers/LocaleController.php:155
-msgid "is not"
-msgstr "ist nicht"
-
-#: airtime_mvc/application/models/Block.php:1388
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
-#: airtime_mvc/application/controllers/LocaleController.php:156
-msgid "starts with"
-msgstr "beginnt mit"
-
-#: airtime_mvc/application/models/Block.php:1389
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
-#: airtime_mvc/application/controllers/LocaleController.php:157
-msgid "ends with"
-msgstr "endet mit"
-
-#: airtime_mvc/application/models/Block.php:1392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
-#: airtime_mvc/application/controllers/LocaleController.php:158
-msgid "is greater than"
-msgstr "ist größer als"
-
-#: airtime_mvc/application/models/Block.php:1393
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
-#: airtime_mvc/application/controllers/LocaleController.php:159
-msgid "is less than"
-msgstr "ist kleiner als"
-
-#: airtime_mvc/application/models/Block.php:1394
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
-#: airtime_mvc/application/controllers/LocaleController.php:160
-msgid "is in the range"
-msgstr "ist im Bereich"
-
-#: airtime_mvc/application/models/Scheduler.php:73
-msgid "Cannot move items out of linked shows"
-msgstr "Objekte aus einer verknüpften Sendung können nicht verschoben werden."
-
-#: airtime_mvc/application/models/Scheduler.php:119
-msgid "The schedule you're viewing is out of date! (sched mismatch)"
-msgstr "Der Kalender den sie sehen ist nicht mehr aktuell! (Kalender falsch eingepasst)"
-
-#: airtime_mvc/application/models/Scheduler.php:124
-msgid "The schedule you're viewing is out of date! (instance mismatch)"
-msgstr "Der Kalender den sie sehen ist nicht mehr aktuell! (Objekt falsch eingepasst)"
-
-#: airtime_mvc/application/models/Scheduler.php:132
-#: airtime_mvc/application/models/Scheduler.php:458
-#: airtime_mvc/application/models/Scheduler.php:490
-msgid "The schedule you're viewing is out of date!"
-msgstr "Der Kalender den sie sehen ist nicht mehr aktuell."
-
-#: airtime_mvc/application/models/Scheduler.php:142
-#, php-format
-msgid "You are not allowed to schedule show %s."
-msgstr "Sie haben nicht die erforderliche Berechtigung einen Termin für die Sendung %s zu festzulegen."
-
-#: airtime_mvc/application/models/Scheduler.php:146
-msgid "You cannot add files to recording shows."
-msgstr "Einer Sendungsaufzeichnung können keine Dateien hinzugefügt werden."
-
-#: airtime_mvc/application/models/Scheduler.php:152
-#, php-format
-msgid "The show %s is over and cannot be scheduled."
-msgstr "Die Sendung %s ist beendet und kann daher nicht festgelegt werden."
-
-#: airtime_mvc/application/models/Scheduler.php:159
-#, php-format
-msgid "The show %s has been previously updated!"
-msgstr "Die Sendung %s wurde bereits aktualisiert."
-
-#: airtime_mvc/application/models/Scheduler.php:178
-msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
-msgstr "Eine verknüpfte Sendung kann nicht befüllt werden, während eine ihrer Instanzen ausgestrahlt wird."
-
-#: airtime_mvc/application/models/Scheduler.php:195
-msgid "Cannot schedule a playlist that contains missing files."
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:216
-#: airtime_mvc/application/models/Scheduler.php:305
-msgid "A selected File does not exist!"
-msgstr "Eine der gewählten Dateien existiert nicht!"
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
-#: airtime_mvc/application/configs/navigation.php:40
-msgid "Weekly Schedule"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
-#: airtime_mvc/application/forms/Player.php:77
-msgid "Preview:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
-#: airtime_mvc/application/configs/navigation.php:34
-msgid "Player"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
-#: airtime_mvc/application/controllers/LocaleController.php:362
-#: airtime_mvc/application/controllers/LocaleController.php:390
-msgid "Close"
-msgstr "Schließen"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Add this show"
-msgstr "Sendung hinzufügen"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Update show"
-msgstr "Sendung aktualisieren"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
-msgid "What"
-msgstr "Was"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
-msgid "When"
-msgstr "Wann"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
-msgid "Live Stream Input"
-msgstr "Live-Stream Eingang"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
-msgid "Who"
-msgstr "Wer"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
-msgid "Style"
-msgstr "Style"
-
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
-#: airtime_mvc/application/controllers/LocaleController.php:273
-msgid "Start"
+#: airtime_mvc/application/services/HistoryService.php:1117
+#: airtime_mvc/application/services/HistoryService.php:1157
+#: airtime_mvc/application/services/HistoryService.php:1174
+#: airtime_mvc/application/controllers/LocaleController.php:76
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
+#: airtime_mvc/application/models/Block.php:1375
+msgid "Title"
+msgstr "Titel"
+
+#: airtime_mvc/application/services/HistoryService.php:1118
+#: airtime_mvc/application/services/HistoryService.php:1158
+#: airtime_mvc/application/services/HistoryService.php:1175
+#: airtime_mvc/application/controllers/LocaleController.php:77
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
+#: airtime_mvc/application/models/Block.php:1360
+msgid "Creator"
+msgstr "Interpret"
+
+#: airtime_mvc/application/services/HistoryService.php:1119
+#: airtime_mvc/application/controllers/LocaleController.php:78
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
+#: airtime_mvc/application/models/Block.php:1352
+msgid "Album"
+msgstr "Album"
+
+#: airtime_mvc/application/services/HistoryService.php:1120
+#: airtime_mvc/application/services/HistoryService.php:1177
+#: airtime_mvc/application/controllers/LocaleController.php:91
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
+#: airtime_mvc/application/models/Block.php:1369
+msgid "Length"
+msgstr "Dauer"
+
+#: airtime_mvc/application/services/HistoryService.php:1121
+#: airtime_mvc/application/controllers/LocaleController.php:85
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
+#: airtime_mvc/application/models/Block.php:1362
+msgid "Genre"
+msgstr "Genre"
+
+#: airtime_mvc/application/services/HistoryService.php:1122
+#: airtime_mvc/application/controllers/LocaleController.php:93
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
+#: airtime_mvc/application/models/Block.php:1371
+msgid "Mood"
+msgstr "Stimmung"
+
+#: airtime_mvc/application/services/HistoryService.php:1123
+#: airtime_mvc/application/controllers/LocaleController.php:87
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
+#: airtime_mvc/application/models/Block.php:1364
+msgid "Label"
+msgstr "Label"
+
+#: airtime_mvc/application/services/HistoryService.php:1124
+#: airtime_mvc/application/services/HistoryService.php:1178
+#: airtime_mvc/application/controllers/LocaleController.php:81
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
+#: airtime_mvc/application/models/Block.php:1355
+msgid "Composer"
+msgstr "Komponist"
+
+#: airtime_mvc/application/services/HistoryService.php:1125
+#: airtime_mvc/application/controllers/LocaleController.php:86
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
+#: airtime_mvc/application/models/Block.php:1363
+msgid "ISRC"
+msgstr "ISRC"
+
+#: airtime_mvc/application/services/HistoryService.php:1126
+#: airtime_mvc/application/services/HistoryService.php:1179
+#: airtime_mvc/application/controllers/LocaleController.php:83
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
+#: airtime_mvc/application/models/Block.php:1357
+msgid "Copyright"
+msgstr "Copyright"
+
+#: airtime_mvc/application/services/HistoryService.php:1127
+#: airtime_mvc/application/controllers/LocaleController.php:100
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
+#: airtime_mvc/application/models/Block.php:1379
+msgid "Year"
+msgstr "Jahr"
+
+#: airtime_mvc/application/services/HistoryService.php:1128
+msgid "Track"
+msgstr "Titel"
+
+#: airtime_mvc/application/services/HistoryService.php:1129
+#: airtime_mvc/application/controllers/LocaleController.php:82
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
+#: airtime_mvc/application/models/Block.php:1356
+msgid "Conductor"
+msgstr "Dirigent"
+
+#: airtime_mvc/application/services/HistoryService.php:1130
+#: airtime_mvc/application/controllers/LocaleController.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
+#: airtime_mvc/application/models/Block.php:1365
+msgid "Language"
+msgstr "Sprache"
+
+#: airtime_mvc/application/services/HistoryService.php:1155
+#: airtime_mvc/application/forms/EditHistoryItem.php:32
+msgid "Start Time"
msgstr "Beginn"
-#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
-msgid "Password Reset"
-msgstr ""
+#: airtime_mvc/application/services/HistoryService.php:1156
+#: airtime_mvc/application/forms/EditHistoryItem.php:44
+msgid "End Time"
+msgstr "Ende"
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
-msgid "Email Sent!"
-msgstr ""
+#: airtime_mvc/application/services/HistoryService.php:1176
+msgid "Played"
+msgstr "Abgespielt"
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
-msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
-msgid "Back"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
-msgid "New password"
-msgstr "Neues Passwort"
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
-msgid "Please enter and confirm your new password in the fields below."
-msgstr "Bitte in den nachstehenden Feldern das neue Passwort eingeben und bestätigen."
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:3
-#: airtime_mvc/application/forms/Login.php:83
-msgid "Login"
-msgstr "Anmeldung"
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:7
+#: airtime_mvc/application/controllers/LibraryController.php:31
+#: airtime_mvc/application/controllers/PlaylistController.php:147
#, php-format
-msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
+msgid "%s not found"
+msgstr "%s nicht gefunden"
+
+#: airtime_mvc/application/controllers/LibraryController.php:40
+#: airtime_mvc/application/controllers/PlaylistController.php:168
+msgid "Something went wrong."
+msgstr "Etwas ist falsch gelaufen."
+
+#: airtime_mvc/application/controllers/LibraryController.php:95
+#: airtime_mvc/application/controllers/ShowbuilderController.php:136
+msgid "Preview"
+msgstr "Vorschau"
+
+#: airtime_mvc/application/controllers/LibraryController.php:115
+#: airtime_mvc/application/controllers/LibraryController.php:177
+#: airtime_mvc/application/controllers/LibraryController.php:200
+msgid "Add to Playlist"
+msgstr "Zu Playlist hinzufügen"
+
+#: airtime_mvc/application/controllers/LibraryController.php:117
+msgid "Add to Smart Block"
+msgstr "Hinzufügen zu Smart Block"
+
+#: airtime_mvc/application/controllers/LibraryController.php:123
+#: airtime_mvc/application/controllers/LocaleController.php:66
+msgid "Edit Metadata"
+msgstr "Metadaten bearbeiten"
+
+#: airtime_mvc/application/controllers/LibraryController.php:131
+#: airtime_mvc/application/controllers/ScheduleController.php:712
+msgid "Download"
+msgstr "Herunterladen"
+
+#: airtime_mvc/application/controllers/LibraryController.php:147
+msgid "View track"
msgstr ""
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:97
-msgid "Playout History"
-msgstr "Playout Verlauf"
+#: airtime_mvc/application/controllers/LibraryController.php:148
+msgid "Remove track"
+msgstr ""
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
-msgid "Log Sheet"
-msgstr "Protokoll"
+#: airtime_mvc/application/controllers/LibraryController.php:154
+#: airtime_mvc/application/controllers/LibraryController.php:159
+msgid "Upload track"
+msgstr ""
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
-msgid "File Summary"
-msgstr "Dateiübersicht"
+#: airtime_mvc/application/controllers/LibraryController.php:169
+msgid "Duplicate Playlist"
+msgstr "Playlist duplizieren"
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
-msgid "Show Summary"
-msgstr "Sendungsübersicht"
+#: airtime_mvc/application/controllers/LibraryController.php:213
+msgid "No action available"
+msgstr "Keine Aktion verfügbar"
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
-msgid "Your trial expires in"
-msgstr "Die Probelaufzeit läuft ab in"
+#: airtime_mvc/application/controllers/LibraryController.php:233
+msgid "You don't have permission to delete selected items."
+msgstr "Sie haben nicht die erforderliche Berechtigung die gewählten Objekte zu löschen."
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
-msgid "days"
-msgstr "Tage"
+#: airtime_mvc/application/controllers/LibraryController.php:279
+msgid "Could not delete file because it is scheduled in the future."
+msgstr ""
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+#: airtime_mvc/application/controllers/LibraryController.php:282
+msgid "Could not delete file(s)."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:322
#, php-format
-msgid "Purchase an %s Pro plan!"
-msgstr ""
+msgid "Copy of %s"
+msgstr "Kopie von %s"
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-msgid "My Account"
-msgstr "Mein Konto"
+#: airtime_mvc/application/controllers/WebstreamController.php:28
+#: airtime_mvc/application/controllers/WebstreamController.php:32
+msgid "Untitled Webstream"
+msgstr "Unbenannter Webstream"
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
-msgid "Previous:"
-msgstr "Vorher:"
+#: airtime_mvc/application/controllers/WebstreamController.php:150
+msgid "Webstream saved."
+msgstr "Webstream gespeichert"
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
-msgid "Next:"
-msgstr "Danach:"
+#: airtime_mvc/application/controllers/WebstreamController.php:158
+msgid "Invalid form values."
+msgstr "Ungültiger Eingabewert"
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
-msgid "Source Streams"
-msgstr "Stream-Quellen"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
-msgid "Master Source"
-msgstr "Master Quelle"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
-msgid "Show Source"
-msgstr "Show Quelle"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
-msgid "ON AIR"
-msgstr "ON AIR"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
-msgid "Listen"
-msgstr "Hören"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
-msgid "Logout"
-msgstr "Abmelden"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
-msgid "Drop files here or click to browse your computer."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
-#: airtime_mvc/application/controllers/LocaleController.php:314
-msgid "in use"
-msgstr "In Verwendung"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
-#: airtime_mvc/application/controllers/LocaleController.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:401
-msgid "All"
-msgstr "Alle"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
-msgid "Failed"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
-msgid "Pending"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
-msgid "Recent Uploads"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
-#: airtime_mvc/application/configs/navigation.php:120
-msgid "Account Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
-msgid "Upgrade today to get more listeners and storage space!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
-msgid "View Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
-msgid "About"
-msgstr "Über"
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
-#, php-format
-msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
-#, php-format
-msgid "%1$s %2$s is distributed under the %3$s"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
-#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
-msgid "Live stream"
-msgstr "Live Stream"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
-msgid "Share"
-msgstr "Teilen"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
-msgid "Select stream:"
-msgstr "Stream wählen:"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
-msgid "mute"
-msgstr "Stumm schalten"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
-msgid "unmute"
-msgstr "Laut schalten"
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
-#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
-#, php-format
-msgid "Welcome to %s!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
-#, php-format
-msgid "Here's how you can get started using %s to automate your broadcasts: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
-msgid "Upload audio tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
-msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
-msgid "Schedule a show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
-msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
-msgid "Add tracks to your show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
-msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
-msgid "Now you're good to go!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
-#, php-format
-msgid "For more detailed help, read the %suser manual%s."
-msgstr "Für weitere Hilfe bitte das %sBenutzerhandbuch%s lesen."
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
-msgid "Listeners"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
-msgid "Stream Data Collection Status"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
-#: airtime_mvc/application/views/scripts/error/error.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
-msgid "An error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
-msgid "Access Denied!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
-msgid "You do not have permission to access this page!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
-#: airtime_mvc/application/views/scripts/error/error.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
-#: airtime_mvc/application/configs/navigation.php:143
-msgid "Help"
-msgstr "Hilfe"
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
-msgid "Page not found!"
-msgstr "Seite nicht gefunden!"
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
-msgid "We couldn't find the page you were looking for."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error.phtml:12
-msgid "Looks like the page you were looking for doesn't exist!"
-msgstr "Scheinbar existiert die Seite die sie suchen nicht!"
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
-msgid "Oops!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
-msgid "Something went wrong!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
-msgid "Bad Request!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
-msgid "The requested action is not supported!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
-msgid "Viewing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
-msgid "Editing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:3
-msgid "File import in progress..."
-msgstr "Datei-Import in Bearbeitung..."
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:10
-#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
-msgid "Advanced Search Options"
-msgstr "Erweiterte Suchoptionen"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
-#: airtime_mvc/application/forms/Player.php:15
-#: airtime_mvc/application/forms/EditAudioMD.php:24
-msgid "Title:"
-msgstr "Titel"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
-#: airtime_mvc/application/forms/EditAudioMD.php:34
-msgid "Creator:"
-msgstr "Interpret:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
-#: airtime_mvc/application/forms/EditAudioMD.php:44
-msgid "Album:"
-msgstr "Album:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
-msgid "Track:"
-msgstr "Titelnummer:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
-msgid "Length:"
-msgstr "Dauer:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
-msgid "Sample Rate:"
-msgstr "Samplerate:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
-msgid "Bit Rate:"
-msgstr "Bitrate:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
-#: airtime_mvc/application/forms/EditAudioMD.php:115
-msgid "Mood:"
-msgstr "Stimmung:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
-#: airtime_mvc/application/forms/EditAudioMD.php:62
-#: airtime_mvc/application/forms/AddShowWhat.php:45
-msgid "Genre:"
-msgstr "Genre:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
-#: airtime_mvc/application/forms/EditAudioMD.php:72
-msgid "Year:"
-msgstr "Jahr:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
-#: airtime_mvc/application/forms/EditAudioMD.php:85
-msgid "Label:"
-msgstr "Label:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
-#: airtime_mvc/application/forms/EditAudioMD.php:125
-msgid "BPM:"
-msgstr "BPM:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
-#: airtime_mvc/application/forms/EditAudioMD.php:95
-msgid "Composer:"
-msgstr "Komponist:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
-#: airtime_mvc/application/forms/EditAudioMD.php:105
-msgid "Conductor:"
-msgstr "Dirigent:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
-#: airtime_mvc/application/forms/EditAudioMD.php:135
-msgid "Copyright:"
-msgstr "Copyright:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
-msgid "Isrc Number:"
-msgstr "ISRC Number:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
-#: airtime_mvc/application/forms/EditAudioMD.php:155
-msgid "Website:"
-msgstr "Webseite:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
-#: airtime_mvc/application/forms/EditUser.php:119
-#: airtime_mvc/application/forms/EditAudioMD.php:165
-#: airtime_mvc/application/forms/Login.php:68
-msgid "Language:"
-msgstr "Sprache:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
-msgid "File Path:"
-msgstr "Dateipfad:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
-#: airtime_mvc/application/forms/AddShowWhat.php:26
-msgid "Name:"
-msgstr "Name:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
-#: airtime_mvc/application/forms/AddShowWhat.php:54
-msgid "Description:"
-msgstr "Beschreibung:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
-msgid "Web Stream"
-msgstr "Web Stream"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
-msgid "Dynamic Smart Block"
-msgstr "Dynamischer Smart Block"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
-msgid "Static Smart Block"
-msgstr "Statischer Smart Block"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
-msgid "Audio Track"
-msgstr "Titel"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
-msgid "Playlist Contents: "
-msgstr "Playlist Inhalt:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
-msgid "Static Smart Block Contents: "
-msgstr "Statischer Smart Block Inhalt:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
-msgid "Dynamic Smart Block Criteria: "
-msgstr "Dynamische Smart Block Kriterien:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
-msgid "Limit to "
-msgstr "Begrenzt auf "
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
-#: airtime_mvc/application/forms/AddShowWhat.php:36
-msgid "URL:"
-msgstr "URL:"
-
-#: airtime_mvc/application/views/scripts/form/login.phtml:41
-msgid "Forgot your password?"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
-#, php-format
-msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
-#, php-format
-msgid "Click the box below to promote your station on %s."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
-msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
-msgstr "(Um ihre Radiostation bewerben zu können, muß 'Support Feedback senden' aktiviert sein)"
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
-msgid "(Required)"
-msgstr "(Erforderlich)"
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
-msgid "(for verification purposes only, will not be published)"
-msgstr "(Ausschließlich zu Kontrollzwecken, wird nicht veröffentlicht)"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
-msgid "Choose folder"
-msgstr "Verzeichnis wählen"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
-msgid "Set"
-msgstr "Wählen"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
-msgid "Current Import Folder:"
-msgstr "Aktuelles Import-Verzeichnis:"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
-msgid "Add"
-msgstr "Hinzufügen"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
-#, php-format
-msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
-msgid "Remove watched directory"
-msgstr "Überwachten Ordner entfernen"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
-msgid "You are not watching any media folders."
-msgstr "Sie überwachen keine Medienverzeichnisse."
-
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
-msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
-msgid "Live Broadcasting"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
-msgid "Use these settings in your broadcasting software to stream live at any time."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
-msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
-msgid "Choose Show Instance"
-msgstr "Folge wählen"
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
-#: airtime_mvc/application/forms/EditHistoryItem.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:400
-msgid "No Show"
-msgstr "Keine Sendung"
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
-msgid "Find"
-msgstr "Finden"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
-msgid "Choose Days:"
-msgstr "Tag wählen:"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
-#: airtime_mvc/application/forms/AddShowStyle.php:64
-#: airtime_mvc/application/forms/GeneralPreferences.php:53
-msgid "Remove"
-msgstr "Entfernen"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
-msgid "Stream "
-msgstr "Stream"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
-msgid "Additional Options"
-msgstr "Erweiterte Optionen"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
-msgid "The following info will be displayed to listeners in their media player:"
-msgstr "Die Hörer werden folgende Information auf dem Display ihres Medien-Players sehen:"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
-msgid "(Your radio station website)"
-msgstr "(Webseite ihrer Radiostation)"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
-msgid "Stream URL: "
-msgstr "Stream URL:"
-
-#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
-msgid "Find Shows"
-msgstr "Sendungen suchen"
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
-msgid "TuneIn Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
-msgid "SoundCloud Settings"
-msgstr "SoundCloud Einstellungen"
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
-msgid "Dangerous Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
-msgid "Search Criteria:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
-msgid "New Criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
-msgid "or"
-msgstr "oder"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
-msgid "and"
-msgstr "and"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
-msgid "New Modifier"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
-msgid " to "
-msgstr " bis "
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
-msgid "files meet the criteria"
-msgstr "Dateien entsprechen den Kriterien"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
-msgid "file meets the criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
-msgid "Filter History"
-msgstr "Filter Verlauf"
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
-#: airtime_mvc/application/configs/navigation.php:61
-msgid "My Profile"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
-#, php-format
-msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
-#: airtime_mvc/application/forms/Preferences.php:40
-#: airtime_mvc/application/forms/PasswordChange.php:43
-#: airtime_mvc/application/forms/AddUser.php:110
-#: airtime_mvc/application/forms/BillingClient.php:193
-#: airtime_mvc/application/forms/SupportSettings.php:131
-#: airtime_mvc/application/forms/EditHistory.php:131
-#: airtime_mvc/application/controllers/LocaleController.php:294
-msgid "Save"
-msgstr "Speichern"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
-msgid "Repeat Days:"
-msgstr "Wiederholungstage:"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
-msgid "Register Airtime"
-msgstr "Airtime registrieren"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
-#: airtime_mvc/application/forms/GeneralPreferences.php:43
-msgid "Note: Anything larger than 600x600 will be resized."
-msgstr "Erinnerung: Sind Dateien größer als 600x600 Pixel, wird die Größe geändert."
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
-msgid "Show me what I am sending "
-msgstr "Zeige mir was ich sende"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
-msgid "Terms and Conditions"
-msgstr "Geschäftsbedingungen und Rahmenverhältnisse"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
-msgid "Creating File Summary Template"
-msgstr "Erstelle Dateiübersichtsvorlage"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
-msgid "Creating Log Sheet Template"
-msgstr "Erstelle Protokollvorlage"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
-msgid "Name"
-msgstr "Name"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
-msgid "Add more elements"
-msgstr "Weitere Elemente hinzufügen"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
-msgid "Add New Field"
-msgstr "Neues Feld hinzufügen"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
-msgid "Set Default Template"
-msgstr "Standardvorlage festlegen"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
-msgid "Playout History Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
-msgid "Log Sheet Templates"
-msgstr "Protokollvorlagen"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
-msgid "New Log Sheet Template"
-msgstr "Neue Protokollvorlage"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
-msgid "No Log Sheet Templates"
-msgstr "Keine Protokollvorlagen"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
-#: airtime_mvc/application/controllers/LocaleController.php:397
-msgid "Set Default"
-msgstr "Standard festlegen"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
-msgid "File Summary Templates"
-msgstr "Dateiübersichtsvorlagen"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
-msgid "New File Summary Template"
-msgstr "Neue Dateiübersichtsvorlage"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
-msgid "No File Summary Templates"
-msgstr "Keine Dateiübersichtsvorlagen"
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
-msgid "Disk Space"
-msgstr "Speicherplatz"
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
-#: airtime_mvc/application/controllers/LocaleController.php:315
-msgid "Disk"
-msgstr "Disk"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
-#: airtime_mvc/application/forms/AddShowWhen.php:89
-msgid "Duration:"
-msgstr "Dauer:"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
-msgid "Toggle Details"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
-msgid "Playlist crossfade"
-msgstr "Playlist Crossfade"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-msgid "Remove all content from this smart block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Clear"
-msgstr "Leeren"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "Fade in: "
-msgstr "Fade In:"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "(ss.t)"
-msgstr "(ss.t)"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-msgid "Fade out: "
-msgstr "Fade Out:"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
-#: airtime_mvc/application/forms/EditAudioMD.php:186
-#: airtime_mvc/application/forms/EditHistory.php:141
-#: airtime_mvc/application/controllers/LocaleController.php:295
-#: airtime_mvc/application/controllers/LocaleController.php:318
-msgid "Cancel"
-msgstr "Abbrechen"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
-msgid "No smart block currently open"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
-msgid "Show Waveform"
-msgstr "Wellenform anzeigen"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-msgid "Cue In: "
-msgstr "Cue In:"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "(hh:mm:ss.t)"
-msgstr "(hh:mm:ss.t)"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "Cue Out: "
-msgstr "Cue Out:"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
-msgid "Original Length:"
-msgstr "Original Dauer:"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
-msgid "Expand Static Block"
-msgstr "Statischen Block erweitern"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
-msgid "Expand Dynamic Block"
-msgstr "Dynamischen Block erweitern"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
-msgid "Choose some search criteria above and click Generate to create this playlist."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
-msgid "A track list will be generated when you schedule this smart block into a show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
-msgid "Drag tracks here from your library to add them to the playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-msgid "Shuffle playlist"
-msgstr "Shuffle Playlist"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
-msgid "Shuffle"
-msgstr "Shuffle"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Empty playlist content"
-msgstr "Playlist leeren"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-msgid "Save playlist"
-msgstr "Playlist speichern"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
-msgid "No open playlist"
-msgstr "Keine Playlist geöffnet"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
-msgid "previous"
-msgstr "Zurück"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
-msgid "play"
-msgstr "Abspielen"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
-msgid "pause"
-msgstr "Pause"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
-msgid "next"
-msgstr "Nächster"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
-msgid "stop"
-msgstr "Stopp"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
-msgid "max volume"
-msgstr "Maximale Lautstärke"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
-msgid "Update Required"
-msgstr "Aktualisierung erforderlich"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
-#, php-format
-msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
-msgstr "Um diese Datei abspielen zu können muß entweder der Browser oder das %sFlash Plugin%s aktualisiert werden."
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
-msgid "Stream Settings"
-msgstr "Stream Einstellungen"
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
-msgid "Global"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
-msgid "dB"
-msgstr "dB"
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
-msgid "Output Streams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
-#: airtime_mvc/application/controllers/LocaleController.php:166
-msgid "Manage Media Folders"
-msgstr "Verwalte Medienverzeichnisse"
-
-#: airtime_mvc/application/views/scripts/preference/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:56
-msgid "General"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
-msgid "Description"
-msgstr "Beschreibung"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
-msgid "Stream URL:"
-msgstr "Stream URL:"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
-msgid "Default Length:"
-msgstr "Standard Dauer:"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
-msgid "No webstream"
-msgstr "Kein Webstream"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
-msgid "Manage Users"
-msgstr "Benutzer verwalten"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
-msgid "New User"
-msgstr "Neuer Benutzer"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
-msgid "id"
-msgstr "ID"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
-#: airtime_mvc/application/forms/PasswordRestore.php:25
-msgid "Username"
-msgstr "Benutzername"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
-msgid "First Name"
-msgstr "Vorname"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
-msgid "Last Name"
-msgstr "Nachname"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
-msgid "User Type"
-msgstr "Benutzertyp"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
-#, php-format
-msgid "Super Admin details can be changed in your Billing Settings."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
-#: airtime_mvc/application/controllers/LocaleController.php:74
-#: airtime_mvc/application/layouts/scripts/layout.phtml:78
-msgid "Tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
-#: airtime_mvc/application/controllers/LocaleController.php:104
-#: airtime_mvc/application/layouts/scripts/layout.phtml:80
-msgid "Playlists"
-msgstr "Playlisten"
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
-#: airtime_mvc/application/controllers/LocaleController.php:105
-#: airtime_mvc/application/layouts/scripts/layout.phtml:82
-msgid "Smart Blocks"
-msgstr "Smart Blöcke"
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
-#: airtime_mvc/application/layouts/scripts/layout.phtml:84
-msgid "Webstreams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
-#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
-#: airtime_mvc/application/layouts/scripts/layout.phtml:76
-msgid "Dashboard"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:12
-msgid "Radio Page"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:19
-msgid "Calendar"
-msgstr "Kalender"
-
-#: airtime_mvc/application/configs/navigation.php:26
-msgid "Widgets"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:48
-msgid "Settings"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:67
-msgid "Users"
-msgstr "Benutzer"
-
-#: airtime_mvc/application/configs/navigation.php:74
-msgid "Streams"
-msgstr "Streams"
-
-#: airtime_mvc/application/configs/navigation.php:82
-msgid "Analytics"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:90
-msgid "Listener Stats"
-msgstr "Hörerstatistiken"
-
-#: airtime_mvc/application/configs/navigation.php:104
-msgid "History Templates"
-msgstr "Verlaufsvorlagen"
-
-#: airtime_mvc/application/configs/navigation.php:113
-msgid "Billing"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:127
-msgid "Account Details"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:134
-msgid "View Invoices"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:150
-msgid "Getting Started"
-msgstr "Kurzanleitung"
-
-#: airtime_mvc/application/configs/navigation.php:157
-msgid "FAQ"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:162
-msgid "User Manual"
-msgstr "Benutzerhandbuch"
-
-#: airtime_mvc/application/configs/navigation.php:167
-msgid "File a Support Ticket"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:12
-msgid "Background Colour:"
-msgstr "Hintergrundfarbe:"
-
-#: airtime_mvc/application/forms/AddShowStyle.php:31
-msgid "Text Colour:"
-msgstr "Textfarbe:"
-
-#: airtime_mvc/application/forms/AddShowStyle.php:49
-msgid "Current Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:72
-msgid "Show Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:87
-msgid "Logo Preview:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:19
-msgid "Push metadata to your station on TuneIn?"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:24
-msgid "Station ID:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:30
-msgid "Partner Key:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:36
-msgid "Partner Id:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:77
-#: airtime_mvc/application/forms/TuneInPreferences.php:86
-msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:14
-msgid "Now Playing"
-msgstr "Jetzt"
-
-#: airtime_mvc/application/forms/Player.php:25
-msgid "Select Stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:28
-msgid "Auto detect the most appropriate stream to use."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:29
-msgid "Select a stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:41
-msgid " - Mobile friendly"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:45
-msgid " - The player does not support Opus streams."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:71
-msgid "Embeddable code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:72
-msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:37
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
-#: airtime_mvc/application/forms/Login.php:41
-#: airtime_mvc/application/forms/AddUser.php:29
-msgid "Username:"
-msgstr "Benutzername:"
-
-#: airtime_mvc/application/forms/EditUser.php:48
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
-#: airtime_mvc/application/forms/Login.php:54
-#: airtime_mvc/application/forms/AddUser.php:38
-#: airtime_mvc/application/forms/BillingClient.php:172
-msgid "Password:"
-msgstr "Passwort:"
-
-#: airtime_mvc/application/forms/EditUser.php:57
-#: airtime_mvc/application/forms/AddUser.php:46
-#: airtime_mvc/application/forms/BillingClient.php:181
-msgid "Verify Password:"
-msgstr "Passwort bestätigen:"
-
-#: airtime_mvc/application/forms/EditUser.php:67
-#: airtime_mvc/application/forms/AddUser.php:55
-msgid "Firstname:"
-msgstr "Vorname:"
-
-#: airtime_mvc/application/forms/EditUser.php:75
-#: airtime_mvc/application/forms/AddUser.php:61
-msgid "Lastname:"
-msgstr "Nachname:"
-
-#: airtime_mvc/application/forms/EditUser.php:83
-#: airtime_mvc/application/forms/RegisterAirtime.php:51
-#: airtime_mvc/application/forms/AddUser.php:67
-#: airtime_mvc/application/forms/SupportSettings.php:43
-msgid "Email:"
-msgstr "E-Mail:"
-
-#: airtime_mvc/application/forms/EditUser.php:94
-#: airtime_mvc/application/forms/AddUser.php:76
-msgid "Mobile Phone:"
-msgstr "Mobiltelefon:"
-
-#: airtime_mvc/application/forms/EditUser.php:102
-#: airtime_mvc/application/forms/AddUser.php:82
-msgid "Skype:"
-msgstr "Skype:"
-
-#: airtime_mvc/application/forms/EditUser.php:110
-#: airtime_mvc/application/forms/AddUser.php:88
-msgid "Jabber:"
-msgstr "Jabber:"
-
-#: airtime_mvc/application/forms/EditUser.php:129
-msgid "Interface Timezone:"
-msgstr "Zeitzone Interface"
-
-#: airtime_mvc/application/forms/EditUser.php:155
-#: airtime_mvc/application/forms/AddUser.php:120
-msgid "Login name is not unique."
-msgstr "Benutzername ist nicht einmalig."
-
-#: airtime_mvc/application/forms/AddShowRR.php:10
-msgid "Record from Line In?"
-msgstr "Aufzeichnen von Line-In?"
-
-#: airtime_mvc/application/forms/AddShowRR.php:16
-msgid "Rebroadcast?"
-msgstr "Wiederholen?"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:16
-msgid "'%value%' does not fit the time format 'HH:mm'"
-msgstr "'%value%' ist nicht im Format 'HH:mm'"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:22
-msgid "Start Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:37
-msgid "In the Future:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:64
-msgid "End Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:98
-msgid "Timezone:"
-msgstr "Zeitzone:"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:107
-msgid "Repeats?"
-msgstr "Wiederholungen?"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:139
-msgid "Cannot create show in the past"
-msgstr "Eine Sendung kann nicht für einen bereits vergangenen Zeitpunkt geplant werden"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:147
-msgid "Cannot modify start date/time of the show that is already started"
-msgstr "Beginn- & Endzeit einer bereits laufenden Sendung können nicht geändert werden"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:164
-msgid "Cannot have duration < 0m"
-msgstr "Die Dauer einer Sendung kann nicht kürzer als 0 Minuten sein."
-
-#: airtime_mvc/application/forms/AddShowWhen.php:168
-msgid "Cannot have duration 00h 00m"
-msgstr "Die Dauer einer Sendung kann nicht 00h 00m sein"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:175
-msgid "Cannot have duration greater than 24h"
-msgstr "Die Dauer einer Sendung kann nicht länger als 24h sein"
-
-#: airtime_mvc/application/forms/AddShowWho.php:10
-msgid "Search Users:"
-msgstr "Benutzer suchen:"
-
-#: airtime_mvc/application/forms/AddShowWho.php:24
-msgid "DJs:"
-msgstr "DJs:"
-
-#: airtime_mvc/application/forms/PasswordChange.php:17
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
-msgid "Password"
-msgstr "Passwort"
-
-#: airtime_mvc/application/forms/PasswordChange.php:28
-msgid "Confirm new password"
-msgstr "Neues Passwort bestätigen"
-
-#: airtime_mvc/application/forms/PasswordChange.php:36
-msgid "Password confirmation does not match your password."
-msgstr "Passwortbestätigung stimmt nicht mit Passwort überein"
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
-msgid "Station Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
-#: airtime_mvc/application/forms/GeneralPreferences.php:127
-msgid "Station Timezone"
-msgstr "Zeitzone Radiostation"
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
-msgid "Auto Switch Off:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
-msgid "Auto Switch On:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
-msgid "Switch Transition Fade (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
-#: airtime_mvc/application/forms/GeneralPreferences.php:68
-#: airtime_mvc/application/forms/GeneralPreferences.php:82
-#: airtime_mvc/application/forms/GeneralPreferences.php:96
-msgid "Please enter a time in seconds (eg. 0.5)"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
-#: airtime_mvc/application/forms/AddShowLiveStream.php:48
-msgid "Host:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
-#: airtime_mvc/application/forms/AddShowLiveStream.php:54
-msgid "Port:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
-#: airtime_mvc/application/forms/AddShowLiveStream.php:60
-msgid "Mount:"
-msgstr ""
-
-#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
-msgid "Value is required and can't be empty"
-msgstr "Wert erforderlich. Feld darf nicht leer sein."
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:25
-#: airtime_mvc/application/forms/RegisterAirtime.php:30
-#: airtime_mvc/application/forms/SupportSettings.php:18
-msgid "Station Name"
-msgstr "Sendername"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:33
-msgid "Station Description"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:42
-#: airtime_mvc/application/forms/RegisterAirtime.php:106
-msgid "Station Logo:"
-msgstr "Sender Logo:"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:62
-msgid "Default Crossfade Duration (s):"
-msgstr "Standarddauer Crossfade (s):"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:76
-msgid "Default Fade In (s):"
-msgstr "Standard Fade In (s):"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:90
-msgid "Default Fade Out (s):"
-msgstr "Standard Fade Out (s):"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:102
-msgid "Public Airtime API"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:103
-msgid "Required for embeddable schedule widget."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:105
-msgid "Disabled"
-msgstr "Deaktiviert"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:106
-msgid "Enabled"
-msgstr "Aktiviert"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:109
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
msgid ""
-"Enabling this feature will allow Airtime to provide schedule data\n"
-" to external widgets that can be embedded in your website."
+"To configure and use the embeddable player you must:
\n"
+" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
+" 2. Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/forms/GeneralPreferences.php:120
-msgid "Default Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:134
-msgid "Week Starts On"
-msgstr "Woche startet mit "
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:150
-msgid "Display login button on your Radio Page?"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:158
-#: airtime_mvc/application/controllers/LocaleController.php:249
-msgid "Sunday"
-msgstr "Sonntag"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:159
-#: airtime_mvc/application/controllers/LocaleController.php:250
-msgid "Monday"
-msgstr "Montag"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:160
-#: airtime_mvc/application/controllers/LocaleController.php:251
-msgid "Tuesday"
-msgstr "Dienstag"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:161
-#: airtime_mvc/application/controllers/LocaleController.php:252
-msgid "Wednesday"
-msgstr "Mittwoch"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:162
-#: airtime_mvc/application/controllers/LocaleController.php:253
-msgid "Thursday"
-msgstr "Donnerstag"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:163
-#: airtime_mvc/application/controllers/LocaleController.php:254
-msgid "Friday"
-msgstr "Freitag"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:164
-#: airtime_mvc/application/controllers/LocaleController.php:255
-msgid "Saturday"
-msgstr "Samstag"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
-msgid "Default License:"
-msgstr "Standard Lizenz:"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
-msgid "All rights are reserved"
-msgstr "Alle Rechte vorbehalten"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
-msgid "The work is in the public domain"
-msgstr "Das Werk ist in der öffentlichen Domäne"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
-msgid "Creative Commons Attribution"
-msgstr "Creative Commons Zuordnung"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
-msgid "Creative Commons Attribution Noncommercial"
-msgstr "Creative Commons Zuordnung Noncommercial"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
-msgid "Creative Commons Attribution No Derivative Works"
-msgstr "Creative Commons Zuordnung No Derivative Works"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
-msgid "Creative Commons Attribution Share Alike"
-msgstr "Creative Commons Zuordnung Share Alike"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
-msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
-msgstr "Creative Commons Zuordnung Noncommercial Non Derivate Works"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
-msgid "Creative Commons Attribution Noncommercial Share Alike"
-msgstr "Creative Commons Zuordnung Noncommercial Share Alike"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
-msgid "Default Sharing Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
-msgid "Public"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
-msgid "Private"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:18
-#: airtime_mvc/application/forms/DateRange.php:16
-msgid "Date Start:"
-msgstr "Zeitpunkt Start:"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:37
-#: airtime_mvc/application/forms/ShowBuilder.php:65
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
-#: airtime_mvc/application/forms/DateRange.php:35
-#: airtime_mvc/application/forms/DateRange.php:63
-msgid "Invalid character entered"
-msgstr "Ungültiges Zeichen eingeben"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:46
-#: airtime_mvc/application/forms/AddShowRepeats.php:56
-#: airtime_mvc/application/forms/DateRange.php:44
-msgid "Date End:"
-msgstr "Zeitpunkt Ende:"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:72
-#: airtime_mvc/application/forms/ShowBuilder.php:88
-msgid "Filter by Show"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:80
-msgid "All My Shows:"
-msgstr "Alle meine Sendungen:"
-
-#: airtime_mvc/application/forms/EditAudioMD.php:145
-msgid "ISRC Number:"
-msgstr "ISRC Nummer:"
-
-#: airtime_mvc/application/forms/EditAudioMD.php:176
-msgid "OK"
-msgstr "OK"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
-msgid "Day must be specified"
-msgstr "Tag muß angegeben werden"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
-msgid "Time must be specified"
-msgstr "Zeit muß angegeben werden"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
-msgid "Must wait at least 1 hour to rebroadcast"
-msgstr "Das Wiederholen einer Sendung ist erst nach einer Stunde Wartezeit möglich."
-
-#: airtime_mvc/application/forms/AddShowWhat.php:30
-msgid "Untitled Show"
-msgstr "Unbenannte Sendung"
-
-#: airtime_mvc/application/forms/AddShowWhat.php:69
-msgid "Instance Description:"
-msgstr ""
-
-#: airtime_mvc/application/forms/DangerousPreferences.php:12
-msgid "Delete All Tracks in Library"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:39
-#: airtime_mvc/application/forms/SupportSettings.php:31
-msgid "Phone:"
-msgstr "Telefon:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:62
-#: airtime_mvc/application/forms/SupportSettings.php:54
-msgid "Station Web Site:"
-msgstr "Sender-Webseite:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:73
-#: airtime_mvc/application/forms/BillingClient.php:102
-#: airtime_mvc/application/forms/SupportSettings.php:65
-msgid "Country:"
-msgstr "Land:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:84
-#: airtime_mvc/application/forms/BillingClient.php:70
-#: airtime_mvc/application/forms/SupportSettings.php:76
-msgid "City:"
-msgstr "Stadt:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:96
-#: airtime_mvc/application/forms/SupportSettings.php:88
-msgid "Station Description:"
-msgstr "Sender Beschreibung:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:116
-#: airtime_mvc/application/forms/SupportSettings.php:98
-#: airtime_mvc/application/controllers/LocaleController.php:341
-msgid "Send support feedback"
-msgstr "Support Feedback senden"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:126
-#: airtime_mvc/application/forms/SupportSettings.php:108
-#, php-format
-msgid "Promote my station on %s"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:151
-#: airtime_mvc/application/forms/SupportSettings.php:120
-#, php-format
-msgid "By checking this box, I agree to %s's %sprivacy policy%s."
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:169
-#: airtime_mvc/application/forms/SupportSettings.php:143
-msgid "You have to agree to privacy policy."
-msgstr "Sie müssen die Datenschutzrichtlinien akzeptieren."
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:10
-msgid "Link:"
-msgstr "Verknüpfen:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:16
-msgid "Repeat Type:"
-msgstr "Wiederholungstyp:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:19
-msgid "weekly"
-msgstr "Wöchentlich"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:20
-msgid "every 2 weeks"
-msgstr "jede Zweite Woche"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:21
-msgid "every 3 weeks"
-msgstr "jede Dritte Woche"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:22
-msgid "every 4 weeks"
-msgstr "jede Vierte Woche"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:23
-msgid "monthly"
-msgstr "Monatlich"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:32
-msgid "Select Days:"
-msgstr "Tage wählen:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:35
-#: airtime_mvc/application/controllers/LocaleController.php:256
-msgid "Sun"
-msgstr "SO"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:36
-#: airtime_mvc/application/controllers/LocaleController.php:257
-msgid "Mon"
-msgstr "MO"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:37
-#: airtime_mvc/application/controllers/LocaleController.php:258
-msgid "Tue"
-msgstr "DI"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:38
-#: airtime_mvc/application/controllers/LocaleController.php:259
-msgid "Wed"
-msgstr "MI"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:39
-#: airtime_mvc/application/controllers/LocaleController.php:260
-msgid "Thu"
-msgstr "DO"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:40
-#: airtime_mvc/application/controllers/LocaleController.php:261
-msgid "Fri"
-msgstr "FR"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:41
-#: airtime_mvc/application/controllers/LocaleController.php:262
-msgid "Sat"
-msgstr "SA"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:47
-msgid "Repeat By:"
-msgstr "Wiederholung am:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the month"
-msgstr "Tag des Monats"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the week"
-msgstr "Tag der Woche"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:69
-msgid "No End?"
-msgstr "Kein Enddatum?"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:106
-msgid "End date must be after start date"
-msgstr "Enddatum muß nach Startdatum liegen."
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:113
-msgid "Please select a repeat day"
-msgstr "Bitte Tag zum Wiederholen wählen"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:10
-#, php-format
-msgid "Use %s Authentication:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:16
-msgid "Use Custom Authentication:"
-msgstr "Benutzerdefinierte Authentifizierung:"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:25
-msgid "Custom Username"
-msgstr "Benutzerdefinierter Benutzername"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:37
-msgid "Custom Password"
-msgstr "Benutzerdefiniertes Passwort"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:77
-msgid "Username field cannot be empty."
-msgstr "Das Feld Benutzername darf nicht leer sein."
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:82
-msgid "Password field cannot be empty."
-msgstr "Das Feld Passwort darf nicht leer sein."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
-msgid "Enabled:"
-msgstr "Aktiviert:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
-msgid "Mobile:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
-msgid "Stream Type:"
-msgstr "Stream Typ:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
-msgid "Service Type:"
-msgstr "Service Typ:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
-msgid "Channels:"
-msgstr "Kanäle:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "1 - Mono"
-msgstr "1 - Mono"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "2 - Stereo"
-msgstr "2 - Stereo"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
-msgid "Server"
-msgstr "Server"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
-msgid "Port"
-msgstr "Port"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
-msgid "Only numbers are allowed."
-msgstr "Es sind nur Zahlen erlaubt"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
-msgid "URL"
-msgstr "URL"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
-msgid "Mount Point"
-msgstr "Mount Point"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
-msgid "Admin User"
-msgstr "Admin Benutzer"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
-msgid "Admin Password"
-msgstr "Admin Passwort"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
-#: airtime_mvc/application/controllers/LocaleController.php:173
-msgid "Getting information from the server..."
-msgstr "Erhalte Information vom Server..."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
-msgid "Server cannot be empty."
-msgstr "Server darf nicht leer sein."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
-msgid "Port cannot be empty."
-msgstr "Port darf nicht leer sein."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
-msgid "Mount cannot be empty with Icecast server."
-msgstr "Mount darf nicht leer sein, wenn Icecast-Server verwendet wird."
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
-msgid "'%value%' is no valid email address in the basic format local-part@hostname"
-msgstr "'%value%' ist keine gültige E-Mail-Adresse im Standardformat local-part@hostname"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
-msgid "'%value%' does not fit the date format '%format%'"
-msgstr "'%value%' wurde nicht im erforderlichen Datumsformat '%format%' eingegeben"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
-msgid "'%value%' is less than %min% characters long"
-msgstr "'%value%' ist kürzer als %min% Zeichen lang"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
-msgid "'%value%' is more than %max% characters long"
-msgstr "'%value%' ist mehr als %max% Zeichen lang"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
-msgid "'%value%' is not between '%min%' and '%max%', inclusively"
-msgstr "'%value%' liegt nicht zwischen '%min%' und '%max%'"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
-msgid "Passwords do not match"
-msgstr "Passwörter stimmen nicht überein"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
-msgid "hours"
-msgstr "Stunden"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
-msgid "minutes"
-msgstr "Minuten"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
-msgid "Randomly"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
-msgid "Newest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
-msgid "Oldest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
-msgid "Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
-msgid "Static"
-msgstr "Statisch"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
-msgid "Dynamic"
-msgstr "Dynamisch"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
-msgid "Allow Repeated Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
-msgid "Sort Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
-msgid "Limit to:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
-msgid "Generate playlist content and save criteria"
-msgstr "Playlist-Inhalt erstellen und Kriterien speichern"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
-msgid "Generate"
-msgstr "Erstellen"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
-msgid "Shuffle playlist content"
-msgstr "Shuffle Playlist-Inhalt (Durchmischen)"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
-msgid "Limit cannot be empty or smaller than 0"
-msgstr "Beschränkung kann nicht leer oder kleiner als 0 sein."
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
-msgid "Limit cannot be more than 24 hrs"
-msgstr "Beschränkung kann nicht größer als 24 Stunden sein"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
-msgid "The value should be an integer"
-msgstr "Der Wert muß eine ganze Zahl sein."
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
-msgid "500 is the max item limit value you can set"
-msgstr "Die Anzahl der Objekte ist auf 500 beschränkt."
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
-msgid "You must select Criteria and Modifier"
-msgstr "Sie müssen Kriterium und Modifikator bestimmen"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
-msgid "'Length' should be in '00:00:00' format"
-msgstr "Die 'Dauer' muß im Format '00:00:00' eingegeben werden"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
-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:594
-msgid "The value has to be numeric"
-msgstr "Der eingegebene Wert muß aus Ziffern bestehen"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
-msgid "The value should be less then 2147483648"
-msgstr "Der eingegebene Wert muß kleiner sein als 2147483648"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
-#, php-format
-msgid "The value should be less than %s characters"
-msgstr "Der eingegebene Wert muß aus weniger als %s Zeichen bestehen."
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
-msgid "Value cannot be empty"
-msgstr "Wert kann nicht leer sein"
-
-#: airtime_mvc/application/forms/Login.php:102
-msgid "Type the characters you see in the picture below."
-msgstr "Geben sie die Zeichen ein, die im darunter liegenden Bild zu sehen sind."
-
-#: airtime_mvc/application/forms/StreamSetting.php:26
-msgid "Icecast Vorbis Metadata"
-msgstr "Icecast Vorbis Metadata"
-
-#: airtime_mvc/application/forms/StreamSetting.php:36
-msgid "Stream Label:"
-msgstr "Streambezeichnung:"
-
-#: airtime_mvc/application/forms/StreamSetting.php:37
-msgid "Artist - Title"
-msgstr "Artist - Titel"
-
-#: airtime_mvc/application/forms/StreamSetting.php:38
-msgid "Show - Artist - Title"
-msgstr "Sendung - Interpret - Titel"
-
-#: airtime_mvc/application/forms/StreamSetting.php:39
-msgid "Station name - Show name"
-msgstr "Radiostation - Sendung"
-
-#: airtime_mvc/application/forms/StreamSetting.php:45
-msgid "Off Air Metadata"
-msgstr "Off Air Metadata"
-
-#: airtime_mvc/application/forms/StreamSetting.php:51
-msgid "Enable Replay Gain"
-msgstr "Replay Gain aktivieren"
-
-#: airtime_mvc/application/forms/StreamSetting.php:57
-msgid "Replay Gain Modifier"
-msgstr "Replay Gain Modifikator"
-
-#: airtime_mvc/application/forms/StreamSetting.php:65
-msgid "Streaming Server:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Airtime Pro Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Custom / 3rd Party Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:95
-msgid "User Type:"
-msgstr "Benutzertyp:"
-
-#: airtime_mvc/application/forms/AddUser.php:99
-#: airtime_mvc/application/controllers/LocaleController.php:324
-msgid "Guest"
-msgstr "Gast"
-
-#: airtime_mvc/application/forms/AddUser.php:100
-#: airtime_mvc/application/controllers/LocaleController.php:322
-msgid "DJ"
-msgstr "DJ"
-
-#: airtime_mvc/application/forms/AddUser.php:101
-#: airtime_mvc/application/controllers/LocaleController.php:323
-msgid "Program Manager"
-msgstr "Programm Manager"
-
-#: airtime_mvc/application/forms/AddUser.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:321
-msgid "Admin"
-msgstr "Admin"
-
-#: airtime_mvc/application/forms/BillingClient.php:17
-msgid "First Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:26
-msgid "Last Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:35
-msgid "Company Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:44
-msgid "Email Address:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:54
-msgid "Address 1:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:63
-msgid "Address 2:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:80
-msgid "State/Region:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:89
-msgid "Zip Code / Postal Code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:112
-msgid "Phone Number:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:121
-msgid "Please choose a security question:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:126
-msgid "What is the name of your favorite childhood friend?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:127
-msgid "What school did you attend for sixth grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:128
-msgid "In what city did you meet your spouse/significant other?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:129
-msgid "What street did you live on in third grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:130
-msgid "What is the first name of the boy or girl that you first kissed?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:131
-msgid "In what city or town was your first job?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:135
-msgid "Please enter an answer:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:152
-msgid "VAT/Tax ID (EU only)"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:162
-msgid "Subscribe to Sourcefabric newsletter"
-msgstr ""
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
-msgid "Import Folder:"
-msgstr "Import Verzeichnis:"
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
-msgid "Watched Folders:"
-msgstr "Überwachte Verzeichnisse:"
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
-msgid "Not a valid Directory"
-msgstr "Kein gültiges Verzeichnis"
-
-#: airtime_mvc/application/forms/PasswordRestore.php:14
-msgid "Email"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordRestore.php:36
-msgid "Reset password"
-msgstr "Passwort zurücksetzen"
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
-msgid "Plan type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
-msgid "Billing cycle:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
-msgid "Payment method:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
-msgid "PayPal"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
-msgid "Credit Card via 2Checkout"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:213
-#, php-format
-msgid "The year %s must be within the range of 1753 - 9999"
-msgstr "Das Jahr %s muß innerhalb des Bereichs von 1753 - 9999 liegen."
-
-#: airtime_mvc/application/common/DateHelper.php:216
-#, php-format
-msgid "%s-%s-%s is not a valid date"
-msgstr "%s-%s-%s ist kein gültiges Datum"
-
-#: airtime_mvc/application/common/DateHelper.php:240
-#, php-format
-msgid "%s:%s:%s is not a valid time"
-msgstr "%s-%s-%s ist kein gültiger Zeitpunkt."
-
-#: airtime_mvc/application/common/UsabilityHints.php:55
-msgid "Upload some tracks below to add them to your library!"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:57
-#, php-format
-msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:63
-msgid "Click the 'New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:65
-#, php-format
-msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:73
-msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:75
-#, php-format
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
msgid ""
-"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
-" %sCreate an unlinked show now%s."
+"To use the embeddable weekly schedule widget you must:
\n"
+" Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/common/UsabilityHints.php:80
-msgid "To start broadcasting, click on the current show and select 'Schedule Show'"
-msgstr ""
+#: airtime_mvc/application/controllers/ListenerstatController.php:51
+msgid "Please make sure admin user/password is correct on System->Streams page."
+msgstr "Bitte versichern Sie sich, dass Benutzer/Passwort unter System->Streams korrekt eingetragen ist."
-#: airtime_mvc/application/common/UsabilityHints.php:82
+#: airtime_mvc/application/controllers/UserController.php:86
+msgid "User added successfully!"
+msgstr "Benutzer erfolgreich hinzugefügt!"
+
+#: airtime_mvc/application/controllers/UserController.php:88
+msgid "User updated successfully!"
+msgstr "Benutzer erfolgreich aktualisiert!"
+
+#: airtime_mvc/application/controllers/UserController.php:187
+msgid "Settings updated successfully!"
+msgstr "Einstellungen erfolgreich aktualisiert!"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:53
#, php-format
-msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
-msgstr ""
+msgid "You are viewing an older version of %s"
+msgstr "Sie betrachten eine ältere Version von %s"
-#: airtime_mvc/application/common/UsabilityHints.php:89
-msgid "Click on the show starting next and select 'Schedule Show'"
-msgstr ""
+#: airtime_mvc/application/controllers/PlaylistController.php:140
+msgid "You cannot add tracks to dynamic blocks."
+msgstr "Sie können einem Dynamischen Smart Block keine einzelnen Titel hinzufügen."
-#: airtime_mvc/application/common/UsabilityHints.php:91
+#: airtime_mvc/application/controllers/PlaylistController.php:161
#, php-format
-msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+msgid "You don't have permission to delete selected %s(s)."
+msgstr "Sie haben zum Löschen der gewählten %s (s) nicht die erforderliche Berechtigung. "
+
+#: airtime_mvc/application/controllers/PlaylistController.php:174
+msgid "You can only add tracks to smart block."
+msgstr "Sie können einem Smart Block nur Titel hinzufügen."
+
+#: airtime_mvc/application/controllers/PlaylistController.php:180
+#: airtime_mvc/application/controllers/LocaleController.php:50
+msgid "You can only add tracks, smart blocks, and webstreams to playlists."
+msgstr "Sie können einer Playlist nur Titel, Smart Blocks und Webstreams hinzufügen."
+
+#: airtime_mvc/application/controllers/PlaylistController.php:192
+msgid "Untitled Playlist"
+msgstr "Unbenannte Playlist"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:194
+msgid "Untitled Smart Block"
+msgstr "Unbenannter Smart Block"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:522
+msgid "Unknown Playlist"
+msgstr "Unbenannte Playlist"
+
+#: airtime_mvc/application/controllers/ErrorController.php:78
+msgid "Page not found."
msgstr ""
+#: airtime_mvc/application/controllers/ErrorController.php:87
+msgid "The requested action is not supported."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:98
+msgid "You do not have permission to access this resource."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:109
+msgid "An internal application error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/controllers/Apiv2Controller.php:77
+#: airtime_mvc/application/controllers/ApiController.php:79
+msgid "You are not allowed to access this resource."
+msgstr "Sie haben nicht die erforderliche Berechtigung sich mit dieser Quelle zu verbinden."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:72
+msgid "Preferences updated."
+msgstr "Einstellungen aktualisiert"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:115
+msgid "Support setting updated."
+msgstr "Support-Einstellungen aktualisiert."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:123
+msgid "Support Feedback"
+msgstr "Support Feedback"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:251
+msgid "Stream Setting Updated."
+msgstr "Stream-Einstellungen aktualisiert."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:342
+msgid "path should be specified"
+msgstr "Pfad muß angegeben werden"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:437
+msgid "Problem with Liquidsoap..."
+msgstr "Problem mit Liquidsoap..."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:493
+msgid "Request method not accepted"
+msgstr ""
+
+#: airtime_mvc/application/controllers/DashboardController.php:35
+#: airtime_mvc/application/controllers/DashboardController.php:84
+msgid "You don't have permission to disconnect source."
+msgstr "Sie haben nicht die erforderliche Berechtigung die Quelle zu trennen."
+
+#: airtime_mvc/application/controllers/DashboardController.php:37
+#: airtime_mvc/application/controllers/DashboardController.php:86
+msgid "There is no source connected to this input."
+msgstr "Mit diesem Eingang ist keine Quelle verbunden."
+
+#: airtime_mvc/application/controllers/DashboardController.php:81
+msgid "You don't have permission to switch source."
+msgstr "Sie haben nicht die erforderliche Berechtigung die Quelle zu wechseln."
+
+#: airtime_mvc/application/controllers/LoginController.php:43
+msgid "Please enter your username and password."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:93
+msgid "Wrong username or password provided. Please try again."
+msgstr "Falscher Benutzername oder falsches Passwort eingegeben. Bitte versuchen sie es erneut."
+
+#: airtime_mvc/application/controllers/LoginController.php:167
+msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
+msgstr "E-Mail konnte nicht gesendet werden. Überprüfen sie die Einstellungen des Mail-Servers und versichern sie sich, daß dieser richtig konfiguriert ist."
+
+#: airtime_mvc/application/controllers/LoginController.php:173
+msgid "There was a problem with the username or email address you entered."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ApiController.php:244
+#: airtime_mvc/application/controllers/ApiController.php:317
+#: airtime_mvc/application/controllers/ApiController.php:392
+#: airtime_mvc/application/controllers/ApiController.php:435
+#: airtime_mvc/application/controllers/ApiController.php:474
+#: airtime_mvc/application/controllers/ApiController.php:507
+msgid "You are not allowed to access this resource. "
+msgstr "Sie haben nicht die erforderliche Berechtigung sich mit dieser Quelle zu verbinden."
+
+#: airtime_mvc/application/controllers/ApiController.php:698
+#: airtime_mvc/application/controllers/ApiController.php:718
+#: airtime_mvc/application/controllers/ApiController.php:730
+#, php-format
+msgid "File does not exist in %s"
+msgstr ""
+
+#: airtime_mvc/application/controllers/ApiController.php:781
+msgid "Bad request. no 'mode' parameter passed."
+msgstr "Fehlerhafte Anfrage. Kein passender 'Mode'-Parameter."
+
+#: airtime_mvc/application/controllers/ApiController.php:791
+msgid "Bad request. 'mode' parameter is invalid"
+msgstr "Fehlerhafte Anfrage. 'Mode'-Parameter ist ungültig."
+
#: airtime_mvc/application/controllers/LocaleController.php:30
#: airtime_mvc/application/layouts/scripts/audio-player.phtml:5
msgid "Audio Player"
@@ -2909,11 +560,6 @@ msgstr "Füge %s Objekte hinzu"
msgid "You can only add tracks to smart blocks."
msgstr "Sie können einem Smart Block nur Titel hinzufügen (keine Playlist oa.)"
-#: airtime_mvc/application/controllers/LocaleController.php:50
-#: airtime_mvc/application/controllers/PlaylistController.php:180
-msgid "You can only add tracks, smart blocks, and webstreams to playlists."
-msgstr "Sie können einer Playlist nur Titel, Smart Blocks und Webstreams hinzufügen."
-
#: airtime_mvc/application/controllers/LocaleController.php:53
msgid "Please select a cursor position on timeline."
msgstr "Bitte wählen Sie eine Cursor-Position auf der Zeitleiste."
@@ -2954,11 +600,6 @@ msgstr ""
msgid "Click 'New' to create one."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:66
-#: airtime_mvc/application/controllers/LibraryController.php:123
-msgid "Edit Metadata"
-msgstr "Metadaten bearbeiten"
-
#: airtime_mvc/application/controllers/LocaleController.php:67
msgid "Add to selected show"
msgstr "Zu gewählter Sendung hinzufügen"
@@ -2987,6 +628,12 @@ msgstr "Wollen sie die gewählten Objekte wirklich löschen?"
msgid "Scheduled"
msgstr "Geplant"
+#: airtime_mvc/application/controllers/LocaleController.php:74
+#: airtime_mvc/application/layouts/scripts/layout.phtml:78
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
+msgid "Tracks"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:75
#: airtime_mvc/application/layouts/scripts/layout.phtml:60
msgid "Playlist"
@@ -2996,18 +643,96 @@ msgstr ""
msgid "Bit Rate"
msgstr "Bitrate"
+#: airtime_mvc/application/controllers/LocaleController.php:80
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
+#: airtime_mvc/application/models/Block.php:1354
+msgid "BPM"
+msgstr "BPM"
+
+#: airtime_mvc/application/controllers/LocaleController.php:84
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
+#: airtime_mvc/application/models/Block.php:1361
+msgid "Encoded By"
+msgstr "Encoded By"
+
+#: airtime_mvc/application/controllers/LocaleController.php:89
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
+#: airtime_mvc/application/models/Block.php:1367
+msgid "Last Modified"
+msgstr "Zuletzt geändert"
+
+#: airtime_mvc/application/controllers/LocaleController.php:90
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
+#: airtime_mvc/application/models/Block.php:1368
+msgid "Last Played"
+msgstr "Zuletzt gespielt"
+
+#: airtime_mvc/application/controllers/LocaleController.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
+#: airtime_mvc/application/models/Block.php:1370
+msgid "Mime"
+msgstr "Mime"
+
+#: airtime_mvc/application/controllers/LocaleController.php:94
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
+#: airtime_mvc/application/models/Block.php:1372
+msgid "Owner"
+msgstr "Besitzer"
+
+#: airtime_mvc/application/controllers/LocaleController.php:95
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
+#: airtime_mvc/application/models/Block.php:1373
+msgid "Replay Gain"
+msgstr "Replay Gain"
+
#: airtime_mvc/application/controllers/LocaleController.php:96
msgid "Sample Rate"
msgstr "Samplerate"
+#: airtime_mvc/application/controllers/LocaleController.php:97
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
+#: airtime_mvc/application/models/Block.php:1376
+msgid "Track Number"
+msgstr "Titelnummer"
+
+#: airtime_mvc/application/controllers/LocaleController.php:98
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
+#: airtime_mvc/application/models/Block.php:1377
+msgid "Uploaded"
+msgstr "Hochgeladen"
+
+#: airtime_mvc/application/controllers/LocaleController.php:99
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
+#: airtime_mvc/application/models/Block.php:1378
+msgid "Website"
+msgstr "Webseite"
+
#: airtime_mvc/application/controllers/LocaleController.php:101
msgid "Loading..."
msgstr "wird geladen..."
+#: airtime_mvc/application/controllers/LocaleController.php:102
+#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
+msgid "All"
+msgstr "Alle"
+
#: airtime_mvc/application/controllers/LocaleController.php:103
msgid "Files"
msgstr "Dateien"
+#: airtime_mvc/application/controllers/LocaleController.php:104
+#: airtime_mvc/application/layouts/scripts/layout.phtml:80
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
+msgid "Playlists"
+msgstr "Playlisten"
+
+#: airtime_mvc/application/controllers/LocaleController.php:105
+#: airtime_mvc/application/layouts/scripts/layout.phtml:82
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
+msgid "Smart Blocks"
+msgstr "Smart Blöcke"
+
#: airtime_mvc/application/controllers/LocaleController.php:106
msgid "Web Streams"
msgstr "Web Streams"
@@ -3160,6 +885,74 @@ msgstr "Smart Block gespeichert"
msgid "Processing..."
msgstr "In Bearbeitung..."
+#: airtime_mvc/application/controllers/LocaleController.php:151
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
+#: airtime_mvc/application/models/Block.php:1383
+msgid "Select modifier"
+msgstr "Wähle Modifikator"
+
+#: airtime_mvc/application/controllers/LocaleController.php:152
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
+#: airtime_mvc/application/models/Block.php:1384
+msgid "contains"
+msgstr "enthält"
+
+#: airtime_mvc/application/controllers/LocaleController.php:153
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
+#: airtime_mvc/application/models/Block.php:1385
+msgid "does not contain"
+msgstr "enthält nicht"
+
+#: airtime_mvc/application/controllers/LocaleController.php:154
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
+#: airtime_mvc/application/models/Block.php:1386
+#: airtime_mvc/application/models/Block.php:1390
+msgid "is"
+msgstr "ist"
+
+#: airtime_mvc/application/controllers/LocaleController.php:155
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
+#: airtime_mvc/application/models/Block.php:1387
+#: airtime_mvc/application/models/Block.php:1391
+msgid "is not"
+msgstr "ist nicht"
+
+#: airtime_mvc/application/controllers/LocaleController.php:156
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
+#: airtime_mvc/application/models/Block.php:1388
+msgid "starts with"
+msgstr "beginnt mit"
+
+#: airtime_mvc/application/controllers/LocaleController.php:157
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
+#: airtime_mvc/application/models/Block.php:1389
+msgid "ends with"
+msgstr "endet mit"
+
+#: airtime_mvc/application/controllers/LocaleController.php:158
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
+#: airtime_mvc/application/models/Block.php:1392
+msgid "is greater than"
+msgstr "ist größer als"
+
+#: airtime_mvc/application/controllers/LocaleController.php:159
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
+#: airtime_mvc/application/models/Block.php:1393
+msgid "is less than"
+msgstr "ist kleiner als"
+
+#: airtime_mvc/application/controllers/LocaleController.php:160
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
+#: airtime_mvc/application/models/Block.php:1394
+msgid "is in the range"
+msgstr "ist im Bereich"
+
#: airtime_mvc/application/controllers/LocaleController.php:162
msgid "Choose Storage Folder"
msgstr "Wähle Storage-Verzeichnis"
@@ -3176,6 +969,11 @@ msgstr ""
"Wollen sie wirklich das Storage-Verzeichnis ändern?\n"
"Dieser Vorgang entfernt alle Dateien der Airtime-Bibliothek!"
+#: airtime_mvc/application/controllers/LocaleController.php:166
+#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
+msgid "Manage Media Folders"
+msgstr "Verwalte Medienverzeichnisse"
+
#: airtime_mvc/application/controllers/LocaleController.php:167
msgid "Are you sure you want to remove the watched folder?"
msgstr "Wollen sie den überwachten Ordner wirklich entfernen?"
@@ -3197,6 +995,11 @@ msgstr "Mit Streaming-Server verbunden"
msgid "The stream is disabled"
msgstr "Der Stream ist deaktiviert"
+#: airtime_mvc/application/controllers/LocaleController.php:173
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
+msgid "Getting information from the server..."
+msgstr "Erhalte Information vom Server..."
+
#: airtime_mvc/application/controllers/LocaleController.php:174
msgid "Can not connect to the streaming server"
msgstr "Verbindung mit Streaming-Server kann nicht hergestellt werden."
@@ -3429,6 +1232,76 @@ msgstr ""
msgid "Month"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:249
+#: airtime_mvc/application/forms/GeneralPreferences.php:158
+msgid "Sunday"
+msgstr "Sonntag"
+
+#: airtime_mvc/application/controllers/LocaleController.php:250
+#: airtime_mvc/application/forms/GeneralPreferences.php:159
+msgid "Monday"
+msgstr "Montag"
+
+#: airtime_mvc/application/controllers/LocaleController.php:251
+#: airtime_mvc/application/forms/GeneralPreferences.php:160
+msgid "Tuesday"
+msgstr "Dienstag"
+
+#: airtime_mvc/application/controllers/LocaleController.php:252
+#: airtime_mvc/application/forms/GeneralPreferences.php:161
+msgid "Wednesday"
+msgstr "Mittwoch"
+
+#: airtime_mvc/application/controllers/LocaleController.php:253
+#: airtime_mvc/application/forms/GeneralPreferences.php:162
+msgid "Thursday"
+msgstr "Donnerstag"
+
+#: airtime_mvc/application/controllers/LocaleController.php:254
+#: airtime_mvc/application/forms/GeneralPreferences.php:163
+msgid "Friday"
+msgstr "Freitag"
+
+#: airtime_mvc/application/controllers/LocaleController.php:255
+#: airtime_mvc/application/forms/GeneralPreferences.php:164
+msgid "Saturday"
+msgstr "Samstag"
+
+#: airtime_mvc/application/controllers/LocaleController.php:256
+#: airtime_mvc/application/forms/AddShowRepeats.php:35
+msgid "Sun"
+msgstr "SO"
+
+#: airtime_mvc/application/controllers/LocaleController.php:257
+#: airtime_mvc/application/forms/AddShowRepeats.php:36
+msgid "Mon"
+msgstr "MO"
+
+#: airtime_mvc/application/controllers/LocaleController.php:258
+#: airtime_mvc/application/forms/AddShowRepeats.php:37
+msgid "Tue"
+msgstr "DI"
+
+#: airtime_mvc/application/controllers/LocaleController.php:259
+#: airtime_mvc/application/forms/AddShowRepeats.php:38
+msgid "Wed"
+msgstr "MI"
+
+#: airtime_mvc/application/controllers/LocaleController.php:260
+#: airtime_mvc/application/forms/AddShowRepeats.php:39
+msgid "Thu"
+msgstr "DO"
+
+#: airtime_mvc/application/controllers/LocaleController.php:261
+#: airtime_mvc/application/forms/AddShowRepeats.php:40
+msgid "Fri"
+msgstr "FR"
+
+#: airtime_mvc/application/controllers/LocaleController.php:262
+#: airtime_mvc/application/forms/AddShowRepeats.php:41
+msgid "Sat"
+msgstr "SA"
+
#: airtime_mvc/application/controllers/LocaleController.php:263
msgid "Shows longer than their scheduled time will be cut off by a following show."
msgstr "Wenn der Inhalt einer Sendung länger ist als die Sendung im Kalender geplant ist, wird das Ende durch eine nachfolgende Sendung abgeschnitten."
@@ -3438,7 +1311,7 @@ msgid "Cancel Current Show?"
msgstr "Aktuelle Sendung abbrechen?"
#: airtime_mvc/application/controllers/LocaleController.php:265
-#: airtime_mvc/application/controllers/LocaleController.php:309
+#: airtime_mvc/application/controllers/LocaleController.php:312
msgid "Stop recording current show?"
msgstr "Aufzeichnung der aktuellen Sendung stoppen?"
@@ -3458,6 +1331,11 @@ msgstr "Gesamten Inhalt entfernen?"
msgid "Delete selected item(s)?"
msgstr "Gewählte Objekte löschen?"
+#: airtime_mvc/application/controllers/LocaleController.php:273
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
+msgid "Start"
+msgstr "Beginn"
+
#: airtime_mvc/application/controllers/LocaleController.php:274
msgid "End"
msgstr "Ende"
@@ -3466,580 +1344,467 @@ msgstr "Ende"
msgid "Duration"
msgstr "Dauer"
-#: airtime_mvc/application/controllers/LocaleController.php:283
+#: airtime_mvc/application/controllers/LocaleController.php:276
+msgid "Filtering out "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:277
+msgid " of "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:278
+msgid " records"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/layouts/scripts/layout.phtml:140
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
+#: airtime_mvc/application/models/Block.php:1358
+msgid "Cue In"
+msgstr "Cue In"
+
+#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/layouts/scripts/layout.phtml:147
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
+#: airtime_mvc/application/models/Block.php:1359
+msgid "Cue Out"
+msgstr "Cue Out"
+
+#: airtime_mvc/application/controllers/LocaleController.php:286
#: airtime_mvc/application/layouts/scripts/layout.phtml:167
msgid "Fade In"
msgstr "Fade In"
-#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/controllers/LocaleController.php:287
#: airtime_mvc/application/layouts/scripts/layout.phtml:168
msgid "Fade Out"
msgstr "Fade Out"
-#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/controllers/LocaleController.php:288
msgid "Show Empty"
msgstr "Sendung leer"
-#: airtime_mvc/application/controllers/LocaleController.php:286
+#: airtime_mvc/application/controllers/LocaleController.php:289
msgid "Recording From Line In"
msgstr "Aufzeichnen von Line-In"
-#: airtime_mvc/application/controllers/LocaleController.php:287
+#: airtime_mvc/application/controllers/LocaleController.php:290
msgid "Track preview"
msgstr "Titelvorschau"
-#: airtime_mvc/application/controllers/LocaleController.php:291
+#: airtime_mvc/application/controllers/LocaleController.php:294
msgid "Cannot schedule outside a show."
msgstr "Es ist keine Planung außerhalb einer Sendung möglich."
-#: airtime_mvc/application/controllers/LocaleController.php:292
+#: airtime_mvc/application/controllers/LocaleController.php:295
msgid "Moving 1 Item"
msgstr "Verschiebe 1 Objekt"
-#: airtime_mvc/application/controllers/LocaleController.php:293
+#: airtime_mvc/application/controllers/LocaleController.php:296
#, php-format
msgid "Moving %s Items"
msgstr "Verschiebe %s Objekte"
-#: airtime_mvc/application/controllers/LocaleController.php:296
+#: airtime_mvc/application/controllers/LocaleController.php:297
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
+#: airtime_mvc/application/forms/Preferences.php:40
+#: airtime_mvc/application/forms/EditHistory.php:131
+#: airtime_mvc/application/forms/AddUser.php:110
+#: airtime_mvc/application/forms/PasswordChange.php:43
+#: airtime_mvc/application/forms/SupportSettings.php:131
+msgid "Save"
+msgstr "Speichern"
+
+#: airtime_mvc/application/controllers/LocaleController.php:298
+#: airtime_mvc/application/controllers/LocaleController.php:321
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
+#: airtime_mvc/application/forms/EditHistory.php:141
+#: airtime_mvc/application/forms/EditAudioMD.php:186
+msgid "Cancel"
+msgstr "Abbrechen"
+
+#: airtime_mvc/application/controllers/LocaleController.php:299
msgid "Fade Editor"
msgstr "Fade Editor"
-#: airtime_mvc/application/controllers/LocaleController.php:297
+#: airtime_mvc/application/controllers/LocaleController.php:300
msgid "Cue Editor"
msgstr "Cue Editor"
-#: airtime_mvc/application/controllers/LocaleController.php:298
+#: airtime_mvc/application/controllers/LocaleController.php:301
msgid "Waveform features are available in a browser supporting the Web Audio API"
msgstr "Wellenform-Funktionen ist in Browsern möglich, welche die Web Audio API unterstützen"
-#: airtime_mvc/application/controllers/LocaleController.php:301
+#: airtime_mvc/application/controllers/LocaleController.php:304
msgid "Select all"
msgstr "Alle markieren"
-#: airtime_mvc/application/controllers/LocaleController.php:302
+#: airtime_mvc/application/controllers/LocaleController.php:305
msgid "Select none"
msgstr "Nichts Markieren"
-#: airtime_mvc/application/controllers/LocaleController.php:303
+#: airtime_mvc/application/controllers/LocaleController.php:306
msgid "Trim overbooked shows"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:304
+#: airtime_mvc/application/controllers/LocaleController.php:307
msgid "Remove selected scheduled items"
msgstr "Gewähltes Objekt entfernen"
-#: airtime_mvc/application/controllers/LocaleController.php:305
+#: airtime_mvc/application/controllers/LocaleController.php:308
msgid "Jump to the current playing track"
msgstr "Springe zu aktuellem Titel"
-#: airtime_mvc/application/controllers/LocaleController.php:306
+#: airtime_mvc/application/controllers/LocaleController.php:309
msgid "Cancel current show"
msgstr "Aktuelle Sendung abbrechen"
-#: airtime_mvc/application/controllers/LocaleController.php:311
+#: airtime_mvc/application/controllers/LocaleController.php:314
msgid "Open library to add or remove content"
msgstr "Um Inhalte hinzuzufügen oder zu entfernen muß die Bibliothek geöffnet werden"
-#: airtime_mvc/application/controllers/LocaleController.php:312
+#: airtime_mvc/application/controllers/LocaleController.php:315
msgid "Add / Remove Content"
msgstr "Inhalt hinzufügen / entfernen"
#: airtime_mvc/application/controllers/LocaleController.php:317
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
+msgid "in use"
+msgstr "In Verwendung"
+
+#: airtime_mvc/application/controllers/LocaleController.php:318
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
+msgid "Disk"
+msgstr "Disk"
+
+#: airtime_mvc/application/controllers/LocaleController.php:320
msgid "Look in"
msgstr "Suchen in"
-#: airtime_mvc/application/controllers/LocaleController.php:319
+#: airtime_mvc/application/controllers/LocaleController.php:322
msgid "Open"
msgstr "Öffnen"
+#: airtime_mvc/application/controllers/LocaleController.php:324
+#: airtime_mvc/application/forms/AddUser.php:102
+msgid "Admin"
+msgstr "Admin"
+
#: airtime_mvc/application/controllers/LocaleController.php:325
+#: airtime_mvc/application/forms/AddUser.php:100
+msgid "DJ"
+msgstr "DJ"
+
+#: airtime_mvc/application/controllers/LocaleController.php:326
+#: airtime_mvc/application/forms/AddUser.php:101
+msgid "Program Manager"
+msgstr "Programm Manager"
+
+#: airtime_mvc/application/controllers/LocaleController.php:327
+#: airtime_mvc/application/forms/AddUser.php:99
+msgid "Guest"
+msgstr "Gast"
+
+#: airtime_mvc/application/controllers/LocaleController.php:328
msgid "Guests can do the following:"
msgstr "Gäste können folgendes tun:"
-#: airtime_mvc/application/controllers/LocaleController.php:326
+#: airtime_mvc/application/controllers/LocaleController.php:329
msgid "View schedule"
msgstr "Kalender betrachten"
-#: airtime_mvc/application/controllers/LocaleController.php:327
+#: airtime_mvc/application/controllers/LocaleController.php:330
msgid "View show content"
msgstr "Sendungsinhalt betrachten"
-#: airtime_mvc/application/controllers/LocaleController.php:328
+#: airtime_mvc/application/controllers/LocaleController.php:331
msgid "DJs can do the following:"
msgstr "DJ's können folgendes tun:"
-#: airtime_mvc/application/controllers/LocaleController.php:329
+#: airtime_mvc/application/controllers/LocaleController.php:332
msgid "Manage assigned show content"
msgstr "Verwalten zugewiesener Sendungsinhalte"
-#: airtime_mvc/application/controllers/LocaleController.php:330
+#: airtime_mvc/application/controllers/LocaleController.php:333
msgid "Import media files"
msgstr "Mediendateien importieren"
-#: airtime_mvc/application/controllers/LocaleController.php:331
+#: airtime_mvc/application/controllers/LocaleController.php:334
msgid "Create playlists, smart blocks, and webstreams"
msgstr "Erstellen von Playlisten, Smart Blöcken und Webstreams"
-#: airtime_mvc/application/controllers/LocaleController.php:332
+#: airtime_mvc/application/controllers/LocaleController.php:335
msgid "Manage their own library content"
msgstr "Verwalten eigener Bibliotheksinhalte"
-#: airtime_mvc/application/controllers/LocaleController.php:333
+#: airtime_mvc/application/controllers/LocaleController.php:336
msgid "Progam Managers can do the following:"
msgstr "Programm Manager können folgendes tun:"
-#: airtime_mvc/application/controllers/LocaleController.php:334
+#: airtime_mvc/application/controllers/LocaleController.php:337
msgid "View and manage show content"
msgstr "Sendungsinhalte betrachten und verwalten"
-#: airtime_mvc/application/controllers/LocaleController.php:335
+#: airtime_mvc/application/controllers/LocaleController.php:338
msgid "Schedule shows"
msgstr "Sendungen festlegen"
-#: airtime_mvc/application/controllers/LocaleController.php:336
+#: airtime_mvc/application/controllers/LocaleController.php:339
msgid "Manage all library content"
msgstr "Verwalten der gesamten Bibliothek"
-#: airtime_mvc/application/controllers/LocaleController.php:337
+#: airtime_mvc/application/controllers/LocaleController.php:340
msgid "Admins can do the following:"
msgstr "Admins können folgendes tun:"
-#: airtime_mvc/application/controllers/LocaleController.php:338
+#: airtime_mvc/application/controllers/LocaleController.php:341
msgid "Manage preferences"
msgstr "Einstellungen verwalten"
-#: airtime_mvc/application/controllers/LocaleController.php:339
+#: airtime_mvc/application/controllers/LocaleController.php:342
msgid "Manage users"
msgstr "Benutzer verwalten"
-#: airtime_mvc/application/controllers/LocaleController.php:340
+#: airtime_mvc/application/controllers/LocaleController.php:343
msgid "Manage watched folders"
msgstr "Verwalten überwachter Ordner"
-#: airtime_mvc/application/controllers/LocaleController.php:342
+#: airtime_mvc/application/controllers/LocaleController.php:344
+#: airtime_mvc/application/forms/RegisterAirtime.php:116
+#: airtime_mvc/application/forms/SupportSettings.php:98
+msgid "Send support feedback"
+msgstr "Support Feedback senden"
+
+#: airtime_mvc/application/controllers/LocaleController.php:345
msgid "View system status"
msgstr "System Status betrachten"
-#: airtime_mvc/application/controllers/LocaleController.php:343
+#: airtime_mvc/application/controllers/LocaleController.php:346
msgid "Access playout history"
msgstr "Zugriff auf Playout Verlauf"
-#: airtime_mvc/application/controllers/LocaleController.php:344
+#: airtime_mvc/application/controllers/LocaleController.php:347
msgid "View listener stats"
msgstr "Hörerstatistiken betrachten"
-#: airtime_mvc/application/controllers/LocaleController.php:346
+#: airtime_mvc/application/controllers/LocaleController.php:349
msgid "Show / hide columns"
msgstr "Spalten zeigen / verbergen"
-#: airtime_mvc/application/controllers/LocaleController.php:348
+#: airtime_mvc/application/controllers/LocaleController.php:351
msgid "From {from} to {to}"
msgstr "Von {from} bis {to}"
-#: airtime_mvc/application/controllers/LocaleController.php:349
+#: airtime_mvc/application/controllers/LocaleController.php:352
msgid "kbps"
msgstr "kbps"
-#: airtime_mvc/application/controllers/LocaleController.php:350
+#: airtime_mvc/application/controllers/LocaleController.php:353
msgid "yyyy-mm-dd"
msgstr "yyyy-mm-dd"
-#: airtime_mvc/application/controllers/LocaleController.php:351
+#: airtime_mvc/application/controllers/LocaleController.php:354
msgid "hh:mm:ss.t"
msgstr "hh:mm:ss.t"
-#: airtime_mvc/application/controllers/LocaleController.php:352
+#: airtime_mvc/application/controllers/LocaleController.php:355
msgid "kHz"
msgstr "kHz"
-#: airtime_mvc/application/controllers/LocaleController.php:355
+#: airtime_mvc/application/controllers/LocaleController.php:358
msgid "Su"
msgstr "So"
-#: airtime_mvc/application/controllers/LocaleController.php:356
+#: airtime_mvc/application/controllers/LocaleController.php:359
msgid "Mo"
msgstr "Mo"
-#: airtime_mvc/application/controllers/LocaleController.php:357
+#: airtime_mvc/application/controllers/LocaleController.php:360
msgid "Tu"
msgstr "Di"
-#: airtime_mvc/application/controllers/LocaleController.php:358
+#: airtime_mvc/application/controllers/LocaleController.php:361
msgid "We"
msgstr "Mi"
-#: airtime_mvc/application/controllers/LocaleController.php:359
+#: airtime_mvc/application/controllers/LocaleController.php:362
msgid "Th"
msgstr "Do"
-#: airtime_mvc/application/controllers/LocaleController.php:360
+#: airtime_mvc/application/controllers/LocaleController.php:363
msgid "Fr"
msgstr "Fr"
-#: airtime_mvc/application/controllers/LocaleController.php:361
+#: airtime_mvc/application/controllers/LocaleController.php:364
msgid "Sa"
msgstr "Sa"
-#: airtime_mvc/application/controllers/LocaleController.php:364
+#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
+msgid "Close"
+msgstr "Schließen"
+
+#: airtime_mvc/application/controllers/LocaleController.php:367
msgid "Hour"
msgstr "Stunde"
-#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:368
msgid "Minute"
msgstr "Minute"
-#: airtime_mvc/application/controllers/LocaleController.php:366
+#: airtime_mvc/application/controllers/LocaleController.php:369
msgid "Done"
msgstr "Fertig"
-#: airtime_mvc/application/controllers/LocaleController.php:369
+#: airtime_mvc/application/controllers/LocaleController.php:372
msgid "Select files"
msgstr "Dateien wählen"
-#: airtime_mvc/application/controllers/LocaleController.php:370
-#: airtime_mvc/application/controllers/LocaleController.php:371
+#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:374
msgid "Add files to the upload queue and click the start button."
msgstr "Fügen sie zum Hochladen Dateien der Warteschlange hinzu und drücken Sie auf Start."
-#: airtime_mvc/application/controllers/LocaleController.php:372
-#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:376
msgid "Status"
msgstr "Status"
-#: airtime_mvc/application/controllers/LocaleController.php:374
+#: airtime_mvc/application/controllers/LocaleController.php:377
msgid "Add Files"
msgstr "Dateien hinzufügen"
-#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:378
msgid "Stop Upload"
msgstr "Hochladen stoppen"
-#: airtime_mvc/application/controllers/LocaleController.php:376
+#: airtime_mvc/application/controllers/LocaleController.php:379
msgid "Start upload"
msgstr "Hochladen starten"
-#: airtime_mvc/application/controllers/LocaleController.php:377
+#: airtime_mvc/application/controllers/LocaleController.php:380
msgid "Add files"
msgstr "Dateien hinzufügen"
-#: airtime_mvc/application/controllers/LocaleController.php:378
+#: airtime_mvc/application/controllers/LocaleController.php:381
#, php-format
msgid "Uploaded %d/%d files"
msgstr "%d/%d Dateien hochgeladen"
-#: airtime_mvc/application/controllers/LocaleController.php:379
+#: airtime_mvc/application/controllers/LocaleController.php:382
msgid "N/A"
msgstr "Nicht Verfügbar"
-#: airtime_mvc/application/controllers/LocaleController.php:380
+#: airtime_mvc/application/controllers/LocaleController.php:383
msgid "Drag files here."
msgstr "Dateien hierher ziehen"
-#: airtime_mvc/application/controllers/LocaleController.php:381
+#: airtime_mvc/application/controllers/LocaleController.php:384
msgid "File extension error."
msgstr "Dateierweiterungsfehler"
-#: airtime_mvc/application/controllers/LocaleController.php:382
+#: airtime_mvc/application/controllers/LocaleController.php:385
msgid "File size error."
msgstr "Dateigrößenfehler"
-#: airtime_mvc/application/controllers/LocaleController.php:383
+#: airtime_mvc/application/controllers/LocaleController.php:386
msgid "File count error."
msgstr "Dateianzahlfehler"
-#: airtime_mvc/application/controllers/LocaleController.php:384
+#: airtime_mvc/application/controllers/LocaleController.php:387
msgid "Init error."
msgstr "Init Fehler"
-#: airtime_mvc/application/controllers/LocaleController.php:385
+#: airtime_mvc/application/controllers/LocaleController.php:388
msgid "HTTP Error."
msgstr "HTTP-Fehler"
-#: airtime_mvc/application/controllers/LocaleController.php:386
+#: airtime_mvc/application/controllers/LocaleController.php:389
msgid "Security error."
msgstr "Sicherheitsfehler"
-#: airtime_mvc/application/controllers/LocaleController.php:387
+#: airtime_mvc/application/controllers/LocaleController.php:390
msgid "Generic error."
msgstr "Allgemeiner Fehler"
-#: airtime_mvc/application/controllers/LocaleController.php:388
+#: airtime_mvc/application/controllers/LocaleController.php:391
msgid "IO error."
msgstr "IO-Fehler"
-#: airtime_mvc/application/controllers/LocaleController.php:389
+#: airtime_mvc/application/controllers/LocaleController.php:392
#, php-format
msgid "File: %s"
msgstr "Datei: %s"
-#: airtime_mvc/application/controllers/LocaleController.php:391
+#: airtime_mvc/application/controllers/LocaleController.php:394
#, php-format
msgid "%d files queued"
msgstr "%d Dateien in der Warteschlange"
-#: airtime_mvc/application/controllers/LocaleController.php:392
+#: airtime_mvc/application/controllers/LocaleController.php:395
msgid "File: %f, size: %s, max file size: %m"
msgstr "Datei: %f, Größe: %s, Maximale Dateigröße: %m"
-#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/controllers/LocaleController.php:396
msgid "Upload URL might be wrong or doesn't exist"
msgstr "Upload-URL scheint falsch zu sein oder existiert nicht"
-#: airtime_mvc/application/controllers/LocaleController.php:394
+#: airtime_mvc/application/controllers/LocaleController.php:397
msgid "Error: File too large: "
msgstr "Fehler: Datei zu groß"
-#: airtime_mvc/application/controllers/LocaleController.php:395
+#: airtime_mvc/application/controllers/LocaleController.php:398
msgid "Error: Invalid file extension: "
msgstr "Fehler: Ungültige Dateierweiterung:"
-#: airtime_mvc/application/controllers/LocaleController.php:398
+#: airtime_mvc/application/controllers/LocaleController.php:400
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
+msgid "Set Default"
+msgstr "Standard festlegen"
+
+#: airtime_mvc/application/controllers/LocaleController.php:401
msgid "Create Entry"
msgstr "Eintrag erstellen"
-#: airtime_mvc/application/controllers/LocaleController.php:399
+#: airtime_mvc/application/controllers/LocaleController.php:402
msgid "Edit History Record"
msgstr "Verlaufsprotokoll bearbeiten"
-#: airtime_mvc/application/controllers/LocaleController.php:402
+#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
+#: airtime_mvc/application/forms/EditHistoryItem.php:57
+msgid "No Show"
+msgstr "Keine Sendung"
+
+#: airtime_mvc/application/controllers/LocaleController.php:405
#, php-format
msgid "Copied %s row%s to the clipboard"
msgstr "%s Reihen%s in die Zwischenablage kopiert"
-#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/controllers/LocaleController.php:406
#, php-format
msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished."
msgstr "%sPrint view%sBitte verwenden Sie zum Ausdrucken dieser Tabelle die Browser-interne Druckfunktion. Drücken Sie die Escape-Taste nach Fertigstellung."
-#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/controllers/LocaleController.php:407
msgid "New Show"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:405
+#: airtime_mvc/application/controllers/LocaleController.php:408
msgid "New Log Entry"
msgstr ""
-#: airtime_mvc/application/controllers/ScheduleController.php:389
-#, php-format
-msgid "Rebroadcast of show %s from %s at %s"
-msgstr "Wiederholung der Sendung % s vom %s um %s"
-
-#: airtime_mvc/application/controllers/ScheduleController.php:712
-#: airtime_mvc/application/controllers/LibraryController.php:131
-msgid "Download"
-msgstr "Herunterladen"
-
-#: airtime_mvc/application/controllers/ErrorController.php:78
-msgid "Page not found."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:87
-msgid "The requested action is not supported."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:98
-msgid "You do not have permission to access this resource."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:109
-msgid "An internal application error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ListenerstatController.php:51
-msgid "Please make sure admin user/password is correct on System->Streams page."
-msgstr "Bitte versichern Sie sich, dass Benutzer/Passwort unter System->Streams korrekt eingetragen ist."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:53
-#, php-format
-msgid "You are viewing an older version of %s"
-msgstr "Sie betrachten eine ältere Version von %s"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:140
-msgid "You cannot add tracks to dynamic blocks."
-msgstr "Sie können einem Dynamischen Smart Block keine einzelnen Titel hinzufügen."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:147
-#: airtime_mvc/application/controllers/LibraryController.php:31
-#, php-format
-msgid "%s not found"
-msgstr "%s nicht gefunden"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:161
-#, php-format
-msgid "You don't have permission to delete selected %s(s)."
-msgstr "Sie haben zum Löschen der gewählten %s (s) nicht die erforderliche Berechtigung. "
-
-#: airtime_mvc/application/controllers/PlaylistController.php:168
-#: airtime_mvc/application/controllers/LibraryController.php:40
-msgid "Something went wrong."
-msgstr "Etwas ist falsch gelaufen."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:174
-msgid "You can only add tracks to smart block."
-msgstr "Sie können einem Smart Block nur Titel hinzufügen."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:192
-msgid "Untitled Playlist"
-msgstr "Unbenannte Playlist"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:194
-msgid "Untitled Smart Block"
-msgstr "Unbenannter Smart Block"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:522
-msgid "Unknown Playlist"
-msgstr "Unbenannte Playlist"
-
-#: airtime_mvc/application/controllers/LoginController.php:43
-msgid "Please enter your username and password."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:93
-msgid "Wrong username or password provided. Please try again."
-msgstr "Falscher Benutzername oder falsches Passwort eingegeben. Bitte versuchen sie es erneut."
-
-#: airtime_mvc/application/controllers/LoginController.php:167
-msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
-msgstr "E-Mail konnte nicht gesendet werden. Überprüfen sie die Einstellungen des Mail-Servers und versichern sie sich, daß dieser richtig konfiguriert ist."
-
-#: airtime_mvc/application/controllers/LoginController.php:173
-msgid "There was a problem with the username or email address you entered."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:35
-#: airtime_mvc/application/controllers/DashboardController.php:84
-msgid "You don't have permission to disconnect source."
-msgstr "Sie haben nicht die erforderliche Berechtigung die Quelle zu trennen."
-
-#: airtime_mvc/application/controllers/DashboardController.php:37
-#: airtime_mvc/application/controllers/DashboardController.php:86
-msgid "There is no source connected to this input."
-msgstr "Mit diesem Eingang ist keine Quelle verbunden."
-
-#: airtime_mvc/application/controllers/DashboardController.php:81
-msgid "You don't have permission to switch source."
-msgstr "Sie haben nicht die erforderliche Berechtigung die Quelle zu wechseln."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:72
-msgid "Preferences updated."
-msgstr "Einstellungen aktualisiert"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:115
-msgid "Support setting updated."
-msgstr "Support-Einstellungen aktualisiert."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:123
-msgid "Support Feedback"
-msgstr "Support Feedback"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:251
-msgid "Stream Setting Updated."
-msgstr "Stream-Einstellungen aktualisiert."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:342
-msgid "path should be specified"
-msgstr "Pfad muß angegeben werden"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:437
-msgid "Problem with Liquidsoap..."
-msgstr "Problem mit Liquidsoap..."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:493
-msgid "Request method not accepted"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:86
-msgid "User added successfully!"
-msgstr "Benutzer erfolgreich hinzugefügt!"
-
-#: airtime_mvc/application/controllers/UserController.php:88
-msgid "User updated successfully!"
-msgstr "Benutzer erfolgreich aktualisiert!"
-
-#: airtime_mvc/application/controllers/UserController.php:187
-msgid "Settings updated successfully!"
-msgstr "Einstellungen erfolgreich aktualisiert!"
-
-#: airtime_mvc/application/controllers/WebstreamController.php:28
-#: airtime_mvc/application/controllers/WebstreamController.php:32
-msgid "Untitled Webstream"
-msgstr "Unbenannter Webstream"
-
-#: airtime_mvc/application/controllers/WebstreamController.php:150
-msgid "Webstream saved."
-msgstr "Webstream gespeichert"
-
-#: airtime_mvc/application/controllers/WebstreamController.php:158
-msgid "Invalid form values."
-msgstr "Ungültiger Eingabewert"
-
-#: airtime_mvc/application/controllers/LibraryController.php:95
-#: airtime_mvc/application/controllers/ShowbuilderController.php:136
-msgid "Preview"
-msgstr "Vorschau"
-
-#: airtime_mvc/application/controllers/LibraryController.php:115
-#: airtime_mvc/application/controllers/LibraryController.php:177
-#: airtime_mvc/application/controllers/LibraryController.php:200
-msgid "Add to Playlist"
-msgstr "Zu Playlist hinzufügen"
-
-#: airtime_mvc/application/controllers/LibraryController.php:117
-msgid "Add to Smart Block"
-msgstr "Hinzufügen zu Smart Block"
-
-#: airtime_mvc/application/controllers/LibraryController.php:147
-msgid "View track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:148
-msgid "Remove track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:154
-#: airtime_mvc/application/controllers/LibraryController.php:159
-msgid "Upload track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:169
-msgid "Duplicate Playlist"
-msgstr "Playlist duplizieren"
-
-#: airtime_mvc/application/controllers/LibraryController.php:213
-msgid "No action available"
-msgstr "Keine Aktion verfügbar"
-
-#: airtime_mvc/application/controllers/LibraryController.php:233
-msgid "You don't have permission to delete selected items."
-msgstr "Sie haben nicht die erforderliche Berechtigung die gewählten Objekte zu löschen."
-
-#: airtime_mvc/application/controllers/LibraryController.php:279
-msgid "Could not delete file because it is scheduled in the future."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:282
-msgid "Could not delete file(s)."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:322
-#, php-format
-msgid "Copy of %s"
-msgstr "Kopie von %s"
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
-msgid ""
-"To configure and use the embeddable player you must:
\n"
-" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
-" 2. Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
-msgid ""
-"To use the embeddable weekly schedule widget you must:
\n"
-" Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
#: airtime_mvc/application/controllers/ShowbuilderController.php:138
msgid "Select cursor"
msgstr "Cursor wählen"
@@ -4052,39 +1817,78 @@ msgstr "Cursor entfernen"
msgid "show does not exist"
msgstr "Sendung existiert nicht."
-#: airtime_mvc/application/controllers/ApiController.php:79
-msgid "You are not allowed to access this resource."
-msgstr "Sie haben nicht die erforderliche Berechtigung sich mit dieser Quelle zu verbinden."
-
-#: airtime_mvc/application/controllers/ApiController.php:244
-#: airtime_mvc/application/controllers/ApiController.php:317
-#: airtime_mvc/application/controllers/ApiController.php:392
-#: airtime_mvc/application/controllers/ApiController.php:435
-#: airtime_mvc/application/controllers/ApiController.php:474
-#: airtime_mvc/application/controllers/ApiController.php:507
-msgid "You are not allowed to access this resource. "
-msgstr "Sie haben nicht die erforderliche Berechtigung sich mit dieser Quelle zu verbinden."
-
-#: airtime_mvc/application/controllers/ApiController.php:698
-#: airtime_mvc/application/controllers/ApiController.php:718
-#: airtime_mvc/application/controllers/ApiController.php:730
+#: airtime_mvc/application/controllers/ScheduleController.php:389
#, php-format
-msgid "File does not exist in %s"
+msgid "Rebroadcast of show %s from %s at %s"
+msgstr "Wiederholung der Sendung % s vom %s um %s"
+
+#: airtime_mvc/application/common/UsabilityHints.php:55
+msgid "Upload some tracks below to add them to your library!"
msgstr ""
-#: airtime_mvc/application/controllers/ApiController.php:781
-msgid "Bad request. no 'mode' parameter passed."
-msgstr "Fehlerhafte Anfrage. Kein passender 'Mode'-Parameter."
-
-#: airtime_mvc/application/controllers/ApiController.php:791
-msgid "Bad request. 'mode' parameter is invalid"
-msgstr "Fehlerhafte Anfrage. 'Mode'-Parameter ist ungültig."
-
-#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#: airtime_mvc/application/common/UsabilityHints.php:57
#, php-format
-msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
msgstr ""
+#: airtime_mvc/application/common/UsabilityHints.php:63
+msgid "Click the 'New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:65
+#, php-format
+msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:73
+msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:75
+#, php-format
+msgid ""
+"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
+" %sCreate an unlinked show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:80
+msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:82
+#, php-format
+msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:89
+msgid "Click on the show starting next and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:91
+#, php-format
+msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/DateHelper.php:213
+#, php-format
+msgid "The year %s must be within the range of 1753 - 9999"
+msgstr "Das Jahr %s muß innerhalb des Bereichs von 1753 - 9999 liegen."
+
+#: airtime_mvc/application/common/DateHelper.php:216
+#, php-format
+msgid "%s-%s-%s is not a valid date"
+msgstr "%s-%s-%s ist kein gültiges Datum"
+
+#: airtime_mvc/application/common/DateHelper.php:240
+#, php-format
+msgid "%s:%s:%s is not a valid time"
+msgstr "%s-%s-%s ist kein gültiger Zeitpunkt."
+
+#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
+msgid "Live stream"
+msgstr "Live Stream"
+
#: airtime_mvc/application/layouts/scripts/layout.phtml:63
msgid "Smart Block"
msgstr ""
@@ -4097,6 +1901,17 @@ msgstr ""
msgid "Upload"
msgstr ""
+#: airtime_mvc/application/layouts/scripts/layout.phtml:76
+#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
+msgid "Dashboard"
+msgstr ""
+
+#: airtime_mvc/application/layouts/scripts/layout.phtml:84
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
+msgid "Webstreams"
+msgstr ""
+
#: airtime_mvc/application/layouts/scripts/layout.phtml:135
#: airtime_mvc/application/layouts/scripts/layout.phtml:161
msgid "Play"
@@ -4119,405 +1934,2128 @@ msgstr "Cue Out setzen"
msgid "Cursor"
msgstr "Cursor"
-#~ msgid "Show:"
-#~ msgstr "Sendung:"
+#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#, php-format
+msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
+msgid "Drop files here or click to browse your computer."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
+msgid "Failed"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
+msgid "Pending"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
+msgid "Recent Uploads"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
+msgid "Share"
+msgstr "Teilen"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
+msgid "Select stream:"
+msgstr "Stream wählen:"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
+msgid "mute"
+msgstr "Stumm schalten"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
+msgid "unmute"
+msgstr "Laut schalten"
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
+msgid "About"
+msgstr "Über"
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
+#, php-format
+msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
+#, php-format
+msgid "%1$s %2$s is distributed under the %3$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
+#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
+#, php-format
+msgid "Welcome to %s!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
+#, php-format
+msgid "Here's how you can get started using %s to automate your broadcasts: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
+msgid "Upload audio tracks"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
+msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
+msgid "Schedule a show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
+msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
+msgid "Add tracks to your show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
+msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
+msgid "Now you're good to go!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
+#, php-format
+msgid "For more detailed help, read the %suser manual%s."
+msgstr "Für weitere Hilfe bitte das %sBenutzerhandbuch%s lesen."
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
+#: airtime_mvc/application/configs/navigation.php:40
+msgid "Weekly Schedule"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
+#: airtime_mvc/application/forms/Player.php:77
+msgid "Preview:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
+#: airtime_mvc/application/configs/navigation.php:34
+msgid "Player"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:97
+msgid "Playout History"
+msgstr "Playout Verlauf"
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
+msgid "Log Sheet"
+msgstr "Protokoll"
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
+msgid "File Summary"
+msgstr "Dateiübersicht"
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
+msgid "Show Summary"
+msgstr "Sendungsübersicht"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
+msgid "Expand Static Block"
+msgstr "Statischen Block erweitern"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
+msgid "Expand Dynamic Block"
+msgstr "Dynamischen Block erweitern"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
+msgid "Choose some search criteria above and click Generate to create this playlist."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
+msgid "A track list will be generated when you schedule this smart block into a show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
+msgid "Drag tracks here from your library to add them to the playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
+msgid "Editing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:26
+msgid "Name:"
+msgstr "Name:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
+#: airtime_mvc/application/forms/AddShowWhat.php:54
+msgid "Description:"
+msgstr "Beschreibung:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
+#: airtime_mvc/application/forms/AddShowWhen.php:89
+msgid "Duration:"
+msgstr "Dauer:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
+msgid "Toggle Details"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+msgid "Shuffle playlist"
+msgstr "Shuffle Playlist"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
+msgid "Shuffle"
+msgstr "Shuffle"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
+msgid "Playlist crossfade"
+msgstr "Playlist Crossfade"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+msgid "Empty playlist content"
+msgstr "Playlist leeren"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Clear"
+msgstr "Leeren"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+msgid "Fade in: "
+msgstr "Fade In:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "Fade out: "
+msgstr "Fade Out:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+msgid "Save playlist"
+msgstr "Playlist speichern"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
+msgid "No open playlist"
+msgstr "Keine Playlist geöffnet"
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
+msgid "Show Waveform"
+msgstr "Wellenform anzeigen"
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "(ss.t)"
+msgstr "(ss.t)"
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Remove all content from this smart block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
+msgid "No smart block currently open"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+msgid "Cue In: "
+msgstr "Cue In:"
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "(hh:mm:ss.t)"
+msgstr "(hh:mm:ss.t)"
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "Cue Out: "
+msgstr "Cue Out:"
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
+msgid "Original Length:"
+msgstr "Original Dauer:"
+
+#: airtime_mvc/application/views/scripts/preference/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:56
+msgid "General"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
+msgid "Stream Settings"
+msgstr "Stream Einstellungen"
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
+msgid "Global"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
+msgid "dB"
+msgstr "dB"
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
+msgid "Output Streams"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:3
+#: airtime_mvc/application/forms/Login.php:83
+msgid "Login"
+msgstr "Anmeldung"
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:7
+#, php-format
+msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
+msgid "Email Sent!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
+msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
+msgid "Back"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
+msgid "Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
+msgid "New password"
+msgstr "Neues Passwort"
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
+msgid "Please enter and confirm your new password in the fields below."
+msgstr "Bitte in den nachstehenden Feldern das neue Passwort eingeben und bestätigen."
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
+msgid "Manage Users"
+msgstr "Benutzer verwalten"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
+msgid "New User"
+msgstr "Neuer Benutzer"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
+msgid "id"
+msgstr "ID"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
+#: airtime_mvc/application/forms/PasswordRestore.php:25
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
+msgid "Username"
+msgstr "Benutzername"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
+msgid "First Name"
+msgstr "Vorname"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
+msgid "Last Name"
+msgstr "Nachname"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
+msgid "User Type"
+msgstr "Benutzertyp"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
+#, php-format
+msgid "Super Admin details can be changed in your Billing Settings."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
+msgid "Find Shows"
+msgstr "Sendungen suchen"
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
+msgid "Choose Show Instance"
+msgstr "Folge wählen"
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
+msgid "Find"
+msgstr "Finden"
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
+#: airtime_mvc/application/configs/navigation.php:61
+msgid "My Profile"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
+#, php-format
+msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
+msgid "Repeat Days:"
+msgstr "Wiederholungstage:"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
+#: airtime_mvc/application/forms/GeneralPreferences.php:53
+#: airtime_mvc/application/forms/AddShowStyle.php:64
+msgid "Remove"
+msgstr "Entfernen"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
+msgid "Add"
+msgstr "Hinzufügen"
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
+msgid "Show Source"
+msgstr "Show Quelle"
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
+msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
+msgid "Register Airtime"
+msgstr "Airtime registrieren"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
+#, php-format
+msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
+#, php-format
+msgid "Click the box below to promote your station on %s."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
+msgid "(Required)"
+msgstr "(Erforderlich)"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
+msgid "(for verification purposes only, will not be published)"
+msgstr "(Ausschließlich zu Kontrollzwecken, wird nicht veröffentlicht)"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
+#: airtime_mvc/application/forms/GeneralPreferences.php:43
+msgid "Note: Anything larger than 600x600 will be resized."
+msgstr "Erinnerung: Sind Dateien größer als 600x600 Pixel, wird die Größe geändert."
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
+msgid "Show me what I am sending "
+msgstr "Zeige mir was ich sende"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
+msgid "Terms and Conditions"
+msgstr "Geschäftsbedingungen und Rahmenverhältnisse"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
+msgid "Choose Days:"
+msgstr "Tag wählen:"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
+msgid "Search Criteria:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
+msgid "New Criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
+msgid "or"
+msgstr "oder"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
+msgid "and"
+msgstr "and"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
+msgid "New Modifier"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
+msgid " to "
+msgstr " bis "
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
+msgid "files meet the criteria"
+msgstr "Dateien entsprechen den Kriterien"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
+msgid "file meets the criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
+msgid "Filter History"
+msgstr "Filter Verlauf"
+
+#: airtime_mvc/application/views/scripts/form/login.phtml:41
+msgid "Forgot your password?"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
+msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
+msgstr "(Um ihre Radiostation bewerben zu können, muß 'Support Feedback senden' aktiviert sein)"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
+msgid "Stream "
+msgstr "Stream"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
+msgid "Additional Options"
+msgstr "Erweiterte Optionen"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
+msgid "The following info will be displayed to listeners in their media player:"
+msgstr "Die Hörer werden folgende Information auf dem Display ihres Medien-Players sehen:"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
+msgid "(Your radio station website)"
+msgstr "(Webseite ihrer Radiostation)"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
+msgid "Stream URL: "
+msgstr "Stream URL:"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
+msgid "Choose folder"
+msgstr "Verzeichnis wählen"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
+msgid "Set"
+msgstr "Wählen"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
+msgid "Current Import Folder:"
+msgstr "Aktuelles Import-Verzeichnis:"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
+#, php-format
+msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
+msgid "Remove watched directory"
+msgstr "Überwachten Ordner entfernen"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
+msgid "You are not watching any media folders."
+msgstr "Sie überwachen keine Medienverzeichnisse."
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
+msgid "Live Broadcasting"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
+msgid "Master Source"
+msgstr "Master Quelle"
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
+msgid "Use these settings in your broadcasting software to stream live at any time."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
+msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
+msgid "TuneIn Settings"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
+msgid "SoundCloud Settings"
+msgstr "SoundCloud Einstellungen"
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
+msgid "Dangerous Options"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Add this show"
+msgstr "Sendung hinzufügen"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Update show"
+msgstr "Sendung aktualisieren"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
+msgid "What"
+msgstr "Was"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
+msgid "When"
+msgstr "Wann"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
+msgid "Live Stream Input"
+msgstr "Live-Stream Eingang"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
+msgid "Who"
+msgstr "Wer"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
+msgid "Style"
+msgstr "Style"
+
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
+msgid "Disk Space"
+msgstr "Speicherplatz"
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:3
+msgid "File import in progress..."
+msgstr "Datei-Import in Bearbeitung..."
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:10
+#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
+msgid "Advanced Search Options"
+msgstr "Erweiterte Suchoptionen"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
+#: airtime_mvc/application/forms/EditAudioMD.php:24
+#: airtime_mvc/application/forms/Player.php:15
+msgid "Title:"
+msgstr "Titel"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
+#: airtime_mvc/application/forms/EditAudioMD.php:34
+msgid "Creator:"
+msgstr "Interpret:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
+#: airtime_mvc/application/forms/EditAudioMD.php:44
+msgid "Album:"
+msgstr "Album:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
+msgid "Track:"
+msgstr "Titelnummer:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
+msgid "Length:"
+msgstr "Dauer:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
+msgid "Sample Rate:"
+msgstr "Samplerate:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
+msgid "Bit Rate:"
+msgstr "Bitrate:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
+#: airtime_mvc/application/forms/EditAudioMD.php:115
+msgid "Mood:"
+msgstr "Stimmung:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:45
+#: airtime_mvc/application/forms/EditAudioMD.php:62
+msgid "Genre:"
+msgstr "Genre:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
+#: airtime_mvc/application/forms/EditAudioMD.php:72
+msgid "Year:"
+msgstr "Jahr:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
+#: airtime_mvc/application/forms/EditAudioMD.php:85
+msgid "Label:"
+msgstr "Label:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
+#: airtime_mvc/application/forms/EditAudioMD.php:125
+msgid "BPM:"
+msgstr "BPM:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
+#: airtime_mvc/application/forms/EditAudioMD.php:95
+msgid "Composer:"
+msgstr "Komponist:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
+#: airtime_mvc/application/forms/EditAudioMD.php:105
+msgid "Conductor:"
+msgstr "Dirigent:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
+#: airtime_mvc/application/forms/EditAudioMD.php:135
+msgid "Copyright:"
+msgstr "Copyright:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
+msgid "Isrc Number:"
+msgstr "ISRC Number:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
+#: airtime_mvc/application/forms/EditAudioMD.php:155
+msgid "Website:"
+msgstr "Webseite:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
+#: airtime_mvc/application/forms/EditAudioMD.php:165
+#: airtime_mvc/application/forms/EditUser.php:119
+#: airtime_mvc/application/forms/Login.php:68
+msgid "Language:"
+msgstr "Sprache:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
+msgid "File Path:"
+msgstr "Dateipfad:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
+msgid "Web Stream"
+msgstr "Web Stream"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
+msgid "Dynamic Smart Block"
+msgstr "Dynamischer Smart Block"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
+msgid "Static Smart Block"
+msgstr "Statischer Smart Block"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
+msgid "Audio Track"
+msgstr "Titel"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
+msgid "Playlist Contents: "
+msgstr "Playlist Inhalt:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
+msgid "Static Smart Block Contents: "
+msgstr "Statischer Smart Block Inhalt:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
+msgid "Dynamic Smart Block Criteria: "
+msgstr "Dynamische Smart Block Kriterien:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
+msgid "Limit to "
+msgstr "Begrenzt auf "
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
+#: airtime_mvc/application/forms/AddShowWhat.php:36
+msgid "URL:"
+msgstr "URL:"
+
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
+msgid "Viewing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
+msgid "Listeners"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
+msgid "Stream Data Collection Status"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
+msgid "Your trial expires in"
+msgstr "Die Probelaufzeit läuft ab in"
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
+msgid "days"
+msgstr "Tage"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
+msgid "Previous:"
+msgstr "Vorher:"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
+msgid "Next:"
+msgstr "Danach:"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
+msgid "Source Streams"
+msgstr "Stream-Quellen"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
+msgid "ON AIR"
+msgstr "ON AIR"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
+msgid "Listen"
+msgstr "Hören"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
+msgid "Logout"
+msgstr "Abmelden"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
+msgid "Playout History Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
+msgid "Log Sheet Templates"
+msgstr "Protokollvorlagen"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
+msgid "New Log Sheet Template"
+msgstr "Neue Protokollvorlage"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
+msgid "No Log Sheet Templates"
+msgstr "Keine Protokollvorlagen"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
+msgid "File Summary Templates"
+msgstr "Dateiübersichtsvorlagen"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
+msgid "New File Summary Template"
+msgstr "Neue Dateiübersichtsvorlage"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
+msgid "No File Summary Templates"
+msgstr "Keine Dateiübersichtsvorlagen"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
+msgid "Creating File Summary Template"
+msgstr "Erstelle Dateiübersichtsvorlage"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
+msgid "Creating Log Sheet Template"
+msgstr "Erstelle Protokollvorlage"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
+msgid "Name"
+msgstr "Name"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
+msgid "Add more elements"
+msgstr "Weitere Elemente hinzufügen"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
+msgid "Add New Field"
+msgstr "Neues Feld hinzufügen"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
+msgid "Set Default Template"
+msgstr "Standardvorlage festlegen"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
+msgid "Description"
+msgstr "Beschreibung"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
+msgid "Stream URL:"
+msgstr "Stream URL:"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
+msgid "Default Length:"
+msgstr "Standard Dauer:"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
+msgid "No webstream"
+msgstr "Kein Webstream"
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
+#: airtime_mvc/application/views/scripts/error/error.phtml:6
+msgid "An error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
+msgid "Access Denied!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
+msgid "You do not have permission to access this page!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
+#: airtime_mvc/application/views/scripts/error/error.phtml:14
+#: airtime_mvc/application/configs/navigation.php:143
+msgid "Help"
+msgstr "Hilfe"
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
+msgid "Oops!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
+msgid "Something went wrong!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
+msgid "Bad Request!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
+msgid "The requested action is not supported!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
+msgid "Page not found!"
+msgstr "Seite nicht gefunden!"
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
+msgid "We couldn't find the page you were looking for."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error.phtml:12
+msgid "Looks like the page you were looking for doesn't exist!"
+msgstr "Scheinbar existiert die Seite die sie suchen nicht!"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
+msgid "previous"
+msgstr "Zurück"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
+msgid "play"
+msgstr "Abspielen"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
+msgid "pause"
+msgstr "Pause"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
+msgid "next"
+msgstr "Nächster"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
+msgid "stop"
+msgstr "Stopp"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
+msgid "max volume"
+msgstr "Maximale Lautstärke"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
+msgid "Update Required"
+msgstr "Aktualisierung erforderlich"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
+#, php-format
+msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
+msgstr "Um diese Datei abspielen zu können muß entweder der Browser oder das %sFlash Plugin%s aktualisiert werden."
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
+msgid "Plan type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
+msgid "Billing cycle:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
+msgid "Payment method:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
+msgid "PayPal"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
+msgid "Credit Card via 2Checkout"
+msgstr ""
+
+#: airtime_mvc/application/forms/DateRange.php:16
+#: airtime_mvc/application/forms/ShowBuilder.php:18
+msgid "Date Start:"
+msgstr "Zeitpunkt Start:"
+
+#: airtime_mvc/application/forms/DateRange.php:35
+#: airtime_mvc/application/forms/DateRange.php:63
+#: airtime_mvc/application/forms/ShowBuilder.php:37
+#: airtime_mvc/application/forms/ShowBuilder.php:65
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
+msgid "Invalid character entered"
+msgstr "Ungültiges Zeichen eingeben"
+
+#: airtime_mvc/application/forms/DateRange.php:44
+#: airtime_mvc/application/forms/ShowBuilder.php:46
+#: airtime_mvc/application/forms/AddShowRepeats.php:56
+msgid "Date End:"
+msgstr "Zeitpunkt Ende:"
+
+#: airtime_mvc/application/forms/ShowBuilder.php:72
+#: airtime_mvc/application/forms/ShowBuilder.php:88
+msgid "Filter by Show"
+msgstr ""
+
+#: airtime_mvc/application/forms/ShowBuilder.php:80
+msgid "All My Shows:"
+msgstr "Alle meine Sendungen:"
+
+#: airtime_mvc/application/forms/AddShowWho.php:10
+msgid "Search Users:"
+msgstr "Benutzer suchen:"
+
+#: airtime_mvc/application/forms/AddShowWho.php:24
+msgid "DJs:"
+msgstr "DJs:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:30
+#: airtime_mvc/application/forms/GeneralPreferences.php:25
+#: airtime_mvc/application/forms/SupportSettings.php:18
+msgid "Station Name"
+msgstr "Sendername"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:39
+#: airtime_mvc/application/forms/SupportSettings.php:31
+msgid "Phone:"
+msgstr "Telefon:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:51
+#: airtime_mvc/application/forms/AddUser.php:67
+#: airtime_mvc/application/forms/EditUser.php:83
+#: airtime_mvc/application/forms/SupportSettings.php:43
+msgid "Email:"
+msgstr "E-Mail:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:62
+#: airtime_mvc/application/forms/SupportSettings.php:54
+msgid "Station Web Site:"
+msgstr "Sender-Webseite:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:73
+#: airtime_mvc/application/forms/SupportSettings.php:65
+msgid "Country:"
+msgstr "Land:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:84
+#: airtime_mvc/application/forms/SupportSettings.php:76
+msgid "City:"
+msgstr "Stadt:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:96
+#: airtime_mvc/application/forms/SupportSettings.php:88
+msgid "Station Description:"
+msgstr "Sender Beschreibung:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:106
+#: airtime_mvc/application/forms/GeneralPreferences.php:42
+msgid "Station Logo:"
+msgstr "Sender Logo:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:126
+#: airtime_mvc/application/forms/SupportSettings.php:108
+#, php-format
+msgid "Promote my station on %s"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:151
+#: airtime_mvc/application/forms/SupportSettings.php:120
+#, php-format
+msgid "By checking this box, I agree to %s's %sprivacy policy%s."
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:169
+#: airtime_mvc/application/forms/SupportSettings.php:143
+msgid "You have to agree to privacy policy."
+msgstr "Sie müssen die Datenschutzrichtlinien akzeptieren."
+
+#: airtime_mvc/application/forms/AddShowRR.php:10
+msgid "Record from Line In?"
+msgstr "Aufzeichnen von Line-In?"
+
+#: airtime_mvc/application/forms/AddShowRR.php:16
+msgid "Rebroadcast?"
+msgstr "Wiederholen?"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
+#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
+msgid "Value is required and can't be empty"
+msgstr "Wert erforderlich. Feld darf nicht leer sein."
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
+msgid "'%value%' is no valid email address in the basic format local-part@hostname"
+msgstr "'%value%' ist keine gültige E-Mail-Adresse im Standardformat local-part@hostname"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
+msgid "'%value%' does not fit the date format '%format%'"
+msgstr "'%value%' wurde nicht im erforderlichen Datumsformat '%format%' eingegeben"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
+msgid "'%value%' is less than %min% characters long"
+msgstr "'%value%' ist kürzer als %min% Zeichen lang"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
+msgid "'%value%' is more than %max% characters long"
+msgstr "'%value%' ist mehr als %max% Zeichen lang"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
+msgid "'%value%' is not between '%min%' and '%max%', inclusively"
+msgstr "'%value%' liegt nicht zwischen '%min%' und '%max%'"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
+msgid "Passwords do not match"
+msgstr "Passwörter stimmen nicht überein"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
+msgid "Day must be specified"
+msgstr "Tag muß angegeben werden"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
+msgid "Time must be specified"
+msgstr "Zeit muß angegeben werden"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
+msgid "Must wait at least 1 hour to rebroadcast"
+msgstr "Das Wiederholen einer Sendung ist erst nach einer Stunde Wartezeit möglich."
+
+#: airtime_mvc/application/forms/PasswordRestore.php:14
+msgid "Email"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordRestore.php:36
+msgid "Reset password"
+msgstr "Passwort zurücksetzen"
+
+#: airtime_mvc/application/forms/AddShowWhat.php:30
+msgid "Untitled Show"
+msgstr "Unbenannte Sendung"
+
+#: airtime_mvc/application/forms/AddShowWhat.php:69
+msgid "Instance Description:"
+msgstr ""
+
+#: airtime_mvc/application/forms/DangerousPreferences.php:12
+msgid "Delete All Tracks in Library"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditAudioMD.php:145
+msgid "ISRC Number:"
+msgstr "ISRC Nummer:"
+
+#: airtime_mvc/application/forms/EditAudioMD.php:176
+msgid "OK"
+msgstr "OK"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:33
+msgid "Station Description"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:62
+msgid "Default Crossfade Duration (s):"
+msgstr "Standarddauer Crossfade (s):"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:68
+#: airtime_mvc/application/forms/GeneralPreferences.php:82
+#: airtime_mvc/application/forms/GeneralPreferences.php:96
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
+msgid "Please enter a time in seconds (eg. 0.5)"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:76
+msgid "Default Fade In (s):"
+msgstr "Standard Fade In (s):"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:90
+msgid "Default Fade Out (s):"
+msgstr "Standard Fade Out (s):"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:102
+msgid "Public Airtime API"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:103
+msgid "Required for embeddable schedule widget."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:105
+msgid "Disabled"
+msgstr "Deaktiviert"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:106
+msgid "Enabled"
+msgstr "Aktiviert"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:109
+msgid ""
+"Enabling this feature will allow Airtime to provide schedule data\n"
+" to external widgets that can be embedded in your website."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:120
+msgid "Default Language"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:127
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
+msgid "Station Timezone"
+msgstr "Zeitzone Radiostation"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:134
+msgid "Week Starts On"
+msgstr "Woche startet mit "
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:150
+msgid "Display login button on your Radio Page?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:29
+#: airtime_mvc/application/forms/EditUser.php:37
+#: airtime_mvc/application/forms/Login.php:41
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
+msgid "Username:"
+msgstr "Benutzername:"
+
+#: airtime_mvc/application/forms/AddUser.php:38
+#: airtime_mvc/application/forms/EditUser.php:48
+#: airtime_mvc/application/forms/Login.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
+msgid "Password:"
+msgstr "Passwort:"
+
+#: airtime_mvc/application/forms/AddUser.php:46
+#: airtime_mvc/application/forms/EditUser.php:57
+msgid "Verify Password:"
+msgstr "Passwort bestätigen:"
+
+#: airtime_mvc/application/forms/AddUser.php:55
+#: airtime_mvc/application/forms/EditUser.php:67
+msgid "Firstname:"
+msgstr "Vorname:"
+
+#: airtime_mvc/application/forms/AddUser.php:61
+#: airtime_mvc/application/forms/EditUser.php:75
+msgid "Lastname:"
+msgstr "Nachname:"
+
+#: airtime_mvc/application/forms/AddUser.php:76
+#: airtime_mvc/application/forms/EditUser.php:94
+msgid "Mobile Phone:"
+msgstr "Mobiltelefon:"
+
+#: airtime_mvc/application/forms/AddUser.php:82
+#: airtime_mvc/application/forms/EditUser.php:102
+msgid "Skype:"
+msgstr "Skype:"
+
+#: airtime_mvc/application/forms/AddUser.php:88
+#: airtime_mvc/application/forms/EditUser.php:110
+msgid "Jabber:"
+msgstr "Jabber:"
+
+#: airtime_mvc/application/forms/AddUser.php:95
+msgid "User Type:"
+msgstr "Benutzertyp:"
+
+#: airtime_mvc/application/forms/AddUser.php:120
+#: airtime_mvc/application/forms/EditUser.php:155
+msgid "Login name is not unique."
+msgstr "Benutzername ist nicht einmalig."
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
+msgid "Import Folder:"
+msgstr "Import Verzeichnis:"
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
+msgid "Watched Folders:"
+msgstr "Überwachte Verzeichnisse:"
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
+msgid "Not a valid Directory"
+msgstr "Kein gültiges Verzeichnis"
+
+#: airtime_mvc/application/forms/BillingClient.php:126
+msgid "What is the name of your favorite childhood friend?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:127
+msgid "What school did you attend for sixth grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:128
+msgid "In what city did you meet your spouse/significant other?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:129
+msgid "What street did you live on in third grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:130
+msgid "What is the first name of the boy or girl that you first kissed?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:131
+msgid "In what city or town was your first job?"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
+msgid "Default License:"
+msgstr "Standard Lizenz:"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
+msgid "All rights are reserved"
+msgstr "Alle Rechte vorbehalten"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
+msgid "The work is in the public domain"
+msgstr "Das Werk ist in der öffentlichen Domäne"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
+msgid "Creative Commons Attribution"
+msgstr "Creative Commons Zuordnung"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
+msgid "Creative Commons Attribution Noncommercial"
+msgstr "Creative Commons Zuordnung Noncommercial"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
+msgid "Creative Commons Attribution No Derivative Works"
+msgstr "Creative Commons Zuordnung No Derivative Works"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
+msgid "Creative Commons Attribution Share Alike"
+msgstr "Creative Commons Zuordnung Share Alike"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
+msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
+msgstr "Creative Commons Zuordnung Noncommercial Non Derivate Works"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
+msgid "Creative Commons Attribution Noncommercial Share Alike"
+msgstr "Creative Commons Zuordnung Noncommercial Share Alike"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
+msgid "Default Sharing Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
+msgid "Public"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
+msgid "Private"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditUser.php:129
+msgid "Interface Timezone:"
+msgstr "Zeitzone Interface"
+
+#: airtime_mvc/application/forms/Player.php:14
+msgid "Now Playing"
+msgstr "Jetzt"
+
+#: airtime_mvc/application/forms/Player.php:25
+msgid "Select Stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:28
+msgid "Auto detect the most appropriate stream to use."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:29
+msgid "Select a stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:41
+msgid " - Mobile friendly"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:45
+msgid " - The player does not support Opus streams."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:71
+msgid "Embeddable code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:72
+msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
+#: airtime_mvc/application/models/Block.php:1351
+msgid "Select criteria"
+msgstr "Kriterien wählen"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
+#: airtime_mvc/application/models/Block.php:1353
+msgid "Bit Rate (Kbps)"
+msgstr "Bitrate (Kbps)"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
+#: airtime_mvc/application/models/Block.php:1374
+msgid "Sample Rate (kHz)"
+msgstr "Sample Rate (KHz)"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
+msgid "hours"
+msgstr "Stunden"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
+msgid "minutes"
+msgstr "Minuten"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
+#: airtime_mvc/application/models/Block.php:333
+msgid "items"
+msgstr "Objekte"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
+msgid "Randomly"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
+msgid "Newest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
+msgid "Oldest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
+msgid "Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
+msgid "Static"
+msgstr "Statisch"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
+msgid "Dynamic"
+msgstr "Dynamisch"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
+msgid "Allow Repeated Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
+msgid "Sort Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
+msgid "Limit to:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
+msgid "Generate playlist content and save criteria"
+msgstr "Playlist-Inhalt erstellen und Kriterien speichern"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
+msgid "Generate"
+msgstr "Erstellen"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
+msgid "Shuffle playlist content"
+msgstr "Shuffle Playlist-Inhalt (Durchmischen)"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
+msgid "Limit cannot be empty or smaller than 0"
+msgstr "Beschränkung kann nicht leer oder kleiner als 0 sein."
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
+msgid "Limit cannot be more than 24 hrs"
+msgstr "Beschränkung kann nicht größer als 24 Stunden sein"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
+msgid "The value should be an integer"
+msgstr "Der Wert muß eine ganze Zahl sein."
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
+msgid "500 is the max item limit value you can set"
+msgstr "Die Anzahl der Objekte ist auf 500 beschränkt."
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
+msgid "You must select Criteria and Modifier"
+msgstr "Sie müssen Kriterium und Modifikator bestimmen"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
+msgid "'Length' should be in '00:00:00' format"
+msgstr "Die 'Dauer' muß im Format '00:00:00' eingegeben werden"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
+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:594
+msgid "The value has to be numeric"
+msgstr "Der eingegebene Wert muß aus Ziffern bestehen"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
+msgid "The value should be less then 2147483648"
+msgstr "Der eingegebene Wert muß kleiner sein als 2147483648"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
+#, php-format
+msgid "The value should be less than %s characters"
+msgstr "Der eingegebene Wert muß aus weniger als %s Zeichen bestehen."
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
+msgid "Value cannot be empty"
+msgstr "Wert kann nicht leer sein"
+
+#: airtime_mvc/application/forms/StreamSetting.php:26
+msgid "Icecast Vorbis Metadata"
+msgstr "Icecast Vorbis Metadata"
+
+#: airtime_mvc/application/forms/StreamSetting.php:36
+msgid "Stream Label:"
+msgstr "Streambezeichnung:"
+
+#: airtime_mvc/application/forms/StreamSetting.php:37
+msgid "Artist - Title"
+msgstr "Artist - Titel"
+
+#: airtime_mvc/application/forms/StreamSetting.php:38
+msgid "Show - Artist - Title"
+msgstr "Sendung - Interpret - Titel"
+
+#: airtime_mvc/application/forms/StreamSetting.php:39
+msgid "Station name - Show name"
+msgstr "Radiostation - Sendung"
+
+#: airtime_mvc/application/forms/StreamSetting.php:45
+msgid "Off Air Metadata"
+msgstr "Off Air Metadata"
+
+#: airtime_mvc/application/forms/StreamSetting.php:51
+msgid "Enable Replay Gain"
+msgstr "Replay Gain aktivieren"
+
+#: airtime_mvc/application/forms/StreamSetting.php:57
+msgid "Replay Gain Modifier"
+msgstr "Replay Gain Modifikator"
+
+#: airtime_mvc/application/forms/StreamSetting.php:65
+msgid "Streaming Server:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Airtime Pro Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Custom / 3rd Party Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordChange.php:17
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
+msgid "Password"
+msgstr "Passwort"
-#~ msgid "enter a time in seconds 0{.0}"
-#~ msgstr "Geben sie eine Zeit in Sekunden ein 0{.0}"
+#: airtime_mvc/application/forms/PasswordChange.php:28
+msgid "Confirm new password"
+msgstr "Neues Passwort bestätigen"
-#~ msgid "Allow Remote Websites To Access \"Schedule\" Info?%s (Enable this to make front-end widgets work.)"
-#~ msgstr "Erlaube Remote-Webseiten Zugriff auf \"Kalender\" Info?%s (Aktivierung ermöglicht die Verwendung von Front-End Widgets.)"
+#: airtime_mvc/application/forms/PasswordChange.php:36
+msgid "Password confirmation does not match your password."
+msgstr "Passwortbestätigung stimmt nicht mit Passwort überein"
-#~ msgid "Default Interface Language"
-#~ msgstr "Standardsprache"
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
+msgid "Station Language"
+msgstr ""
-#~ msgid "Get new password"
-#~ msgstr "Neues Passwort erhalten"
-
-#~ msgid "Set smart block type:"
-#~ msgstr "Smart Block Typ festlegen:"
-
-#~ msgid "Allow Repeat Tracks:"
-#~ msgstr "Erlaube Wiederholen von Titeln:"
-
-#~ msgid "Limit to"
-#~ msgstr "Beschränkt auf "
-
-#~ msgid "Auto Switch Off"
-#~ msgstr "Automatisch abschalten"
-
-#~ msgid "Auto Switch On"
-#~ msgstr "Automatisch einschalten"
-
-#~ msgid "Switch Transition Fade (s)"
-#~ msgstr "Übergang beim Umschalten (Fade in Sekunden)"
-
-#~ msgid "enter a time in seconds 00{.000000}"
-#~ msgstr "Eingabe der Zeit in Sekunden 00{.000000}"
-
-#~ msgid "Master Username"
-#~ msgstr "Master Benutzername"
-
-#~ msgid "Master Password"
-#~ msgstr "Master Passwort"
-
-#~ msgid "Master Source Connection URL"
-#~ msgstr "Master-Quelle Adresse (URL)"
-
-#~ msgid "Show Source Connection URL"
-#~ msgstr "Show-Quelle Adresse (URL)"
-
-#~ msgid "Master Source Port"
-#~ msgstr "Master-Quelle Port"
-
-#~ msgid "Master Source Mount Point"
-#~ msgstr "Master-Quelle Mount Point"
-
-#~ msgid "Show Source Port"
-#~ msgstr "Show-Quelle Port"
-
-#~ msgid "Show Source Mount Point"
-#~ msgstr "Show-Quelle Mount Point"
-
-#~ msgid "You cannot use same port as Master DJ port."
-#~ msgstr "Sie können nicht denselben Port wie für die Master-Quelle verwenden."
-
-#~ msgid "Port %s is not available"
-#~ msgstr "Port %s ist nicht verfügbar"
-
-#~ msgid "E-mail"
-#~ msgstr "E-Mail"
-
-#~ msgid "Restore password"
-#~ msgstr "Passwort wiederherstellen"
-
-#~ msgid "Hardware Audio Output"
-#~ msgstr "Hardware Audioausgabe"
-
-#~ msgid "Output Type"
-#~ msgstr "Ausgabetyp"
-
-#~ msgid "Date/Time Start:"
-#~ msgstr "Datum/Zeit Start:"
-
-#~ msgid "Date/Time End:"
-#~ msgstr "Datum/Zeit Ende:"
-
-#~ msgid "Automatically Upload Recorded Shows"
-#~ msgstr "Automatisches Hochladen aufgezeichneter Sendungen"
-
-#~ msgid "Enable SoundCloud Upload"
-#~ msgstr "Aktiviere SoundCloud Upload"
-
-#~ msgid "Automatically Mark Files \"Downloadable\" on SoundCloud"
-#~ msgstr "Markiere Dateien auf SoundCloud automatisch als \"herunterladbar\""
-
-#~ msgid "SoundCloud Email"
-#~ msgstr "SoundCloud E-Mail"
-
-#~ msgid "SoundCloud Password"
-#~ msgstr "SoundCloud Passwort"
-
-#~ msgid "SoundCloud Tags: (separate tags with spaces)"
-#~ msgstr "SoundCloud Tags: (mehrere Tags durch Leertaste trennen)"
-
-#~ msgid "Default Genre:"
-#~ msgstr "Standard Genre:"
-
-#~ msgid "Default Track Type:"
-#~ msgstr "Standard Titel Typ:"
-
-#~ msgid "Original"
-#~ msgstr "Original"
-
-#~ msgid "Remix"
-#~ msgstr "Remix"
-
-#~ msgid "Live"
-#~ msgstr "Live"
-
-#~ msgid "Recording"
-#~ msgstr "Aufzeichnung"
-
-#~ msgid "Spoken"
-#~ msgstr "Talk"
-
-#~ msgid "Podcast"
-#~ msgstr "Podcast"
-
-#~ msgid "Demo"
-#~ msgstr "Demo"
-
-#~ msgid "Work in progress"
-#~ msgstr "In Bearbeitung"
-
-#~ msgid "Stem"
-#~ msgstr "Eindämmen"
-
-#~ msgid "Loop"
-#~ msgstr "Loop"
-
-#~ msgid "Sound Effect"
-#~ msgstr "Sound Effekt"
-
-#~ msgid "One Shot Sample"
-#~ msgstr "One-Shot-Sample"
-
-#~ msgid "Other"
-#~ msgstr "Sonstige"
-
-#~ msgid "Enable System Emails (Password Reset)"
-#~ msgstr "System E-Mails aktivieren (Passwort Reset)"
-
-#~ msgid "Reset Password 'From' Email"
-#~ msgstr "Reset Passwort 'From' E-Mail (Absenderbezeichnung)"
-
-#~ msgid "Configure Mail Server"
-#~ msgstr "Mail-Server konfigurieren"
-
-#~ msgid "Requires Authentication"
-#~ msgstr "Authentifizierung erforderlich"
-
-#~ msgid "Mail Server"
-#~ msgstr "Mail-Server"
-
-#~ msgid "Email Address"
-#~ msgstr "E-Mail Adresse"
-
-#~ msgid "Please enter your user name and password"
-#~ msgstr "Bitte geben sie Benutzername und Passwort ein"
-
-#~ msgid "Given email not found."
-#~ msgstr "Vorgegebene E-Mail-Adresse konnte nicht gefunden werden."
-
-#~ msgid "Page not found"
-#~ msgstr "Seite nicht gefunden"
-
-#~ msgid "Application error"
-#~ msgstr "Anwendungsfehler"
-
-#~ msgid "Playlist / Block"
-#~ msgstr "Playlist / Block"
-
-#~ msgid "If you change the username or password values for an enabled stream the playout engine will be rebooted and your listeners will hear silence for 5-10 seconds. Changing the following fields will NOT cause a reboot: Stream Label (Global Settings), and Switch Transition Fade(s), Master Username, and Master Password (Input Stream Settings). If Airtime is recording, and if the change causes a playout engine restart, the recording will be interrupted."
-#~ msgstr ""
-#~ "Wenn sie Benutzername oder Passwort eines aktivierten Streams ändern, wird das Playout-System neu gestartet und die Hörer werden für 5-10 Sekunden Stille hören.\n"
-#~ "Das Wechseln folgender Werte erfordert KEINEN Neustart: Stream Label (Globale Einstellungen), Master Übergang beim Umschalten (Fade in Sekunden), Master Username und Master Passwort (Input Stream Einstellungen). Falls Airtime während eines Neustart des Dienstes eine Sendung aufzeichnet, wird die Aufzeichnung unterbrochen."
-
-#~ msgid "today"
-#~ msgstr "Heute"
-
-#~ msgid "day"
-#~ msgstr "Tag"
-
-#~ msgid "week"
-#~ msgstr "Woche"
-
-#~ msgid "month"
-#~ msgstr "Monat"
-
-#~ msgid "Remove overbooked tracks"
-#~ msgstr "Überbuchte Titel entfernen"
-
-#~ msgid "Soundcloud"
-#~ msgstr "SoundCloud"
-
-#~ msgid "View on Soundcloud"
-#~ msgstr "Auf SoundCloud ansehen"
-
-#~ msgid "Re-upload to SoundCloud"
-#~ msgstr "Nochmal auf SoundCloud hochladen."
-
-#~ msgid "Upload to SoundCloud"
-#~ msgstr "Auf SoundCloud hochladen "
-
-#~ msgid "Could not delete some scheduled files."
-#~ msgstr "Manche der festgelegten Dateien konnten nicht gelöscht werden."
-
-#~ msgid "Add Media"
-#~ msgstr "Medien hinzufügen"
-
-#~ msgid "Library"
-#~ msgstr "Bibliothek"
-
-#~ msgid "System"
-#~ msgstr "System"
-
-#~ msgid "Preferences"
-#~ msgstr "Einstellungen"
-
-#~ msgid "Media Folders"
-#~ msgstr "Medienverzeichnisse"
-
-#~ msgid "History"
-#~ msgstr "Verlauf"
-
-#~ msgid "Service"
-#~ msgstr "Dienst"
-
-#~ msgid "Uptime"
-#~ msgstr "Betriebszeit"
-
-#~ msgid "CPU"
-#~ msgstr "CPU"
-
-#~ msgid "Memory"
-#~ msgstr "Speicher"
-
-#~ msgid "Email / Mail Server Settings"
-#~ msgstr "E-Mail- / Mail-Server-Einstellungen"
-
-#~ msgid "Connection URL: "
-#~ msgstr "Verbindung URL:"
-
-#~ msgid "Input Stream Settings"
-#~ msgstr "Stream-Eingang Einstellungen"
-
-#~ msgid "Master Source Connection URL:"
-#~ msgstr "Master-Quelle Verbindungs-URL:"
-
-#~ msgid "Override"
-#~ msgstr "Übersteuern"
-
-#~ msgid "RESET"
-#~ msgstr "RESET"
-
-#~ msgid "Show Source Connection URL:"
-#~ msgstr "Show-Quelle Verbindungs-URL:"
-
-#~ msgid "Filter By Show:"
-#~ msgstr "Nach Sendung filtern:"
-
-#~ msgid "%s's Settings"
-#~ msgstr "%s's Einstellungen"
-
-#~ msgid "Sourcefabric Privacy Policy"
-#~ msgstr "Sourcefabric Datenschutzrichtlinie"
-
-#~ msgid "Smart Block Options"
-#~ msgstr "Smart Block Optionen"
-
-#~ msgid "file meet the criteria"
-#~ msgstr "entspricht den Kriterien"
-
-#~ msgid "New"
-#~ msgstr "Neu"
-
-#~ msgid "New Playlist"
-#~ msgstr "Neue Playlist"
-
-#~ msgid "New Smart Block"
-#~ msgstr "Neuer Smart Block"
-
-#~ msgid "New Webstream"
-#~ msgstr "Neuer Webstream"
-
-#~ msgid "View / edit description"
-#~ msgstr "Beschreibung ansehen / bearbeiten"
-
-#~ msgid "Global Settings"
-#~ msgstr "Globale Einstellungen"
-
-#~ msgid "Output Stream Settings"
-#~ msgstr "Stream-Ausgabe Einstellungen"
-
-#~ msgid "Listener Count Over Time"
-#~ msgstr "Hörerzahl im Zeitraffer"
-
-#~ msgid "Begin by adding your files to the library using the 'Add Media' menu button. You can drag and drop your files to this window too."
-#~ msgstr "Beginnen sie damit, Dateien ihrer Bibliothek hinzuzufügen. Verwenden sie dazu die Schaltfläche 'Medien Hinzufügen'. Dateien können auch via Drag'n'Drop hinzugefügt werden."
-
-#~ msgid "Create a show by going to 'Calendar' in the menu bar, and then clicking the '+ Show' icon. This can be either a one-time or repeating show. Only admins and program managers can add shows."
-#~ msgstr "Erstellen sie eine Sendung, indem sie in der Menüzeile die Schaltfläche 'Kalender' betätigen und anschließend die Schaltfläche '+ Sendung' wählen. Dies kann eine einmalige oder sich wiederholende Sendung sein. Nur Administratoren und Programm Manager können Sendungen hinzufügen."
-
-#~ msgid "Add media to the show by going to your show in the Schedule calendar, left-clicking on it and selecting 'Add / Remove Content'"
-#~ msgstr ""
-#~ "Fügen sie Mediendateien einer Show hinzu.\n"
-#~ "Öffnen sie dazu die gewünschte Sendung durch einen Links-Klick darauf im Kalender und wählen sie 'Inhalt hinzufügen / entfernen'"
-
-#~ msgid "Select your media from the left pane and drag them to your show in the right pane."
-#~ msgstr "Wählen sie Medien vom linken Feld und ziehen sie diese in ihre Sendung im rechten Feld."
-
-#~ msgid "Then you're good to go!"
-#~ msgstr "Dann kann es auch schon los gehen!"
-
-#~ msgid "Please enter your account e-mail address. You will receive a link to create a new password via e-mail."
-#~ msgstr "Bitte geben sie die E-Mail-Adresse ein, die in ihrem Benutzerkonto eingetragen ist. Sie erhalten einen Link um ein neues Passwort via E-Mail zu erstellen."
-
-#~ msgid "Email sent"
-#~ msgstr "E-Mail gesendet"
-
-#~ msgid "An email has been sent"
-#~ msgstr "Ein E-Mail wurder gesendet"
-
-#~ msgid "Back to login screen"
-#~ msgstr "Zurück zum Anmeldungsbildschirm"
-
-#~ msgid "Scheduled Play"
-#~ msgstr "Planmäßig Abspielen"
-
-#~ msgid "Station time"
-#~ msgstr "Uhrzeit"
-
-#~ msgid "Zend Framework Default Application"
-#~ msgstr "Zend Framework Default Application"
-
-#~ msgid "Empty smart block"
-#~ msgstr "Smart Block leer"
-
-#~ msgid "Empty playlist"
-#~ msgstr "Playlist leer"
-
-#~ msgid "Empty smart block content"
-#~ msgstr "Smart Block leeren"
-
-#~ msgid "No open smart block"
-#~ msgstr "Kein Smart Block geöffnet"
-
-#~ msgid "Record & Rebroadcast"
-#~ msgstr "Aufzeichnen & Wiederholen"
-
-#~ msgid "Failed to create 'organize' directory."
-#~ msgstr "Fehler beim Erstellen des Ordners 'organize'"
-
-#~ msgid "The file was not uploaded, there is %s MB of disk space left and the file you are uploading has a size of %s MB."
-#~ msgstr "Die Datei konnte nicht hochgeladen werden. Es sind %s MB Speicherplatz frei und die Datei, die sie hochladen wollen, hat eine Größe von %s MB."
-
-#~ msgid "This file appears to be corrupted and will not be added to media library."
-#~ msgstr "Die Datei scheint fehlerhaft zu sein und wird der Bibliothek nicht hinzugefügt."
-
-#~ msgid "The file was not uploaded, this error can occur if the computer hard drive does not have enough disk space or the stor directory does not have correct write permissions."
-#~ msgstr "Die Datei konnte nicht hochgeladen werden. Dieser Fehler kann auftreten, wenn die Festplatte des Computers nicht genug Speicherplatz frei hat oder sie keine Schreibberechtigung für den Ordner 'stor' haben."
-
-#~ msgid ""
-#~ "Hi %s, \n"
-#~ "\n"
-#~ "Click this link to reset your password: "
-#~ msgstr ""
-#~ "Hallo %s,\n"
-#~ "\n"
-#~ "Klicke auf diesen Link um dein Passwort zurückzusetzen:"
-
-#~ msgid "Show Content"
-#~ msgstr "Sendungsinhalt"
-
-#~ msgid "Remove All Content"
-#~ msgstr "Gesamten Inhalt entfernen"
-
-#~ msgid "Cancel Current Show"
-#~ msgstr "Aktuelle Sendung abbrechen"
-
-#~ msgid "Edit This Instance"
-#~ msgstr "Diese Folge bearbeiten"
-
-#~ msgid "Delete This Instance"
-#~ msgstr "Lösche diese Folge"
-
-#~ msgid "Delete This Instance and All Following"
-#~ msgstr "Lösche diese Folge und alle Nachfolgenden"
-
-#~ msgid "Please selection an option"
-#~ msgstr "Bitte eine Option wählen"
-
-#~ msgid "No Records"
-#~ msgstr "Keine Aufzeichnungen"
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
+msgid "Enabled:"
+msgstr "Aktiviert:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
+msgid "Mobile:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
+msgid "Stream Type:"
+msgstr "Stream Typ:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
+msgid "Service Type:"
+msgstr "Service Typ:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
+msgid "Channels:"
+msgstr "Kanäle:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "1 - Mono"
+msgstr "1 - Mono"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "2 - Stereo"
+msgstr "2 - Stereo"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
+msgid "Server"
+msgstr "Server"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
+msgid "Port"
+msgstr "Port"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
+msgid "Only numbers are allowed."
+msgstr "Es sind nur Zahlen erlaubt"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
+msgid "URL"
+msgstr "URL"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
+msgid "Mount Point"
+msgstr "Mount Point"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
+msgid "Admin User"
+msgstr "Admin Benutzer"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
+msgid "Admin Password"
+msgstr "Admin Passwort"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
+msgid "Server cannot be empty."
+msgstr "Server darf nicht leer sein."
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
+msgid "Port cannot be empty."
+msgstr "Port darf nicht leer sein."
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
+msgid "Mount cannot be empty with Icecast server."
+msgstr "Mount darf nicht leer sein, wenn Icecast-Server verwendet wird."
+
+#: airtime_mvc/application/forms/AddShowWhen.php:16
+msgid "'%value%' does not fit the time format 'HH:mm'"
+msgstr "'%value%' ist nicht im Format 'HH:mm'"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:22
+msgid "Start Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:37
+msgid "In the Future:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:64
+msgid "End Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:98
+msgid "Timezone:"
+msgstr "Zeitzone:"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:107
+msgid "Repeats?"
+msgstr "Wiederholungen?"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:139
+msgid "Cannot create show in the past"
+msgstr "Eine Sendung kann nicht für einen bereits vergangenen Zeitpunkt geplant werden"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:147
+msgid "Cannot modify start date/time of the show that is already started"
+msgstr "Beginn- & Endzeit einer bereits laufenden Sendung können nicht geändert werden"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:156
+#: airtime_mvc/application/models/Show.php:282
+msgid "End date/time cannot be in the past"
+msgstr "Enddatum / Endzeit darf nicht in der Vergangheit liegen."
+
+#: airtime_mvc/application/forms/AddShowWhen.php:164
+msgid "Cannot have duration < 0m"
+msgstr "Die Dauer einer Sendung kann nicht kürzer als 0 Minuten sein."
+
+#: airtime_mvc/application/forms/AddShowWhen.php:168
+msgid "Cannot have duration 00h 00m"
+msgstr "Die Dauer einer Sendung kann nicht 00h 00m sein"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:175
+msgid "Cannot have duration greater than 24h"
+msgstr "Die Dauer einer Sendung kann nicht länger als 24h sein"
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:19
+msgid "Push metadata to your station on TuneIn?"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:24
+msgid "Station ID:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:30
+msgid "Partner Key:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:36
+msgid "Partner Id:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:77
+#: airtime_mvc/application/forms/TuneInPreferences.php:86
+msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:10
+#, php-format
+msgid "Use %s Authentication:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:16
+msgid "Use Custom Authentication:"
+msgstr "Benutzerdefinierte Authentifizierung:"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:25
+msgid "Custom Username"
+msgstr "Benutzerdefinierter Benutzername"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:37
+msgid "Custom Password"
+msgstr "Benutzerdefiniertes Passwort"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:48
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
+msgid "Host:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
+msgid "Port:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:60
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
+msgid "Mount:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:77
+msgid "Username field cannot be empty."
+msgstr "Das Feld Benutzername darf nicht leer sein."
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:82
+msgid "Password field cannot be empty."
+msgstr "Das Feld Passwort darf nicht leer sein."
+
+#: airtime_mvc/application/forms/AddShowStyle.php:12
+msgid "Background Colour:"
+msgstr "Hintergrundfarbe:"
+
+#: airtime_mvc/application/forms/AddShowStyle.php:31
+msgid "Text Colour:"
+msgstr "Textfarbe:"
+
+#: airtime_mvc/application/forms/AddShowStyle.php:49
+msgid "Current Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:72
+msgid "Show Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:87
+msgid "Logo Preview:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Login.php:102
+msgid "Type the characters you see in the picture below."
+msgstr "Geben sie die Zeichen ein, die im darunter liegenden Bild zu sehen sind."
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
+msgid "Auto Switch Off:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
+msgid "Auto Switch On:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
+msgid "Switch Transition Fade (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:10
+msgid "Link:"
+msgstr "Verknüpfen:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:16
+msgid "Repeat Type:"
+msgstr "Wiederholungstyp:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:19
+msgid "weekly"
+msgstr "Wöchentlich"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:20
+msgid "every 2 weeks"
+msgstr "jede Zweite Woche"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:21
+msgid "every 3 weeks"
+msgstr "jede Dritte Woche"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:22
+msgid "every 4 weeks"
+msgstr "jede Vierte Woche"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:23
+msgid "monthly"
+msgstr "Monatlich"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:32
+msgid "Select Days:"
+msgstr "Tage wählen:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:47
+msgid "Repeat By:"
+msgstr "Wiederholung am:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the month"
+msgstr "Tag des Monats"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the week"
+msgstr "Tag der Woche"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:69
+msgid "No End?"
+msgstr "Kein Enddatum?"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:106
+msgid "End date must be after start date"
+msgstr "Enddatum muß nach Startdatum liegen."
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:113
+msgid "Please select a repeat day"
+msgstr "Bitte Tag zum Wiederholen wählen"
+
+#: airtime_mvc/application/configs/navigation.php:12
+msgid "Radio Page"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:19
+msgid "Calendar"
+msgstr "Kalender"
+
+#: airtime_mvc/application/configs/navigation.php:26
+msgid "Widgets"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:48
+msgid "Settings"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:67
+msgid "Users"
+msgstr "Benutzer"
+
+#: airtime_mvc/application/configs/navigation.php:74
+msgid "Streams"
+msgstr "Streams"
+
+#: airtime_mvc/application/configs/navigation.php:82
+msgid "Analytics"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:90
+msgid "Listener Stats"
+msgstr "Hörerstatistiken"
+
+#: airtime_mvc/application/configs/navigation.php:104
+msgid "History Templates"
+msgstr "Verlaufsvorlagen"
+
+#: airtime_mvc/application/configs/navigation.php:113
+msgid "Billing"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:120
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:127
+msgid "Account Details"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:134
+msgid "View Invoices"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:150
+msgid "Getting Started"
+msgstr "Kurzanleitung"
+
+#: airtime_mvc/application/configs/navigation.php:157
+msgid "FAQ"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:162
+msgid "User Manual"
+msgstr "Benutzerhandbuch"
+
+#: airtime_mvc/application/configs/navigation.php:167
+msgid "File a Support Ticket"
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:833
+#: airtime_mvc/application/models/Playlist.php:812
+msgid "Cue in and cue out are null."
+msgstr "Cue In und Cue Out sind Null."
+
+#: airtime_mvc/application/models/Block.php:868
+#: airtime_mvc/application/models/Block.php:924
+#: airtime_mvc/application/models/Playlist.php:851
+#: airtime_mvc/application/models/Playlist.php:895
+msgid "Can't set cue out to be greater than file length."
+msgstr "Cue In darf nicht größer als die Gesamtdauer der Datei sein."
+
+#: airtime_mvc/application/models/Block.php:879
+#: airtime_mvc/application/models/Block.php:900
+#: airtime_mvc/application/models/Playlist.php:843
+#: airtime_mvc/application/models/Playlist.php:868
+msgid "Can't set cue in to be larger than cue out."
+msgstr "Cue In darf nicht größer als Cue Out sein."
+
+#: airtime_mvc/application/models/Block.php:935
+#: airtime_mvc/application/models/Playlist.php:887
+msgid "Can't set cue out to be smaller than cue in."
+msgstr "Cue Out darf nicht kleiner als Cue In sein."
+
+#: airtime_mvc/application/models/Block.php:1366
+msgid "Upload Time"
+msgstr ""
+
+#: airtime_mvc/application/models/ShowBuilder.php:212
+#, php-format
+msgid "Rebroadcast of %s from %s"
+msgstr "Wiederholung von %s am %s"
+
+#: airtime_mvc/application/models/Preference.php:460
+#, php-format
+msgid "Powered by %s"
+msgstr ""
+
+#: airtime_mvc/application/models/Preference.php:588
+msgid "Select Country"
+msgstr "Land wählen"
+
+#: airtime_mvc/application/models/MusicDir.php:160
+#, php-format
+msgid "%s is already watched."
+msgstr "%s wird bereits überwacht."
+
+#: airtime_mvc/application/models/MusicDir.php:164
+#, php-format
+msgid "%s contains nested watched directory: %s"
+msgstr "%s enthält andere bereits überwachte Verzeichnisse: %s "
+
+#: airtime_mvc/application/models/MusicDir.php:168
+#, php-format
+msgid "%s is nested within existing watched directory: %s"
+msgstr "%s ist ein Unterverzeichnis eines bereits überwachten Verzeichnisses: %s"
+
+#: airtime_mvc/application/models/MusicDir.php:189
+#: airtime_mvc/application/models/MusicDir.php:370
+#, php-format
+msgid "%s is not a valid directory."
+msgstr "%s ist kein gültiges Verzeichnis."
+
+#: airtime_mvc/application/models/MusicDir.php:232
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list"
+msgstr "%s ist bereits als aktuelles Speicherverzeichnis bestimmt oder in der Liste überwachter Verzeichnisse."
+
+#: airtime_mvc/application/models/MusicDir.php:388
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list."
+msgstr "%s ist bereits als aktuelles Speicherverzeichnis bestimmt oder in der Liste überwachter Verzeichnisse."
+
+#: airtime_mvc/application/models/MusicDir.php:431
+#, php-format
+msgid "%s doesn't exist in the watched list."
+msgstr "%s existiert nicht in der Liste überwachter Verzeichnisse."
+
+#: airtime_mvc/application/models/Auth.php:33
+#, php-format
+msgid ""
+"Hi %s, \n"
+"\n"
+"Please click this link to reset your password: "
+msgstr ""
+
+#: airtime_mvc/application/models/Auth.php:38
+#, php-format
+msgid "%s Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/models/Show.php:184
+msgid "Shows can have a max length of 24 hours."
+msgstr "Die Maximaldauer einer Sendung beträgt 24 Stunden."
+
+#: airtime_mvc/application/models/Show.php:293
+msgid ""
+"Cannot schedule overlapping shows.\n"
+"Note: Resizing a repeating show affects all of its repeats."
+msgstr ""
+"Sendungen können nicht überlappend geplant werden.\n"
+"Beachte: Wird die Dauer einer wiederkehrenden Sendung verändert, wirkt sich das auch auf alle Wiederholungen aus."
+
+#: airtime_mvc/application/models/Scheduler.php:73
+msgid "Cannot move items out of linked shows"
+msgstr "Objekte aus einer verknüpften Sendung können nicht verschoben werden."
+
+#: airtime_mvc/application/models/Scheduler.php:119
+msgid "The schedule you're viewing is out of date! (sched mismatch)"
+msgstr "Der Kalender den sie sehen ist nicht mehr aktuell! (Kalender falsch eingepasst)"
+
+#: airtime_mvc/application/models/Scheduler.php:124
+msgid "The schedule you're viewing is out of date! (instance mismatch)"
+msgstr "Der Kalender den sie sehen ist nicht mehr aktuell! (Objekt falsch eingepasst)"
+
+#: airtime_mvc/application/models/Scheduler.php:132
+#: airtime_mvc/application/models/Scheduler.php:458
+#: airtime_mvc/application/models/Scheduler.php:490
+msgid "The schedule you're viewing is out of date!"
+msgstr "Der Kalender den sie sehen ist nicht mehr aktuell."
+
+#: airtime_mvc/application/models/Scheduler.php:142
+#, php-format
+msgid "You are not allowed to schedule show %s."
+msgstr "Sie haben nicht die erforderliche Berechtigung einen Termin für die Sendung %s zu festzulegen."
+
+#: airtime_mvc/application/models/Scheduler.php:146
+msgid "You cannot add files to recording shows."
+msgstr "Einer Sendungsaufzeichnung können keine Dateien hinzugefügt werden."
+
+#: airtime_mvc/application/models/Scheduler.php:152
+#, php-format
+msgid "The show %s is over and cannot be scheduled."
+msgstr "Die Sendung %s ist beendet und kann daher nicht festgelegt werden."
+
+#: airtime_mvc/application/models/Scheduler.php:159
+#, php-format
+msgid "The show %s has been previously updated!"
+msgstr "Die Sendung %s wurde bereits aktualisiert."
+
+#: airtime_mvc/application/models/Scheduler.php:178
+msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
+msgstr "Eine verknüpfte Sendung kann nicht befüllt werden, während eine ihrer Instanzen ausgestrahlt wird."
+
+#: airtime_mvc/application/models/Scheduler.php:195
+msgid "Cannot schedule a playlist that contains missing files."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:216
+#: airtime_mvc/application/models/Scheduler.php:305
+msgid "A selected File does not exist!"
+msgstr "Eine der gewählten Dateien existiert nicht!"
+
+#: airtime_mvc/application/models/Schedule.php:206
+msgid "livestream"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:166
+msgid "Length needs to be greater than 0 minutes"
+msgstr "Dauer muß länger als 0 Minuten sein."
+
+#: airtime_mvc/application/models/Webstream.php:171
+msgid "Length should be of form \"00h 00m\""
+msgstr "Dauer im Format \"00h 00m\" eingeben."
+
+#: airtime_mvc/application/models/Webstream.php:184
+msgid "URL should be of form \"http://domain\""
+msgstr "URL im Format \"http://domain\" eingeben."
+
+#: airtime_mvc/application/models/Webstream.php:187
+msgid "URL should be 512 characters or less"
+msgstr "URL darf aus höchstens 512 Zeichen bestehen."
+
+#: airtime_mvc/application/models/Webstream.php:193
+msgid "No MIME type found for webstream."
+msgstr "Es konnte kein MIME-Typ für den Webstream gefunden werden."
+
+#: airtime_mvc/application/models/Webstream.php:209
+msgid "Webstream name cannot be empty"
+msgstr "Die Bezeichnung eines Webstreams darf nicht leer sein."
+
+#: airtime_mvc/application/models/Webstream.php:278
+msgid "Could not parse XSPF playlist"
+msgstr "XSPF-Playlist konnte nicht aufgeschlüsselt werden."
+
+#: airtime_mvc/application/models/Webstream.php:298
+msgid "Could not parse PLS playlist"
+msgstr "PLS-Playlist konnte nicht aufgeschlüsselt werden."
+
+#: airtime_mvc/application/models/Webstream.php:318
+msgid "Could not parse M3U playlist"
+msgstr "M3U-Playlist konnte nicht aufgeschlüsselt werden."
+
+#: airtime_mvc/application/models/Webstream.php:332
+msgid "Invalid webstream - This appears to be a file download."
+msgstr "Ungültiger Webstream - Die eingegebene URL scheint ein Dateidownload zu sein."
+
+#: airtime_mvc/application/models/Webstream.php:336
+#, php-format
+msgid "Unrecognized stream type: %s"
+msgstr "Unbekannter Stream-Typ: %s"
+
+#: airtime_mvc/public/setup/rabbitmq-setup.php:78
+msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
+msgstr ""
+
+#~ msgid "My Account"
+#~ msgstr "Mein Konto"
diff --git a/airtime_mvc/locale/de_AT/LC_MESSAGES/pro.po b/airtime_mvc/locale/de_AT/LC_MESSAGES/pro.po
index 866ee0acb..f59b52c3d 100644
--- a/airtime_mvc/locale/de_AT/LC_MESSAGES/pro.po
+++ b/airtime_mvc/locale/de_AT/LC_MESSAGES/pro.po
@@ -1,3 +1,139 @@
+#: airtime_mvc/application/controllers/LoginController.php:170
+#, php-format
+msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
+#, php-format
+msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
+#, php-format
+msgid "If you are the primary owner of this station, please reset your password here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
+msgid "Thank you!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
+msgid "Your station has been upgraded successfully."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
+msgid "Return to Airtime"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+#, php-format
+msgid "Purchase an %s plan!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+msgid "My Account"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
+msgid "Upgrade today to get more listeners and storage space!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
+msgid "View Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:257
+msgid "Your Current Plan:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:291
+msgid "Please enter your payment details:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
+msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
+msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:17
+msgid "First Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:26
+msgid "Last Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:35
+msgid "Company Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:44
+msgid "Email Address:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:54
+msgid "Address 1:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:63
+msgid "Address 2:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:70
+msgid "City:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:80
+msgid "State/Region:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:89
+msgid "Zip Code / Postal Code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:102
+msgid "Country:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:112
+msgid "Phone Number:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:121
+msgid "Please choose a security question:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:135
+msgid "Please enter an answer:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:152
+msgid "VAT/Tax ID (EU only)"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:162
+msgid "Subscribe to Sourcefabric newsletter"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:172
+msgid "Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:181
+msgid "Verify Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:193
+msgid "Save"
+msgstr ""
+
#: airtime_mvc/application/models/Auth.php:35
#, php-format
msgid ""
@@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
-msgid "Thank you!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
-msgid "Your station has been upgraded successfully."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
-msgid "Return to Airtime"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
-#, php-format
-msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
-msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
-msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
-#, php-format
-msgid "If you are the primary owner of this station, please reset your password here."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:170
-#, php-format
-msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
-msgstr ""
diff --git a/airtime_mvc/locale/de_DE/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/de_DE/LC_MESSAGES/airtime.mo
index 47631d185..8a6a49d84 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 326116b8e..e248bc28d 100644
--- a/airtime_mvc/locale/de_DE/LC_MESSAGES/airtime.po
+++ b/airtime_mvc/locale/de_DE/LC_MESSAGES/airtime.po
@@ -11,9 +11,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Airtime\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-09-03 10:24-0400\n"
-"PO-Revision-Date: 2015-07-04 09:29+0000\n"
-"Last-Translator: Darius Kellermann \n"
+"POT-Creation-Date: 2015-09-04 11:17-0400\n"
+"PO-Revision-Date: 2015-09-04 08:15+0000\n"
+"Last-Translator: Daniel James \n"
"Language-Team: German (Germany) (http://www.transifex.com/sourcefabric/airtime/language/de_DE/)\n"
"Language: de_DE\n"
"MIME-Version: 1.0\n"
@@ -21,132 +21,6 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: airtime_mvc/public/setup/rabbitmq-setup.php:78
-msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1117
-#: airtime_mvc/application/services/HistoryService.php:1157
-#: airtime_mvc/application/services/HistoryService.php:1174
-#: airtime_mvc/application/models/Block.php:1375
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
-#: airtime_mvc/application/controllers/LocaleController.php:76
-msgid "Title"
-msgstr "Titel"
-
-#: airtime_mvc/application/services/HistoryService.php:1118
-#: airtime_mvc/application/services/HistoryService.php:1158
-#: airtime_mvc/application/services/HistoryService.php:1175
-#: airtime_mvc/application/models/Block.php:1360
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
-#: airtime_mvc/application/controllers/LocaleController.php:77
-msgid "Creator"
-msgstr "Interpret"
-
-#: airtime_mvc/application/services/HistoryService.php:1119
-#: airtime_mvc/application/models/Block.php:1352
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
-#: airtime_mvc/application/controllers/LocaleController.php:78
-msgid "Album"
-msgstr "Album"
-
-#: airtime_mvc/application/services/HistoryService.php:1120
-#: airtime_mvc/application/services/HistoryService.php:1177
-#: airtime_mvc/application/models/Block.php:1369
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
-#: airtime_mvc/application/controllers/LocaleController.php:91
-msgid "Length"
-msgstr "Länge"
-
-#: airtime_mvc/application/services/HistoryService.php:1121
-#: airtime_mvc/application/models/Block.php:1362
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
-#: airtime_mvc/application/controllers/LocaleController.php:85
-msgid "Genre"
-msgstr "Genre"
-
-#: airtime_mvc/application/services/HistoryService.php:1122
-#: airtime_mvc/application/models/Block.php:1371
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
-#: airtime_mvc/application/controllers/LocaleController.php:93
-msgid "Mood"
-msgstr "Stimmung"
-
-#: airtime_mvc/application/services/HistoryService.php:1123
-#: airtime_mvc/application/models/Block.php:1364
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
-#: airtime_mvc/application/controllers/LocaleController.php:87
-msgid "Label"
-msgstr "Label"
-
-#: airtime_mvc/application/services/HistoryService.php:1124
-#: airtime_mvc/application/services/HistoryService.php:1178
-#: airtime_mvc/application/models/Block.php:1355
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
-#: airtime_mvc/application/controllers/LocaleController.php:81
-msgid "Composer"
-msgstr "Komponist"
-
-#: airtime_mvc/application/services/HistoryService.php:1125
-#: airtime_mvc/application/models/Block.php:1363
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
-#: airtime_mvc/application/controllers/LocaleController.php:86
-msgid "ISRC"
-msgstr "ISRC"
-
-#: airtime_mvc/application/services/HistoryService.php:1126
-#: airtime_mvc/application/services/HistoryService.php:1179
-#: airtime_mvc/application/models/Block.php:1357
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
-#: airtime_mvc/application/controllers/LocaleController.php:83
-msgid "Copyright"
-msgstr "Copyright"
-
-#: airtime_mvc/application/services/HistoryService.php:1127
-#: airtime_mvc/application/models/Block.php:1379
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
-#: airtime_mvc/application/controllers/LocaleController.php:100
-msgid "Year"
-msgstr "Jahr"
-
-#: airtime_mvc/application/services/HistoryService.php:1128
-msgid "Track"
-msgstr "Titel"
-
-#: airtime_mvc/application/services/HistoryService.php:1129
-#: airtime_mvc/application/models/Block.php:1356
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
-#: airtime_mvc/application/controllers/LocaleController.php:82
-msgid "Conductor"
-msgstr "Dirigent"
-
-#: airtime_mvc/application/services/HistoryService.php:1130
-#: airtime_mvc/application/models/Block.php:1365
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
-#: airtime_mvc/application/controllers/LocaleController.php:88
-msgid "Language"
-msgstr "Sprache"
-
-#: airtime_mvc/application/services/HistoryService.php:1155
-#: airtime_mvc/application/forms/EditHistoryItem.php:32
-msgid "Start Time"
-msgstr "Startzeit"
-
-#: airtime_mvc/application/services/HistoryService.php:1156
-#: airtime_mvc/application/forms/EditHistoryItem.php:44
-msgid "End Time"
-msgstr "Endzeit"
-
-#: airtime_mvc/application/services/HistoryService.php:1176
-msgid "Played"
-msgstr "Abgespielt"
-
#: airtime_mvc/application/services/CalendarService.php:50
msgid "Record file doesn't exist"
msgstr "Aufzeichnung existiert nicht"
@@ -242,2605 +116,382 @@ msgstr "Die Sendung wurde gelöscht, weil die aufgezeichnete Sendung nicht exist
msgid "Must wait 1 hour to rebroadcast."
msgstr "Das Wiederholen einer Sendung ist erst nach einer Stunde Wartezeit möglich."
-#: airtime_mvc/application/models/Schedule.php:206
-msgid "livestream"
-msgstr ""
-
-#: airtime_mvc/application/models/ShowBuilder.php:212
-#, php-format
-msgid "Rebroadcast of %s from %s"
-msgstr "Wiederholung der Sendung %s von %s"
-
-#: airtime_mvc/application/models/Webstream.php:166
-msgid "Length needs to be greater than 0 minutes"
-msgstr "Dauer muß länger als 0 Minuten sein."
-
-#: airtime_mvc/application/models/Webstream.php:171
-msgid "Length should be of form \"00h 00m\""
-msgstr "Dauer im Format \"00h 00m\" eingeben."
-
-#: airtime_mvc/application/models/Webstream.php:184
-msgid "URL should be of form \"http://domain\""
-msgstr "URL im Format \"http://domain\" eingeben."
-
-#: airtime_mvc/application/models/Webstream.php:187
-msgid "URL should be 512 characters or less"
-msgstr "URL darf aus höchstens 512 Zeichen bestehen."
-
-#: airtime_mvc/application/models/Webstream.php:193
-msgid "No MIME type found for webstream."
-msgstr "Es konnte kein MIME-Typ für den Webstream gefunden werden."
-
-#: airtime_mvc/application/models/Webstream.php:209
-msgid "Webstream name cannot be empty"
-msgstr "Die Bezeichnung eines Webstreams darf nicht leer sein."
-
-#: airtime_mvc/application/models/Webstream.php:278
-msgid "Could not parse XSPF playlist"
-msgstr "Die XSPF Playlist konnte nicht eingelesen werden"
-
-#: airtime_mvc/application/models/Webstream.php:298
-msgid "Could not parse PLS playlist"
-msgstr "Die PLS Playlist konnte nicht eingelesen werden"
-
-#: airtime_mvc/application/models/Webstream.php:318
-msgid "Could not parse M3U playlist"
-msgstr "Die M3U Playlist konnte nicht eingelesen werden"
-
-#: airtime_mvc/application/models/Webstream.php:332
-msgid "Invalid webstream - This appears to be a file download."
-msgstr "Ungültiger Webstream - Die eingegebene URL scheint ein Dateidownload zu sein."
-
-#: airtime_mvc/application/models/Webstream.php:336
-#, php-format
-msgid "Unrecognized stream type: %s"
-msgstr "Unbekannter Stream-Typ: %s"
-
-#: airtime_mvc/application/models/Preference.php:460
-#, php-format
-msgid "Powered by %s"
-msgstr ""
-
-#: airtime_mvc/application/models/Preference.php:588
-msgid "Select Country"
-msgstr "Land wählen"
-
-#: airtime_mvc/application/models/MusicDir.php:160
-#, php-format
-msgid "%s is already watched."
-msgstr "%s wird bereits überwacht."
-
-#: airtime_mvc/application/models/MusicDir.php:164
-#, php-format
-msgid "%s contains nested watched directory: %s"
-msgstr "%s enthält andere bereits überwachte Verzeichnisse: %s "
-
-#: airtime_mvc/application/models/MusicDir.php:168
-#, php-format
-msgid "%s is nested within existing watched directory: %s"
-msgstr "%s ist ein Unterverzeichnis eines bereits überwachten Verzeichnisses: %s"
-
-#: airtime_mvc/application/models/MusicDir.php:189
-#: airtime_mvc/application/models/MusicDir.php:370
-#, php-format
-msgid "%s is not a valid directory."
-msgstr "%s ist kein gültiges Verzeichnis."
-
-#: airtime_mvc/application/models/MusicDir.php:232
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list"
-msgstr "%s ist bereits als aktuelles Speicherverzeichnis bestimmt oder in der Liste überwachter Verzeichnisse"
-
-#: airtime_mvc/application/models/MusicDir.php:388
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list."
-msgstr "%s ist bereits als aktuelles Speicherverzeichnis bestimmt oder in der Liste überwachter Verzeichnisse."
-
-#: airtime_mvc/application/models/MusicDir.php:431
-#, php-format
-msgid "%s doesn't exist in the watched list."
-msgstr "%s existiert nicht in der Liste überwachter Verzeichnisse."
-
-#: airtime_mvc/application/models/Show.php:184
-msgid "Shows can have a max length of 24 hours."
-msgstr "Die Maximaldauer einer Sendung beträgt 24 Stunden."
-
-#: airtime_mvc/application/models/Show.php:282
-#: airtime_mvc/application/forms/AddShowWhen.php:156
-msgid "End date/time cannot be in the past"
-msgstr "Datum/Uhrzeit des Endes darf nicht in der Vergangenheit liegen"
-
-#: airtime_mvc/application/models/Show.php:293
-msgid ""
-"Cannot schedule overlapping shows.\n"
-"Note: Resizing a repeating show affects all of its repeats."
-msgstr ""
-"Sendungen können nicht überlappend geplant werden.\n"
-"Beachte: Wird die Dauer einer wiederkehrenden Sendung verändert, wirkt sich das auch auf alle Wiederholungen aus."
-
-#: airtime_mvc/application/models/Auth.php:33
-#, php-format
-msgid ""
-"Hi %s, \n"
-"\n"
-"Please click this link to reset your password: "
-msgstr ""
-
-#: airtime_mvc/application/models/Auth.php:38
-#, php-format
-msgid "%s Password Reset"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:333
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
-msgid "items"
+#: airtime_mvc/application/services/HistoryService.php:1117
+#: airtime_mvc/application/services/HistoryService.php:1157
+#: airtime_mvc/application/services/HistoryService.php:1174
+#: airtime_mvc/application/controllers/LocaleController.php:76
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
+#: airtime_mvc/application/models/Block.php:1375
+msgid "Title"
msgstr "Titel"
-#: airtime_mvc/application/models/Block.php:833
-#: airtime_mvc/application/models/Playlist.php:812
-msgid "Cue in and cue out are null."
-msgstr "Cue In und Cue Out sind Null."
+#: airtime_mvc/application/services/HistoryService.php:1118
+#: airtime_mvc/application/services/HistoryService.php:1158
+#: airtime_mvc/application/services/HistoryService.php:1175
+#: airtime_mvc/application/controllers/LocaleController.php:77
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
+#: airtime_mvc/application/models/Block.php:1360
+msgid "Creator"
+msgstr "Interpret"
-#: airtime_mvc/application/models/Block.php:868
-#: airtime_mvc/application/models/Block.php:924
-#: airtime_mvc/application/models/Playlist.php:851
-#: airtime_mvc/application/models/Playlist.php:895
-msgid "Can't set cue out to be greater than file length."
-msgstr "Cue In darf nicht größer als die Gesamtlänge der Datei sein."
+#: airtime_mvc/application/services/HistoryService.php:1119
+#: airtime_mvc/application/controllers/LocaleController.php:78
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
+#: airtime_mvc/application/models/Block.php:1352
+msgid "Album"
+msgstr "Album"
-#: airtime_mvc/application/models/Block.php:879
-#: airtime_mvc/application/models/Block.php:900
-#: airtime_mvc/application/models/Playlist.php:843
-#: airtime_mvc/application/models/Playlist.php:868
-msgid "Can't set cue in to be larger than cue out."
-msgstr "Cue In darf nicht größer als Cue Out sein."
+#: airtime_mvc/application/services/HistoryService.php:1120
+#: airtime_mvc/application/services/HistoryService.php:1177
+#: airtime_mvc/application/controllers/LocaleController.php:91
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
+#: airtime_mvc/application/models/Block.php:1369
+msgid "Length"
+msgstr "Länge"
-#: airtime_mvc/application/models/Block.php:935
-#: airtime_mvc/application/models/Playlist.php:887
-msgid "Can't set cue out to be smaller than cue in."
-msgstr "Cue Out darf nicht kleiner als Cue In sein."
+#: airtime_mvc/application/services/HistoryService.php:1121
+#: airtime_mvc/application/controllers/LocaleController.php:85
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
+#: airtime_mvc/application/models/Block.php:1362
+msgid "Genre"
+msgstr "Genre"
-#: airtime_mvc/application/models/Block.php:1351
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
-msgid "Select criteria"
-msgstr " - Kriterien - "
+#: airtime_mvc/application/services/HistoryService.php:1122
+#: airtime_mvc/application/controllers/LocaleController.php:93
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
+#: airtime_mvc/application/models/Block.php:1371
+msgid "Mood"
+msgstr "Stimmung"
-#: airtime_mvc/application/models/Block.php:1353
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
-msgid "Bit Rate (Kbps)"
-msgstr "Bit Rate (Kbps)"
+#: airtime_mvc/application/services/HistoryService.php:1123
+#: airtime_mvc/application/controllers/LocaleController.php:87
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
+#: airtime_mvc/application/models/Block.php:1364
+msgid "Label"
+msgstr "Label"
-#: airtime_mvc/application/models/Block.php:1354
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
-#: airtime_mvc/application/controllers/LocaleController.php:80
-msgid "BPM"
-msgstr "BPM"
+#: airtime_mvc/application/services/HistoryService.php:1124
+#: airtime_mvc/application/services/HistoryService.php:1178
+#: airtime_mvc/application/controllers/LocaleController.php:81
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
+#: airtime_mvc/application/models/Block.php:1355
+msgid "Composer"
+msgstr "Komponist"
-#: airtime_mvc/application/models/Block.php:1358
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
-#: airtime_mvc/application/controllers/LocaleController.php:281
-#: airtime_mvc/application/layouts/scripts/layout.phtml:140
-msgid "Cue In"
-msgstr "Cue In"
+#: airtime_mvc/application/services/HistoryService.php:1125
+#: airtime_mvc/application/controllers/LocaleController.php:86
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
+#: airtime_mvc/application/models/Block.php:1363
+msgid "ISRC"
+msgstr "ISRC"
-#: airtime_mvc/application/models/Block.php:1359
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:282
-#: airtime_mvc/application/layouts/scripts/layout.phtml:147
-msgid "Cue Out"
-msgstr "Cue Out"
+#: airtime_mvc/application/services/HistoryService.php:1126
+#: airtime_mvc/application/services/HistoryService.php:1179
+#: airtime_mvc/application/controllers/LocaleController.php:83
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
+#: airtime_mvc/application/models/Block.php:1357
+msgid "Copyright"
+msgstr "Copyright"
-#: airtime_mvc/application/models/Block.php:1361
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
-#: airtime_mvc/application/controllers/LocaleController.php:84
-msgid "Encoded By"
-msgstr "Encoded By"
+#: airtime_mvc/application/services/HistoryService.php:1127
+#: airtime_mvc/application/controllers/LocaleController.php:100
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
+#: airtime_mvc/application/models/Block.php:1379
+msgid "Year"
+msgstr "Jahr"
-#: airtime_mvc/application/models/Block.php:1366
-msgid "Upload Time"
-msgstr ""
+#: airtime_mvc/application/services/HistoryService.php:1128
+msgid "Track"
+msgstr "Titel"
-#: airtime_mvc/application/models/Block.php:1367
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
-#: airtime_mvc/application/controllers/LocaleController.php:89
-msgid "Last Modified"
-msgstr "geändert am"
+#: airtime_mvc/application/services/HistoryService.php:1129
+#: airtime_mvc/application/controllers/LocaleController.php:82
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
+#: airtime_mvc/application/models/Block.php:1356
+msgid "Conductor"
+msgstr "Dirigent"
-#: airtime_mvc/application/models/Block.php:1368
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
-#: airtime_mvc/application/controllers/LocaleController.php:90
-msgid "Last Played"
-msgstr "Zuletzt gespielt"
+#: airtime_mvc/application/services/HistoryService.php:1130
+#: airtime_mvc/application/controllers/LocaleController.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
+#: airtime_mvc/application/models/Block.php:1365
+msgid "Language"
+msgstr "Sprache"
-#: airtime_mvc/application/models/Block.php:1370
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
-#: airtime_mvc/application/controllers/LocaleController.php:92
-msgid "Mime"
-msgstr "Mime"
+#: airtime_mvc/application/services/HistoryService.php:1155
+#: airtime_mvc/application/forms/EditHistoryItem.php:32
+msgid "Start Time"
+msgstr "Startzeit"
-#: airtime_mvc/application/models/Block.php:1372
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
-#: airtime_mvc/application/controllers/LocaleController.php:94
-msgid "Owner"
-msgstr "Besitzer"
+#: airtime_mvc/application/services/HistoryService.php:1156
+#: airtime_mvc/application/forms/EditHistoryItem.php:44
+msgid "End Time"
+msgstr "Endzeit"
-#: airtime_mvc/application/models/Block.php:1373
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
-#: airtime_mvc/application/controllers/LocaleController.php:95
-msgid "Replay Gain"
-msgstr "Replay Gain"
+#: airtime_mvc/application/services/HistoryService.php:1176
+msgid "Played"
+msgstr "Abgespielt"
-#: airtime_mvc/application/models/Block.php:1374
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
-msgid "Sample Rate (kHz)"
-msgstr "Sample Rate (kHz)"
-
-#: airtime_mvc/application/models/Block.php:1376
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
-#: airtime_mvc/application/controllers/LocaleController.php:97
-msgid "Track Number"
-msgstr "Titelnummer"
-
-#: airtime_mvc/application/models/Block.php:1377
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
-#: airtime_mvc/application/controllers/LocaleController.php:98
-msgid "Uploaded"
-msgstr "Hochgeladen"
-
-#: airtime_mvc/application/models/Block.php:1378
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
-#: airtime_mvc/application/controllers/LocaleController.php:99
-msgid "Website"
-msgstr "Webseite"
-
-#: airtime_mvc/application/models/Block.php:1383
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
-#: airtime_mvc/application/controllers/LocaleController.php:151
-msgid "Select modifier"
-msgstr " - Attribut - "
-
-#: airtime_mvc/application/models/Block.php:1384
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
-#: airtime_mvc/application/controllers/LocaleController.php:152
-msgid "contains"
-msgstr "enthält"
-
-#: airtime_mvc/application/models/Block.php:1385
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
-#: airtime_mvc/application/controllers/LocaleController.php:153
-msgid "does not contain"
-msgstr "enthält nicht"
-
-#: airtime_mvc/application/models/Block.php:1386
-#: airtime_mvc/application/models/Block.php:1390
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
-#: airtime_mvc/application/controllers/LocaleController.php:154
-msgid "is"
-msgstr "ist"
-
-#: airtime_mvc/application/models/Block.php:1387
-#: airtime_mvc/application/models/Block.php:1391
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
-#: airtime_mvc/application/controllers/LocaleController.php:155
-msgid "is not"
-msgstr "ist nicht"
-
-#: airtime_mvc/application/models/Block.php:1388
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
-#: airtime_mvc/application/controllers/LocaleController.php:156
-msgid "starts with"
-msgstr "beginnt mit"
-
-#: airtime_mvc/application/models/Block.php:1389
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
-#: airtime_mvc/application/controllers/LocaleController.php:157
-msgid "ends with"
-msgstr "endet mit"
-
-#: airtime_mvc/application/models/Block.php:1392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
-#: airtime_mvc/application/controllers/LocaleController.php:158
-msgid "is greater than"
-msgstr "ist größer als"
-
-#: airtime_mvc/application/models/Block.php:1393
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
-#: airtime_mvc/application/controllers/LocaleController.php:159
-msgid "is less than"
-msgstr "ist kleiner als"
-
-#: airtime_mvc/application/models/Block.php:1394
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
-#: airtime_mvc/application/controllers/LocaleController.php:160
-msgid "is in the range"
-msgstr "ist im Bereich"
-
-#: airtime_mvc/application/models/Scheduler.php:73
-msgid "Cannot move items out of linked shows"
-msgstr "Inhalte aus verknüpften Sendungen können nicht verschoben werden"
-
-#: airtime_mvc/application/models/Scheduler.php:119
-msgid "The schedule you're viewing is out of date! (sched mismatch)"
-msgstr "Der Kalender den sie sehen ist nicht mehr aktuell!(Kalender falsch zugeordnet)"
-
-#: airtime_mvc/application/models/Scheduler.php:124
-msgid "The schedule you're viewing is out of date! (instance mismatch)"
-msgstr "Der Kalender den sie sehen ist nicht mehr aktuell! (Instanz falsch zugeordnet)"
-
-#: airtime_mvc/application/models/Scheduler.php:132
-#: airtime_mvc/application/models/Scheduler.php:458
-#: airtime_mvc/application/models/Scheduler.php:490
-msgid "The schedule you're viewing is out of date!"
-msgstr "Der Kalender den sie sehen ist nicht mehr aktuell!"
-
-#: airtime_mvc/application/models/Scheduler.php:142
+#: airtime_mvc/application/controllers/LibraryController.php:31
+#: airtime_mvc/application/controllers/PlaylistController.php:147
#, php-format
-msgid "You are not allowed to schedule show %s."
-msgstr "Sie haben nicht die erforderliche Berechtigung einen Termin für die Sendung %s zu festzulegen."
+msgid "%s not found"
+msgstr "%s nicht gefunden"
-#: airtime_mvc/application/models/Scheduler.php:146
-msgid "You cannot add files to recording shows."
-msgstr "Einer Sendungsaufzeichnung können keine Dateien hinzugefügt werden."
+#: airtime_mvc/application/controllers/LibraryController.php:40
+#: airtime_mvc/application/controllers/PlaylistController.php:168
+msgid "Something went wrong."
+msgstr "Etwas ist falsch gelaufen."
-#: airtime_mvc/application/models/Scheduler.php:152
+#: airtime_mvc/application/controllers/LibraryController.php:95
+#: airtime_mvc/application/controllers/ShowbuilderController.php:136
+msgid "Preview"
+msgstr "Vorschau"
+
+#: airtime_mvc/application/controllers/LibraryController.php:115
+#: airtime_mvc/application/controllers/LibraryController.php:177
+#: airtime_mvc/application/controllers/LibraryController.php:200
+msgid "Add to Playlist"
+msgstr "Zur Playlist hinzufügen"
+
+#: airtime_mvc/application/controllers/LibraryController.php:117
+msgid "Add to Smart Block"
+msgstr "Zum Smart Block hinzufügen"
+
+#: airtime_mvc/application/controllers/LibraryController.php:123
+#: airtime_mvc/application/controllers/LocaleController.php:66
+msgid "Edit Metadata"
+msgstr "Metadaten ändern"
+
+#: airtime_mvc/application/controllers/LibraryController.php:131
+#: airtime_mvc/application/controllers/ScheduleController.php:712
+msgid "Download"
+msgstr "Download"
+
+#: airtime_mvc/application/controllers/LibraryController.php:147
+msgid "View track"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:148
+msgid "Remove track"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:154
+#: airtime_mvc/application/controllers/LibraryController.php:159
+msgid "Upload track"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:169
+msgid "Duplicate Playlist"
+msgstr "Duplizierte Playlist"
+
+#: airtime_mvc/application/controllers/LibraryController.php:213
+msgid "No action available"
+msgstr "Keine Aktion verfügbar"
+
+#: airtime_mvc/application/controllers/LibraryController.php:233
+msgid "You don't have permission to delete selected items."
+msgstr "Sie haben nicht die erforderliche Berechtigung die gewählten Objekte zu löschen."
+
+#: airtime_mvc/application/controllers/LibraryController.php:279
+msgid "Could not delete file because it is scheduled in the future."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:282
+msgid "Could not delete file(s)."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:322
#, php-format
-msgid "The show %s is over and cannot be scheduled."
-msgstr "Die Sendung %s ist beendet und kann daher nicht verändert werden."
+msgid "Copy of %s"
+msgstr "Kopie von %s"
-#: airtime_mvc/application/models/Scheduler.php:159
-#, php-format
-msgid "The show %s has been previously updated!"
-msgstr "Die Sendung %s wurde bereits aktualisiert!"
+#: airtime_mvc/application/controllers/WebstreamController.php:28
+#: airtime_mvc/application/controllers/WebstreamController.php:32
+msgid "Untitled Webstream"
+msgstr "Unbenannter Webstream"
-#: airtime_mvc/application/models/Scheduler.php:178
-msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
-msgstr "Inhalte in verknüpften Sendungen können nicht während der Sendung geändert werden"
+#: airtime_mvc/application/controllers/WebstreamController.php:150
+msgid "Webstream saved."
+msgstr "Webstream gespeichert."
-#: airtime_mvc/application/models/Scheduler.php:195
-msgid "Cannot schedule a playlist that contains missing files."
-msgstr ""
+#: airtime_mvc/application/controllers/WebstreamController.php:158
+msgid "Invalid form values."
+msgstr "Ungültige Formularwerte."
-#: airtime_mvc/application/models/Scheduler.php:216
-#: airtime_mvc/application/models/Scheduler.php:305
-msgid "A selected File does not exist!"
-msgstr "Eine der gewählten Dateien existiert nicht!"
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
-#: airtime_mvc/application/configs/navigation.php:40
-msgid "Weekly Schedule"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
-#: airtime_mvc/application/forms/Player.php:77
-msgid "Preview:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
-#: airtime_mvc/application/configs/navigation.php:34
-msgid "Player"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
-#: airtime_mvc/application/controllers/LocaleController.php:362
-#: airtime_mvc/application/controllers/LocaleController.php:390
-msgid "Close"
-msgstr "Schließen"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Add this show"
-msgstr "Sendung hinzufügen"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Update show"
-msgstr "Sendung aktualisieren"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
-msgid "What"
-msgstr "Was"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
-msgid "When"
-msgstr "Wann"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
-msgid "Live Stream Input"
-msgstr "Live Stream Input"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
-msgid "Who"
-msgstr "Wer"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
-msgid "Style"
-msgstr "Farbe"
-
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
-#: airtime_mvc/application/controllers/LocaleController.php:273
-msgid "Start"
-msgstr "Beginn"
-
-#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
-msgid "Password Reset"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
-msgid "Email Sent!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
-msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
-msgid "Back"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
-msgid "New password"
-msgstr "Neues Passwort"
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
-msgid "Please enter and confirm your new password in the fields below."
-msgstr "Bitte geben sie Ihr neues Passwort ein und bestätigen es im folgenden Feld."
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:3
-#: airtime_mvc/application/forms/Login.php:83
-msgid "Login"
-msgstr "Anmeldung"
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:7
-#, php-format
-msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:97
-msgid "Playout History"
-msgstr "Playout Verlauf"
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
-msgid "Log Sheet"
-msgstr "Protokoll"
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
-msgid "File Summary"
-msgstr "Dateiübersicht"
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
-msgid "Show Summary"
-msgstr "Sendungsübersicht"
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
-msgid "Your trial expires in"
-msgstr "Ihre Testperiode endet in"
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
-msgid "days"
-msgstr "Tage"
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-#, php-format
-msgid "Purchase an %s Pro plan!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-msgid "My Account"
-msgstr "Mein Konto"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
-msgid "Previous:"
-msgstr "Zuvor:"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
-msgid "Next:"
-msgstr "Danach:"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
-msgid "Source Streams"
-msgstr "Source Streams"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
-msgid "Master Source"
-msgstr "Master Source"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
-msgid "Show Source"
-msgstr "Show Source"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
-msgid "ON AIR"
-msgstr "ON AIR"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
-msgid "Listen"
-msgstr "Anhören"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
-msgid "Logout"
-msgstr "Abmelden"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
-msgid "Drop files here or click to browse your computer."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
-#: airtime_mvc/application/controllers/LocaleController.php:314
-msgid "in use"
-msgstr "In Verwendung"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
-#: airtime_mvc/application/controllers/LocaleController.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:401
-msgid "All"
-msgstr "Alle"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
-msgid "Failed"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
-msgid "Pending"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
-msgid "Recent Uploads"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
-#: airtime_mvc/application/configs/navigation.php:120
-msgid "Account Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
-msgid "Upgrade today to get more listeners and storage space!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
-msgid "View Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
-msgid "About"
-msgstr "Über"
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
-#, php-format
-msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
-#, php-format
-msgid "%1$s %2$s is distributed under the %3$s"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
-#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
-msgid "Live stream"
-msgstr "Live Stream"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
-msgid "Share"
-msgstr "Teilen"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
-msgid "Select stream:"
-msgstr "Stream wählen:"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
-msgid "mute"
-msgstr "Stummschalten"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
-msgid "unmute"
-msgstr "Lautschalten"
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
-#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
-#, php-format
-msgid "Welcome to %s!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
-#, php-format
-msgid "Here's how you can get started using %s to automate your broadcasts: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
-msgid "Upload audio tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
-msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
-msgid "Schedule a show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
-msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
-msgid "Add tracks to your show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
-msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
-msgid "Now you're good to go!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
-#, php-format
-msgid "For more detailed help, read the %suser manual%s."
-msgstr "Für weitere ausführliche Hilfe, lesen sie bitte das %sBenutzerhandbuch%s."
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
-msgid "Listeners"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
-msgid "Stream Data Collection Status"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
-#: airtime_mvc/application/views/scripts/error/error.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
-msgid "An error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
-msgid "Access Denied!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
-msgid "You do not have permission to access this page!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
-#: airtime_mvc/application/views/scripts/error/error.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
-#: airtime_mvc/application/configs/navigation.php:143
-msgid "Help"
-msgstr "Hilfe"
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
-msgid "Page not found!"
-msgstr "Seite nicht gefunden!"
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
-msgid "We couldn't find the page you were looking for."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error.phtml:12
-msgid "Looks like the page you were looking for doesn't exist!"
-msgstr "Scheinbar existiert die Seite die sie suchen nicht!"
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
-msgid "Oops!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
-msgid "Something went wrong!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
-msgid "Bad Request!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
-msgid "The requested action is not supported!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
-msgid "Viewing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
-msgid "Editing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:3
-msgid "File import in progress..."
-msgstr "Datei-Import in Bearbeitung..."
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:10
-#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
-msgid "Advanced Search Options"
-msgstr "Erweiterte Suchoptionen"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
-#: airtime_mvc/application/forms/Player.php:15
-#: airtime_mvc/application/forms/EditAudioMD.php:24
-msgid "Title:"
-msgstr "Titel:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
-#: airtime_mvc/application/forms/EditAudioMD.php:34
-msgid "Creator:"
-msgstr "Interpret:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
-#: airtime_mvc/application/forms/EditAudioMD.php:44
-msgid "Album:"
-msgstr "Album:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
-msgid "Track:"
-msgstr "Titel-Nr.:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
-msgid "Length:"
-msgstr "Länge:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
-msgid "Sample Rate:"
-msgstr "Samplerate:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
-msgid "Bit Rate:"
-msgstr "Bitrate:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
-#: airtime_mvc/application/forms/EditAudioMD.php:115
-msgid "Mood:"
-msgstr "Stimmung:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
-#: airtime_mvc/application/forms/EditAudioMD.php:62
-#: airtime_mvc/application/forms/AddShowWhat.php:45
-msgid "Genre:"
-msgstr "Genre:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
-#: airtime_mvc/application/forms/EditAudioMD.php:72
-msgid "Year:"
-msgstr "Jahr:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
-#: airtime_mvc/application/forms/EditAudioMD.php:85
-msgid "Label:"
-msgstr "Label:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
-#: airtime_mvc/application/forms/EditAudioMD.php:125
-msgid "BPM:"
-msgstr "BPM:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
-#: airtime_mvc/application/forms/EditAudioMD.php:95
-msgid "Composer:"
-msgstr "Komponist:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
-#: airtime_mvc/application/forms/EditAudioMD.php:105
-msgid "Conductor:"
-msgstr "Dirigent:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
-#: airtime_mvc/application/forms/EditAudioMD.php:135
-msgid "Copyright:"
-msgstr "Copyright:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
-msgid "Isrc Number:"
-msgstr "ISRC-Nr.:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
-#: airtime_mvc/application/forms/EditAudioMD.php:155
-msgid "Website:"
-msgstr "Webseite:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
-#: airtime_mvc/application/forms/EditUser.php:119
-#: airtime_mvc/application/forms/EditAudioMD.php:165
-#: airtime_mvc/application/forms/Login.php:68
-msgid "Language:"
-msgstr "Sprache:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
-msgid "File Path:"
-msgstr "Dateipfad:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
-#: airtime_mvc/application/forms/AddShowWhat.php:26
-msgid "Name:"
-msgstr "Name:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
-#: airtime_mvc/application/forms/AddShowWhat.php:54
-msgid "Description:"
-msgstr "Beschreibung:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
-msgid "Web Stream"
-msgstr "Web Stream"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
-msgid "Dynamic Smart Block"
-msgstr "Dynamischer Smart Block"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
-msgid "Static Smart Block"
-msgstr "Statischer Smart Block"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
-msgid "Audio Track"
-msgstr "Titel-Nr."
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
-msgid "Playlist Contents: "
-msgstr "Playlist Inhalt: "
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
-msgid "Static Smart Block Contents: "
-msgstr "Statischer Smart Block Inhalt: "
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
-msgid "Dynamic Smart Block Criteria: "
-msgstr "Dynamische Smart Block Kriterien: "
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
-msgid "Limit to "
-msgstr "Beschränken auf "
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
-#: airtime_mvc/application/forms/AddShowWhat.php:36
-msgid "URL:"
-msgstr "URL:"
-
-#: airtime_mvc/application/views/scripts/form/login.phtml:41
-msgid "Forgot your password?"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
-#, php-format
-msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
-#, php-format
-msgid "Click the box below to promote your station on %s."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
-msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
-msgstr "(Um ihre Radiostation bewerben zu können, muß 'Support Feedback senden' aktiviert sein)"
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
-msgid "(Required)"
-msgstr "(Erforderlich)"
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
-msgid "(for verification purposes only, will not be published)"
-msgstr "(Ausschließlich zu Kontrollzwecken, wird nicht veröffentlicht)"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
-msgid "Choose folder"
-msgstr "Ordner wählen"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
-msgid "Set"
-msgstr "Festlegen"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
-msgid "Current Import Folder:"
-msgstr "Aktueller Import Ordner:"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
-msgid "Add"
-msgstr "Hinzufüg."
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
-#, php-format
-msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
-msgid "Remove watched directory"
-msgstr "Überwachten Ordner entfernen"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
-msgid "You are not watching any media folders."
-msgstr "Sie überwachen keine Medienordner."
-
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
-msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
-msgid "Live Broadcasting"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
-msgid "Use these settings in your broadcasting software to stream live at any time."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
-msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
-msgid "Choose Show Instance"
-msgstr "Folge wählen"
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
-#: airtime_mvc/application/forms/EditHistoryItem.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:400
-msgid "No Show"
-msgstr "Keine Sendung"
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
-msgid "Find"
-msgstr "Finden"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
-msgid "Choose Days:"
-msgstr "Tage wählen:"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
-#: airtime_mvc/application/forms/AddShowStyle.php:64
-#: airtime_mvc/application/forms/GeneralPreferences.php:53
-msgid "Remove"
-msgstr "Entfernen"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
-msgid "Stream "
-msgstr "Stream "
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
-msgid "Additional Options"
-msgstr "Erweiterte Optionen"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
-msgid "The following info will be displayed to listeners in their media player:"
-msgstr "Die folgenden Informationen werden den Zuhörern in ihren Playern angezeigt:"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
-msgid "(Your radio station website)"
-msgstr "(Webseite Ihres Radiosenders)"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
-msgid "Stream URL: "
-msgstr "Stream URL: "
-
-#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
-msgid "Find Shows"
-msgstr "Suche Sendungen"
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
-msgid "TuneIn Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
-msgid "SoundCloud Settings"
-msgstr "SoundCloud Einstellungen"
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
-msgid "Dangerous Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
-msgid "Search Criteria:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
-msgid "New Criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
-msgid "or"
-msgstr "oder"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
-msgid "and"
-msgstr "und"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
-msgid "New Modifier"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
-msgid " to "
-msgstr " bis "
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
-msgid "files meet the criteria"
-msgstr "Dateien entsprechen den Kriterien"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
-msgid "file meets the criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
-msgid "Filter History"
-msgstr "Filter Verlauf"
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
-#: airtime_mvc/application/configs/navigation.php:61
-msgid "My Profile"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
-#, php-format
-msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
-#: airtime_mvc/application/forms/Preferences.php:40
-#: airtime_mvc/application/forms/PasswordChange.php:43
-#: airtime_mvc/application/forms/AddUser.php:110
-#: airtime_mvc/application/forms/BillingClient.php:193
-#: airtime_mvc/application/forms/SupportSettings.php:131
-#: airtime_mvc/application/forms/EditHistory.php:131
-#: airtime_mvc/application/controllers/LocaleController.php:294
-msgid "Save"
-msgstr "Speichern"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
-msgid "Repeat Days:"
-msgstr "Wiederholen Tage:"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
-msgid "Register Airtime"
-msgstr "Airtime registrieren"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
-#: airtime_mvc/application/forms/GeneralPreferences.php:43
-msgid "Note: Anything larger than 600x600 will be resized."
-msgstr "Hinweis: Grafiken, die größer als 600x600 sind, werden verkleinert."
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
-msgid "Show me what I am sending "
-msgstr "Zeige mir was ich sende "
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
-msgid "Terms and Conditions"
-msgstr "Allgemeine Geschäftsbedingungen"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
-msgid "Creating File Summary Template"
-msgstr "Erstelle Dateiübersichtsvorlage"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
-msgid "Creating Log Sheet Template"
-msgstr "Erstelle Protokollvorlage"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
-msgid "Name"
-msgstr "Name"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
-msgid "Add more elements"
-msgstr "Weitere Elemente hinzufügen"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
-msgid "Add New Field"
-msgstr "Neues Feld hinzufügen"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
-msgid "Set Default Template"
-msgstr "Standardvorlage wählen"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
-msgid "Playout History Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
-msgid "Log Sheet Templates"
-msgstr "Protokollvorlagen"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
-msgid "New Log Sheet Template"
-msgstr "Neue Protokollvorlage"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
-msgid "No Log Sheet Templates"
-msgstr "Keine Protokollvorlagen"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
-#: airtime_mvc/application/controllers/LocaleController.php:397
-msgid "Set Default"
-msgstr "Standard festlegen"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
-msgid "File Summary Templates"
-msgstr "Dateiübersichtsvorlagen"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
-msgid "New File Summary Template"
-msgstr "Neue Dateiübersichtsvorlage"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
-msgid "No File Summary Templates"
-msgstr "Keine Dateiübersichtsvorlagen"
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
-msgid "Disk Space"
-msgstr "Speicherplatz"
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
-#: airtime_mvc/application/controllers/LocaleController.php:315
-msgid "Disk"
-msgstr "Disk"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
-#: airtime_mvc/application/forms/AddShowWhen.php:89
-msgid "Duration:"
-msgstr "Dauer:"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
-msgid "Toggle Details"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
-msgid "Playlist crossfade"
-msgstr "Playlist Crossfade"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-msgid "Remove all content from this smart block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Clear"
-msgstr "Leeren"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "Fade in: "
-msgstr "Fade In: "
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "(ss.t)"
-msgstr "(ss.t)"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-msgid "Fade out: "
-msgstr "Fade Out: "
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
-#: airtime_mvc/application/forms/EditAudioMD.php:186
-#: airtime_mvc/application/forms/EditHistory.php:141
-#: airtime_mvc/application/controllers/LocaleController.php:295
-#: airtime_mvc/application/controllers/LocaleController.php:318
-msgid "Cancel"
-msgstr "Abbrechen"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
-msgid "No smart block currently open"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
-msgid "Show Waveform"
-msgstr "Wellenform anzeigen"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-msgid "Cue In: "
-msgstr "Cue In: "
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "(hh:mm:ss.t)"
-msgstr "(hh:mm:ss.t)"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "Cue Out: "
-msgstr "Cue Out: "
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
-msgid "Original Length:"
-msgstr "Originallänge:"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
-msgid "Expand Static Block"
-msgstr "Statischen Block erweitern"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
-msgid "Expand Dynamic Block"
-msgstr "Dynamischen Block erweitern"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
-msgid "Choose some search criteria above and click Generate to create this playlist."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
-msgid "A track list will be generated when you schedule this smart block into a show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
-msgid "Drag tracks here from your library to add them to the playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-msgid "Shuffle playlist"
-msgstr "Playlist mischen"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
-msgid "Shuffle"
-msgstr "Mischen"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Empty playlist content"
-msgstr "Playlist leeren"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-msgid "Save playlist"
-msgstr "Playlist speichern"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
-msgid "No open playlist"
-msgstr "Keine Playlist geöffnet"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
-msgid "previous"
-msgstr "zurück"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
-msgid "play"
-msgstr "Wiedergabe"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
-msgid "pause"
-msgstr "Pause"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
-msgid "next"
-msgstr "weiter"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
-msgid "stop"
-msgstr "Stop"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
-msgid "max volume"
-msgstr "Maximale Lautstärke"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
-msgid "Update Required"
-msgstr "Update erforderlich"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
-#, php-format
-msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
-msgstr "Um die Medien zu spielen, müssen sie entweder Ihren Browser oder Ihr %s Flash-Plugin %s aktualisieren."
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
-msgid "Stream Settings"
-msgstr "Stream Einstellungen"
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
-msgid "Global"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
-msgid "dB"
-msgstr "dB"
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
-msgid "Output Streams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
-#: airtime_mvc/application/controllers/LocaleController.php:166
-msgid "Manage Media Folders"
-msgstr "Medienverzeichnisse verwalten"
-
-#: airtime_mvc/application/views/scripts/preference/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:56
-msgid "General"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
-msgid "Description"
-msgstr "Beschreibung"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
-msgid "Stream URL:"
-msgstr "Stream URL:"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
-msgid "Default Length:"
-msgstr "Standard Dauer:"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
-msgid "No webstream"
-msgstr "Kein Webstream"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
-msgid "Manage Users"
-msgstr "Benutzer verwalten"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
-msgid "New User"
-msgstr "Neuer Benutzer"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
-msgid "id"
-msgstr "ID"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
-#: airtime_mvc/application/forms/PasswordRestore.php:25
-msgid "Username"
-msgstr "Benutzername"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
-msgid "First Name"
-msgstr "Vorname"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
-msgid "Last Name"
-msgstr "Nachname"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
-msgid "User Type"
-msgstr "Benutzertyp"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
-#, php-format
-msgid "Super Admin details can be changed in your Billing Settings."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
-#: airtime_mvc/application/controllers/LocaleController.php:74
-#: airtime_mvc/application/layouts/scripts/layout.phtml:78
-msgid "Tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
-#: airtime_mvc/application/controllers/LocaleController.php:104
-#: airtime_mvc/application/layouts/scripts/layout.phtml:80
-msgid "Playlists"
-msgstr "Playlisten"
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
-#: airtime_mvc/application/controllers/LocaleController.php:105
-#: airtime_mvc/application/layouts/scripts/layout.phtml:82
-msgid "Smart Blocks"
-msgstr "Smart Blöcke"
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
-#: airtime_mvc/application/layouts/scripts/layout.phtml:84
-msgid "Webstreams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
-#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
-#: airtime_mvc/application/layouts/scripts/layout.phtml:76
-msgid "Dashboard"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:12
-msgid "Radio Page"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:19
-msgid "Calendar"
-msgstr "Kalender"
-
-#: airtime_mvc/application/configs/navigation.php:26
-msgid "Widgets"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:48
-msgid "Settings"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:67
-msgid "Users"
-msgstr "Benutzer"
-
-#: airtime_mvc/application/configs/navigation.php:74
-msgid "Streams"
-msgstr "Streams"
-
-#: airtime_mvc/application/configs/navigation.php:82
-msgid "Analytics"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:90
-msgid "Listener Stats"
-msgstr "Hörerstatistiken"
-
-#: airtime_mvc/application/configs/navigation.php:104
-msgid "History Templates"
-msgstr "Verlaufsvorlagen"
-
-#: airtime_mvc/application/configs/navigation.php:113
-msgid "Billing"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:127
-msgid "Account Details"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:134
-msgid "View Invoices"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:150
-msgid "Getting Started"
-msgstr "Kurzanleitung"
-
-#: airtime_mvc/application/configs/navigation.php:157
-msgid "FAQ"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:162
-msgid "User Manual"
-msgstr "Benutzerhandbuch"
-
-#: airtime_mvc/application/configs/navigation.php:167
-msgid "File a Support Ticket"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:12
-msgid "Background Colour:"
-msgstr "Hintergrundfarbe:"
-
-#: airtime_mvc/application/forms/AddShowStyle.php:31
-msgid "Text Colour:"
-msgstr "Textfarbe:"
-
-#: airtime_mvc/application/forms/AddShowStyle.php:49
-msgid "Current Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:72
-msgid "Show Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:87
-msgid "Logo Preview:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:19
-msgid "Push metadata to your station on TuneIn?"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:24
-msgid "Station ID:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:30
-msgid "Partner Key:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:36
-msgid "Partner Id:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:77
-#: airtime_mvc/application/forms/TuneInPreferences.php:86
-msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:14
-msgid "Now Playing"
-msgstr "Jetzt"
-
-#: airtime_mvc/application/forms/Player.php:25
-msgid "Select Stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:28
-msgid "Auto detect the most appropriate stream to use."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:29
-msgid "Select a stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:41
-msgid " - Mobile friendly"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:45
-msgid " - The player does not support Opus streams."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:71
-msgid "Embeddable code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:72
-msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:37
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
-#: airtime_mvc/application/forms/Login.php:41
-#: airtime_mvc/application/forms/AddUser.php:29
-msgid "Username:"
-msgstr "Benutzername:"
-
-#: airtime_mvc/application/forms/EditUser.php:48
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
-#: airtime_mvc/application/forms/Login.php:54
-#: airtime_mvc/application/forms/AddUser.php:38
-#: airtime_mvc/application/forms/BillingClient.php:172
-msgid "Password:"
-msgstr "Passwort:"
-
-#: airtime_mvc/application/forms/EditUser.php:57
-#: airtime_mvc/application/forms/AddUser.php:46
-#: airtime_mvc/application/forms/BillingClient.php:181
-msgid "Verify Password:"
-msgstr "Passwort bestätigen:"
-
-#: airtime_mvc/application/forms/EditUser.php:67
-#: airtime_mvc/application/forms/AddUser.php:55
-msgid "Firstname:"
-msgstr "Vorname:"
-
-#: airtime_mvc/application/forms/EditUser.php:75
-#: airtime_mvc/application/forms/AddUser.php:61
-msgid "Lastname:"
-msgstr "Nachname:"
-
-#: airtime_mvc/application/forms/EditUser.php:83
-#: airtime_mvc/application/forms/RegisterAirtime.php:51
-#: airtime_mvc/application/forms/AddUser.php:67
-#: airtime_mvc/application/forms/SupportSettings.php:43
-msgid "Email:"
-msgstr "E-Mail:"
-
-#: airtime_mvc/application/forms/EditUser.php:94
-#: airtime_mvc/application/forms/AddUser.php:76
-msgid "Mobile Phone:"
-msgstr "Mobiltelefon:"
-
-#: airtime_mvc/application/forms/EditUser.php:102
-#: airtime_mvc/application/forms/AddUser.php:82
-msgid "Skype:"
-msgstr "Skype:"
-
-#: airtime_mvc/application/forms/EditUser.php:110
-#: airtime_mvc/application/forms/AddUser.php:88
-msgid "Jabber:"
-msgstr "Jabber:"
-
-#: airtime_mvc/application/forms/EditUser.php:129
-msgid "Interface Timezone:"
-msgstr "Interface Zeitzone:"
-
-#: airtime_mvc/application/forms/EditUser.php:155
-#: airtime_mvc/application/forms/AddUser.php:120
-msgid "Login name is not unique."
-msgstr "Benutzername ist bereits vorhanden."
-
-#: airtime_mvc/application/forms/AddShowRR.php:10
-msgid "Record from Line In?"
-msgstr "Aufzeichnen von Line-In?"
-
-#: airtime_mvc/application/forms/AddShowRR.php:16
-msgid "Rebroadcast?"
-msgstr "Wiederholen?"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:16
-msgid "'%value%' does not fit the time format 'HH:mm'"
-msgstr "'%value%' ist nicht im Format 'HH:mm'"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:22
-msgid "Start Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:37
-msgid "In the Future:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:64
-msgid "End Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:98
-msgid "Timezone:"
-msgstr "Zeitzone:"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:107
-msgid "Repeats?"
-msgstr "Wiederholungen?"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:139
-msgid "Cannot create show in the past"
-msgstr "Es kann keine Sendung für einen vergangenen Zeitpunkt geplant werden"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:147
-msgid "Cannot modify start date/time of the show that is already started"
-msgstr "Startdatum/Zeit können nicht geändert werden, wenn die Sendung bereits begonnen hat."
-
-#: airtime_mvc/application/forms/AddShowWhen.php:164
-msgid "Cannot have duration < 0m"
-msgstr "Die Dauer einer Sendung kann nicht kürzer als 0 Minuten sein."
-
-#: airtime_mvc/application/forms/AddShowWhen.php:168
-msgid "Cannot have duration 00h 00m"
-msgstr "Die Dauer einer Sendung kann nicht 00h 00m sein"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:175
-msgid "Cannot have duration greater than 24h"
-msgstr "Die Dauer einer Sendung kann nicht länger als 24h sein"
-
-#: airtime_mvc/application/forms/AddShowWho.php:10
-msgid "Search Users:"
-msgstr "Suche Benutzer:"
-
-#: airtime_mvc/application/forms/AddShowWho.php:24
-msgid "DJs:"
-msgstr "DJs:"
-
-#: airtime_mvc/application/forms/PasswordChange.php:17
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
-msgid "Password"
-msgstr "Passwort"
-
-#: airtime_mvc/application/forms/PasswordChange.php:28
-msgid "Confirm new password"
-msgstr "Neues Passwort bestätigen"
-
-#: airtime_mvc/application/forms/PasswordChange.php:36
-msgid "Password confirmation does not match your password."
-msgstr "Passwortbestätigung stimmt nicht mit Passwort überein."
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
-msgid "Station Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
-#: airtime_mvc/application/forms/GeneralPreferences.php:127
-msgid "Station Timezone"
-msgstr "Sendestation Zeitzone"
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
-msgid "Auto Switch Off:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
-msgid "Auto Switch On:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
-msgid "Switch Transition Fade (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
-#: airtime_mvc/application/forms/GeneralPreferences.php:68
-#: airtime_mvc/application/forms/GeneralPreferences.php:82
-#: airtime_mvc/application/forms/GeneralPreferences.php:96
-msgid "Please enter a time in seconds (eg. 0.5)"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
-#: airtime_mvc/application/forms/AddShowLiveStream.php:48
-msgid "Host:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
-#: airtime_mvc/application/forms/AddShowLiveStream.php:54
-msgid "Port:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
-#: airtime_mvc/application/forms/AddShowLiveStream.php:60
-msgid "Mount:"
-msgstr ""
-
-#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
-msgid "Value is required and can't be empty"
-msgstr "Wert ist erforderlich und darf nicht leer sein"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:25
-#: airtime_mvc/application/forms/RegisterAirtime.php:30
-#: airtime_mvc/application/forms/SupportSettings.php:18
-msgid "Station Name"
-msgstr "Sendername"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:33
-msgid "Station Description"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:42
-#: airtime_mvc/application/forms/RegisterAirtime.php:106
-msgid "Station Logo:"
-msgstr "Sender Logo:"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:62
-msgid "Default Crossfade Duration (s):"
-msgstr "Standard Crossfade Dauer (s):"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:76
-msgid "Default Fade In (s):"
-msgstr "Standard Fade In (s):"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:90
-msgid "Default Fade Out (s):"
-msgstr "Standard Fade Out (s):"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:102
-msgid "Public Airtime API"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:103
-msgid "Required for embeddable schedule widget."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:105
-msgid "Disabled"
-msgstr "Deaktiviert"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:106
-msgid "Enabled"
-msgstr "Aktiviert"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:109
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
msgid ""
-"Enabling this feature will allow Airtime to provide schedule data\n"
-" to external widgets that can be embedded in your website."
+"To configure and use the embeddable player you must:
\n"
+" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
+" 2. Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/forms/GeneralPreferences.php:120
-msgid "Default Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:134
-msgid "Week Starts On"
-msgstr "Woche beginnt am"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:150
-msgid "Display login button on your Radio Page?"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:158
-#: airtime_mvc/application/controllers/LocaleController.php:249
-msgid "Sunday"
-msgstr "Sonntag"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:159
-#: airtime_mvc/application/controllers/LocaleController.php:250
-msgid "Monday"
-msgstr "Montag"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:160
-#: airtime_mvc/application/controllers/LocaleController.php:251
-msgid "Tuesday"
-msgstr "Dienstag"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:161
-#: airtime_mvc/application/controllers/LocaleController.php:252
-msgid "Wednesday"
-msgstr "Mittwoch"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:162
-#: airtime_mvc/application/controllers/LocaleController.php:253
-msgid "Thursday"
-msgstr "Donnerstag"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:163
-#: airtime_mvc/application/controllers/LocaleController.php:254
-msgid "Friday"
-msgstr "Freitag"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:164
-#: airtime_mvc/application/controllers/LocaleController.php:255
-msgid "Saturday"
-msgstr "Samstag"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
-msgid "Default License:"
-msgstr "Standard Lizenz:"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
-msgid "All rights are reserved"
-msgstr "Alle Rechte vorbehalten"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
-msgid "The work is in the public domain"
-msgstr "Die Rechte an dieser Arbeit sind gemeinfrei"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
-msgid "Creative Commons Attribution"
-msgstr "[CC-BY] Creative Commons Namensnennung"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
-msgid "Creative Commons Attribution Noncommercial"
-msgstr "[CC-BY-NC] Creative Commons Namensnennung, keine kommerzielle Nutzung"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
-msgid "Creative Commons Attribution No Derivative Works"
-msgstr "[CC-BY-ND] Creative Commons Namensnennung, keine Bearbeitung"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
-msgid "Creative Commons Attribution Share Alike"
-msgstr "[CC-BY-SA] Creative Commons Namensnennung, Weitergabe unter gleichen Bedingungen"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
-msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
-msgstr "[CC-BY-NC-ND] Creative Commons Namensnennung, keine kommerzielle Nutzung, keine Bearbeitung"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
-msgid "Creative Commons Attribution Noncommercial Share Alike"
-msgstr "[CC-BY-NC-SA] Creative Commons Namensnennung, keine kommerzielle Nutzung, Weitergabe unter gleichen Bedingungen"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
-msgid "Default Sharing Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
-msgid "Public"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
-msgid "Private"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:18
-#: airtime_mvc/application/forms/DateRange.php:16
-msgid "Date Start:"
-msgstr "Zeitpunkt Beginn:"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:37
-#: airtime_mvc/application/forms/ShowBuilder.php:65
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
-#: airtime_mvc/application/forms/DateRange.php:35
-#: airtime_mvc/application/forms/DateRange.php:63
-msgid "Invalid character entered"
-msgstr "Ungültiges Zeichen eingegeben"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:46
-#: airtime_mvc/application/forms/AddShowRepeats.php:56
-#: airtime_mvc/application/forms/DateRange.php:44
-msgid "Date End:"
-msgstr "Zeitpunkt Ende:"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:72
-#: airtime_mvc/application/forms/ShowBuilder.php:88
-msgid "Filter by Show"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:80
-msgid "All My Shows:"
-msgstr "Alle meine Sendungen:"
-
-#: airtime_mvc/application/forms/EditAudioMD.php:145
-msgid "ISRC Number:"
-msgstr "ISRC-Nr.:"
-
-#: airtime_mvc/application/forms/EditAudioMD.php:176
-msgid "OK"
-msgstr "OK"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
-msgid "Day must be specified"
-msgstr "Tag muß angegeben werden"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
-msgid "Time must be specified"
-msgstr "Zeit muß angegeben werden"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
-msgid "Must wait at least 1 hour to rebroadcast"
-msgstr "Das Wiederholen einer Sendung ist erst nach einer Stunde Wartezeit möglich."
-
-#: airtime_mvc/application/forms/AddShowWhat.php:30
-msgid "Untitled Show"
-msgstr "Unbenannte Sendung"
-
-#: airtime_mvc/application/forms/AddShowWhat.php:69
-msgid "Instance Description:"
-msgstr ""
-
-#: airtime_mvc/application/forms/DangerousPreferences.php:12
-msgid "Delete All Tracks in Library"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:39
-#: airtime_mvc/application/forms/SupportSettings.php:31
-msgid "Phone:"
-msgstr "Telefon:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:62
-#: airtime_mvc/application/forms/SupportSettings.php:54
-msgid "Station Web Site:"
-msgstr "Sender-Webseite:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:73
-#: airtime_mvc/application/forms/BillingClient.php:102
-#: airtime_mvc/application/forms/SupportSettings.php:65
-msgid "Country:"
-msgstr "Land:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:84
-#: airtime_mvc/application/forms/BillingClient.php:70
-#: airtime_mvc/application/forms/SupportSettings.php:76
-msgid "City:"
-msgstr "Stadt:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:96
-#: airtime_mvc/application/forms/SupportSettings.php:88
-msgid "Station Description:"
-msgstr "Sender Beschreibung:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:116
-#: airtime_mvc/application/forms/SupportSettings.php:98
-#: airtime_mvc/application/controllers/LocaleController.php:341
-msgid "Send support feedback"
-msgstr "Support Feedback senden"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:126
-#: airtime_mvc/application/forms/SupportSettings.php:108
-#, php-format
-msgid "Promote my station on %s"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:151
-#: airtime_mvc/application/forms/SupportSettings.php:120
-#, php-format
-msgid "By checking this box, I agree to %s's %sprivacy policy%s."
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:169
-#: airtime_mvc/application/forms/SupportSettings.php:143
-msgid "You have to agree to privacy policy."
-msgstr "Sie müssen die Datenschutzrichtlinien akzeptieren."
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:10
-msgid "Link:"
-msgstr "Verknüpfen:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:16
-msgid "Repeat Type:"
-msgstr "Wiederholungstyp:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:19
-msgid "weekly"
-msgstr "wöchentlich"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:20
-msgid "every 2 weeks"
-msgstr "jede zweite Woche"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:21
-msgid "every 3 weeks"
-msgstr "jede dritte Woche"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:22
-msgid "every 4 weeks"
-msgstr "jede vierte Woche"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:23
-msgid "monthly"
-msgstr "monatlich"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:32
-msgid "Select Days:"
-msgstr "Tage wählen:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:35
-#: airtime_mvc/application/controllers/LocaleController.php:256
-msgid "Sun"
-msgstr "So."
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:36
-#: airtime_mvc/application/controllers/LocaleController.php:257
-msgid "Mon"
-msgstr "Mo."
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:37
-#: airtime_mvc/application/controllers/LocaleController.php:258
-msgid "Tue"
-msgstr "Di."
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:38
-#: airtime_mvc/application/controllers/LocaleController.php:259
-msgid "Wed"
-msgstr "Mi."
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:39
-#: airtime_mvc/application/controllers/LocaleController.php:260
-msgid "Thu"
-msgstr "Do."
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:40
-#: airtime_mvc/application/controllers/LocaleController.php:261
-msgid "Fri"
-msgstr "Fr."
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:41
-#: airtime_mvc/application/controllers/LocaleController.php:262
-msgid "Sat"
-msgstr "Sa."
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:47
-msgid "Repeat By:"
-msgstr "Wiederholung von:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the month"
-msgstr "Tag des Monats"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the week"
-msgstr "Tag der Woche"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:69
-msgid "No End?"
-msgstr "Kein Enddatum?"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:106
-msgid "End date must be after start date"
-msgstr "Enddatum muß nach dem Startdatum liegen"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:113
-msgid "Please select a repeat day"
-msgstr "Bitte einen Tag zum Wiederholen wählen"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:10
-#, php-format
-msgid "Use %s Authentication:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:16
-msgid "Use Custom Authentication:"
-msgstr "Benutzerdefiniertes Login:"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:25
-msgid "Custom Username"
-msgstr "Benutzerdefinierter Benutzername"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:37
-msgid "Custom Password"
-msgstr "Benutzerdefiniertes Passwort"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:77
-msgid "Username field cannot be empty."
-msgstr "Das Feld Benutzername darf nicht leer sein."
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:82
-msgid "Password field cannot be empty."
-msgstr "Das Feld Passwort darf nicht leer sein."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
-msgid "Enabled:"
-msgstr "Aktiviert:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
-msgid "Mobile:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
-msgid "Stream Type:"
-msgstr "Stream Typ:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
-msgid "Service Type:"
-msgstr "Service Typ:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
-msgid "Channels:"
-msgstr "Kanäle:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "1 - Mono"
-msgstr "1 - Mono"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "2 - Stereo"
-msgstr "2 - Stereo"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
-msgid "Server"
-msgstr "Server"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
-msgid "Port"
-msgstr "Port"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
-msgid "Only numbers are allowed."
-msgstr "Es sind nur Zahlen erlaubt"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
-msgid "URL"
-msgstr "URL"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
-msgid "Mount Point"
-msgstr "Mount Point"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
-msgid "Admin User"
-msgstr "Admin Benutzer"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
-msgid "Admin Password"
-msgstr "Admin Passwort"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
-#: airtime_mvc/application/controllers/LocaleController.php:173
-msgid "Getting information from the server..."
-msgstr "Erhalte Information vom Server..."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
-msgid "Server cannot be empty."
-msgstr "Server darf nicht leer sein."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
-msgid "Port cannot be empty."
-msgstr "Port darf nicht leer sein."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
-msgid "Mount cannot be empty with Icecast server."
-msgstr "Mount darf nicht leer sein, wenn Icecast-Server verwendet wird."
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
-msgid "'%value%' is no valid email address in the basic format local-part@hostname"
-msgstr "'%value%' ist keine gültige E-Mail-Adresse im Format local-part@hostname"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
-msgid "'%value%' does not fit the date format '%format%'"
-msgstr "'%value%' entspricht nicht dem erforderlichen Datumsformat '%format%'"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
-msgid "'%value%' is less than %min% characters long"
-msgstr "'%value%' ist kürzer als %min% Zeichen lang"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
-msgid "'%value%' is more than %max% characters long"
-msgstr "'%value%' ist mehr als %max% Zeichen lang"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
-msgid "'%value%' is not between '%min%' and '%max%', inclusively"
-msgstr "'%value%' liegt nicht zwischen '%min%' und '%max%'"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
-msgid "Passwords do not match"
-msgstr "Passwörter stimmen nicht überein"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
-msgid "hours"
-msgstr "Stunden"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
-msgid "minutes"
-msgstr "Minuten"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
-msgid "Randomly"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
-msgid "Newest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
-msgid "Oldest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
-msgid "Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
-msgid "Static"
-msgstr "Statisch"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
-msgid "Dynamic"
-msgstr "Dynamisch"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
-msgid "Allow Repeated Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
-msgid "Sort Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
-msgid "Limit to:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
-msgid "Generate playlist content and save criteria"
-msgstr "Playlist-Inhalt erstellen und Kriterien speichern"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
-msgid "Generate"
-msgstr "Erstellen"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
-msgid "Shuffle playlist content"
-msgstr "Inhalt der Playlist Mischen"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
-msgid "Limit cannot be empty or smaller than 0"
-msgstr "Beschränkung kann nicht leer oder kleiner als 0 sein"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
-msgid "Limit cannot be more than 24 hrs"
-msgstr "Beschränkung kann nicht größer als 24 Stunden sein"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
-msgid "The value should be an integer"
-msgstr "Der Wert muß eine ganze Zahl sein"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
-msgid "500 is the max item limit value you can set"
-msgstr "Die Anzahl der Objekte ist auf 500 beschränkt"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
-msgid "You must select Criteria and Modifier"
-msgstr "Sie müssen Kriterium und Modifikator bestimmen"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
-msgid "'Length' should be in '00:00:00' format"
-msgstr "Die 'Dauer' muß im Format '00:00:00' eingegeben werden"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
-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:594
-msgid "The value has to be numeric"
-msgstr "Der eingegebene Wert muß aus Ziffern bestehen"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
-msgid "The value should be less then 2147483648"
-msgstr "Der eingegebene Wert muß kleiner sein als 2147483648"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
-#, php-format
-msgid "The value should be less than %s characters"
-msgstr "Der eingegebene Wert muß aus weniger als %s Zeichen bestehen."
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
-msgid "Value cannot be empty"
-msgstr "Der Wert darf nicht leer sein"
-
-#: airtime_mvc/application/forms/Login.php:102
-msgid "Type the characters you see in the picture below."
-msgstr "Geben sie die Zeichen aus dem Bild unten ein."
-
-#: airtime_mvc/application/forms/StreamSetting.php:26
-msgid "Icecast Vorbis Metadata"
-msgstr "Icecast Vorbis Metadata"
-
-#: airtime_mvc/application/forms/StreamSetting.php:36
-msgid "Stream Label:"
-msgstr "Streambezeichnung:"
-
-#: airtime_mvc/application/forms/StreamSetting.php:37
-msgid "Artist - Title"
-msgstr "Artist - Titel"
-
-#: airtime_mvc/application/forms/StreamSetting.php:38
-msgid "Show - Artist - Title"
-msgstr "Sendung - Artist - Titel"
-
-#: airtime_mvc/application/forms/StreamSetting.php:39
-msgid "Station name - Show name"
-msgstr "Sender - Sendung"
-
-#: airtime_mvc/application/forms/StreamSetting.php:45
-msgid "Off Air Metadata"
-msgstr "Off Air Metadaten"
-
-#: airtime_mvc/application/forms/StreamSetting.php:51
-msgid "Enable Replay Gain"
-msgstr "Replay Gain aktivieren"
-
-#: airtime_mvc/application/forms/StreamSetting.php:57
-msgid "Replay Gain Modifier"
-msgstr "Replay Gain Modifikator"
-
-#: airtime_mvc/application/forms/StreamSetting.php:65
-msgid "Streaming Server:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Airtime Pro Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Custom / 3rd Party Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:95
-msgid "User Type:"
-msgstr "Benutzertyp:"
-
-#: airtime_mvc/application/forms/AddUser.php:99
-#: airtime_mvc/application/controllers/LocaleController.php:324
-msgid "Guest"
-msgstr "Gast"
-
-#: airtime_mvc/application/forms/AddUser.php:100
-#: airtime_mvc/application/controllers/LocaleController.php:322
-msgid "DJ"
-msgstr "DJ"
-
-#: airtime_mvc/application/forms/AddUser.php:101
-#: airtime_mvc/application/controllers/LocaleController.php:323
-msgid "Program Manager"
-msgstr "Programm Manager"
-
-#: airtime_mvc/application/forms/AddUser.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:321
-msgid "Admin"
-msgstr "Admin"
-
-#: airtime_mvc/application/forms/BillingClient.php:17
-msgid "First Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:26
-msgid "Last Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:35
-msgid "Company Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:44
-msgid "Email Address:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:54
-msgid "Address 1:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:63
-msgid "Address 2:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:80
-msgid "State/Region:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:89
-msgid "Zip Code / Postal Code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:112
-msgid "Phone Number:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:121
-msgid "Please choose a security question:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:126
-msgid "What is the name of your favorite childhood friend?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:127
-msgid "What school did you attend for sixth grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:128
-msgid "In what city did you meet your spouse/significant other?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:129
-msgid "What street did you live on in third grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:130
-msgid "What is the first name of the boy or girl that you first kissed?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:131
-msgid "In what city or town was your first job?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:135
-msgid "Please enter an answer:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:152
-msgid "VAT/Tax ID (EU only)"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:162
-msgid "Subscribe to Sourcefabric newsletter"
-msgstr ""
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
-msgid "Import Folder:"
-msgstr "Import Verzeichnis:"
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
-msgid "Watched Folders:"
-msgstr "Überwachte Verzeichnisse:"
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
-msgid "Not a valid Directory"
-msgstr "Kein gültiges Verzeichnis"
-
-#: airtime_mvc/application/forms/PasswordRestore.php:14
-msgid "Email"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordRestore.php:36
-msgid "Reset password"
-msgstr "Passwort zurücksetzen"
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
-msgid "Plan type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
-msgid "Billing cycle:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
-msgid "Payment method:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
-msgid "PayPal"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
-msgid "Credit Card via 2Checkout"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:213
-#, php-format
-msgid "The year %s must be within the range of 1753 - 9999"
-msgstr "Das Jahr %s muß im Bereich zwischen 1753 und 9999 sein"
-
-#: airtime_mvc/application/common/DateHelper.php:216
-#, php-format
-msgid "%s-%s-%s is not a valid date"
-msgstr "%s-%s-%s ist kein gültiges Datum"
-
-#: airtime_mvc/application/common/DateHelper.php:240
-#, php-format
-msgid "%s:%s:%s is not a valid time"
-msgstr "%s-%s-%s ist kein gültiger Zeitpunkt."
-
-#: airtime_mvc/application/common/UsabilityHints.php:55
-msgid "Upload some tracks below to add them to your library!"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:57
-#, php-format
-msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:63
-msgid "Click the 'New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:65
-#, php-format
-msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:73
-msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:75
-#, php-format
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
msgid ""
-"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
-" %sCreate an unlinked show now%s."
+"To use the embeddable weekly schedule widget you must:
\n"
+" Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/common/UsabilityHints.php:80
-msgid "To start broadcasting, click on the current show and select 'Schedule Show'"
-msgstr ""
+#: airtime_mvc/application/controllers/ListenerstatController.php:51
+msgid "Please make sure admin user/password is correct on System->Streams page."
+msgstr "Bitte prüfen sie, ob der Admin Nutzer/Password unter System->Stream korrekt eingetragen ist."
-#: airtime_mvc/application/common/UsabilityHints.php:82
+#: airtime_mvc/application/controllers/UserController.php:86
+msgid "User added successfully!"
+msgstr "Benutzer erfolgreich hinzugefügt!"
+
+#: airtime_mvc/application/controllers/UserController.php:88
+msgid "User updated successfully!"
+msgstr "Benutzer erfolgreich aktualisiert!"
+
+#: airtime_mvc/application/controllers/UserController.php:187
+msgid "Settings updated successfully!"
+msgstr "Einstellungen erfolgreich aktualisiert!"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:53
#, php-format
-msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
-msgstr ""
+msgid "You are viewing an older version of %s"
+msgstr "Sie betrachten eine ältere Version von %s"
-#: airtime_mvc/application/common/UsabilityHints.php:89
-msgid "Click on the show starting next and select 'Schedule Show'"
-msgstr ""
+#: airtime_mvc/application/controllers/PlaylistController.php:140
+msgid "You cannot add tracks to dynamic blocks."
+msgstr "Sie können einem Dynamischen Smart Block keine Titel hinzufügen."
-#: airtime_mvc/application/common/UsabilityHints.php:91
+#: airtime_mvc/application/controllers/PlaylistController.php:161
#, php-format
-msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+msgid "You don't have permission to delete selected %s(s)."
+msgstr "Sie haben zum Löschen der gewählten %s (s) nicht die erforderliche Berechtigung."
+
+#: airtime_mvc/application/controllers/PlaylistController.php:174
+msgid "You can only add tracks to smart block."
+msgstr "Sie können einem Smart Block nur Titel hinzufügen."
+
+#: airtime_mvc/application/controllers/PlaylistController.php:180
+#: airtime_mvc/application/controllers/LocaleController.php:50
+msgid "You can only add tracks, smart blocks, and webstreams to playlists."
+msgstr "Sie können einer Playlist nur Titel, Smart Blocks und Webstreams hinzufügen."
+
+#: airtime_mvc/application/controllers/PlaylistController.php:192
+msgid "Untitled Playlist"
+msgstr "Unbenannte Playlist"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:194
+msgid "Untitled Smart Block"
+msgstr "Unbenannter Smart Block"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:522
+msgid "Unknown Playlist"
+msgstr "Unbekannte Playlist"
+
+#: airtime_mvc/application/controllers/ErrorController.php:78
+msgid "Page not found."
msgstr ""
+#: airtime_mvc/application/controllers/ErrorController.php:87
+msgid "The requested action is not supported."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:98
+msgid "You do not have permission to access this resource."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:109
+msgid "An internal application error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/controllers/Apiv2Controller.php:77
+#: airtime_mvc/application/controllers/ApiController.php:79
+msgid "You are not allowed to access this resource."
+msgstr "Sie sind nicht berechtigt, auf diese Resource zuzugreifen"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:72
+msgid "Preferences updated."
+msgstr "Einstellungen aktualisiert."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:115
+msgid "Support setting updated."
+msgstr "Support-Einstellungen aktualisiert."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:123
+msgid "Support Feedback"
+msgstr "Support Feedback"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:251
+msgid "Stream Setting Updated."
+msgstr "Stream-Einstellungen aktualisiert."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:342
+msgid "path should be specified"
+msgstr "Pfad muß angegeben werden"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:437
+msgid "Problem with Liquidsoap..."
+msgstr "Problem mit Liquidsoap ..."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:493
+msgid "Request method not accepted"
+msgstr ""
+
+#: airtime_mvc/application/controllers/DashboardController.php:35
+#: airtime_mvc/application/controllers/DashboardController.php:84
+msgid "You don't have permission to disconnect source."
+msgstr "Sie haben nicht die erforderliche Berechtigung, das Eingangssignal zu trennen."
+
+#: airtime_mvc/application/controllers/DashboardController.php:37
+#: airtime_mvc/application/controllers/DashboardController.php:86
+msgid "There is no source connected to this input."
+msgstr "Mit diesem Eingang ist kein Signal verbunden."
+
+#: airtime_mvc/application/controllers/DashboardController.php:81
+msgid "You don't have permission to switch source."
+msgstr "Sie haben nicht die erforderliche Berechtigung, das Signal umzuschalten."
+
+#: airtime_mvc/application/controllers/LoginController.php:43
+msgid "Please enter your username and password."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:93
+msgid "Wrong username or password provided. Please try again."
+msgstr "Falscher Benutzername oder Passwort. Bitte versuchen sie es erneut."
+
+#: airtime_mvc/application/controllers/LoginController.php:167
+msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
+msgstr "E-Mail konnte nicht gesendet werden. Überprüfen sie die Einstellungen des E-Mail-Servers und vergwissern sie sich, dass dieser richtig konfiguriert wurde."
+
+#: airtime_mvc/application/controllers/LoginController.php:173
+msgid "There was a problem with the username or email address you entered."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ApiController.php:244
+#: airtime_mvc/application/controllers/ApiController.php:317
+#: airtime_mvc/application/controllers/ApiController.php:392
+#: airtime_mvc/application/controllers/ApiController.php:435
+#: airtime_mvc/application/controllers/ApiController.php:474
+#: airtime_mvc/application/controllers/ApiController.php:507
+msgid "You are not allowed to access this resource. "
+msgstr "Sie sind nicht berechtigt, auf diese Resource zuzugreifen. "
+
+#: airtime_mvc/application/controllers/ApiController.php:698
+#: airtime_mvc/application/controllers/ApiController.php:718
+#: airtime_mvc/application/controllers/ApiController.php:730
+#, php-format
+msgid "File does not exist in %s"
+msgstr ""
+
+#: airtime_mvc/application/controllers/ApiController.php:781
+msgid "Bad request. no 'mode' parameter passed."
+msgstr "Fehlerhafte Anfrage. Es wurde kein 'mode' Parameter übergeben."
+
+#: airtime_mvc/application/controllers/ApiController.php:791
+msgid "Bad request. 'mode' parameter is invalid"
+msgstr "Fehlerhafte Anfrage. 'Mode' Parameter ist ungültig"
+
#: airtime_mvc/application/controllers/LocaleController.php:30
#: airtime_mvc/application/layouts/scripts/audio-player.phtml:5
msgid "Audio Player"
@@ -2911,11 +562,6 @@ msgstr "%s Objekte hinzufügen"
msgid "You can only add tracks to smart blocks."
msgstr "Sie können einem Smart Block nur Titel hinzufügen (keine Playlist oa.)"
-#: airtime_mvc/application/controllers/LocaleController.php:50
-#: airtime_mvc/application/controllers/PlaylistController.php:180
-msgid "You can only add tracks, smart blocks, and webstreams to playlists."
-msgstr "Sie können einer Playlist nur Titel, Smart Blocks und Webstreams hinzufügen."
-
#: airtime_mvc/application/controllers/LocaleController.php:53
msgid "Please select a cursor position on timeline."
msgstr "Bitte wählen sie eine Cursor-Position auf der Zeitleiste."
@@ -2956,11 +602,6 @@ msgstr ""
msgid "Click 'New' to create one."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:66
-#: airtime_mvc/application/controllers/LibraryController.php:123
-msgid "Edit Metadata"
-msgstr "Metadaten ändern"
-
#: airtime_mvc/application/controllers/LocaleController.php:67
msgid "Add to selected show"
msgstr "Zur ausgewählten Sendungen hinzufügen"
@@ -2989,6 +630,12 @@ msgstr "Wollen sie die gewählten Objekte wirklich löschen?"
msgid "Scheduled"
msgstr "Geplant"
+#: airtime_mvc/application/controllers/LocaleController.php:74
+#: airtime_mvc/application/layouts/scripts/layout.phtml:78
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
+msgid "Tracks"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:75
#: airtime_mvc/application/layouts/scripts/layout.phtml:60
msgid "Playlist"
@@ -2998,18 +645,96 @@ msgstr ""
msgid "Bit Rate"
msgstr "Bitrate"
+#: airtime_mvc/application/controllers/LocaleController.php:80
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
+#: airtime_mvc/application/models/Block.php:1354
+msgid "BPM"
+msgstr "BPM"
+
+#: airtime_mvc/application/controllers/LocaleController.php:84
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
+#: airtime_mvc/application/models/Block.php:1361
+msgid "Encoded By"
+msgstr "Encoded By"
+
+#: airtime_mvc/application/controllers/LocaleController.php:89
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
+#: airtime_mvc/application/models/Block.php:1367
+msgid "Last Modified"
+msgstr "geändert am"
+
+#: airtime_mvc/application/controllers/LocaleController.php:90
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
+#: airtime_mvc/application/models/Block.php:1368
+msgid "Last Played"
+msgstr "Zuletzt gespielt"
+
+#: airtime_mvc/application/controllers/LocaleController.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
+#: airtime_mvc/application/models/Block.php:1370
+msgid "Mime"
+msgstr "Mime"
+
+#: airtime_mvc/application/controllers/LocaleController.php:94
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
+#: airtime_mvc/application/models/Block.php:1372
+msgid "Owner"
+msgstr "Besitzer"
+
+#: airtime_mvc/application/controllers/LocaleController.php:95
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
+#: airtime_mvc/application/models/Block.php:1373
+msgid "Replay Gain"
+msgstr "Replay Gain"
+
#: airtime_mvc/application/controllers/LocaleController.php:96
msgid "Sample Rate"
msgstr "Samplerate"
+#: airtime_mvc/application/controllers/LocaleController.php:97
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
+#: airtime_mvc/application/models/Block.php:1376
+msgid "Track Number"
+msgstr "Titelnummer"
+
+#: airtime_mvc/application/controllers/LocaleController.php:98
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
+#: airtime_mvc/application/models/Block.php:1377
+msgid "Uploaded"
+msgstr "Hochgeladen"
+
+#: airtime_mvc/application/controllers/LocaleController.php:99
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
+#: airtime_mvc/application/models/Block.php:1378
+msgid "Website"
+msgstr "Webseite"
+
#: airtime_mvc/application/controllers/LocaleController.php:101
msgid "Loading..."
msgstr "wird geladen..."
+#: airtime_mvc/application/controllers/LocaleController.php:102
+#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
+msgid "All"
+msgstr "Alle"
+
#: airtime_mvc/application/controllers/LocaleController.php:103
msgid "Files"
msgstr "Dateien"
+#: airtime_mvc/application/controllers/LocaleController.php:104
+#: airtime_mvc/application/layouts/scripts/layout.phtml:80
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
+msgid "Playlists"
+msgstr "Playlisten"
+
+#: airtime_mvc/application/controllers/LocaleController.php:105
+#: airtime_mvc/application/layouts/scripts/layout.phtml:82
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
+msgid "Smart Blocks"
+msgstr "Smart Blöcke"
+
#: airtime_mvc/application/controllers/LocaleController.php:106
msgid "Web Streams"
msgstr "Web Streams"
@@ -3160,6 +885,74 @@ msgstr "Smart Block gespeichert"
msgid "Processing..."
msgstr "In Bearbeitung..."
+#: airtime_mvc/application/controllers/LocaleController.php:151
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
+#: airtime_mvc/application/models/Block.php:1383
+msgid "Select modifier"
+msgstr " - Attribut - "
+
+#: airtime_mvc/application/controllers/LocaleController.php:152
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
+#: airtime_mvc/application/models/Block.php:1384
+msgid "contains"
+msgstr "enthält"
+
+#: airtime_mvc/application/controllers/LocaleController.php:153
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
+#: airtime_mvc/application/models/Block.php:1385
+msgid "does not contain"
+msgstr "enthält nicht"
+
+#: airtime_mvc/application/controllers/LocaleController.php:154
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
+#: airtime_mvc/application/models/Block.php:1386
+#: airtime_mvc/application/models/Block.php:1390
+msgid "is"
+msgstr "ist"
+
+#: airtime_mvc/application/controllers/LocaleController.php:155
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
+#: airtime_mvc/application/models/Block.php:1387
+#: airtime_mvc/application/models/Block.php:1391
+msgid "is not"
+msgstr "ist nicht"
+
+#: airtime_mvc/application/controllers/LocaleController.php:156
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
+#: airtime_mvc/application/models/Block.php:1388
+msgid "starts with"
+msgstr "beginnt mit"
+
+#: airtime_mvc/application/controllers/LocaleController.php:157
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
+#: airtime_mvc/application/models/Block.php:1389
+msgid "ends with"
+msgstr "endet mit"
+
+#: airtime_mvc/application/controllers/LocaleController.php:158
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
+#: airtime_mvc/application/models/Block.php:1392
+msgid "is greater than"
+msgstr "ist größer als"
+
+#: airtime_mvc/application/controllers/LocaleController.php:159
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
+#: airtime_mvc/application/models/Block.php:1393
+msgid "is less than"
+msgstr "ist kleiner als"
+
+#: airtime_mvc/application/controllers/LocaleController.php:160
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
+#: airtime_mvc/application/models/Block.php:1394
+msgid "is in the range"
+msgstr "ist im Bereich"
+
#: airtime_mvc/application/controllers/LocaleController.php:162
msgid "Choose Storage Folder"
msgstr "Wähle Speicher-Verzeichnis"
@@ -3176,6 +969,11 @@ msgstr ""
"Sind sie sicher, dass sie den Speicher-Verzeichnis ändern wollen?\n"
"Dieser Vorgang entfernt alle Dateien der Airtime-Bibliothek!"
+#: airtime_mvc/application/controllers/LocaleController.php:166
+#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
+msgid "Manage Media Folders"
+msgstr "Medienverzeichnisse verwalten"
+
#: airtime_mvc/application/controllers/LocaleController.php:167
msgid "Are you sure you want to remove the watched folder?"
msgstr "Sind sie sicher, dass sie das überwachte Verzeichnis entfernen wollen?"
@@ -3197,6 +995,11 @@ msgstr "Mit dem Streaming-Server verbunden"
msgid "The stream is disabled"
msgstr "Der Stream ist deaktiviert"
+#: airtime_mvc/application/controllers/LocaleController.php:173
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
+msgid "Getting information from the server..."
+msgstr "Erhalte Information vom Server..."
+
#: airtime_mvc/application/controllers/LocaleController.php:174
msgid "Can not connect to the streaming server"
msgstr "Verbindung mit Streaming-Server kann nicht hergestellt werden."
@@ -3429,6 +1232,76 @@ msgstr ""
msgid "Month"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:249
+#: airtime_mvc/application/forms/GeneralPreferences.php:158
+msgid "Sunday"
+msgstr "Sonntag"
+
+#: airtime_mvc/application/controllers/LocaleController.php:250
+#: airtime_mvc/application/forms/GeneralPreferences.php:159
+msgid "Monday"
+msgstr "Montag"
+
+#: airtime_mvc/application/controllers/LocaleController.php:251
+#: airtime_mvc/application/forms/GeneralPreferences.php:160
+msgid "Tuesday"
+msgstr "Dienstag"
+
+#: airtime_mvc/application/controllers/LocaleController.php:252
+#: airtime_mvc/application/forms/GeneralPreferences.php:161
+msgid "Wednesday"
+msgstr "Mittwoch"
+
+#: airtime_mvc/application/controllers/LocaleController.php:253
+#: airtime_mvc/application/forms/GeneralPreferences.php:162
+msgid "Thursday"
+msgstr "Donnerstag"
+
+#: airtime_mvc/application/controllers/LocaleController.php:254
+#: airtime_mvc/application/forms/GeneralPreferences.php:163
+msgid "Friday"
+msgstr "Freitag"
+
+#: airtime_mvc/application/controllers/LocaleController.php:255
+#: airtime_mvc/application/forms/GeneralPreferences.php:164
+msgid "Saturday"
+msgstr "Samstag"
+
+#: airtime_mvc/application/controllers/LocaleController.php:256
+#: airtime_mvc/application/forms/AddShowRepeats.php:35
+msgid "Sun"
+msgstr "So."
+
+#: airtime_mvc/application/controllers/LocaleController.php:257
+#: airtime_mvc/application/forms/AddShowRepeats.php:36
+msgid "Mon"
+msgstr "Mo."
+
+#: airtime_mvc/application/controllers/LocaleController.php:258
+#: airtime_mvc/application/forms/AddShowRepeats.php:37
+msgid "Tue"
+msgstr "Di."
+
+#: airtime_mvc/application/controllers/LocaleController.php:259
+#: airtime_mvc/application/forms/AddShowRepeats.php:38
+msgid "Wed"
+msgstr "Mi."
+
+#: airtime_mvc/application/controllers/LocaleController.php:260
+#: airtime_mvc/application/forms/AddShowRepeats.php:39
+msgid "Thu"
+msgstr "Do."
+
+#: airtime_mvc/application/controllers/LocaleController.php:261
+#: airtime_mvc/application/forms/AddShowRepeats.php:40
+msgid "Fri"
+msgstr "Fr."
+
+#: airtime_mvc/application/controllers/LocaleController.php:262
+#: airtime_mvc/application/forms/AddShowRepeats.php:41
+msgid "Sat"
+msgstr "Sa."
+
#: airtime_mvc/application/controllers/LocaleController.php:263
msgid "Shows longer than their scheduled time will be cut off by a following show."
msgstr "Wenn der Inhalt einer Sendung länger ist als im Kalender festgelegt ist, wird das Ende durch eine nachfolgende Sendung abgschnitten."
@@ -3438,7 +1311,7 @@ msgid "Cancel Current Show?"
msgstr "Aktuelle Sendung abbrechen?"
#: airtime_mvc/application/controllers/LocaleController.php:265
-#: airtime_mvc/application/controllers/LocaleController.php:309
+#: airtime_mvc/application/controllers/LocaleController.php:312
msgid "Stop recording current show?"
msgstr "Aufnahme der aktuellen Sendung stoppen?"
@@ -3458,6 +1331,11 @@ msgstr "Gesamten Inhalt entfernen?"
msgid "Delete selected item(s)?"
msgstr "Gewählte Objekte löschen?"
+#: airtime_mvc/application/controllers/LocaleController.php:273
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
+msgid "Start"
+msgstr "Beginn"
+
#: airtime_mvc/application/controllers/LocaleController.php:274
msgid "End"
msgstr "Ende"
@@ -3466,580 +1344,467 @@ msgstr "Ende"
msgid "Duration"
msgstr "Dauer"
-#: airtime_mvc/application/controllers/LocaleController.php:283
+#: airtime_mvc/application/controllers/LocaleController.php:276
+msgid "Filtering out "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:277
+msgid " of "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:278
+msgid " records"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/layouts/scripts/layout.phtml:140
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
+#: airtime_mvc/application/models/Block.php:1358
+msgid "Cue In"
+msgstr "Cue In"
+
+#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/layouts/scripts/layout.phtml:147
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
+#: airtime_mvc/application/models/Block.php:1359
+msgid "Cue Out"
+msgstr "Cue Out"
+
+#: airtime_mvc/application/controllers/LocaleController.php:286
#: airtime_mvc/application/layouts/scripts/layout.phtml:167
msgid "Fade In"
msgstr "Fade In"
-#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/controllers/LocaleController.php:287
#: airtime_mvc/application/layouts/scripts/layout.phtml:168
msgid "Fade Out"
msgstr "Fade Out"
-#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/controllers/LocaleController.php:288
msgid "Show Empty"
msgstr "Sendung ist leer"
-#: airtime_mvc/application/controllers/LocaleController.php:286
+#: airtime_mvc/application/controllers/LocaleController.php:289
msgid "Recording From Line In"
msgstr "Aufnehmen über Line In"
-#: airtime_mvc/application/controllers/LocaleController.php:287
+#: airtime_mvc/application/controllers/LocaleController.php:290
msgid "Track preview"
msgstr "Titel Vorschau"
-#: airtime_mvc/application/controllers/LocaleController.php:291
+#: airtime_mvc/application/controllers/LocaleController.php:294
msgid "Cannot schedule outside a show."
msgstr "Es ist keine Planung außerhalb einer Sendung möglich."
-#: airtime_mvc/application/controllers/LocaleController.php:292
+#: airtime_mvc/application/controllers/LocaleController.php:295
msgid "Moving 1 Item"
msgstr "Verschiebe 1 Objekt"
-#: airtime_mvc/application/controllers/LocaleController.php:293
+#: airtime_mvc/application/controllers/LocaleController.php:296
#, php-format
msgid "Moving %s Items"
msgstr "Verschiebe %s Objekte"
-#: airtime_mvc/application/controllers/LocaleController.php:296
+#: airtime_mvc/application/controllers/LocaleController.php:297
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
+#: airtime_mvc/application/forms/Preferences.php:40
+#: airtime_mvc/application/forms/EditHistory.php:131
+#: airtime_mvc/application/forms/AddUser.php:110
+#: airtime_mvc/application/forms/PasswordChange.php:43
+#: airtime_mvc/application/forms/SupportSettings.php:131
+msgid "Save"
+msgstr "Speichern"
+
+#: airtime_mvc/application/controllers/LocaleController.php:298
+#: airtime_mvc/application/controllers/LocaleController.php:321
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
+#: airtime_mvc/application/forms/EditHistory.php:141
+#: airtime_mvc/application/forms/EditAudioMD.php:186
+msgid "Cancel"
+msgstr "Abbrechen"
+
+#: airtime_mvc/application/controllers/LocaleController.php:299
msgid "Fade Editor"
msgstr "Fade Editor"
-#: airtime_mvc/application/controllers/LocaleController.php:297
+#: airtime_mvc/application/controllers/LocaleController.php:300
msgid "Cue Editor"
msgstr "Cue Editor"
-#: airtime_mvc/application/controllers/LocaleController.php:298
+#: airtime_mvc/application/controllers/LocaleController.php:301
msgid "Waveform features are available in a browser supporting the Web Audio API"
msgstr "Wellenform-Funktionen ist nur in Browsern möglich, welche die Web Audio API unterstützen"
-#: airtime_mvc/application/controllers/LocaleController.php:301
+#: airtime_mvc/application/controllers/LocaleController.php:304
msgid "Select all"
msgstr "Alles auswählen"
-#: airtime_mvc/application/controllers/LocaleController.php:302
+#: airtime_mvc/application/controllers/LocaleController.php:305
msgid "Select none"
msgstr "Nichts auswählen"
-#: airtime_mvc/application/controllers/LocaleController.php:303
+#: airtime_mvc/application/controllers/LocaleController.php:306
msgid "Trim overbooked shows"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:304
+#: airtime_mvc/application/controllers/LocaleController.php:307
msgid "Remove selected scheduled items"
msgstr "Ausgewählte Elemente aus dem Programm entfernen"
-#: airtime_mvc/application/controllers/LocaleController.php:305
+#: airtime_mvc/application/controllers/LocaleController.php:308
msgid "Jump to the current playing track"
msgstr "Springe zu aktuellem Titel"
-#: airtime_mvc/application/controllers/LocaleController.php:306
+#: airtime_mvc/application/controllers/LocaleController.php:309
msgid "Cancel current show"
msgstr "Aktuelle Sendung abbrechen"
-#: airtime_mvc/application/controllers/LocaleController.php:311
+#: airtime_mvc/application/controllers/LocaleController.php:314
msgid "Open library to add or remove content"
msgstr "Um Inhalte hinzuzufügen oder zu entfernen muß die Bibliothek geöffnet werden"
-#: airtime_mvc/application/controllers/LocaleController.php:312
+#: airtime_mvc/application/controllers/LocaleController.php:315
msgid "Add / Remove Content"
msgstr "Inhalt hinzufügen / entfernen"
#: airtime_mvc/application/controllers/LocaleController.php:317
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
+msgid "in use"
+msgstr "In Verwendung"
+
+#: airtime_mvc/application/controllers/LocaleController.php:318
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
+msgid "Disk"
+msgstr "Disk"
+
+#: airtime_mvc/application/controllers/LocaleController.php:320
msgid "Look in"
msgstr "Suchen in"
-#: airtime_mvc/application/controllers/LocaleController.php:319
+#: airtime_mvc/application/controllers/LocaleController.php:322
msgid "Open"
msgstr "Öffnen"
+#: airtime_mvc/application/controllers/LocaleController.php:324
+#: airtime_mvc/application/forms/AddUser.php:102
+msgid "Admin"
+msgstr "Admin"
+
#: airtime_mvc/application/controllers/LocaleController.php:325
+#: airtime_mvc/application/forms/AddUser.php:100
+msgid "DJ"
+msgstr "DJ"
+
+#: airtime_mvc/application/controllers/LocaleController.php:326
+#: airtime_mvc/application/forms/AddUser.php:101
+msgid "Program Manager"
+msgstr "Programm Manager"
+
+#: airtime_mvc/application/controllers/LocaleController.php:327
+#: airtime_mvc/application/forms/AddUser.php:99
+msgid "Guest"
+msgstr "Gast"
+
+#: airtime_mvc/application/controllers/LocaleController.php:328
msgid "Guests can do the following:"
msgstr "Gäste können folgendes tun:"
-#: airtime_mvc/application/controllers/LocaleController.php:326
+#: airtime_mvc/application/controllers/LocaleController.php:329
msgid "View schedule"
msgstr "Kalender betrachten"
-#: airtime_mvc/application/controllers/LocaleController.php:327
+#: airtime_mvc/application/controllers/LocaleController.php:330
msgid "View show content"
msgstr "Sendungsinhalt betrachten"
-#: airtime_mvc/application/controllers/LocaleController.php:328
+#: airtime_mvc/application/controllers/LocaleController.php:331
msgid "DJs can do the following:"
msgstr "DJs können folgendes tun:"
-#: airtime_mvc/application/controllers/LocaleController.php:329
+#: airtime_mvc/application/controllers/LocaleController.php:332
msgid "Manage assigned show content"
msgstr "Verwalten zugewiesener Sendungsinhalte"
-#: airtime_mvc/application/controllers/LocaleController.php:330
+#: airtime_mvc/application/controllers/LocaleController.php:333
msgid "Import media files"
msgstr "Mediendateien importieren"
-#: airtime_mvc/application/controllers/LocaleController.php:331
+#: airtime_mvc/application/controllers/LocaleController.php:334
msgid "Create playlists, smart blocks, and webstreams"
msgstr "Erstellen von Playlisten, Smart Blöcken und Webstreams"
-#: airtime_mvc/application/controllers/LocaleController.php:332
+#: airtime_mvc/application/controllers/LocaleController.php:335
msgid "Manage their own library content"
msgstr "Verwalten eigener Bibliotheksinhalte"
-#: airtime_mvc/application/controllers/LocaleController.php:333
+#: airtime_mvc/application/controllers/LocaleController.php:336
msgid "Progam Managers can do the following:"
msgstr "Programm Manager können folgendes tun:"
-#: airtime_mvc/application/controllers/LocaleController.php:334
+#: airtime_mvc/application/controllers/LocaleController.php:337
msgid "View and manage show content"
msgstr "Sendungsinhalte betrachten und verwalten"
-#: airtime_mvc/application/controllers/LocaleController.php:335
+#: airtime_mvc/application/controllers/LocaleController.php:338
msgid "Schedule shows"
msgstr "Sendungen festlegen"
-#: airtime_mvc/application/controllers/LocaleController.php:336
+#: airtime_mvc/application/controllers/LocaleController.php:339
msgid "Manage all library content"
msgstr "Verwalten der gesamten Bibliothek"
-#: airtime_mvc/application/controllers/LocaleController.php:337
+#: airtime_mvc/application/controllers/LocaleController.php:340
msgid "Admins can do the following:"
msgstr "Admins können folgendes tun:"
-#: airtime_mvc/application/controllers/LocaleController.php:338
+#: airtime_mvc/application/controllers/LocaleController.php:341
msgid "Manage preferences"
msgstr "Einstellungen verwalten"
-#: airtime_mvc/application/controllers/LocaleController.php:339
+#: airtime_mvc/application/controllers/LocaleController.php:342
msgid "Manage users"
msgstr "Benutzer verwalten"
-#: airtime_mvc/application/controllers/LocaleController.php:340
+#: airtime_mvc/application/controllers/LocaleController.php:343
msgid "Manage watched folders"
msgstr "Verwalten überwachter Verzeichnisse"
-#: airtime_mvc/application/controllers/LocaleController.php:342
+#: airtime_mvc/application/controllers/LocaleController.php:344
+#: airtime_mvc/application/forms/RegisterAirtime.php:116
+#: airtime_mvc/application/forms/SupportSettings.php:98
+msgid "Send support feedback"
+msgstr "Support Feedback senden"
+
+#: airtime_mvc/application/controllers/LocaleController.php:345
msgid "View system status"
msgstr "System Status betrachten"
-#: airtime_mvc/application/controllers/LocaleController.php:343
+#: airtime_mvc/application/controllers/LocaleController.php:346
msgid "Access playout history"
msgstr "Zugriff auf Playlist Verlauf"
-#: airtime_mvc/application/controllers/LocaleController.php:344
+#: airtime_mvc/application/controllers/LocaleController.php:347
msgid "View listener stats"
msgstr "Hörerstatistiken betrachten"
-#: airtime_mvc/application/controllers/LocaleController.php:346
+#: airtime_mvc/application/controllers/LocaleController.php:349
msgid "Show / hide columns"
msgstr "Spalten auswählen"
-#: airtime_mvc/application/controllers/LocaleController.php:348
+#: airtime_mvc/application/controllers/LocaleController.php:351
msgid "From {from} to {to}"
msgstr "Von {from} bis {to}"
-#: airtime_mvc/application/controllers/LocaleController.php:349
+#: airtime_mvc/application/controllers/LocaleController.php:352
msgid "kbps"
msgstr "kbps"
-#: airtime_mvc/application/controllers/LocaleController.php:350
+#: airtime_mvc/application/controllers/LocaleController.php:353
msgid "yyyy-mm-dd"
msgstr "yyyy-mm-dd"
-#: airtime_mvc/application/controllers/LocaleController.php:351
+#: airtime_mvc/application/controllers/LocaleController.php:354
msgid "hh:mm:ss.t"
msgstr "hh:mm:ss.t"
-#: airtime_mvc/application/controllers/LocaleController.php:352
+#: airtime_mvc/application/controllers/LocaleController.php:355
msgid "kHz"
msgstr "kHz"
-#: airtime_mvc/application/controllers/LocaleController.php:355
+#: airtime_mvc/application/controllers/LocaleController.php:358
msgid "Su"
msgstr "So"
-#: airtime_mvc/application/controllers/LocaleController.php:356
+#: airtime_mvc/application/controllers/LocaleController.php:359
msgid "Mo"
msgstr "Mo"
-#: airtime_mvc/application/controllers/LocaleController.php:357
+#: airtime_mvc/application/controllers/LocaleController.php:360
msgid "Tu"
msgstr "Di"
-#: airtime_mvc/application/controllers/LocaleController.php:358
+#: airtime_mvc/application/controllers/LocaleController.php:361
msgid "We"
msgstr "Mi"
-#: airtime_mvc/application/controllers/LocaleController.php:359
+#: airtime_mvc/application/controllers/LocaleController.php:362
msgid "Th"
msgstr "Do"
-#: airtime_mvc/application/controllers/LocaleController.php:360
+#: airtime_mvc/application/controllers/LocaleController.php:363
msgid "Fr"
msgstr "Fr"
-#: airtime_mvc/application/controllers/LocaleController.php:361
+#: airtime_mvc/application/controllers/LocaleController.php:364
msgid "Sa"
msgstr "Sa"
-#: airtime_mvc/application/controllers/LocaleController.php:364
+#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
+msgid "Close"
+msgstr "Schließen"
+
+#: airtime_mvc/application/controllers/LocaleController.php:367
msgid "Hour"
msgstr "Stunde"
-#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:368
msgid "Minute"
msgstr "Minute"
-#: airtime_mvc/application/controllers/LocaleController.php:366
+#: airtime_mvc/application/controllers/LocaleController.php:369
msgid "Done"
msgstr "Fertig"
-#: airtime_mvc/application/controllers/LocaleController.php:369
+#: airtime_mvc/application/controllers/LocaleController.php:372
msgid "Select files"
msgstr "Dateien auswählen"
-#: airtime_mvc/application/controllers/LocaleController.php:370
-#: airtime_mvc/application/controllers/LocaleController.php:371
+#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:374
msgid "Add files to the upload queue and click the start button."
msgstr "Dateien zur Uploadliste hinzufügen und den Startbutton klicken."
-#: airtime_mvc/application/controllers/LocaleController.php:372
-#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:376
msgid "Status"
msgstr "Status"
-#: airtime_mvc/application/controllers/LocaleController.php:374
+#: airtime_mvc/application/controllers/LocaleController.php:377
msgid "Add Files"
msgstr "Dateien hinzufügen"
-#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:378
msgid "Stop Upload"
msgstr "Upload stoppen"
-#: airtime_mvc/application/controllers/LocaleController.php:376
+#: airtime_mvc/application/controllers/LocaleController.php:379
msgid "Start upload"
msgstr "Upload starten"
-#: airtime_mvc/application/controllers/LocaleController.php:377
+#: airtime_mvc/application/controllers/LocaleController.php:380
msgid "Add files"
msgstr "Dateien hinzufügen"
-#: airtime_mvc/application/controllers/LocaleController.php:378
+#: airtime_mvc/application/controllers/LocaleController.php:381
#, php-format
msgid "Uploaded %d/%d files"
msgstr "%d/%d Dateien hochgeladen"
-#: airtime_mvc/application/controllers/LocaleController.php:379
+#: airtime_mvc/application/controllers/LocaleController.php:382
msgid "N/A"
msgstr "N/A"
-#: airtime_mvc/application/controllers/LocaleController.php:380
+#: airtime_mvc/application/controllers/LocaleController.php:383
msgid "Drag files here."
msgstr "Dateien in dieses Feld ziehen.(Drag & Drop)"
-#: airtime_mvc/application/controllers/LocaleController.php:381
+#: airtime_mvc/application/controllers/LocaleController.php:384
msgid "File extension error."
msgstr "Fehler in der Dateierweiterung."
-#: airtime_mvc/application/controllers/LocaleController.php:382
+#: airtime_mvc/application/controllers/LocaleController.php:385
msgid "File size error."
msgstr "Fehler in der Dateigröße."
-#: airtime_mvc/application/controllers/LocaleController.php:383
+#: airtime_mvc/application/controllers/LocaleController.php:386
msgid "File count error."
msgstr "Fehler in der Dateianzahl"
-#: airtime_mvc/application/controllers/LocaleController.php:384
+#: airtime_mvc/application/controllers/LocaleController.php:387
msgid "Init error."
msgstr "Init Fehler."
-#: airtime_mvc/application/controllers/LocaleController.php:385
+#: airtime_mvc/application/controllers/LocaleController.php:388
msgid "HTTP Error."
msgstr "HTTP Fehler."
-#: airtime_mvc/application/controllers/LocaleController.php:386
+#: airtime_mvc/application/controllers/LocaleController.php:389
msgid "Security error."
msgstr "Sicherheitsfehler."
-#: airtime_mvc/application/controllers/LocaleController.php:387
+#: airtime_mvc/application/controllers/LocaleController.php:390
msgid "Generic error."
msgstr "Allgemeiner Fehler."
-#: airtime_mvc/application/controllers/LocaleController.php:388
+#: airtime_mvc/application/controllers/LocaleController.php:391
msgid "IO error."
msgstr "IO Fehler."
-#: airtime_mvc/application/controllers/LocaleController.php:389
+#: airtime_mvc/application/controllers/LocaleController.php:392
#, php-format
msgid "File: %s"
msgstr "Datei: %s"
-#: airtime_mvc/application/controllers/LocaleController.php:391
+#: airtime_mvc/application/controllers/LocaleController.php:394
#, php-format
msgid "%d files queued"
msgstr "%d Dateien in der Warteschlange"
-#: airtime_mvc/application/controllers/LocaleController.php:392
+#: airtime_mvc/application/controllers/LocaleController.php:395
msgid "File: %f, size: %s, max file size: %m"
msgstr "Datei: %f, Größe: %s, Maximale Dateigröße: %m"
-#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/controllers/LocaleController.php:396
msgid "Upload URL might be wrong or doesn't exist"
msgstr "Upload-URL scheint falsch zu sein oder existiert nicht"
-#: airtime_mvc/application/controllers/LocaleController.php:394
+#: airtime_mvc/application/controllers/LocaleController.php:397
msgid "Error: File too large: "
msgstr "Fehler: Datei zu groß: "
-#: airtime_mvc/application/controllers/LocaleController.php:395
+#: airtime_mvc/application/controllers/LocaleController.php:398
msgid "Error: Invalid file extension: "
msgstr "Fehler: ungültige Dateierweiterung: "
-#: airtime_mvc/application/controllers/LocaleController.php:398
+#: airtime_mvc/application/controllers/LocaleController.php:400
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
+msgid "Set Default"
+msgstr "Standard festlegen"
+
+#: airtime_mvc/application/controllers/LocaleController.php:401
msgid "Create Entry"
msgstr "Eintrag erstellen"
-#: airtime_mvc/application/controllers/LocaleController.php:399
+#: airtime_mvc/application/controllers/LocaleController.php:402
msgid "Edit History Record"
msgstr "Verlaufsprotokoll bearbeiten"
-#: airtime_mvc/application/controllers/LocaleController.php:402
+#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
+#: airtime_mvc/application/forms/EditHistoryItem.php:57
+msgid "No Show"
+msgstr "Keine Sendung"
+
+#: airtime_mvc/application/controllers/LocaleController.php:405
#, php-format
msgid "Copied %s row%s to the clipboard"
msgstr "%s Reihen%s in die Zwischenablage kopiert"
-#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/controllers/LocaleController.php:406
#, php-format
msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished."
msgstr "%sDruckansicht%sBenutzen sie bitte die Druckfunktion des Browsers, um diese Tabelle auszudrucken. Wenn sie fertig sind, drücken sie die Escape-Taste."
-#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/controllers/LocaleController.php:407
msgid "New Show"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:405
+#: airtime_mvc/application/controllers/LocaleController.php:408
msgid "New Log Entry"
msgstr ""
-#: airtime_mvc/application/controllers/ScheduleController.php:389
-#, php-format
-msgid "Rebroadcast of show %s from %s at %s"
-msgstr "Wiederholung der Sendung %s vom %s um %s"
-
-#: airtime_mvc/application/controllers/ScheduleController.php:712
-#: airtime_mvc/application/controllers/LibraryController.php:131
-msgid "Download"
-msgstr "Download"
-
-#: airtime_mvc/application/controllers/ErrorController.php:78
-msgid "Page not found."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:87
-msgid "The requested action is not supported."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:98
-msgid "You do not have permission to access this resource."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:109
-msgid "An internal application error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ListenerstatController.php:51
-msgid "Please make sure admin user/password is correct on System->Streams page."
-msgstr "Bitte prüfen sie, ob der Admin Nutzer/Password unter System->Stream korrekt eingetragen ist."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:53
-#, php-format
-msgid "You are viewing an older version of %s"
-msgstr "Sie betrachten eine ältere Version von %s"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:140
-msgid "You cannot add tracks to dynamic blocks."
-msgstr "Sie können einem Dynamischen Smart Block keine Titel hinzufügen."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:147
-#: airtime_mvc/application/controllers/LibraryController.php:31
-#, php-format
-msgid "%s not found"
-msgstr "%s nicht gefunden"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:161
-#, php-format
-msgid "You don't have permission to delete selected %s(s)."
-msgstr "Sie haben zum Löschen der gewählten %s (s) nicht die erforderliche Berechtigung."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:168
-#: airtime_mvc/application/controllers/LibraryController.php:40
-msgid "Something went wrong."
-msgstr "Etwas ist falsch gelaufen."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:174
-msgid "You can only add tracks to smart block."
-msgstr "Sie können einem Smart Block nur Titel hinzufügen."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:192
-msgid "Untitled Playlist"
-msgstr "Unbenannte Playlist"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:194
-msgid "Untitled Smart Block"
-msgstr "Unbenannter Smart Block"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:522
-msgid "Unknown Playlist"
-msgstr "Unbekannte Playlist"
-
-#: airtime_mvc/application/controllers/LoginController.php:43
-msgid "Please enter your username and password."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:93
-msgid "Wrong username or password provided. Please try again."
-msgstr "Falscher Benutzername oder Passwort. Bitte versuchen sie es erneut."
-
-#: airtime_mvc/application/controllers/LoginController.php:167
-msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
-msgstr "E-Mail konnte nicht gesendet werden. Überprüfen sie die Einstellungen des E-Mail-Servers und vergwissern sie sich, dass dieser richtig konfiguriert wurde."
-
-#: airtime_mvc/application/controllers/LoginController.php:173
-msgid "There was a problem with the username or email address you entered."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:35
-#: airtime_mvc/application/controllers/DashboardController.php:84
-msgid "You don't have permission to disconnect source."
-msgstr "Sie haben nicht die erforderliche Berechtigung, das Eingangssignal zu trennen."
-
-#: airtime_mvc/application/controllers/DashboardController.php:37
-#: airtime_mvc/application/controllers/DashboardController.php:86
-msgid "There is no source connected to this input."
-msgstr "Mit diesem Eingang ist kein Signal verbunden."
-
-#: airtime_mvc/application/controllers/DashboardController.php:81
-msgid "You don't have permission to switch source."
-msgstr "Sie haben nicht die erforderliche Berechtigung, das Signal umzuschalten."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:72
-msgid "Preferences updated."
-msgstr "Einstellungen aktualisiert."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:115
-msgid "Support setting updated."
-msgstr "Support-Einstellungen aktualisiert."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:123
-msgid "Support Feedback"
-msgstr "Support Feedback"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:251
-msgid "Stream Setting Updated."
-msgstr "Stream-Einstellungen aktualisiert."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:342
-msgid "path should be specified"
-msgstr "Pfad muß angegeben werden"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:437
-msgid "Problem with Liquidsoap..."
-msgstr "Problem mit Liquidsoap ..."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:493
-msgid "Request method not accepted"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:86
-msgid "User added successfully!"
-msgstr "Benutzer erfolgreich hinzugefügt!"
-
-#: airtime_mvc/application/controllers/UserController.php:88
-msgid "User updated successfully!"
-msgstr "Benutzer erfolgreich aktualisiert!"
-
-#: airtime_mvc/application/controllers/UserController.php:187
-msgid "Settings updated successfully!"
-msgstr "Einstellungen erfolgreich aktualisiert!"
-
-#: airtime_mvc/application/controllers/WebstreamController.php:28
-#: airtime_mvc/application/controllers/WebstreamController.php:32
-msgid "Untitled Webstream"
-msgstr "Unbenannter Webstream"
-
-#: airtime_mvc/application/controllers/WebstreamController.php:150
-msgid "Webstream saved."
-msgstr "Webstream gespeichert."
-
-#: airtime_mvc/application/controllers/WebstreamController.php:158
-msgid "Invalid form values."
-msgstr "Ungültige Formularwerte."
-
-#: airtime_mvc/application/controllers/LibraryController.php:95
-#: airtime_mvc/application/controllers/ShowbuilderController.php:136
-msgid "Preview"
-msgstr "Vorschau"
-
-#: airtime_mvc/application/controllers/LibraryController.php:115
-#: airtime_mvc/application/controllers/LibraryController.php:177
-#: airtime_mvc/application/controllers/LibraryController.php:200
-msgid "Add to Playlist"
-msgstr "Zur Playlist hinzufügen"
-
-#: airtime_mvc/application/controllers/LibraryController.php:117
-msgid "Add to Smart Block"
-msgstr "Zum Smart Block hinzufügen"
-
-#: airtime_mvc/application/controllers/LibraryController.php:147
-msgid "View track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:148
-msgid "Remove track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:154
-#: airtime_mvc/application/controllers/LibraryController.php:159
-msgid "Upload track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:169
-msgid "Duplicate Playlist"
-msgstr "Duplizierte Playlist"
-
-#: airtime_mvc/application/controllers/LibraryController.php:213
-msgid "No action available"
-msgstr "Keine Aktion verfügbar"
-
-#: airtime_mvc/application/controllers/LibraryController.php:233
-msgid "You don't have permission to delete selected items."
-msgstr "Sie haben nicht die erforderliche Berechtigung die gewählten Objekte zu löschen."
-
-#: airtime_mvc/application/controllers/LibraryController.php:279
-msgid "Could not delete file because it is scheduled in the future."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:282
-msgid "Could not delete file(s)."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:322
-#, php-format
-msgid "Copy of %s"
-msgstr "Kopie von %s"
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
-msgid ""
-"To configure and use the embeddable player you must:
\n"
-" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
-" 2. Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
-msgid ""
-"To use the embeddable weekly schedule widget you must:
\n"
-" Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
#: airtime_mvc/application/controllers/ShowbuilderController.php:138
msgid "Select cursor"
msgstr "Cursor wählen"
@@ -4052,39 +1817,78 @@ msgstr "Cursor entfernen"
msgid "show does not exist"
msgstr "Sendung existiert nicht"
-#: airtime_mvc/application/controllers/ApiController.php:79
-msgid "You are not allowed to access this resource."
-msgstr "Sie sind nicht berechtigt, auf diese Resource zuzugreifen"
-
-#: airtime_mvc/application/controllers/ApiController.php:244
-#: airtime_mvc/application/controllers/ApiController.php:317
-#: airtime_mvc/application/controllers/ApiController.php:392
-#: airtime_mvc/application/controllers/ApiController.php:435
-#: airtime_mvc/application/controllers/ApiController.php:474
-#: airtime_mvc/application/controllers/ApiController.php:507
-msgid "You are not allowed to access this resource. "
-msgstr "Sie sind nicht berechtigt, auf diese Resource zuzugreifen. "
-
-#: airtime_mvc/application/controllers/ApiController.php:698
-#: airtime_mvc/application/controllers/ApiController.php:718
-#: airtime_mvc/application/controllers/ApiController.php:730
+#: airtime_mvc/application/controllers/ScheduleController.php:389
#, php-format
-msgid "File does not exist in %s"
+msgid "Rebroadcast of show %s from %s at %s"
+msgstr "Wiederholung der Sendung %s vom %s um %s"
+
+#: airtime_mvc/application/common/UsabilityHints.php:55
+msgid "Upload some tracks below to add them to your library!"
msgstr ""
-#: airtime_mvc/application/controllers/ApiController.php:781
-msgid "Bad request. no 'mode' parameter passed."
-msgstr "Fehlerhafte Anfrage. Es wurde kein 'mode' Parameter übergeben."
-
-#: airtime_mvc/application/controllers/ApiController.php:791
-msgid "Bad request. 'mode' parameter is invalid"
-msgstr "Fehlerhafte Anfrage. 'Mode' Parameter ist ungültig"
-
-#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#: airtime_mvc/application/common/UsabilityHints.php:57
#, php-format
-msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
msgstr ""
+#: airtime_mvc/application/common/UsabilityHints.php:63
+msgid "Click the 'New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:65
+#, php-format
+msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:73
+msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:75
+#, php-format
+msgid ""
+"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
+" %sCreate an unlinked show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:80
+msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:82
+#, php-format
+msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:89
+msgid "Click on the show starting next and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:91
+#, php-format
+msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/DateHelper.php:213
+#, php-format
+msgid "The year %s must be within the range of 1753 - 9999"
+msgstr "Das Jahr %s muß im Bereich zwischen 1753 und 9999 sein"
+
+#: airtime_mvc/application/common/DateHelper.php:216
+#, php-format
+msgid "%s-%s-%s is not a valid date"
+msgstr "%s-%s-%s ist kein gültiges Datum"
+
+#: airtime_mvc/application/common/DateHelper.php:240
+#, php-format
+msgid "%s:%s:%s is not a valid time"
+msgstr "%s-%s-%s ist kein gültiger Zeitpunkt."
+
+#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
+msgid "Live stream"
+msgstr "Live Stream"
+
#: airtime_mvc/application/layouts/scripts/layout.phtml:63
msgid "Smart Block"
msgstr ""
@@ -4097,6 +1901,17 @@ msgstr ""
msgid "Upload"
msgstr ""
+#: airtime_mvc/application/layouts/scripts/layout.phtml:76
+#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
+msgid "Dashboard"
+msgstr ""
+
+#: airtime_mvc/application/layouts/scripts/layout.phtml:84
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
+msgid "Webstreams"
+msgstr ""
+
#: airtime_mvc/application/layouts/scripts/layout.phtml:135
#: airtime_mvc/application/layouts/scripts/layout.phtml:161
msgid "Play"
@@ -4119,405 +1934,2128 @@ msgstr "Set Cue Out"
msgid "Cursor"
msgstr "Cursor"
-#~ msgid "Show:"
-#~ msgstr "Sendung:"
+#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#, php-format
+msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
+msgid "Drop files here or click to browse your computer."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
+msgid "Failed"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
+msgid "Pending"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
+msgid "Recent Uploads"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
+msgid "Share"
+msgstr "Teilen"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
+msgid "Select stream:"
+msgstr "Stream wählen:"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
+msgid "mute"
+msgstr "Stummschalten"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
+msgid "unmute"
+msgstr "Lautschalten"
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
+msgid "About"
+msgstr "Über"
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
+#, php-format
+msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
+#, php-format
+msgid "%1$s %2$s is distributed under the %3$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
+#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
+#, php-format
+msgid "Welcome to %s!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
+#, php-format
+msgid "Here's how you can get started using %s to automate your broadcasts: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
+msgid "Upload audio tracks"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
+msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
+msgid "Schedule a show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
+msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
+msgid "Add tracks to your show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
+msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
+msgid "Now you're good to go!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
+#, php-format
+msgid "For more detailed help, read the %suser manual%s."
+msgstr "Für weitere ausführliche Hilfe, lesen sie bitte das %sBenutzerhandbuch%s."
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
+#: airtime_mvc/application/configs/navigation.php:40
+msgid "Weekly Schedule"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
+#: airtime_mvc/application/forms/Player.php:77
+msgid "Preview:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
+#: airtime_mvc/application/configs/navigation.php:34
+msgid "Player"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:97
+msgid "Playout History"
+msgstr "Playout Verlauf"
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
+msgid "Log Sheet"
+msgstr "Protokoll"
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
+msgid "File Summary"
+msgstr "Dateiübersicht"
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
+msgid "Show Summary"
+msgstr "Sendungsübersicht"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
+msgid "Expand Static Block"
+msgstr "Statischen Block erweitern"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
+msgid "Expand Dynamic Block"
+msgstr "Dynamischen Block erweitern"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
+msgid "Choose some search criteria above and click Generate to create this playlist."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
+msgid "A track list will be generated when you schedule this smart block into a show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
+msgid "Drag tracks here from your library to add them to the playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
+msgid "Editing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:26
+msgid "Name:"
+msgstr "Name:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
+#: airtime_mvc/application/forms/AddShowWhat.php:54
+msgid "Description:"
+msgstr "Beschreibung:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
+#: airtime_mvc/application/forms/AddShowWhen.php:89
+msgid "Duration:"
+msgstr "Dauer:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
+msgid "Toggle Details"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+msgid "Shuffle playlist"
+msgstr "Playlist mischen"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
+msgid "Shuffle"
+msgstr "Mischen"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
+msgid "Playlist crossfade"
+msgstr "Playlist Crossfade"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+msgid "Empty playlist content"
+msgstr "Playlist leeren"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Clear"
+msgstr "Leeren"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+msgid "Fade in: "
+msgstr "Fade In: "
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "Fade out: "
+msgstr "Fade Out: "
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+msgid "Save playlist"
+msgstr "Playlist speichern"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
+msgid "No open playlist"
+msgstr "Keine Playlist geöffnet"
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
+msgid "Show Waveform"
+msgstr "Wellenform anzeigen"
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "(ss.t)"
+msgstr "(ss.t)"
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Remove all content from this smart block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
+msgid "No smart block currently open"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+msgid "Cue In: "
+msgstr "Cue In: "
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "(hh:mm:ss.t)"
+msgstr "(hh:mm:ss.t)"
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "Cue Out: "
+msgstr "Cue Out: "
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
+msgid "Original Length:"
+msgstr "Originallänge:"
+
+#: airtime_mvc/application/views/scripts/preference/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:56
+msgid "General"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
+msgid "Stream Settings"
+msgstr "Stream Einstellungen"
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
+msgid "Global"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
+msgid "dB"
+msgstr "dB"
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
+msgid "Output Streams"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:3
+#: airtime_mvc/application/forms/Login.php:83
+msgid "Login"
+msgstr "Anmeldung"
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:7
+#, php-format
+msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
+msgid "Email Sent!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
+msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
+msgid "Back"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
+msgid "Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
+msgid "New password"
+msgstr "Neues Passwort"
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
+msgid "Please enter and confirm your new password in the fields below."
+msgstr "Bitte geben sie Ihr neues Passwort ein und bestätigen es im folgenden Feld."
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
+msgid "Manage Users"
+msgstr "Benutzer verwalten"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
+msgid "New User"
+msgstr "Neuer Benutzer"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
+msgid "id"
+msgstr "ID"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
+#: airtime_mvc/application/forms/PasswordRestore.php:25
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
+msgid "Username"
+msgstr "Benutzername"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
+msgid "First Name"
+msgstr "Vorname"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
+msgid "Last Name"
+msgstr "Nachname"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
+msgid "User Type"
+msgstr "Benutzertyp"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
+#, php-format
+msgid "Super Admin details can be changed in your Billing Settings."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
+msgid "Find Shows"
+msgstr "Suche Sendungen"
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
+msgid "Choose Show Instance"
+msgstr "Folge wählen"
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
+msgid "Find"
+msgstr "Finden"
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
+#: airtime_mvc/application/configs/navigation.php:61
+msgid "My Profile"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
+#, php-format
+msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
+msgid "Repeat Days:"
+msgstr "Wiederholen Tage:"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
+#: airtime_mvc/application/forms/GeneralPreferences.php:53
+#: airtime_mvc/application/forms/AddShowStyle.php:64
+msgid "Remove"
+msgstr "Entfernen"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
+msgid "Add"
+msgstr "Hinzufüg."
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
+msgid "Show Source"
+msgstr "Show Source"
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
+msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
+msgid "Register Airtime"
+msgstr "Airtime registrieren"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
+#, php-format
+msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
+#, php-format
+msgid "Click the box below to promote your station on %s."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
+msgid "(Required)"
+msgstr "(Erforderlich)"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
+msgid "(for verification purposes only, will not be published)"
+msgstr "(Ausschließlich zu Kontrollzwecken, wird nicht veröffentlicht)"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
+#: airtime_mvc/application/forms/GeneralPreferences.php:43
+msgid "Note: Anything larger than 600x600 will be resized."
+msgstr "Hinweis: Grafiken, die größer als 600x600 sind, werden verkleinert."
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
+msgid "Show me what I am sending "
+msgstr "Zeige mir was ich sende "
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
+msgid "Terms and Conditions"
+msgstr "Allgemeine Geschäftsbedingungen"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
+msgid "Choose Days:"
+msgstr "Tage wählen:"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
+msgid "Search Criteria:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
+msgid "New Criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
+msgid "or"
+msgstr "oder"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
+msgid "and"
+msgstr "und"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
+msgid "New Modifier"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
+msgid " to "
+msgstr " bis "
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
+msgid "files meet the criteria"
+msgstr "Dateien entsprechen den Kriterien"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
+msgid "file meets the criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
+msgid "Filter History"
+msgstr "Filter Verlauf"
+
+#: airtime_mvc/application/views/scripts/form/login.phtml:41
+msgid "Forgot your password?"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
+msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
+msgstr "(Um ihre Radiostation bewerben zu können, muß 'Support Feedback senden' aktiviert sein)"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
+msgid "Stream "
+msgstr "Stream "
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
+msgid "Additional Options"
+msgstr "Erweiterte Optionen"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
+msgid "The following info will be displayed to listeners in their media player:"
+msgstr "Die folgenden Informationen werden den Zuhörern in ihren Playern angezeigt:"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
+msgid "(Your radio station website)"
+msgstr "(Webseite Ihres Radiosenders)"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
+msgid "Stream URL: "
+msgstr "Stream URL: "
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
+msgid "Choose folder"
+msgstr "Ordner wählen"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
+msgid "Set"
+msgstr "Festlegen"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
+msgid "Current Import Folder:"
+msgstr "Aktueller Import Ordner:"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
+#, php-format
+msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
+msgid "Remove watched directory"
+msgstr "Überwachten Ordner entfernen"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
+msgid "You are not watching any media folders."
+msgstr "Sie überwachen keine Medienordner."
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
+msgid "Live Broadcasting"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
+msgid "Master Source"
+msgstr "Master Source"
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
+msgid "Use these settings in your broadcasting software to stream live at any time."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
+msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
+msgid "TuneIn Settings"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
+msgid "SoundCloud Settings"
+msgstr "SoundCloud Einstellungen"
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
+msgid "Dangerous Options"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Add this show"
+msgstr "Sendung hinzufügen"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Update show"
+msgstr "Sendung aktualisieren"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
+msgid "What"
+msgstr "Was"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
+msgid "When"
+msgstr "Wann"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
+msgid "Live Stream Input"
+msgstr "Live Stream Input"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
+msgid "Who"
+msgstr "Wer"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
+msgid "Style"
+msgstr "Farbe"
+
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
+msgid "Disk Space"
+msgstr "Speicherplatz"
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:3
+msgid "File import in progress..."
+msgstr "Datei-Import in Bearbeitung..."
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:10
+#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
+msgid "Advanced Search Options"
+msgstr "Erweiterte Suchoptionen"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
+#: airtime_mvc/application/forms/EditAudioMD.php:24
+#: airtime_mvc/application/forms/Player.php:15
+msgid "Title:"
+msgstr "Titel:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
+#: airtime_mvc/application/forms/EditAudioMD.php:34
+msgid "Creator:"
+msgstr "Interpret:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
+#: airtime_mvc/application/forms/EditAudioMD.php:44
+msgid "Album:"
+msgstr "Album:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
+msgid "Track:"
+msgstr "Titel-Nr.:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
+msgid "Length:"
+msgstr "Länge:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
+msgid "Sample Rate:"
+msgstr "Samplerate:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
+msgid "Bit Rate:"
+msgstr "Bitrate:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
+#: airtime_mvc/application/forms/EditAudioMD.php:115
+msgid "Mood:"
+msgstr "Stimmung:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:45
+#: airtime_mvc/application/forms/EditAudioMD.php:62
+msgid "Genre:"
+msgstr "Genre:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
+#: airtime_mvc/application/forms/EditAudioMD.php:72
+msgid "Year:"
+msgstr "Jahr:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
+#: airtime_mvc/application/forms/EditAudioMD.php:85
+msgid "Label:"
+msgstr "Label:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
+#: airtime_mvc/application/forms/EditAudioMD.php:125
+msgid "BPM:"
+msgstr "BPM:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
+#: airtime_mvc/application/forms/EditAudioMD.php:95
+msgid "Composer:"
+msgstr "Komponist:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
+#: airtime_mvc/application/forms/EditAudioMD.php:105
+msgid "Conductor:"
+msgstr "Dirigent:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
+#: airtime_mvc/application/forms/EditAudioMD.php:135
+msgid "Copyright:"
+msgstr "Copyright:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
+msgid "Isrc Number:"
+msgstr "ISRC-Nr.:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
+#: airtime_mvc/application/forms/EditAudioMD.php:155
+msgid "Website:"
+msgstr "Webseite:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
+#: airtime_mvc/application/forms/EditAudioMD.php:165
+#: airtime_mvc/application/forms/EditUser.php:119
+#: airtime_mvc/application/forms/Login.php:68
+msgid "Language:"
+msgstr "Sprache:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
+msgid "File Path:"
+msgstr "Dateipfad:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
+msgid "Web Stream"
+msgstr "Web Stream"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
+msgid "Dynamic Smart Block"
+msgstr "Dynamischer Smart Block"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
+msgid "Static Smart Block"
+msgstr "Statischer Smart Block"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
+msgid "Audio Track"
+msgstr "Titel-Nr."
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
+msgid "Playlist Contents: "
+msgstr "Playlist Inhalt: "
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
+msgid "Static Smart Block Contents: "
+msgstr "Statischer Smart Block Inhalt: "
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
+msgid "Dynamic Smart Block Criteria: "
+msgstr "Dynamische Smart Block Kriterien: "
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
+msgid "Limit to "
+msgstr "Beschränken auf "
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
+#: airtime_mvc/application/forms/AddShowWhat.php:36
+msgid "URL:"
+msgstr "URL:"
+
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
+msgid "Viewing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
+msgid "Listeners"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
+msgid "Stream Data Collection Status"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
+msgid "Your trial expires in"
+msgstr "Ihre Testperiode endet in"
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
+msgid "days"
+msgstr "Tage"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
+msgid "Previous:"
+msgstr "Zuvor:"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
+msgid "Next:"
+msgstr "Danach:"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
+msgid "Source Streams"
+msgstr "Source Streams"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
+msgid "ON AIR"
+msgstr "ON AIR"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
+msgid "Listen"
+msgstr "Anhören"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
+msgid "Logout"
+msgstr "Abmelden"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
+msgid "Playout History Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
+msgid "Log Sheet Templates"
+msgstr "Protokollvorlagen"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
+msgid "New Log Sheet Template"
+msgstr "Neue Protokollvorlage"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
+msgid "No Log Sheet Templates"
+msgstr "Keine Protokollvorlagen"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
+msgid "File Summary Templates"
+msgstr "Dateiübersichtsvorlagen"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
+msgid "New File Summary Template"
+msgstr "Neue Dateiübersichtsvorlage"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
+msgid "No File Summary Templates"
+msgstr "Keine Dateiübersichtsvorlagen"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
+msgid "Creating File Summary Template"
+msgstr "Erstelle Dateiübersichtsvorlage"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
+msgid "Creating Log Sheet Template"
+msgstr "Erstelle Protokollvorlage"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
+msgid "Name"
+msgstr "Name"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
+msgid "Add more elements"
+msgstr "Weitere Elemente hinzufügen"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
+msgid "Add New Field"
+msgstr "Neues Feld hinzufügen"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
+msgid "Set Default Template"
+msgstr "Standardvorlage wählen"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
+msgid "Description"
+msgstr "Beschreibung"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
+msgid "Stream URL:"
+msgstr "Stream URL:"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
+msgid "Default Length:"
+msgstr "Standard Dauer:"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
+msgid "No webstream"
+msgstr "Kein Webstream"
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
+#: airtime_mvc/application/views/scripts/error/error.phtml:6
+msgid "An error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
+msgid "Access Denied!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
+msgid "You do not have permission to access this page!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
+#: airtime_mvc/application/views/scripts/error/error.phtml:14
+#: airtime_mvc/application/configs/navigation.php:143
+msgid "Help"
+msgstr "Hilfe"
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
+msgid "Oops!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
+msgid "Something went wrong!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
+msgid "Bad Request!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
+msgid "The requested action is not supported!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
+msgid "Page not found!"
+msgstr "Seite nicht gefunden!"
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
+msgid "We couldn't find the page you were looking for."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error.phtml:12
+msgid "Looks like the page you were looking for doesn't exist!"
+msgstr "Scheinbar existiert die Seite die sie suchen nicht!"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
+msgid "previous"
+msgstr "zurück"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
+msgid "play"
+msgstr "Wiedergabe"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
+msgid "pause"
+msgstr "Pause"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
+msgid "next"
+msgstr "weiter"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
+msgid "stop"
+msgstr "Stop"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
+msgid "max volume"
+msgstr "Maximale Lautstärke"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
+msgid "Update Required"
+msgstr "Update erforderlich"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
+#, php-format
+msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
+msgstr "Um die Medien zu spielen, müssen sie entweder Ihren Browser oder Ihr %s Flash-Plugin %s aktualisieren."
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
+msgid "Plan type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
+msgid "Billing cycle:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
+msgid "Payment method:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
+msgid "PayPal"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
+msgid "Credit Card via 2Checkout"
+msgstr ""
+
+#: airtime_mvc/application/forms/DateRange.php:16
+#: airtime_mvc/application/forms/ShowBuilder.php:18
+msgid "Date Start:"
+msgstr "Zeitpunkt Beginn:"
+
+#: airtime_mvc/application/forms/DateRange.php:35
+#: airtime_mvc/application/forms/DateRange.php:63
+#: airtime_mvc/application/forms/ShowBuilder.php:37
+#: airtime_mvc/application/forms/ShowBuilder.php:65
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
+msgid "Invalid character entered"
+msgstr "Ungültiges Zeichen eingegeben"
+
+#: airtime_mvc/application/forms/DateRange.php:44
+#: airtime_mvc/application/forms/ShowBuilder.php:46
+#: airtime_mvc/application/forms/AddShowRepeats.php:56
+msgid "Date End:"
+msgstr "Zeitpunkt Ende:"
+
+#: airtime_mvc/application/forms/ShowBuilder.php:72
+#: airtime_mvc/application/forms/ShowBuilder.php:88
+msgid "Filter by Show"
+msgstr ""
+
+#: airtime_mvc/application/forms/ShowBuilder.php:80
+msgid "All My Shows:"
+msgstr "Alle meine Sendungen:"
+
+#: airtime_mvc/application/forms/AddShowWho.php:10
+msgid "Search Users:"
+msgstr "Suche Benutzer:"
+
+#: airtime_mvc/application/forms/AddShowWho.php:24
+msgid "DJs:"
+msgstr "DJs:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:30
+#: airtime_mvc/application/forms/GeneralPreferences.php:25
+#: airtime_mvc/application/forms/SupportSettings.php:18
+msgid "Station Name"
+msgstr "Sendername"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:39
+#: airtime_mvc/application/forms/SupportSettings.php:31
+msgid "Phone:"
+msgstr "Telefon:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:51
+#: airtime_mvc/application/forms/AddUser.php:67
+#: airtime_mvc/application/forms/EditUser.php:83
+#: airtime_mvc/application/forms/SupportSettings.php:43
+msgid "Email:"
+msgstr "E-Mail:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:62
+#: airtime_mvc/application/forms/SupportSettings.php:54
+msgid "Station Web Site:"
+msgstr "Sender-Webseite:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:73
+#: airtime_mvc/application/forms/SupportSettings.php:65
+msgid "Country:"
+msgstr "Land:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:84
+#: airtime_mvc/application/forms/SupportSettings.php:76
+msgid "City:"
+msgstr "Stadt:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:96
+#: airtime_mvc/application/forms/SupportSettings.php:88
+msgid "Station Description:"
+msgstr "Sender Beschreibung:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:106
+#: airtime_mvc/application/forms/GeneralPreferences.php:42
+msgid "Station Logo:"
+msgstr "Sender Logo:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:126
+#: airtime_mvc/application/forms/SupportSettings.php:108
+#, php-format
+msgid "Promote my station on %s"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:151
+#: airtime_mvc/application/forms/SupportSettings.php:120
+#, php-format
+msgid "By checking this box, I agree to %s's %sprivacy policy%s."
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:169
+#: airtime_mvc/application/forms/SupportSettings.php:143
+msgid "You have to agree to privacy policy."
+msgstr "Sie müssen die Datenschutzrichtlinien akzeptieren."
+
+#: airtime_mvc/application/forms/AddShowRR.php:10
+msgid "Record from Line In?"
+msgstr "Aufzeichnen von Line-In?"
+
+#: airtime_mvc/application/forms/AddShowRR.php:16
+msgid "Rebroadcast?"
+msgstr "Wiederholen?"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
+#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
+msgid "Value is required and can't be empty"
+msgstr "Wert ist erforderlich und darf nicht leer sein"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
+msgid "'%value%' is no valid email address in the basic format local-part@hostname"
+msgstr "'%value%' ist keine gültige E-Mail-Adresse im Format local-part@hostname"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
+msgid "'%value%' does not fit the date format '%format%'"
+msgstr "'%value%' entspricht nicht dem erforderlichen Datumsformat '%format%'"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
+msgid "'%value%' is less than %min% characters long"
+msgstr "'%value%' ist kürzer als %min% Zeichen lang"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
+msgid "'%value%' is more than %max% characters long"
+msgstr "'%value%' ist mehr als %max% Zeichen lang"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
+msgid "'%value%' is not between '%min%' and '%max%', inclusively"
+msgstr "'%value%' liegt nicht zwischen '%min%' und '%max%'"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
+msgid "Passwords do not match"
+msgstr "Passwörter stimmen nicht überein"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
+msgid "Day must be specified"
+msgstr "Tag muß angegeben werden"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
+msgid "Time must be specified"
+msgstr "Zeit muß angegeben werden"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
+msgid "Must wait at least 1 hour to rebroadcast"
+msgstr "Das Wiederholen einer Sendung ist erst nach einer Stunde Wartezeit möglich."
+
+#: airtime_mvc/application/forms/PasswordRestore.php:14
+msgid "Email"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordRestore.php:36
+msgid "Reset password"
+msgstr "Passwort zurücksetzen"
+
+#: airtime_mvc/application/forms/AddShowWhat.php:30
+msgid "Untitled Show"
+msgstr "Unbenannte Sendung"
+
+#: airtime_mvc/application/forms/AddShowWhat.php:69
+msgid "Instance Description:"
+msgstr ""
+
+#: airtime_mvc/application/forms/DangerousPreferences.php:12
+msgid "Delete All Tracks in Library"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditAudioMD.php:145
+msgid "ISRC Number:"
+msgstr "ISRC-Nr.:"
+
+#: airtime_mvc/application/forms/EditAudioMD.php:176
+msgid "OK"
+msgstr "OK"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:33
+msgid "Station Description"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:62
+msgid "Default Crossfade Duration (s):"
+msgstr "Standard Crossfade Dauer (s):"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:68
+#: airtime_mvc/application/forms/GeneralPreferences.php:82
+#: airtime_mvc/application/forms/GeneralPreferences.php:96
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
+msgid "Please enter a time in seconds (eg. 0.5)"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:76
+msgid "Default Fade In (s):"
+msgstr "Standard Fade In (s):"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:90
+msgid "Default Fade Out (s):"
+msgstr "Standard Fade Out (s):"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:102
+msgid "Public Airtime API"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:103
+msgid "Required for embeddable schedule widget."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:105
+msgid "Disabled"
+msgstr "Deaktiviert"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:106
+msgid "Enabled"
+msgstr "Aktiviert"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:109
+msgid ""
+"Enabling this feature will allow Airtime to provide schedule data\n"
+" to external widgets that can be embedded in your website."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:120
+msgid "Default Language"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:127
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
+msgid "Station Timezone"
+msgstr "Sendestation Zeitzone"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:134
+msgid "Week Starts On"
+msgstr "Woche beginnt am"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:150
+msgid "Display login button on your Radio Page?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:29
+#: airtime_mvc/application/forms/EditUser.php:37
+#: airtime_mvc/application/forms/Login.php:41
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
+msgid "Username:"
+msgstr "Benutzername:"
+
+#: airtime_mvc/application/forms/AddUser.php:38
+#: airtime_mvc/application/forms/EditUser.php:48
+#: airtime_mvc/application/forms/Login.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
+msgid "Password:"
+msgstr "Passwort:"
+
+#: airtime_mvc/application/forms/AddUser.php:46
+#: airtime_mvc/application/forms/EditUser.php:57
+msgid "Verify Password:"
+msgstr "Passwort bestätigen:"
+
+#: airtime_mvc/application/forms/AddUser.php:55
+#: airtime_mvc/application/forms/EditUser.php:67
+msgid "Firstname:"
+msgstr "Vorname:"
+
+#: airtime_mvc/application/forms/AddUser.php:61
+#: airtime_mvc/application/forms/EditUser.php:75
+msgid "Lastname:"
+msgstr "Nachname:"
+
+#: airtime_mvc/application/forms/AddUser.php:76
+#: airtime_mvc/application/forms/EditUser.php:94
+msgid "Mobile Phone:"
+msgstr "Mobiltelefon:"
+
+#: airtime_mvc/application/forms/AddUser.php:82
+#: airtime_mvc/application/forms/EditUser.php:102
+msgid "Skype:"
+msgstr "Skype:"
+
+#: airtime_mvc/application/forms/AddUser.php:88
+#: airtime_mvc/application/forms/EditUser.php:110
+msgid "Jabber:"
+msgstr "Jabber:"
+
+#: airtime_mvc/application/forms/AddUser.php:95
+msgid "User Type:"
+msgstr "Benutzertyp:"
+
+#: airtime_mvc/application/forms/AddUser.php:120
+#: airtime_mvc/application/forms/EditUser.php:155
+msgid "Login name is not unique."
+msgstr "Benutzername ist bereits vorhanden."
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
+msgid "Import Folder:"
+msgstr "Import Verzeichnis:"
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
+msgid "Watched Folders:"
+msgstr "Überwachte Verzeichnisse:"
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
+msgid "Not a valid Directory"
+msgstr "Kein gültiges Verzeichnis"
+
+#: airtime_mvc/application/forms/BillingClient.php:126
+msgid "What is the name of your favorite childhood friend?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:127
+msgid "What school did you attend for sixth grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:128
+msgid "In what city did you meet your spouse/significant other?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:129
+msgid "What street did you live on in third grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:130
+msgid "What is the first name of the boy or girl that you first kissed?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:131
+msgid "In what city or town was your first job?"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
+msgid "Default License:"
+msgstr "Standard Lizenz:"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
+msgid "All rights are reserved"
+msgstr "Alle Rechte vorbehalten"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
+msgid "The work is in the public domain"
+msgstr "Die Rechte an dieser Arbeit sind gemeinfrei"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
+msgid "Creative Commons Attribution"
+msgstr "[CC-BY] Creative Commons Namensnennung"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
+msgid "Creative Commons Attribution Noncommercial"
+msgstr "[CC-BY-NC] Creative Commons Namensnennung, keine kommerzielle Nutzung"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
+msgid "Creative Commons Attribution No Derivative Works"
+msgstr "[CC-BY-ND] Creative Commons Namensnennung, keine Bearbeitung"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
+msgid "Creative Commons Attribution Share Alike"
+msgstr "[CC-BY-SA] Creative Commons Namensnennung, Weitergabe unter gleichen Bedingungen"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
+msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
+msgstr "[CC-BY-NC-ND] Creative Commons Namensnennung, keine kommerzielle Nutzung, keine Bearbeitung"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
+msgid "Creative Commons Attribution Noncommercial Share Alike"
+msgstr "[CC-BY-NC-SA] Creative Commons Namensnennung, keine kommerzielle Nutzung, Weitergabe unter gleichen Bedingungen"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
+msgid "Default Sharing Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
+msgid "Public"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
+msgid "Private"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditUser.php:129
+msgid "Interface Timezone:"
+msgstr "Interface Zeitzone:"
+
+#: airtime_mvc/application/forms/Player.php:14
+msgid "Now Playing"
+msgstr "Jetzt"
+
+#: airtime_mvc/application/forms/Player.php:25
+msgid "Select Stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:28
+msgid "Auto detect the most appropriate stream to use."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:29
+msgid "Select a stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:41
+msgid " - Mobile friendly"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:45
+msgid " - The player does not support Opus streams."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:71
+msgid "Embeddable code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:72
+msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
+#: airtime_mvc/application/models/Block.php:1351
+msgid "Select criteria"
+msgstr " - Kriterien - "
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
+#: airtime_mvc/application/models/Block.php:1353
+msgid "Bit Rate (Kbps)"
+msgstr "Bit Rate (Kbps)"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
+#: airtime_mvc/application/models/Block.php:1374
+msgid "Sample Rate (kHz)"
+msgstr "Sample Rate (kHz)"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
+msgid "hours"
+msgstr "Stunden"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
+msgid "minutes"
+msgstr "Minuten"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
+#: airtime_mvc/application/models/Block.php:333
+msgid "items"
+msgstr "Titel"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
+msgid "Randomly"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
+msgid "Newest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
+msgid "Oldest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
+msgid "Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
+msgid "Static"
+msgstr "Statisch"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
+msgid "Dynamic"
+msgstr "Dynamisch"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
+msgid "Allow Repeated Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
+msgid "Sort Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
+msgid "Limit to:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
+msgid "Generate playlist content and save criteria"
+msgstr "Playlist-Inhalt erstellen und Kriterien speichern"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
+msgid "Generate"
+msgstr "Erstellen"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
+msgid "Shuffle playlist content"
+msgstr "Inhalt der Playlist Mischen"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
+msgid "Limit cannot be empty or smaller than 0"
+msgstr "Beschränkung kann nicht leer oder kleiner als 0 sein"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
+msgid "Limit cannot be more than 24 hrs"
+msgstr "Beschränkung kann nicht größer als 24 Stunden sein"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
+msgid "The value should be an integer"
+msgstr "Der Wert muß eine ganze Zahl sein"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
+msgid "500 is the max item limit value you can set"
+msgstr "Die Anzahl der Objekte ist auf 500 beschränkt"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
+msgid "You must select Criteria and Modifier"
+msgstr "Sie müssen Kriterium und Modifikator bestimmen"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
+msgid "'Length' should be in '00:00:00' format"
+msgstr "Die 'Dauer' muß im Format '00:00:00' eingegeben werden"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
+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:594
+msgid "The value has to be numeric"
+msgstr "Der eingegebene Wert muß aus Ziffern bestehen"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
+msgid "The value should be less then 2147483648"
+msgstr "Der eingegebene Wert muß kleiner sein als 2147483648"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
+#, php-format
+msgid "The value should be less than %s characters"
+msgstr "Der eingegebene Wert muß aus weniger als %s Zeichen bestehen."
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
+msgid "Value cannot be empty"
+msgstr "Der Wert darf nicht leer sein"
+
+#: airtime_mvc/application/forms/StreamSetting.php:26
+msgid "Icecast Vorbis Metadata"
+msgstr "Icecast Vorbis Metadata"
+
+#: airtime_mvc/application/forms/StreamSetting.php:36
+msgid "Stream Label:"
+msgstr "Streambezeichnung:"
+
+#: airtime_mvc/application/forms/StreamSetting.php:37
+msgid "Artist - Title"
+msgstr "Artist - Titel"
+
+#: airtime_mvc/application/forms/StreamSetting.php:38
+msgid "Show - Artist - Title"
+msgstr "Sendung - Artist - Titel"
+
+#: airtime_mvc/application/forms/StreamSetting.php:39
+msgid "Station name - Show name"
+msgstr "Sender - Sendung"
+
+#: airtime_mvc/application/forms/StreamSetting.php:45
+msgid "Off Air Metadata"
+msgstr "Off Air Metadaten"
+
+#: airtime_mvc/application/forms/StreamSetting.php:51
+msgid "Enable Replay Gain"
+msgstr "Replay Gain aktivieren"
+
+#: airtime_mvc/application/forms/StreamSetting.php:57
+msgid "Replay Gain Modifier"
+msgstr "Replay Gain Modifikator"
+
+#: airtime_mvc/application/forms/StreamSetting.php:65
+msgid "Streaming Server:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Airtime Pro Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Custom / 3rd Party Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordChange.php:17
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
+msgid "Password"
+msgstr "Passwort"
-#~ msgid "enter a time in seconds 0{.0}"
-#~ msgstr "Geben sie eine Zeit in Sekunden ein 0{.0}"
+#: airtime_mvc/application/forms/PasswordChange.php:28
+msgid "Confirm new password"
+msgstr "Neues Passwort bestätigen"
-#~ msgid "Allow Remote Websites To Access \"Schedule\" Info?%s (Enable this to make front-end widgets work.)"
-#~ msgstr "Anderen Webseiten den Zugriff auf \"Kalender\" Info?%s erlauben. (Aktivieren Sie diese Option, damit Frontend-Widgets funktionieren.)"
+#: airtime_mvc/application/forms/PasswordChange.php:36
+msgid "Password confirmation does not match your password."
+msgstr "Passwortbestätigung stimmt nicht mit Passwort überein."
-#~ msgid "Default Interface Language"
-#~ msgstr "Standardsprache"
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
+msgid "Station Language"
+msgstr ""
-#~ msgid "Get new password"
-#~ msgstr "Neues Passwort erhalten"
-
-#~ msgid "Set smart block type:"
-#~ msgstr "Smart Block Typ:"
-
-#~ msgid "Allow Repeat Tracks:"
-#~ msgstr "Titel wiederholen:"
-
-#~ msgid "Limit to"
-#~ msgstr "Beschränke auf"
-
-#~ msgid "Auto Switch Off"
-#~ msgstr "Automatisch abschalten"
-
-#~ msgid "Auto Switch On"
-#~ msgstr "Automatisch anschalten"
-
-#~ msgid "Switch Transition Fade (s)"
-#~ msgstr "Übergang beim Umschalten (Fade in Sekunden)"
-
-#~ msgid "enter a time in seconds 00{.000000}"
-#~ msgstr "Eingabe der Zeit in Sekunden 00{.000000}"
-
-#~ msgid "Master Username"
-#~ msgstr "Master Benutzername"
-
-#~ msgid "Master Password"
-#~ msgstr "Master Passwort"
-
-#~ msgid "Master Source Connection URL"
-#~ msgstr "Master Source Connection-URL"
-
-#~ msgid "Show Source Connection URL"
-#~ msgstr "Show Source Connection URL"
-
-#~ msgid "Master Source Port"
-#~ msgstr "Master Source Port"
-
-#~ msgid "Master Source Mount Point"
-#~ msgstr "Master Source Mount Point"
-
-#~ msgid "Show Source Port"
-#~ msgstr "Show Source Port"
-
-#~ msgid "Show Source Mount Point"
-#~ msgstr "Show Source Mount Point"
-
-#~ msgid "You cannot use same port as Master DJ port."
-#~ msgstr "Sie können nicht denselben Port als \"Master Source Port\" nutzen."
-
-#~ msgid "Port %s is not available"
-#~ msgstr "Port %s ist nicht verfügbar"
-
-#~ msgid "E-mail"
-#~ msgstr "E-Mail"
-
-#~ msgid "Restore password"
-#~ msgstr "Passwort wiederherstellen"
-
-#~ msgid "Hardware Audio Output"
-#~ msgstr "Hardware Audioausgabe"
-
-#~ msgid "Output Type"
-#~ msgstr "Ausgabetyp"
-
-#~ msgid "Date/Time Start:"
-#~ msgstr "Datum/Zeit Beginn:"
-
-#~ msgid "Date/Time End:"
-#~ msgstr "Datum/Uhrzeit Ende:"
-
-#~ msgid "Automatically Upload Recorded Shows"
-#~ msgstr "Automatisches Hochladen aufgezeichneter Sendungen"
-
-#~ msgid "Enable SoundCloud Upload"
-#~ msgstr "Aktiviere SoundCloud Upload"
-
-#~ msgid "Automatically Mark Files \"Downloadable\" on SoundCloud"
-#~ msgstr "Markiere Dateien auf SoundCloud automatisch als \"herunterladbar\""
-
-#~ msgid "SoundCloud Email"
-#~ msgstr "SoundCloud E-Mail"
-
-#~ msgid "SoundCloud Password"
-#~ msgstr "SoundCloud Passwort"
-
-#~ msgid "SoundCloud Tags: (separate tags with spaces)"
-#~ msgstr "SoundCloud Tags: (mehrere Tags mit Leerzeichen trennen)"
-
-#~ msgid "Default Genre:"
-#~ msgstr "Standard Genre:"
-
-#~ msgid "Default Track Type:"
-#~ msgstr "Standard Titel Typ:"
-
-#~ msgid "Original"
-#~ msgstr "Original"
-
-#~ msgid "Remix"
-#~ msgstr "Remix"
-
-#~ msgid "Live"
-#~ msgstr "Live"
-
-#~ msgid "Recording"
-#~ msgstr "Aufnahme"
-
-#~ msgid "Spoken"
-#~ msgstr "Talk"
-
-#~ msgid "Podcast"
-#~ msgstr "Podcast"
-
-#~ msgid "Demo"
-#~ msgstr "Demo"
-
-#~ msgid "Work in progress"
-#~ msgstr "In Bearbeitung"
-
-#~ msgid "Stem"
-#~ msgstr "Stem"
-
-#~ msgid "Loop"
-#~ msgstr "Loop"
-
-#~ msgid "Sound Effect"
-#~ msgstr "Sound Effekt"
-
-#~ msgid "One Shot Sample"
-#~ msgstr "One Shot Sample"
-
-#~ msgid "Other"
-#~ msgstr "Sonstige"
-
-#~ msgid "Enable System Emails (Password Reset)"
-#~ msgstr "System E-Mails aktivieren (ermöglicht Passwort zurücksetzen)"
-
-#~ msgid "Reset Password 'From' Email"
-#~ msgstr "'Von' Email (Passwort zurücksetzen Absender)"
-
-#~ msgid "Configure Mail Server"
-#~ msgstr "Mailserver konfigurieren"
-
-#~ msgid "Requires Authentication"
-#~ msgstr "Erfordert Authentifizierung"
-
-#~ msgid "Mail Server"
-#~ msgstr "Mail Server"
-
-#~ msgid "Email Address"
-#~ msgstr "E-Mail Adresse"
-
-#~ msgid "Please enter your user name and password"
-#~ msgstr "Bitte geben sie Benutzernamen und Passwort ein"
-
-#~ msgid "Given email not found."
-#~ msgstr "Angegebene E-Mail-Adresse konnte nicht gefunden."
-
-#~ msgid "Page not found"
-#~ msgstr "Seite nicht gefunden"
-
-#~ msgid "Application error"
-#~ msgstr "Anwendungsfehler"
-
-#~ msgid "Playlist / Block"
-#~ msgstr "Playlist"
-
-#~ msgid "If you change the username or password values for an enabled stream the playout engine will be rebooted and your listeners will hear silence for 5-10 seconds. Changing the following fields will NOT cause a reboot: Stream Label (Global Settings), and Switch Transition Fade(s), Master Username, and Master Password (Input Stream Settings). If Airtime is recording, and if the change causes a playout engine restart, the recording will be interrupted."
-#~ msgstr ""
-#~ "Wenn sie den Benutzernamen oder das Passwort für einen aktivierten Stream ändern, wird die Playout Engine neu gestartet und Ihre Zuhörer werden für 5-10 Sekunden Stille hören. \n"
-#~ "Wenn sie die folgenden Felder ändern, gibt es KEINEN Neustart: Stream Label (Allgemeine Einstellungen) und Master Übergang beim Umschalten (Fade in Sekunden), Master Benutzername Passwort (Input Stream Einstellungen). Wenn Airtime aufnimmt und wenn die Änderung eine Playout Engine Neustart bewirkt, wird die Aufnahme unterbrochen."
-
-#~ msgid "today"
-#~ msgstr "heute"
-
-#~ msgid "day"
-#~ msgstr "Tag"
-
-#~ msgid "week"
-#~ msgstr "Woche"
-
-#~ msgid "month"
-#~ msgstr "Monat"
-
-#~ msgid "Remove overbooked tracks"
-#~ msgstr "Überbuchte Titel entfernen"
-
-#~ msgid "Soundcloud"
-#~ msgstr "Soundcloud"
-
-#~ msgid "View on Soundcloud"
-#~ msgstr "Auf SoundCloud ansehen"
-
-#~ msgid "Re-upload to SoundCloud"
-#~ msgstr "Erneut auf SoundCloud hochladen"
-
-#~ msgid "Upload to SoundCloud"
-#~ msgstr "Auf SoundCloud hochladen"
-
-#~ msgid "Could not delete some scheduled files."
-#~ msgstr "Einige im Programmplan enthaltene Dateien konnten nicht gelöscht werden."
-
-#~ msgid "Add Media"
-#~ msgstr "Medien hinzufügen"
-
-#~ msgid "Library"
-#~ msgstr "Bibliothek"
-
-#~ msgid "System"
-#~ msgstr "System"
-
-#~ msgid "Preferences"
-#~ msgstr "Einstellungen"
-
-#~ msgid "Media Folders"
-#~ msgstr "Medienordner"
-
-#~ msgid "History"
-#~ msgstr "Verlauf"
-
-#~ msgid "Service"
-#~ msgstr "Dienst"
-
-#~ msgid "Uptime"
-#~ msgstr "Betriebszeit"
-
-#~ msgid "CPU"
-#~ msgstr "CPU"
-
-#~ msgid "Memory"
-#~ msgstr "Speicher"
-
-#~ msgid "Email / Mail Server Settings"
-#~ msgstr "E-Mail / Mail-Server-Einstellungen"
-
-#~ msgid "Connection URL: "
-#~ msgstr "Verbindung URL:"
-
-#~ msgid "Input Stream Settings"
-#~ msgstr "Einstellungen Input Stream"
-
-#~ msgid "Master Source Connection URL:"
-#~ msgstr "Master Source URL Verbindung:"
-
-#~ msgid "Override"
-#~ msgstr "Überschreiben"
-
-#~ msgid "RESET"
-#~ msgstr "ZURÜCKSETZEN"
-
-#~ msgid "Show Source Connection URL:"
-#~ msgstr "Show Source Connection URL:"
-
-#~ msgid "Filter By Show:"
-#~ msgstr "Filter nach Sendung:"
-
-#~ msgid "%s's Settings"
-#~ msgstr "%s's Einstellungen"
-
-#~ msgid "Sourcefabric Privacy Policy"
-#~ msgstr "Sourcefabric Datenschutzrichtlinie"
-
-#~ msgid "Smart Block Options"
-#~ msgstr "Smart Block Optionen"
-
-#~ msgid "file meet the criteria"
-#~ msgstr "entspricht den Kriterien"
-
-#~ msgid "New"
-#~ msgstr "Neu"
-
-#~ msgid "New Playlist"
-#~ msgstr "Neue Playlist"
-
-#~ msgid "New Smart Block"
-#~ msgstr "Neuer Smart Block"
-
-#~ msgid "New Webstream"
-#~ msgstr "Neuer Webstream"
-
-#~ msgid "View / edit description"
-#~ msgstr "Beschreibung ansehen/ändern"
-
-#~ msgid "Global Settings"
-#~ msgstr "Globale Einstellungen"
-
-#~ msgid "Output Stream Settings"
-#~ msgstr "Stream-Ausgabe Einstellungen"
-
-#~ msgid "Listener Count Over Time"
-#~ msgstr "Hörerzahlen im Zeitraum"
-
-#~ msgid "Begin by adding your files to the library using the 'Add Media' menu button. You can drag and drop your files to this window too."
-#~ msgstr "Beginnen sie damit, Dateien ihrer Bibliothek hinzuzufügen. Verwenden sie dazu die Schaltfläche 'Medien Hinzufügen'. Dateien können auch via Drag'n'Drop hinzugefügt werden."
-
-#~ msgid "Create a show by going to 'Calendar' in the menu bar, and then clicking the '+ Show' icon. This can be either a one-time or repeating show. Only admins and program managers can add shows."
-#~ msgstr "Erstellen sie eine Sendung, indem sie die Schaltfläche 'Kalender' betätigen und anschließend auf die Schaltfläche '+ Sendung' klicken. Dies kann eine einmalige oder sich wiederholende Sendung sein. Nur Administratoren und Programm Manager können Sendungen hinzufügen."
-
-#~ msgid "Add media to the show by going to your show in the Schedule calendar, left-clicking on it and selecting 'Add / Remove Content'"
-#~ msgstr ""
-#~ "Fügen sie Mediendateien einer Show hinzu.\n"
-#~ "Öffnen sie dazu die gewünschte Sendung durch einen Links-Klick im Kalender und wählen sie 'Inhalt hinzufügen / entfernen'"
-
-#~ msgid "Select your media from the left pane and drag them to your show in the right pane."
-#~ msgstr "Wählen sie Medien vom linken Feld und ziehen sie es in ihre Sendung im rechten Feld."
-
-#~ msgid "Then you're good to go!"
-#~ msgstr "Dann kann es auch schon los gehen!"
-
-#~ msgid "Please enter your account e-mail address. You will receive a link to create a new password via e-mail."
-#~ msgstr "Bitte geben sie die E-Mail-Adresse ein, die in ihrem Benutzerkonto eingetragen ist. sie erhalten einen Link um ein neues Passwort via E-Mail zu erstellen."
-
-#~ msgid "Email sent"
-#~ msgstr "E-Mail gesendet"
-
-#~ msgid "An email has been sent"
-#~ msgstr "Ein E-Mail wurder gesendet"
-
-#~ msgid "Back to login screen"
-#~ msgstr "Zurück zum Anmeldebildschirm"
-
-#~ msgid "Scheduled Play"
-#~ msgstr "geplante Wiederg."
-
-#~ msgid "Station time"
-#~ msgstr "Sender Zeit"
-
-#~ msgid "Zend Framework Default Application"
-#~ msgstr "Zend Framework Default Application"
-
-#~ msgid "Empty smart block"
-#~ msgstr "Smart Block leeren"
-
-#~ msgid "Empty playlist"
-#~ msgstr "Playlist leeren"
-
-#~ msgid "Empty smart block content"
-#~ msgstr "Leerer Smart Block Inhalt"
-
-#~ msgid "No open smart block"
-#~ msgstr "Kein Smart Block geöffnet"
-
-#~ msgid "Record & Rebroadcast"
-#~ msgstr "Aufnahme & Wiederholung"
-
-#~ msgid "Failed to create 'organize' directory."
-#~ msgstr "Fehler beim Erstellen des Ordners 'organize'"
-
-#~ msgid "The file was not uploaded, there is %s MB of disk space left and the file you are uploading has a size of %s MB."
-#~ msgstr "Die Datei konnte nicht hochgeladen werden. Es sind %s MB Speicherplatz frei und die Datei, die sie hochladen wollen, hat eine Größe von %s MB."
-
-#~ msgid "This file appears to be corrupted and will not be added to media library."
-#~ msgstr "Die Datei scheint fehlerhaft zu sein und wird der Bibliothek nicht hinzugefügt."
-
-#~ msgid "The file was not uploaded, this error can occur if the computer hard drive does not have enough disk space or the stor directory does not have correct write permissions."
-#~ msgstr "Die Datei konnte nicht hochgeladen werden. Dieser Fehler kann auftreten, wenn die Festplatte des Computers nicht über genügend freien Speicherplatz verfügt oder das Ablageverzeichnis 'stor' keine Schreibrechte hat."
-
-#~ msgid ""
-#~ "Hi %s, \n"
-#~ "\n"
-#~ "Click this link to reset your password: "
-#~ msgstr ""
-#~ "Hallo %s , \n"
-#~ "\n"
-#~ "Klicke auf diesen Link um dein Passwort zurückzusetzen: "
-
-#~ msgid "Show Content"
-#~ msgstr "Sendungsinhalt"
-
-#~ msgid "Remove All Content"
-#~ msgstr "Gesamten Inhalt entfernen"
-
-#~ msgid "Cancel Current Show"
-#~ msgstr "Aktuelle Sendung abbrechen"
-
-#~ msgid "Edit This Instance"
-#~ msgstr "Diese Folge bearbeiten"
-
-#~ msgid "Delete This Instance"
-#~ msgstr "Diese Folge löschen"
-
-#~ msgid "Delete This Instance and All Following"
-#~ msgstr "Diese Folge und alle folgenden löschen"
-
-#~ msgid "Please selection an option"
-#~ msgstr "Bitte eine Option wählen"
-
-#~ msgid "No Records"
-#~ msgstr "Keine Aufzeichnungen"
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
+msgid "Enabled:"
+msgstr "Aktiviert:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
+msgid "Mobile:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
+msgid "Stream Type:"
+msgstr "Stream Typ:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
+msgid "Service Type:"
+msgstr "Service Typ:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
+msgid "Channels:"
+msgstr "Kanäle:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "1 - Mono"
+msgstr "1 - Mono"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "2 - Stereo"
+msgstr "2 - Stereo"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
+msgid "Server"
+msgstr "Server"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
+msgid "Port"
+msgstr "Port"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
+msgid "Only numbers are allowed."
+msgstr "Es sind nur Zahlen erlaubt"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
+msgid "URL"
+msgstr "URL"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
+msgid "Mount Point"
+msgstr "Mount Point"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
+msgid "Admin User"
+msgstr "Admin Benutzer"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
+msgid "Admin Password"
+msgstr "Admin Passwort"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
+msgid "Server cannot be empty."
+msgstr "Server darf nicht leer sein."
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
+msgid "Port cannot be empty."
+msgstr "Port darf nicht leer sein."
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
+msgid "Mount cannot be empty with Icecast server."
+msgstr "Mount darf nicht leer sein, wenn Icecast-Server verwendet wird."
+
+#: airtime_mvc/application/forms/AddShowWhen.php:16
+msgid "'%value%' does not fit the time format 'HH:mm'"
+msgstr "'%value%' ist nicht im Format 'HH:mm'"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:22
+msgid "Start Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:37
+msgid "In the Future:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:64
+msgid "End Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:98
+msgid "Timezone:"
+msgstr "Zeitzone:"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:107
+msgid "Repeats?"
+msgstr "Wiederholungen?"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:139
+msgid "Cannot create show in the past"
+msgstr "Es kann keine Sendung für einen vergangenen Zeitpunkt geplant werden"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:147
+msgid "Cannot modify start date/time of the show that is already started"
+msgstr "Startdatum/Zeit können nicht geändert werden, wenn die Sendung bereits begonnen hat."
+
+#: airtime_mvc/application/forms/AddShowWhen.php:156
+#: airtime_mvc/application/models/Show.php:282
+msgid "End date/time cannot be in the past"
+msgstr "Datum/Uhrzeit des Endes darf nicht in der Vergangenheit liegen"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:164
+msgid "Cannot have duration < 0m"
+msgstr "Die Dauer einer Sendung kann nicht kürzer als 0 Minuten sein."
+
+#: airtime_mvc/application/forms/AddShowWhen.php:168
+msgid "Cannot have duration 00h 00m"
+msgstr "Die Dauer einer Sendung kann nicht 00h 00m sein"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:175
+msgid "Cannot have duration greater than 24h"
+msgstr "Die Dauer einer Sendung kann nicht länger als 24h sein"
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:19
+msgid "Push metadata to your station on TuneIn?"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:24
+msgid "Station ID:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:30
+msgid "Partner Key:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:36
+msgid "Partner Id:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:77
+#: airtime_mvc/application/forms/TuneInPreferences.php:86
+msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:10
+#, php-format
+msgid "Use %s Authentication:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:16
+msgid "Use Custom Authentication:"
+msgstr "Benutzerdefiniertes Login:"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:25
+msgid "Custom Username"
+msgstr "Benutzerdefinierter Benutzername"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:37
+msgid "Custom Password"
+msgstr "Benutzerdefiniertes Passwort"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:48
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
+msgid "Host:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
+msgid "Port:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:60
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
+msgid "Mount:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:77
+msgid "Username field cannot be empty."
+msgstr "Das Feld Benutzername darf nicht leer sein."
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:82
+msgid "Password field cannot be empty."
+msgstr "Das Feld Passwort darf nicht leer sein."
+
+#: airtime_mvc/application/forms/AddShowStyle.php:12
+msgid "Background Colour:"
+msgstr "Hintergrundfarbe:"
+
+#: airtime_mvc/application/forms/AddShowStyle.php:31
+msgid "Text Colour:"
+msgstr "Textfarbe:"
+
+#: airtime_mvc/application/forms/AddShowStyle.php:49
+msgid "Current Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:72
+msgid "Show Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:87
+msgid "Logo Preview:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Login.php:102
+msgid "Type the characters you see in the picture below."
+msgstr "Geben sie die Zeichen aus dem Bild unten ein."
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
+msgid "Auto Switch Off:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
+msgid "Auto Switch On:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
+msgid "Switch Transition Fade (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:10
+msgid "Link:"
+msgstr "Verknüpfen:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:16
+msgid "Repeat Type:"
+msgstr "Wiederholungstyp:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:19
+msgid "weekly"
+msgstr "wöchentlich"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:20
+msgid "every 2 weeks"
+msgstr "jede zweite Woche"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:21
+msgid "every 3 weeks"
+msgstr "jede dritte Woche"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:22
+msgid "every 4 weeks"
+msgstr "jede vierte Woche"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:23
+msgid "monthly"
+msgstr "monatlich"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:32
+msgid "Select Days:"
+msgstr "Tage wählen:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:47
+msgid "Repeat By:"
+msgstr "Wiederholung von:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the month"
+msgstr "Tag des Monats"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the week"
+msgstr "Tag der Woche"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:69
+msgid "No End?"
+msgstr "Kein Enddatum?"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:106
+msgid "End date must be after start date"
+msgstr "Enddatum muß nach dem Startdatum liegen"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:113
+msgid "Please select a repeat day"
+msgstr "Bitte einen Tag zum Wiederholen wählen"
+
+#: airtime_mvc/application/configs/navigation.php:12
+msgid "Radio Page"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:19
+msgid "Calendar"
+msgstr "Kalender"
+
+#: airtime_mvc/application/configs/navigation.php:26
+msgid "Widgets"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:48
+msgid "Settings"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:67
+msgid "Users"
+msgstr "Benutzer"
+
+#: airtime_mvc/application/configs/navigation.php:74
+msgid "Streams"
+msgstr "Streams"
+
+#: airtime_mvc/application/configs/navigation.php:82
+msgid "Analytics"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:90
+msgid "Listener Stats"
+msgstr "Hörerstatistiken"
+
+#: airtime_mvc/application/configs/navigation.php:104
+msgid "History Templates"
+msgstr "Verlaufsvorlagen"
+
+#: airtime_mvc/application/configs/navigation.php:113
+msgid "Billing"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:120
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:127
+msgid "Account Details"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:134
+msgid "View Invoices"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:150
+msgid "Getting Started"
+msgstr "Kurzanleitung"
+
+#: airtime_mvc/application/configs/navigation.php:157
+msgid "FAQ"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:162
+msgid "User Manual"
+msgstr "Benutzerhandbuch"
+
+#: airtime_mvc/application/configs/navigation.php:167
+msgid "File a Support Ticket"
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:833
+#: airtime_mvc/application/models/Playlist.php:812
+msgid "Cue in and cue out are null."
+msgstr "Cue In und Cue Out sind Null."
+
+#: airtime_mvc/application/models/Block.php:868
+#: airtime_mvc/application/models/Block.php:924
+#: airtime_mvc/application/models/Playlist.php:851
+#: airtime_mvc/application/models/Playlist.php:895
+msgid "Can't set cue out to be greater than file length."
+msgstr "Cue In darf nicht größer als die Gesamtlänge der Datei sein."
+
+#: airtime_mvc/application/models/Block.php:879
+#: airtime_mvc/application/models/Block.php:900
+#: airtime_mvc/application/models/Playlist.php:843
+#: airtime_mvc/application/models/Playlist.php:868
+msgid "Can't set cue in to be larger than cue out."
+msgstr "Cue In darf nicht größer als Cue Out sein."
+
+#: airtime_mvc/application/models/Block.php:935
+#: airtime_mvc/application/models/Playlist.php:887
+msgid "Can't set cue out to be smaller than cue in."
+msgstr "Cue Out darf nicht kleiner als Cue In sein."
+
+#: airtime_mvc/application/models/Block.php:1366
+msgid "Upload Time"
+msgstr ""
+
+#: airtime_mvc/application/models/ShowBuilder.php:212
+#, php-format
+msgid "Rebroadcast of %s from %s"
+msgstr "Wiederholung der Sendung %s von %s"
+
+#: airtime_mvc/application/models/Preference.php:460
+#, php-format
+msgid "Powered by %s"
+msgstr ""
+
+#: airtime_mvc/application/models/Preference.php:588
+msgid "Select Country"
+msgstr "Land wählen"
+
+#: airtime_mvc/application/models/MusicDir.php:160
+#, php-format
+msgid "%s is already watched."
+msgstr "%s wird bereits überwacht."
+
+#: airtime_mvc/application/models/MusicDir.php:164
+#, php-format
+msgid "%s contains nested watched directory: %s"
+msgstr "%s enthält andere bereits überwachte Verzeichnisse: %s "
+
+#: airtime_mvc/application/models/MusicDir.php:168
+#, php-format
+msgid "%s is nested within existing watched directory: %s"
+msgstr "%s ist ein Unterverzeichnis eines bereits überwachten Verzeichnisses: %s"
+
+#: airtime_mvc/application/models/MusicDir.php:189
+#: airtime_mvc/application/models/MusicDir.php:370
+#, php-format
+msgid "%s is not a valid directory."
+msgstr "%s ist kein gültiges Verzeichnis."
+
+#: airtime_mvc/application/models/MusicDir.php:232
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list"
+msgstr "%s ist bereits als aktuelles Speicherverzeichnis bestimmt oder in der Liste überwachter Verzeichnisse"
+
+#: airtime_mvc/application/models/MusicDir.php:388
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list."
+msgstr "%s ist bereits als aktuelles Speicherverzeichnis bestimmt oder in der Liste überwachter Verzeichnisse."
+
+#: airtime_mvc/application/models/MusicDir.php:431
+#, php-format
+msgid "%s doesn't exist in the watched list."
+msgstr "%s existiert nicht in der Liste überwachter Verzeichnisse."
+
+#: airtime_mvc/application/models/Auth.php:33
+#, php-format
+msgid ""
+"Hi %s, \n"
+"\n"
+"Please click this link to reset your password: "
+msgstr ""
+
+#: airtime_mvc/application/models/Auth.php:38
+#, php-format
+msgid "%s Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/models/Show.php:184
+msgid "Shows can have a max length of 24 hours."
+msgstr "Die Maximaldauer einer Sendung beträgt 24 Stunden."
+
+#: airtime_mvc/application/models/Show.php:293
+msgid ""
+"Cannot schedule overlapping shows.\n"
+"Note: Resizing a repeating show affects all of its repeats."
+msgstr ""
+"Sendungen können nicht überlappend geplant werden.\n"
+"Beachte: Wird die Dauer einer wiederkehrenden Sendung verändert, wirkt sich das auch auf alle Wiederholungen aus."
+
+#: airtime_mvc/application/models/Scheduler.php:73
+msgid "Cannot move items out of linked shows"
+msgstr "Inhalte aus verknüpften Sendungen können nicht verschoben werden"
+
+#: airtime_mvc/application/models/Scheduler.php:119
+msgid "The schedule you're viewing is out of date! (sched mismatch)"
+msgstr "Der Kalender den sie sehen ist nicht mehr aktuell!(Kalender falsch zugeordnet)"
+
+#: airtime_mvc/application/models/Scheduler.php:124
+msgid "The schedule you're viewing is out of date! (instance mismatch)"
+msgstr "Der Kalender den sie sehen ist nicht mehr aktuell! (Instanz falsch zugeordnet)"
+
+#: airtime_mvc/application/models/Scheduler.php:132
+#: airtime_mvc/application/models/Scheduler.php:458
+#: airtime_mvc/application/models/Scheduler.php:490
+msgid "The schedule you're viewing is out of date!"
+msgstr "Der Kalender den sie sehen ist nicht mehr aktuell!"
+
+#: airtime_mvc/application/models/Scheduler.php:142
+#, php-format
+msgid "You are not allowed to schedule show %s."
+msgstr "Sie haben nicht die erforderliche Berechtigung einen Termin für die Sendung %s zu festzulegen."
+
+#: airtime_mvc/application/models/Scheduler.php:146
+msgid "You cannot add files to recording shows."
+msgstr "Einer Sendungsaufzeichnung können keine Dateien hinzugefügt werden."
+
+#: airtime_mvc/application/models/Scheduler.php:152
+#, php-format
+msgid "The show %s is over and cannot be scheduled."
+msgstr "Die Sendung %s ist beendet und kann daher nicht verändert werden."
+
+#: airtime_mvc/application/models/Scheduler.php:159
+#, php-format
+msgid "The show %s has been previously updated!"
+msgstr "Die Sendung %s wurde bereits aktualisiert!"
+
+#: airtime_mvc/application/models/Scheduler.php:178
+msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
+msgstr "Inhalte in verknüpften Sendungen können nicht während der Sendung geändert werden"
+
+#: airtime_mvc/application/models/Scheduler.php:195
+msgid "Cannot schedule a playlist that contains missing files."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:216
+#: airtime_mvc/application/models/Scheduler.php:305
+msgid "A selected File does not exist!"
+msgstr "Eine der gewählten Dateien existiert nicht!"
+
+#: airtime_mvc/application/models/Schedule.php:206
+msgid "livestream"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:166
+msgid "Length needs to be greater than 0 minutes"
+msgstr "Dauer muß länger als 0 Minuten sein."
+
+#: airtime_mvc/application/models/Webstream.php:171
+msgid "Length should be of form \"00h 00m\""
+msgstr "Dauer im Format \"00h 00m\" eingeben."
+
+#: airtime_mvc/application/models/Webstream.php:184
+msgid "URL should be of form \"http://domain\""
+msgstr "URL im Format \"http://domain\" eingeben."
+
+#: airtime_mvc/application/models/Webstream.php:187
+msgid "URL should be 512 characters or less"
+msgstr "URL darf aus höchstens 512 Zeichen bestehen."
+
+#: airtime_mvc/application/models/Webstream.php:193
+msgid "No MIME type found for webstream."
+msgstr "Es konnte kein MIME-Typ für den Webstream gefunden werden."
+
+#: airtime_mvc/application/models/Webstream.php:209
+msgid "Webstream name cannot be empty"
+msgstr "Die Bezeichnung eines Webstreams darf nicht leer sein."
+
+#: airtime_mvc/application/models/Webstream.php:278
+msgid "Could not parse XSPF playlist"
+msgstr "Die XSPF Playlist konnte nicht eingelesen werden"
+
+#: airtime_mvc/application/models/Webstream.php:298
+msgid "Could not parse PLS playlist"
+msgstr "Die PLS Playlist konnte nicht eingelesen werden"
+
+#: airtime_mvc/application/models/Webstream.php:318
+msgid "Could not parse M3U playlist"
+msgstr "Die M3U Playlist konnte nicht eingelesen werden"
+
+#: airtime_mvc/application/models/Webstream.php:332
+msgid "Invalid webstream - This appears to be a file download."
+msgstr "Ungültiger Webstream - Die eingegebene URL scheint ein Dateidownload zu sein."
+
+#: airtime_mvc/application/models/Webstream.php:336
+#, php-format
+msgid "Unrecognized stream type: %s"
+msgstr "Unbekannter Stream-Typ: %s"
+
+#: airtime_mvc/public/setup/rabbitmq-setup.php:78
+msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
+msgstr ""
+
+#~ msgid "My Account"
+#~ msgstr "Mein Konto"
diff --git a/airtime_mvc/locale/de_DE/LC_MESSAGES/pro.po b/airtime_mvc/locale/de_DE/LC_MESSAGES/pro.po
index 866ee0acb..f59b52c3d 100644
--- a/airtime_mvc/locale/de_DE/LC_MESSAGES/pro.po
+++ b/airtime_mvc/locale/de_DE/LC_MESSAGES/pro.po
@@ -1,3 +1,139 @@
+#: airtime_mvc/application/controllers/LoginController.php:170
+#, php-format
+msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
+#, php-format
+msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
+#, php-format
+msgid "If you are the primary owner of this station, please reset your password here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
+msgid "Thank you!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
+msgid "Your station has been upgraded successfully."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
+msgid "Return to Airtime"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+#, php-format
+msgid "Purchase an %s plan!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+msgid "My Account"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
+msgid "Upgrade today to get more listeners and storage space!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
+msgid "View Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:257
+msgid "Your Current Plan:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:291
+msgid "Please enter your payment details:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
+msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
+msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:17
+msgid "First Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:26
+msgid "Last Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:35
+msgid "Company Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:44
+msgid "Email Address:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:54
+msgid "Address 1:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:63
+msgid "Address 2:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:70
+msgid "City:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:80
+msgid "State/Region:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:89
+msgid "Zip Code / Postal Code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:102
+msgid "Country:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:112
+msgid "Phone Number:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:121
+msgid "Please choose a security question:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:135
+msgid "Please enter an answer:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:152
+msgid "VAT/Tax ID (EU only)"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:162
+msgid "Subscribe to Sourcefabric newsletter"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:172
+msgid "Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:181
+msgid "Verify Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:193
+msgid "Save"
+msgstr ""
+
#: airtime_mvc/application/models/Auth.php:35
#, php-format
msgid ""
@@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
-msgid "Thank you!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
-msgid "Your station has been upgraded successfully."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
-msgid "Return to Airtime"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
-#, php-format
-msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
-msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
-msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
-#, php-format
-msgid "If you are the primary owner of this station, please reset your password here."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:170
-#, php-format
-msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
-msgstr ""
diff --git a/airtime_mvc/locale/el_GR/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/el_GR/LC_MESSAGES/airtime.mo
index a518836dd..0a9afd038 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 f25f713fe..62b759a5f 100644
--- a/airtime_mvc/locale/el_GR/LC_MESSAGES/airtime.po
+++ b/airtime_mvc/locale/el_GR/LC_MESSAGES/airtime.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Airtime\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-09-03 10:24-0400\n"
-"PO-Revision-Date: 2014-11-14 09:58+0000\n"
+"POT-Creation-Date: 2015-09-04 11:17-0400\n"
+"PO-Revision-Date: 2015-09-04 08:15+0000\n"
"Last-Translator: Daniel James \n"
"Language-Team: Greek (Greece) (http://www.transifex.com/sourcefabric/airtime/language/el_GR/)\n"
"Language: el_GR\n"
@@ -19,132 +19,6 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: airtime_mvc/public/setup/rabbitmq-setup.php:78
-msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1117
-#: airtime_mvc/application/services/HistoryService.php:1157
-#: airtime_mvc/application/services/HistoryService.php:1174
-#: airtime_mvc/application/models/Block.php:1375
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
-#: airtime_mvc/application/controllers/LocaleController.php:76
-msgid "Title"
-msgstr "Τίτλος"
-
-#: airtime_mvc/application/services/HistoryService.php:1118
-#: airtime_mvc/application/services/HistoryService.php:1158
-#: airtime_mvc/application/services/HistoryService.php:1175
-#: airtime_mvc/application/models/Block.php:1360
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
-#: airtime_mvc/application/controllers/LocaleController.php:77
-msgid "Creator"
-msgstr "Δημιουργός"
-
-#: airtime_mvc/application/services/HistoryService.php:1119
-#: airtime_mvc/application/models/Block.php:1352
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
-#: airtime_mvc/application/controllers/LocaleController.php:78
-msgid "Album"
-msgstr "Album"
-
-#: airtime_mvc/application/services/HistoryService.php:1120
-#: airtime_mvc/application/services/HistoryService.php:1177
-#: airtime_mvc/application/models/Block.php:1369
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
-#: airtime_mvc/application/controllers/LocaleController.php:91
-msgid "Length"
-msgstr "Διάρκεια"
-
-#: airtime_mvc/application/services/HistoryService.php:1121
-#: airtime_mvc/application/models/Block.php:1362
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
-#: airtime_mvc/application/controllers/LocaleController.php:85
-msgid "Genre"
-msgstr "Είδος"
-
-#: airtime_mvc/application/services/HistoryService.php:1122
-#: airtime_mvc/application/models/Block.php:1371
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
-#: airtime_mvc/application/controllers/LocaleController.php:93
-msgid "Mood"
-msgstr "Διάθεση"
-
-#: airtime_mvc/application/services/HistoryService.php:1123
-#: airtime_mvc/application/models/Block.php:1364
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
-#: airtime_mvc/application/controllers/LocaleController.php:87
-msgid "Label"
-msgstr "Εταιρεία"
-
-#: airtime_mvc/application/services/HistoryService.php:1124
-#: airtime_mvc/application/services/HistoryService.php:1178
-#: airtime_mvc/application/models/Block.php:1355
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
-#: airtime_mvc/application/controllers/LocaleController.php:81
-msgid "Composer"
-msgstr "Συνθέτης"
-
-#: airtime_mvc/application/services/HistoryService.php:1125
-#: airtime_mvc/application/models/Block.php:1363
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
-#: airtime_mvc/application/controllers/LocaleController.php:86
-msgid "ISRC"
-msgstr "ISRC"
-
-#: airtime_mvc/application/services/HistoryService.php:1126
-#: airtime_mvc/application/services/HistoryService.php:1179
-#: airtime_mvc/application/models/Block.php:1357
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
-#: airtime_mvc/application/controllers/LocaleController.php:83
-msgid "Copyright"
-msgstr "Copyright"
-
-#: airtime_mvc/application/services/HistoryService.php:1127
-#: airtime_mvc/application/models/Block.php:1379
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
-#: airtime_mvc/application/controllers/LocaleController.php:100
-msgid "Year"
-msgstr "Έτος"
-
-#: airtime_mvc/application/services/HistoryService.php:1128
-msgid "Track"
-msgstr "Κομμάτι"
-
-#: airtime_mvc/application/services/HistoryService.php:1129
-#: airtime_mvc/application/models/Block.php:1356
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
-#: airtime_mvc/application/controllers/LocaleController.php:82
-msgid "Conductor"
-msgstr "Ενορχήστρωση"
-
-#: airtime_mvc/application/services/HistoryService.php:1130
-#: airtime_mvc/application/models/Block.php:1365
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
-#: airtime_mvc/application/controllers/LocaleController.php:88
-msgid "Language"
-msgstr "Γλώσσα"
-
-#: airtime_mvc/application/services/HistoryService.php:1155
-#: airtime_mvc/application/forms/EditHistoryItem.php:32
-msgid "Start Time"
-msgstr "Ώρα Έναρξης"
-
-#: airtime_mvc/application/services/HistoryService.php:1156
-#: airtime_mvc/application/forms/EditHistoryItem.php:44
-msgid "End Time"
-msgstr "Ώρα Τέλους"
-
-#: airtime_mvc/application/services/HistoryService.php:1176
-msgid "Played"
-msgstr "Παίχτηκε"
-
#: airtime_mvc/application/services/CalendarService.php:50
msgid "Record file doesn't exist"
msgstr "Το αρχείο δεν υπάρχει"
@@ -240,2605 +114,382 @@ msgstr "Η εκπομπή διεγράφη επειδή δεν υπάρχει η
msgid "Must wait 1 hour to rebroadcast."
msgstr "Πρέπει να περιμένετε 1 ώρα για την αναμετάδοση."
-#: airtime_mvc/application/models/Schedule.php:206
-msgid "livestream"
-msgstr ""
-
-#: airtime_mvc/application/models/ShowBuilder.php:212
-#, php-format
-msgid "Rebroadcast of %s from %s"
-msgstr "Αναμετάδοση του %s από %s"
-
-#: airtime_mvc/application/models/Webstream.php:166
-msgid "Length needs to be greater than 0 minutes"
-msgstr "Το μήκος πρέπει να είναι μεγαλύτερο από 0 λεπτά"
-
-#: airtime_mvc/application/models/Webstream.php:171
-msgid "Length should be of form \"00h 00m\""
-msgstr "Το μήκος πρέπει να είναι υπό μορφής \"00h 00m\""
-
-#: airtime_mvc/application/models/Webstream.php:184
-msgid "URL should be of form \"http://domain\""
-msgstr "Το URL θα πρέπει να είναι υπό μορφής \"http://domain \""
-
-#: airtime_mvc/application/models/Webstream.php:187
-msgid "URL should be 512 characters or less"
-msgstr "Το URL πρέπει να αποτελέιται από μέχρι και 512 χαρακτήρες "
-
-#: airtime_mvc/application/models/Webstream.php:193
-msgid "No MIME type found for webstream."
-msgstr "Δεν βρέθηκε τύπος MIME για webstream."
-
-#: airtime_mvc/application/models/Webstream.php:209
-msgid "Webstream name cannot be empty"
-msgstr "Το όνομα του webstream δεν μπορεί να είναι κενό"
-
-#: airtime_mvc/application/models/Webstream.php:278
-msgid "Could not parse XSPF playlist"
-msgstr "Δεν ήταν δυνατή η ανάλυση της λίστας αναπαραγωγής XSPF "
-
-#: airtime_mvc/application/models/Webstream.php:298
-msgid "Could not parse PLS playlist"
-msgstr "Αδυναμία ανάλυσης λίστας αναπαραγωγής PLS"
-
-#: airtime_mvc/application/models/Webstream.php:318
-msgid "Could not parse M3U playlist"
-msgstr "Δεν ήταν δυνατή η ανάλυση της λίστας αναπαραγωγής M3U"
-
-#: airtime_mvc/application/models/Webstream.php:332
-msgid "Invalid webstream - This appears to be a file download."
-msgstr "Μη έγκυρο webstream - Αυτό φαίνεται να αποτελεί αρχείο λήψης."
-
-#: airtime_mvc/application/models/Webstream.php:336
-#, php-format
-msgid "Unrecognized stream type: %s"
-msgstr "Άγνωστος τύπος stream: %s"
-
-#: airtime_mvc/application/models/Preference.php:460
-#, php-format
-msgid "Powered by %s"
-msgstr ""
-
-#: airtime_mvc/application/models/Preference.php:588
-msgid "Select Country"
-msgstr "Επιλέξτε Χώρα"
-
-#: airtime_mvc/application/models/MusicDir.php:160
-#, php-format
-msgid "%s is already watched."
-msgstr "%s έχει ήδη προβληθεί."
-
-#: airtime_mvc/application/models/MusicDir.php:164
-#, php-format
-msgid "%s contains nested watched directory: %s"
-msgstr "%s περιέχει ένθετο ευρετήριο προβεβλημένων: %s"
-
-#: airtime_mvc/application/models/MusicDir.php:168
-#, php-format
-msgid "%s is nested within existing watched directory: %s"
-msgstr "%s βρίσκεται σε υποκατηγορία υπάρχωντος ευρετηρίου προβεβλημμένων: %s"
-
-#: airtime_mvc/application/models/MusicDir.php:189
-#: airtime_mvc/application/models/MusicDir.php:370
-#, php-format
-msgid "%s is not a valid directory."
-msgstr "%s μη έγκυρο ευρετήριο."
-
-#: airtime_mvc/application/models/MusicDir.php:232
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list"
-msgstr "%s έχει ήδη οριστεί ως το τρέχον ευρετήριο αποθήκευσης ή βρίσκεται στη λίστα προβεβλημένων φακέλων"
-
-#: airtime_mvc/application/models/MusicDir.php:388
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list."
-msgstr "%s έχει ήδη οριστεί ως το τρέχον ευρετήριο αποθήκευσης ή βρίσκεται στη λίστα προβεβλημένων φακέλων."
-
-#: airtime_mvc/application/models/MusicDir.php:431
-#, php-format
-msgid "%s doesn't exist in the watched list."
-msgstr "%s δεν υπάρχει στη λίστα προβεβλημένων."
-
-#: airtime_mvc/application/models/Show.php:184
-msgid "Shows can have a max length of 24 hours."
-msgstr "Η μέγιστη διάρκει εκπομπών είναι 24 ώρες."
-
-#: airtime_mvc/application/models/Show.php:282
-#: airtime_mvc/application/forms/AddShowWhen.php:156
-msgid "End date/time cannot be in the past"
-msgstr "Η λήξη ημερομηνίας/χρόνου δεν μπορεί να είναι στο παρελθόν"
-
-#: airtime_mvc/application/models/Show.php:293
-msgid ""
-"Cannot schedule overlapping shows.\n"
-"Note: Resizing a repeating show affects all of its repeats."
-msgstr ""
-"Δεν είναι δυνατός ο προγραμματισμός αλληλοεπικαλυπτώμενων εκπομπών.\n"
-" Σημείωση: Η αλλαγή μεγέθους μιας εκπομπής επηρεάζει όλες τις επαναλήψεις της."
-
-#: airtime_mvc/application/models/Auth.php:33
-#, php-format
-msgid ""
-"Hi %s, \n"
-"\n"
-"Please click this link to reset your password: "
-msgstr ""
-
-#: airtime_mvc/application/models/Auth.php:38
-#, php-format
-msgid "%s Password Reset"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:333
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
-msgid "items"
-msgstr "στοιχεία"
-
-#: airtime_mvc/application/models/Block.php:833
-#: airtime_mvc/application/models/Playlist.php:812
-msgid "Cue in and cue out are null."
-msgstr "Cue in και cue out είναι μηδέν."
-
-#: airtime_mvc/application/models/Block.php:868
-#: airtime_mvc/application/models/Block.php:924
-#: airtime_mvc/application/models/Playlist.php:851
-#: airtime_mvc/application/models/Playlist.php:895
-msgid "Can't set cue out to be greater than file length."
-msgstr "Το cue out δεν μπορεί να είναι μεγαλύτερο από το μήκος του αρχείου."
-
-#: airtime_mvc/application/models/Block.php:879
-#: airtime_mvc/application/models/Block.php:900
-#: airtime_mvc/application/models/Playlist.php:843
-#: airtime_mvc/application/models/Playlist.php:868
-msgid "Can't set cue in to be larger than cue out."
-msgstr "Το cue in δεν μπορεί να είναι μεγαλύτερης διάρκειας από το cue out."
-
-#: airtime_mvc/application/models/Block.php:935
-#: airtime_mvc/application/models/Playlist.php:887
-msgid "Can't set cue out to be smaller than cue in."
-msgstr "Το cue out δεν μπορεί να είναι μικρότερο από το cue in."
-
-#: airtime_mvc/application/models/Block.php:1351
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
-msgid "Select criteria"
-msgstr "Επιλέξτε κριτήρια"
-
-#: airtime_mvc/application/models/Block.php:1353
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
-msgid "Bit Rate (Kbps)"
-msgstr "Bit Rate (Kbps)"
-
-#: airtime_mvc/application/models/Block.php:1354
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
-#: airtime_mvc/application/controllers/LocaleController.php:80
-msgid "BPM"
-msgstr "BPM"
-
-#: airtime_mvc/application/models/Block.php:1358
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
-#: airtime_mvc/application/controllers/LocaleController.php:281
-#: airtime_mvc/application/layouts/scripts/layout.phtml:140
-msgid "Cue In"
-msgstr "Cue In"
-
-#: airtime_mvc/application/models/Block.php:1359
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:282
-#: airtime_mvc/application/layouts/scripts/layout.phtml:147
-msgid "Cue Out"
-msgstr "Cue Out"
-
-#: airtime_mvc/application/models/Block.php:1361
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
-#: airtime_mvc/application/controllers/LocaleController.php:84
-msgid "Encoded By"
-msgstr "Κωδικοποιήθηκε από"
-
-#: airtime_mvc/application/models/Block.php:1366
-msgid "Upload Time"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1367
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
-#: airtime_mvc/application/controllers/LocaleController.php:89
-msgid "Last Modified"
-msgstr "Τελευταία τροποποίηση"
-
-#: airtime_mvc/application/models/Block.php:1368
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
-#: airtime_mvc/application/controllers/LocaleController.php:90
-msgid "Last Played"
-msgstr "Τελευταία αναπαραγωγή"
-
-#: airtime_mvc/application/models/Block.php:1370
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
-#: airtime_mvc/application/controllers/LocaleController.php:92
-msgid "Mime"
-msgstr "Μίμος"
-
-#: airtime_mvc/application/models/Block.php:1372
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
-#: airtime_mvc/application/controllers/LocaleController.php:94
-msgid "Owner"
-msgstr "Ιδιοκτήτης"
-
-#: airtime_mvc/application/models/Block.php:1373
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
-#: airtime_mvc/application/controllers/LocaleController.php:95
-msgid "Replay Gain"
-msgstr "Κέρδος Επανάληψης"
-
-#: airtime_mvc/application/models/Block.php:1374
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
-msgid "Sample Rate (kHz)"
-msgstr "Ρυθμός Δειγματοληψίας (kHz)"
-
-#: airtime_mvc/application/models/Block.php:1376
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
-#: airtime_mvc/application/controllers/LocaleController.php:97
-msgid "Track Number"
-msgstr "Αριθμός Κομματιού"
-
-#: airtime_mvc/application/models/Block.php:1377
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
-#: airtime_mvc/application/controllers/LocaleController.php:98
-msgid "Uploaded"
-msgstr "Φορτώθηκε"
-
-#: airtime_mvc/application/models/Block.php:1378
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
-#: airtime_mvc/application/controllers/LocaleController.php:99
-msgid "Website"
-msgstr "Ιστοσελίδα"
-
-#: airtime_mvc/application/models/Block.php:1383
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
-#: airtime_mvc/application/controllers/LocaleController.php:151
-msgid "Select modifier"
-msgstr "Επιλέξτε τροποποιητή"
-
-#: airtime_mvc/application/models/Block.php:1384
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
-#: airtime_mvc/application/controllers/LocaleController.php:152
-msgid "contains"
-msgstr "περιέχει"
-
-#: airtime_mvc/application/models/Block.php:1385
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
-#: airtime_mvc/application/controllers/LocaleController.php:153
-msgid "does not contain"
-msgstr "δεν περιέχει"
-
-#: airtime_mvc/application/models/Block.php:1386
-#: airtime_mvc/application/models/Block.php:1390
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
-#: airtime_mvc/application/controllers/LocaleController.php:154
-msgid "is"
-msgstr "είναι"
-
-#: airtime_mvc/application/models/Block.php:1387
-#: airtime_mvc/application/models/Block.php:1391
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
-#: airtime_mvc/application/controllers/LocaleController.php:155
-msgid "is not"
-msgstr "δεν είναι"
-
-#: airtime_mvc/application/models/Block.php:1388
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
-#: airtime_mvc/application/controllers/LocaleController.php:156
-msgid "starts with"
-msgstr "ξεκινά με"
-
-#: airtime_mvc/application/models/Block.php:1389
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
-#: airtime_mvc/application/controllers/LocaleController.php:157
-msgid "ends with"
-msgstr "τελειώνει με"
-
-#: airtime_mvc/application/models/Block.php:1392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
-#: airtime_mvc/application/controllers/LocaleController.php:158
-msgid "is greater than"
-msgstr "είναι μεγαλύτερος από"
-
-#: airtime_mvc/application/models/Block.php:1393
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
-#: airtime_mvc/application/controllers/LocaleController.php:159
-msgid "is less than"
-msgstr "είναι μικρότερος από"
-
-#: airtime_mvc/application/models/Block.php:1394
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
-#: airtime_mvc/application/controllers/LocaleController.php:160
-msgid "is in the range"
-msgstr "είναι στην κλίμακα"
-
-#: airtime_mvc/application/models/Scheduler.php:73
-msgid "Cannot move items out of linked shows"
-msgstr "Η μετακίνηση στοιχείων εκτός συνδεδεμένων εκπομπών είναι αδύνατη."
-
-#: airtime_mvc/application/models/Scheduler.php:119
-msgid "The schedule you're viewing is out of date! (sched mismatch)"
-msgstr "Το πρόγραμμα που βλέπετε δεν είναι έγκυρο! (αναντιστοιχία προγράμματος)"
-
-#: airtime_mvc/application/models/Scheduler.php:124
-msgid "The schedule you're viewing is out of date! (instance mismatch)"
-msgstr "Το πρόγραμμα που βλέπετε δεν είναι ενημερωμένο! (αναντιστοιχία παραδείγματος)"
-
-#: airtime_mvc/application/models/Scheduler.php:132
-#: airtime_mvc/application/models/Scheduler.php:458
-#: airtime_mvc/application/models/Scheduler.php:490
-msgid "The schedule you're viewing is out of date!"
-msgstr "Το πρόγραμμα που βλέπετε δεν είναι ενημερωμένο!"
-
-#: airtime_mvc/application/models/Scheduler.php:142
-#, php-format
-msgid "You are not allowed to schedule show %s."
-msgstr "Δεν έχετε δικαίωμα προγραμματισμού εκπομπής%s.."
-
-#: airtime_mvc/application/models/Scheduler.php:146
-msgid "You cannot add files to recording shows."
-msgstr "Δεν μπορείτε να προσθεσετε αρχεία σε ηχογραφημένες εκπομπές."
-
-#: airtime_mvc/application/models/Scheduler.php:152
-#, php-format
-msgid "The show %s is over and cannot be scheduled."
-msgstr "Η εκπομπή %s έχει τελειώσει και δεν μπορεί να προγραμματιστεί."
-
-#: airtime_mvc/application/models/Scheduler.php:159
-#, php-format
-msgid "The show %s has been previously updated!"
-msgstr "Η εκπομπή %s έχει ενημερωθεί πρόσφατα!"
-
-#: airtime_mvc/application/models/Scheduler.php:178
-msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
-msgstr "Το περιεχόμενο συνδεδεμένων εκπομπών πρέπει να να προγραμματιστεί πριν ή μετά την αναμετάδοσή τους"
-
-#: airtime_mvc/application/models/Scheduler.php:195
-msgid "Cannot schedule a playlist that contains missing files."
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:216
-#: airtime_mvc/application/models/Scheduler.php:305
-msgid "A selected File does not exist!"
-msgstr "Ένα επιλεγμένο αρχείο δεν υπάρχει!"
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
-#: airtime_mvc/application/configs/navigation.php:40
-msgid "Weekly Schedule"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
-#: airtime_mvc/application/forms/Player.php:77
-msgid "Preview:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
-#: airtime_mvc/application/configs/navigation.php:34
-msgid "Player"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
-#: airtime_mvc/application/controllers/LocaleController.php:362
-#: airtime_mvc/application/controllers/LocaleController.php:390
-msgid "Close"
-msgstr "Κλείσιμο"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Add this show"
-msgstr "Προσθήκη αυτής της εκπομπής "
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Update show"
-msgstr "Ενημέρωση εκπομπής"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
-msgid "What"
-msgstr "Τι"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
-msgid "When"
-msgstr "Πότε"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
-msgid "Live Stream Input"
-msgstr "Είσοδος Live Stream "
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
-msgid "Who"
-msgstr "Ποιός"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
-msgid "Style"
-msgstr "Στυλ"
-
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
-#: airtime_mvc/application/controllers/LocaleController.php:273
-msgid "Start"
-msgstr "Έναρξη"
-
-#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
-msgid "Password Reset"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
-msgid "Email Sent!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
-msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
-msgid "Back"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
-msgid "New password"
-msgstr "Νέος κωδικός πρόσβασης"
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
-msgid "Please enter and confirm your new password in the fields below."
-msgstr "Παρακαλώ εισάγετε και επαληθεύστε τον νέο κωδικό πρόσβασής σας στα παρακάτω πεδία. "
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:3
-#: airtime_mvc/application/forms/Login.php:83
-msgid "Login"
-msgstr "Σύνδεση"
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:7
-#, php-format
-msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:97
-msgid "Playout History"
-msgstr "Ιστορικό Playout"
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
-msgid "Log Sheet"
-msgstr "Σελίδα Σύνδεσης"
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
-msgid "File Summary"
-msgstr "Περίληψη Αρχείων"
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
-msgid "Show Summary"
-msgstr "Προβολή Περίληψης"
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
-msgid "Your trial expires in"
-msgstr "Το δοκιμαστικό λήγει σε"
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
-msgid "days"
-msgstr "ημέρες"
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-#, php-format
-msgid "Purchase an %s Pro plan!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-msgid "My Account"
-msgstr "Ο λογαριασμός μου"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
-msgid "Previous:"
-msgstr "Προηγούμενο"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
-msgid "Next:"
-msgstr "Επόμενο"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
-msgid "Source Streams"
-msgstr "Πηγή Streams"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
-msgid "Master Source"
-msgstr "Κύρια Πηγή "
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
-msgid "Show Source"
-msgstr "Εμφάνιση Πηγής "
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
-msgid "ON AIR"
-msgstr "ON AIR"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
-msgid "Listen"
-msgstr "Ακούστε!"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
-msgid "Logout"
-msgstr "Έξοδος"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
-msgid "Drop files here or click to browse your computer."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
-#: airtime_mvc/application/controllers/LocaleController.php:314
-msgid "in use"
-msgstr "σε χρήση"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
-#: airtime_mvc/application/controllers/LocaleController.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:401
-msgid "All"
-msgstr "Όλα"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
-msgid "Failed"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
-msgid "Pending"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
-msgid "Recent Uploads"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
-#: airtime_mvc/application/configs/navigation.php:120
-msgid "Account Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
-msgid "Upgrade today to get more listeners and storage space!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
-msgid "View Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
-msgid "About"
-msgstr "Σχετικά"
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
-#, php-format
-msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
-#, php-format
-msgid "%1$s %2$s is distributed under the %3$s"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
-#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
-msgid "Live stream"
-msgstr "Ζωντανό Stream"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
-msgid "Share"
-msgstr "Μοιραστείτε"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
-msgid "Select stream:"
-msgstr "Επιλέξτε stream:"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
-msgid "mute"
-msgstr "Σίγαση"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
-msgid "unmute"
-msgstr "Κατάργηση σίγασης"
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
-#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
-#, php-format
-msgid "Welcome to %s!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
-#, php-format
-msgid "Here's how you can get started using %s to automate your broadcasts: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
-msgid "Upload audio tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
-msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
-msgid "Schedule a show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
-msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
-msgid "Add tracks to your show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
-msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
-msgid "Now you're good to go!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
-#, php-format
-msgid "For more detailed help, read the %suser manual%s."
-msgstr "Για περισσότερες αναλυτικές οδηγίες, διαβάστε το %sεγχειρίδιο%s ."
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
-msgid "Listeners"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
-msgid "Stream Data Collection Status"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
-#: airtime_mvc/application/views/scripts/error/error.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
-msgid "An error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
-msgid "Access Denied!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
-msgid "You do not have permission to access this page!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
-#: airtime_mvc/application/views/scripts/error/error.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
-#: airtime_mvc/application/configs/navigation.php:143
-msgid "Help"
-msgstr "Βοήθεια"
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
-msgid "Page not found!"
-msgstr "Η σελίδα δεν βρέθηκε!"
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
-msgid "We couldn't find the page you were looking for."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error.phtml:12
-msgid "Looks like the page you were looking for doesn't exist!"
-msgstr "Η σελίδα που ψάχνατε δεν υπάρχει!"
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
-msgid "Oops!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
-msgid "Something went wrong!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
-msgid "Bad Request!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
-msgid "The requested action is not supported!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
-msgid "Viewing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
-msgid "Editing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:3
-msgid "File import in progress..."
-msgstr "Εισαγωγή αρχείου σε εξέλιξη..."
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:10
-#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
-msgid "Advanced Search Options"
-msgstr "Προηγμένες Επιλογές Αναζήτησης"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
-#: airtime_mvc/application/forms/Player.php:15
-#: airtime_mvc/application/forms/EditAudioMD.php:24
-msgid "Title:"
-msgstr "Τίτλος:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
-#: airtime_mvc/application/forms/EditAudioMD.php:34
-msgid "Creator:"
-msgstr "Δημιουργός:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
-#: airtime_mvc/application/forms/EditAudioMD.php:44
-msgid "Album:"
-msgstr "Album:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
-msgid "Track:"
-msgstr "Κομμάτι:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
-msgid "Length:"
-msgstr "Διάρκεια:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
-msgid "Sample Rate:"
-msgstr "Ρυθμός δειγματοληψίας:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
-msgid "Bit Rate:"
-msgstr "Ρυθμός Δεδομένων:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
-#: airtime_mvc/application/forms/EditAudioMD.php:115
-msgid "Mood:"
-msgstr "Διάθεση:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
-#: airtime_mvc/application/forms/EditAudioMD.php:62
-#: airtime_mvc/application/forms/AddShowWhat.php:45
-msgid "Genre:"
-msgstr "Είδος:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
-#: airtime_mvc/application/forms/EditAudioMD.php:72
-msgid "Year:"
+#: airtime_mvc/application/services/HistoryService.php:1117
+#: airtime_mvc/application/services/HistoryService.php:1157
+#: airtime_mvc/application/services/HistoryService.php:1174
+#: airtime_mvc/application/controllers/LocaleController.php:76
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
+#: airtime_mvc/application/models/Block.php:1375
+msgid "Title"
+msgstr "Τίτλος"
+
+#: airtime_mvc/application/services/HistoryService.php:1118
+#: airtime_mvc/application/services/HistoryService.php:1158
+#: airtime_mvc/application/services/HistoryService.php:1175
+#: airtime_mvc/application/controllers/LocaleController.php:77
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
+#: airtime_mvc/application/models/Block.php:1360
+msgid "Creator"
+msgstr "Δημιουργός"
+
+#: airtime_mvc/application/services/HistoryService.php:1119
+#: airtime_mvc/application/controllers/LocaleController.php:78
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
+#: airtime_mvc/application/models/Block.php:1352
+msgid "Album"
+msgstr "Album"
+
+#: airtime_mvc/application/services/HistoryService.php:1120
+#: airtime_mvc/application/services/HistoryService.php:1177
+#: airtime_mvc/application/controllers/LocaleController.php:91
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
+#: airtime_mvc/application/models/Block.php:1369
+msgid "Length"
+msgstr "Διάρκεια"
+
+#: airtime_mvc/application/services/HistoryService.php:1121
+#: airtime_mvc/application/controllers/LocaleController.php:85
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
+#: airtime_mvc/application/models/Block.php:1362
+msgid "Genre"
+msgstr "Είδος"
+
+#: airtime_mvc/application/services/HistoryService.php:1122
+#: airtime_mvc/application/controllers/LocaleController.php:93
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
+#: airtime_mvc/application/models/Block.php:1371
+msgid "Mood"
+msgstr "Διάθεση"
+
+#: airtime_mvc/application/services/HistoryService.php:1123
+#: airtime_mvc/application/controllers/LocaleController.php:87
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
+#: airtime_mvc/application/models/Block.php:1364
+msgid "Label"
+msgstr "Εταιρεία"
+
+#: airtime_mvc/application/services/HistoryService.php:1124
+#: airtime_mvc/application/services/HistoryService.php:1178
+#: airtime_mvc/application/controllers/LocaleController.php:81
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
+#: airtime_mvc/application/models/Block.php:1355
+msgid "Composer"
+msgstr "Συνθέτης"
+
+#: airtime_mvc/application/services/HistoryService.php:1125
+#: airtime_mvc/application/controllers/LocaleController.php:86
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
+#: airtime_mvc/application/models/Block.php:1363
+msgid "ISRC"
+msgstr "ISRC"
+
+#: airtime_mvc/application/services/HistoryService.php:1126
+#: airtime_mvc/application/services/HistoryService.php:1179
+#: airtime_mvc/application/controllers/LocaleController.php:83
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
+#: airtime_mvc/application/models/Block.php:1357
+msgid "Copyright"
+msgstr "Copyright"
+
+#: airtime_mvc/application/services/HistoryService.php:1127
+#: airtime_mvc/application/controllers/LocaleController.php:100
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
+#: airtime_mvc/application/models/Block.php:1379
+msgid "Year"
msgstr "Έτος"
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
-#: airtime_mvc/application/forms/EditAudioMD.php:85
-msgid "Label:"
-msgstr "Δισκογραφική:"
+#: airtime_mvc/application/services/HistoryService.php:1128
+msgid "Track"
+msgstr "Κομμάτι"
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
-#: airtime_mvc/application/forms/EditAudioMD.php:125
-msgid "BPM:"
-msgstr "BPM:"
+#: airtime_mvc/application/services/HistoryService.php:1129
+#: airtime_mvc/application/controllers/LocaleController.php:82
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
+#: airtime_mvc/application/models/Block.php:1356
+msgid "Conductor"
+msgstr "Ενορχήστρωση"
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
-#: airtime_mvc/application/forms/EditAudioMD.php:95
-msgid "Composer:"
-msgstr "Συνθέτης:"
+#: airtime_mvc/application/services/HistoryService.php:1130
+#: airtime_mvc/application/controllers/LocaleController.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
+#: airtime_mvc/application/models/Block.php:1365
+msgid "Language"
+msgstr "Γλώσσα"
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
-#: airtime_mvc/application/forms/EditAudioMD.php:105
-msgid "Conductor:"
-msgstr "Μαέστρος:"
+#: airtime_mvc/application/services/HistoryService.php:1155
+#: airtime_mvc/application/forms/EditHistoryItem.php:32
+msgid "Start Time"
+msgstr "Ώρα Έναρξης"
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
-#: airtime_mvc/application/forms/EditAudioMD.php:135
-msgid "Copyright:"
-msgstr "Copyright:"
+#: airtime_mvc/application/services/HistoryService.php:1156
+#: airtime_mvc/application/forms/EditHistoryItem.php:44
+msgid "End Time"
+msgstr "Ώρα Τέλους"
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
-msgid "Isrc Number:"
-msgstr "Αριθμός ISRC:"
+#: airtime_mvc/application/services/HistoryService.php:1176
+msgid "Played"
+msgstr "Παίχτηκε"
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
-#: airtime_mvc/application/forms/EditAudioMD.php:155
-msgid "Website:"
-msgstr "Ιστοσελίδα:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
-#: airtime_mvc/application/forms/EditUser.php:119
-#: airtime_mvc/application/forms/EditAudioMD.php:165
-#: airtime_mvc/application/forms/Login.php:68
-msgid "Language:"
-msgstr "Γλώσσα:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
-msgid "File Path:"
-msgstr "Διαδρομή Αρχείου"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
-#: airtime_mvc/application/forms/AddShowWhat.php:26
-msgid "Name:"
-msgstr "Όνομα:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
-#: airtime_mvc/application/forms/AddShowWhat.php:54
-msgid "Description:"
-msgstr "Περιγραφή:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
-msgid "Web Stream"
-msgstr "Web Stream"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
-msgid "Dynamic Smart Block"
-msgstr "Δυναμικά Smart Block"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
-msgid "Static Smart Block"
-msgstr "Στατικά Smart Block"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
-msgid "Audio Track"
-msgstr "Κομμάτι Ήχου"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
-msgid "Playlist Contents: "
-msgstr "Περιεχόμενα Λίστας Αναπαραγωγής: "
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
-msgid "Static Smart Block Contents: "
-msgstr "Περιεχόμενα Στατικών Smart Block : "
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
-msgid "Dynamic Smart Block Criteria: "
-msgstr "Κριτήρια Δυναμικών Smart Block: "
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
-msgid "Limit to "
-msgstr "Όριο για "
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
-#: airtime_mvc/application/forms/AddShowWhat.php:36
-msgid "URL:"
-msgstr "Διεύθυνση URL:"
-
-#: airtime_mvc/application/views/scripts/form/login.phtml:41
-msgid "Forgot your password?"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
+#: airtime_mvc/application/controllers/LibraryController.php:31
+#: airtime_mvc/application/controllers/PlaylistController.php:147
#, php-format
-msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
+msgid "%s not found"
+msgstr "%s δεν βρέθηκε"
+
+#: airtime_mvc/application/controllers/LibraryController.php:40
+#: airtime_mvc/application/controllers/PlaylistController.php:168
+msgid "Something went wrong."
+msgstr "Κάτι πήγε στραβά."
+
+#: airtime_mvc/application/controllers/LibraryController.php:95
+#: airtime_mvc/application/controllers/ShowbuilderController.php:136
+msgid "Preview"
+msgstr "Προεπισκόπηση"
+
+#: airtime_mvc/application/controllers/LibraryController.php:115
+#: airtime_mvc/application/controllers/LibraryController.php:177
+#: airtime_mvc/application/controllers/LibraryController.php:200
+msgid "Add to Playlist"
+msgstr "Προσθήκη στη λίστα αναπαραγωγής"
+
+#: airtime_mvc/application/controllers/LibraryController.php:117
+msgid "Add to Smart Block"
+msgstr "Προσθήκη στο Smart Block"
+
+#: airtime_mvc/application/controllers/LibraryController.php:123
+#: airtime_mvc/application/controllers/LocaleController.php:66
+msgid "Edit Metadata"
+msgstr "Επεξεργασία Μεταδεδομένων"
+
+#: airtime_mvc/application/controllers/LibraryController.php:131
+#: airtime_mvc/application/controllers/ScheduleController.php:712
+msgid "Download"
+msgstr "Λήψη"
+
+#: airtime_mvc/application/controllers/LibraryController.php:147
+msgid "View track"
msgstr ""
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
+#: airtime_mvc/application/controllers/LibraryController.php:148
+msgid "Remove track"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:154
+#: airtime_mvc/application/controllers/LibraryController.php:159
+msgid "Upload track"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:169
+msgid "Duplicate Playlist"
+msgstr "Αντιγραφή Λίστας Αναπαραγωγής"
+
+#: airtime_mvc/application/controllers/LibraryController.php:213
+msgid "No action available"
+msgstr "Καμία διαθέσιμη δράση"
+
+#: airtime_mvc/application/controllers/LibraryController.php:233
+msgid "You don't have permission to delete selected items."
+msgstr "Δεν έχετε άδεια διαγραφής των επιλεγμένων στοιχείων."
+
+#: airtime_mvc/application/controllers/LibraryController.php:279
+msgid "Could not delete file because it is scheduled in the future."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:282
+msgid "Could not delete file(s)."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:322
#, php-format
-msgid "Click the box below to promote your station on %s."
-msgstr ""
+msgid "Copy of %s"
+msgstr "Αντιγραφή από %s"
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
-msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
-msgstr "(Για να προωθήσετε τον σταθμό σας, η 'Αποστολή σχολίων υποστήριξης» πρέπει να είναι ενεργοποιημένη)."
+#: airtime_mvc/application/controllers/WebstreamController.php:28
+#: airtime_mvc/application/controllers/WebstreamController.php:32
+msgid "Untitled Webstream"
+msgstr "Webstream χωρίς Τίτλο"
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
-msgid "(Required)"
-msgstr "(Απαιτείται)"
+#: airtime_mvc/application/controllers/WebstreamController.php:150
+msgid "Webstream saved."
+msgstr "Το Webstream αποθηκεύτηκε."
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
-msgid "(for verification purposes only, will not be published)"
-msgstr "(Μόνο για σκοπούς επαλήθευσης, δεν θα δημοσιευθεί)"
+#: airtime_mvc/application/controllers/WebstreamController.php:158
+msgid "Invalid form values."
+msgstr "Άκυρες μορφές αξίας."
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
-msgid "Choose folder"
-msgstr "Επιλέξτε φάκελο"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
-msgid "Set"
-msgstr "Ορισμός"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
-msgid "Current Import Folder:"
-msgstr "Τρέχων Φάκελος Εισαγωγής:"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
-msgid "Add"
-msgstr "Προσθήκη"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
-#, php-format
-msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
-msgid "Remove watched directory"
-msgstr "Αφαίρεση προβεβλημμένου ευρετηρίου"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
-msgid "You are not watching any media folders."
-msgstr "Δεν παρακολουθείτε κανέναν φάκελο πολυμέσων."
-
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
-msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
-msgid "Live Broadcasting"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
-msgid "Use these settings in your broadcasting software to stream live at any time."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
-msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
-msgid "Choose Show Instance"
-msgstr "Επιλογή Παρουσίας Εκπομπής"
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
-#: airtime_mvc/application/forms/EditHistoryItem.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:400
-msgid "No Show"
-msgstr "Καμία Εκπομπή"
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
-msgid "Find"
-msgstr "Εύρεση"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
-msgid "Choose Days:"
-msgstr "Επιλέξτε Ημέρες:"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
-#: airtime_mvc/application/forms/AddShowStyle.php:64
-#: airtime_mvc/application/forms/GeneralPreferences.php:53
-msgid "Remove"
-msgstr "Αφαίρεση"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
-msgid "Stream "
-msgstr "Stream "
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
-msgid "Additional Options"
-msgstr "Πρόσθετες επιλογές"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
-msgid "The following info will be displayed to listeners in their media player:"
-msgstr "Η παρακάτω πληροφορία θα εμφανίζεται στις συσκευές αναπαραγωγής πολυμέσων των ακροατών σας:"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
-msgid "(Your radio station website)"
-msgstr "(Ιστοσελίδα του Ραδιοφωνικού σταθμού)"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
-msgid "Stream URL: "
-msgstr "URL Stream: "
-
-#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
-msgid "Find Shows"
-msgstr "Εύρεση Εκπομπών"
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
-msgid "TuneIn Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
-msgid "SoundCloud Settings"
-msgstr "Ρυθμίσεις SoundCloud"
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
-msgid "Dangerous Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
-msgid "Search Criteria:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
-msgid "New Criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
-msgid "or"
-msgstr "ή"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
-msgid "and"
-msgstr "και"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
-msgid "New Modifier"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
-msgid " to "
-msgstr " να "
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
-msgid "files meet the criteria"
-msgstr "τα αρχεία πληρούν τα κριτήρια"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
-msgid "file meets the criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
-msgid "Filter History"
-msgstr "Φιλτράρισμα Ιστορίας"
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
-#: airtime_mvc/application/configs/navigation.php:61
-msgid "My Profile"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
-#, php-format
-msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
-#: airtime_mvc/application/forms/Preferences.php:40
-#: airtime_mvc/application/forms/PasswordChange.php:43
-#: airtime_mvc/application/forms/AddUser.php:110
-#: airtime_mvc/application/forms/BillingClient.php:193
-#: airtime_mvc/application/forms/SupportSettings.php:131
-#: airtime_mvc/application/forms/EditHistory.php:131
-#: airtime_mvc/application/controllers/LocaleController.php:294
-msgid "Save"
-msgstr "Αποθήκευση"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
-msgid "Repeat Days:"
-msgstr "Επανάληψη Ημερών:"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
-msgid "Register Airtime"
-msgstr "Εγγραφή σε Airtime"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
-#: airtime_mvc/application/forms/GeneralPreferences.php:43
-msgid "Note: Anything larger than 600x600 will be resized."
-msgstr "Σημείωση: Οτιδήποτε μεγαλύτερο από 600x600 θα αλλάξει μέγεθος."
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
-msgid "Show me what I am sending "
-msgstr "Δείξε μου τι στέλνω "
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
-msgid "Terms and Conditions"
-msgstr "Όροι και Προϋποθέσεις"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
-msgid "Creating File Summary Template"
-msgstr "Δημιουργία Αρχείου Περίληψης Template "
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
-msgid "Creating Log Sheet Template"
-msgstr "Δημιουργία Template Φόρμας Σύνδεσης"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
-msgid "Name"
-msgstr "Ονομασία"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
-msgid "Add more elements"
-msgstr "Προσθήκη περισσότερων στοιχείων"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
-msgid "Add New Field"
-msgstr "Προσθήκη Νέου Πεδίου"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
-msgid "Set Default Template"
-msgstr "Ορισμός Προεπιλεγμένου Template "
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
-msgid "Playout History Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
-msgid "Log Sheet Templates"
-msgstr "Template Φόρμας Σύνδεσης"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
-msgid "New Log Sheet Template"
-msgstr "Νέο Template Φόρμας Σύνδεσης"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
-msgid "No Log Sheet Templates"
-msgstr "Κανένα Template Φόρμας Σύνδεσης"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
-#: airtime_mvc/application/controllers/LocaleController.php:397
-msgid "Set Default"
-msgstr "Ως Προεπιλογή"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
-msgid "File Summary Templates"
-msgstr "Template Περίληψης Αρχείου"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
-msgid "New File Summary Template"
-msgstr "Νέο Template Περίληψης Αρχείου"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
-msgid "No File Summary Templates"
-msgstr "Κανένα Template Περίληψης Αρχείου"
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
-msgid "Disk Space"
-msgstr "Χώρος δίσκου"
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
-#: airtime_mvc/application/controllers/LocaleController.php:315
-msgid "Disk"
-msgstr "Δίσκος"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
-#: airtime_mvc/application/forms/AddShowWhen.php:89
-msgid "Duration:"
-msgstr "Διάρκεια:"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
-msgid "Toggle Details"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
-msgid "Playlist crossfade"
-msgstr "Crossfade λίστας αναπαραγωγής"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-msgid "Remove all content from this smart block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Clear"
-msgstr "Εκκαθάριση"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "Fade in: "
-msgstr "Fade in: "
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "(ss.t)"
-msgstr "(Ss.t)"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-msgid "Fade out: "
-msgstr "Fade out: "
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
-#: airtime_mvc/application/forms/EditAudioMD.php:186
-#: airtime_mvc/application/forms/EditHistory.php:141
-#: airtime_mvc/application/controllers/LocaleController.php:295
-#: airtime_mvc/application/controllers/LocaleController.php:318
-msgid "Cancel"
-msgstr "Ακύρωση"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
-msgid "No smart block currently open"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
-msgid "Show Waveform"
-msgstr "Εμφάνιση κυμματοειδούς μορφής"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-msgid "Cue In: "
-msgstr "Cue In: "
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "(hh:mm:ss.t)"
-msgstr "(ωω:λλ:δδ.t)"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "Cue Out: "
-msgstr "Cue Out: "
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
-msgid "Original Length:"
-msgstr "Αρχική Διάρκεια:"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
-msgid "Expand Static Block"
-msgstr "Επέκταση Στατικών Block"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
-msgid "Expand Dynamic Block"
-msgstr "Επέκταση Δυναμικών Block"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
-msgid "Choose some search criteria above and click Generate to create this playlist."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
-msgid "A track list will be generated when you schedule this smart block into a show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
-msgid "Drag tracks here from your library to add them to the playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-msgid "Shuffle playlist"
-msgstr "Shuffle λίστα αναπαραγωγής"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
-msgid "Shuffle"
-msgstr "Shuffle"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Empty playlist content"
-msgstr "Άδειασμα περιεχομένου λίστας αναπαραγωγής"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-msgid "Save playlist"
-msgstr "Αποθήκευση λίστας αναπαραγωγής"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
-msgid "No open playlist"
-msgstr "Καμία ανοικτή λίστα αναπαραγωγής"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
-msgid "previous"
-msgstr "προηγούμενο"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
-msgid "play"
-msgstr "αναπαραγωγή"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
-msgid "pause"
-msgstr "παύση"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
-msgid "next"
-msgstr "επόμενο"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
-msgid "stop"
-msgstr "στάση"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
-msgid "max volume"
-msgstr "μέγιστη ένταση"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
-msgid "Update Required"
-msgstr "Απαιτείται Ενημέρωση "
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
-#, php-format
-msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
-msgstr "Για να παίξετε τα πολυμέσα θα πρέπει είτε να αναβαθμίστε το πρόγραμμα περιήγησηής σας σε μια πρόσφατη έκδοση ή να ενημέρώσετε το %sFlash plugin %s σας."
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
-msgid "Stream Settings"
-msgstr "Ρυθμίσεις Stream"
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
-msgid "Global"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
-msgid "dB"
-msgstr "βΔ"
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
-msgid "Output Streams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
-#: airtime_mvc/application/controllers/LocaleController.php:166
-msgid "Manage Media Folders"
-msgstr "Διαχείριση Φακέλων Πολυμέσων"
-
-#: airtime_mvc/application/views/scripts/preference/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:56
-msgid "General"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
-msgid "Description"
-msgstr "Περιγραφή"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
-msgid "Stream URL:"
-msgstr "URL Stream:"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
-msgid "Default Length:"
-msgstr "Προεπιλεγμένη Διάρκεια:"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
-msgid "No webstream"
-msgstr "Κανένα webstream"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
-msgid "Manage Users"
-msgstr "Διαχείριση Χρηστών"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
-msgid "New User"
-msgstr "Νέος Χρήστης"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
-msgid "id"
-msgstr "ταυτότητα"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
-#: airtime_mvc/application/forms/PasswordRestore.php:25
-msgid "Username"
-msgstr "Όνομα Χρήστη"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
-msgid "First Name"
-msgstr "Όνομα"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
-msgid "Last Name"
-msgstr "Επώνυμο"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
-msgid "User Type"
-msgstr "Τύπος Χρήστη"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
-#, php-format
-msgid "Super Admin details can be changed in your Billing Settings."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
-#: airtime_mvc/application/controllers/LocaleController.php:74
-#: airtime_mvc/application/layouts/scripts/layout.phtml:78
-msgid "Tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
-#: airtime_mvc/application/controllers/LocaleController.php:104
-#: airtime_mvc/application/layouts/scripts/layout.phtml:80
-msgid "Playlists"
-msgstr "Λίστες αναπαραγωγής"
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
-#: airtime_mvc/application/controllers/LocaleController.php:105
-#: airtime_mvc/application/layouts/scripts/layout.phtml:82
-msgid "Smart Blocks"
-msgstr "Smart Blocks"
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
-#: airtime_mvc/application/layouts/scripts/layout.phtml:84
-msgid "Webstreams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
-#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
-#: airtime_mvc/application/layouts/scripts/layout.phtml:76
-msgid "Dashboard"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:12
-msgid "Radio Page"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:19
-msgid "Calendar"
-msgstr "Ημερολόγιο"
-
-#: airtime_mvc/application/configs/navigation.php:26
-msgid "Widgets"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:48
-msgid "Settings"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:67
-msgid "Users"
-msgstr "Xρήστες"
-
-#: airtime_mvc/application/configs/navigation.php:74
-msgid "Streams"
-msgstr "Streams"
-
-#: airtime_mvc/application/configs/navigation.php:82
-msgid "Analytics"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:90
-msgid "Listener Stats"
-msgstr "Στατιστικές Ακροατών"
-
-#: airtime_mvc/application/configs/navigation.php:104
-msgid "History Templates"
-msgstr "Ιστορικό Template"
-
-#: airtime_mvc/application/configs/navigation.php:113
-msgid "Billing"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:127
-msgid "Account Details"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:134
-msgid "View Invoices"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:150
-msgid "Getting Started"
-msgstr "Έναρξη"
-
-#: airtime_mvc/application/configs/navigation.php:157
-msgid "FAQ"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:162
-msgid "User Manual"
-msgstr "Εγχειρίδιο Χρήστη"
-
-#: airtime_mvc/application/configs/navigation.php:167
-msgid "File a Support Ticket"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:12
-msgid "Background Colour:"
-msgstr "Χρώμα Φόντου:"
-
-#: airtime_mvc/application/forms/AddShowStyle.php:31
-msgid "Text Colour:"
-msgstr "Χρώμα Κειμένου:"
-
-#: airtime_mvc/application/forms/AddShowStyle.php:49
-msgid "Current Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:72
-msgid "Show Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:87
-msgid "Logo Preview:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:19
-msgid "Push metadata to your station on TuneIn?"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:24
-msgid "Station ID:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:30
-msgid "Partner Key:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:36
-msgid "Partner Id:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:77
-#: airtime_mvc/application/forms/TuneInPreferences.php:86
-msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:14
-msgid "Now Playing"
-msgstr "Αναπαραγωγή σε Εξέλιξη"
-
-#: airtime_mvc/application/forms/Player.php:25
-msgid "Select Stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:28
-msgid "Auto detect the most appropriate stream to use."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:29
-msgid "Select a stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:41
-msgid " - Mobile friendly"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:45
-msgid " - The player does not support Opus streams."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:71
-msgid "Embeddable code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:72
-msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:37
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
-#: airtime_mvc/application/forms/Login.php:41
-#: airtime_mvc/application/forms/AddUser.php:29
-msgid "Username:"
-msgstr "Όνομα Χρήστη:"
-
-#: airtime_mvc/application/forms/EditUser.php:48
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
-#: airtime_mvc/application/forms/Login.php:54
-#: airtime_mvc/application/forms/AddUser.php:38
-#: airtime_mvc/application/forms/BillingClient.php:172
-msgid "Password:"
-msgstr "Κωδικός πρόσβασης:"
-
-#: airtime_mvc/application/forms/EditUser.php:57
-#: airtime_mvc/application/forms/AddUser.php:46
-#: airtime_mvc/application/forms/BillingClient.php:181
-msgid "Verify Password:"
-msgstr "Επαλήθευση κωδικού πρόσβασης"
-
-#: airtime_mvc/application/forms/EditUser.php:67
-#: airtime_mvc/application/forms/AddUser.php:55
-msgid "Firstname:"
-msgstr "Όνομα:"
-
-#: airtime_mvc/application/forms/EditUser.php:75
-#: airtime_mvc/application/forms/AddUser.php:61
-msgid "Lastname:"
-msgstr "Επώνυμο:"
-
-#: airtime_mvc/application/forms/EditUser.php:83
-#: airtime_mvc/application/forms/RegisterAirtime.php:51
-#: airtime_mvc/application/forms/AddUser.php:67
-#: airtime_mvc/application/forms/SupportSettings.php:43
-msgid "Email:"
-msgstr "Email:"
-
-#: airtime_mvc/application/forms/EditUser.php:94
-#: airtime_mvc/application/forms/AddUser.php:76
-msgid "Mobile Phone:"
-msgstr "Κινητό Τηλέφωνο:"
-
-#: airtime_mvc/application/forms/EditUser.php:102
-#: airtime_mvc/application/forms/AddUser.php:82
-msgid "Skype:"
-msgstr "Skype"
-
-#: airtime_mvc/application/forms/EditUser.php:110
-#: airtime_mvc/application/forms/AddUser.php:88
-msgid "Jabber:"
-msgstr "Jabber"
-
-#: airtime_mvc/application/forms/EditUser.php:129
-msgid "Interface Timezone:"
-msgstr "Interface Ζώνης ώρας:"
-
-#: airtime_mvc/application/forms/EditUser.php:155
-#: airtime_mvc/application/forms/AddUser.php:120
-msgid "Login name is not unique."
-msgstr "Το όνομα εισόδου δεν είναι μοναδικό."
-
-#: airtime_mvc/application/forms/AddShowRR.php:10
-msgid "Record from Line In?"
-msgstr "Ηχογράφηση από Line In;"
-
-#: airtime_mvc/application/forms/AddShowRR.php:16
-msgid "Rebroadcast?"
-msgstr "Αναμετάδοση;"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:16
-msgid "'%value%' does not fit the time format 'HH:mm'"
-msgstr "'%value%' δεν ταιριάζει με τη μορφή της ώρας 'ΩΩ:λλ'"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:22
-msgid "Start Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:37
-msgid "In the Future:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:64
-msgid "End Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:98
-msgid "Timezone:"
-msgstr "Ζώνη Ώρας"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:107
-msgid "Repeats?"
-msgstr "Επαναλήψεις;"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:139
-msgid "Cannot create show in the past"
-msgstr "Δεν είναι δυνατή η δημιουργία εκπομπής στο παρελθόν"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:147
-msgid "Cannot modify start date/time of the show that is already started"
-msgstr "Αδύνατη η τροποποίηση ημερομηνίας/ώρας έναρξης της εκπομπής που έχει ήδη αρχίσει"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:164
-msgid "Cannot have duration < 0m"
-msgstr "Δεν μπορεί να έχει διάρκεια < 0m"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:168
-msgid "Cannot have duration 00h 00m"
-msgstr "Δεν μπορεί να έχει διάρκεια 00h 00m"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:175
-msgid "Cannot have duration greater than 24h"
-msgstr "Δεν μπορεί να έχει διάρκεια μεγαλύτερη από 24 ώρες"
-
-#: airtime_mvc/application/forms/AddShowWho.php:10
-msgid "Search Users:"
-msgstr "Αναζήτηση Χρηστών:"
-
-#: airtime_mvc/application/forms/AddShowWho.php:24
-msgid "DJs:"
-msgstr "DJs:"
-
-#: airtime_mvc/application/forms/PasswordChange.php:17
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
-msgid "Password"
-msgstr "Κωδικός πρόσβασης"
-
-#: airtime_mvc/application/forms/PasswordChange.php:28
-msgid "Confirm new password"
-msgstr "Επιβεβαίωση νέου κωδικού πρόσβασης"
-
-#: airtime_mvc/application/forms/PasswordChange.php:36
-msgid "Password confirmation does not match your password."
-msgstr "Η επιβεβαίωση κωδικού δεν ταιριάζει με τον κωδικό πρόσβασής σας."
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
-msgid "Station Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
-#: airtime_mvc/application/forms/GeneralPreferences.php:127
-msgid "Station Timezone"
-msgstr "Ζώνη Ώρας Σταθμού"
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
-msgid "Auto Switch Off:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
-msgid "Auto Switch On:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
-msgid "Switch Transition Fade (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
-#: airtime_mvc/application/forms/GeneralPreferences.php:68
-#: airtime_mvc/application/forms/GeneralPreferences.php:82
-#: airtime_mvc/application/forms/GeneralPreferences.php:96
-msgid "Please enter a time in seconds (eg. 0.5)"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
-#: airtime_mvc/application/forms/AddShowLiveStream.php:48
-msgid "Host:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
-#: airtime_mvc/application/forms/AddShowLiveStream.php:54
-msgid "Port:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
-#: airtime_mvc/application/forms/AddShowLiveStream.php:60
-msgid "Mount:"
-msgstr ""
-
-#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
-msgid "Value is required and can't be empty"
-msgstr "Απαιτείται αξία και δεν μπορεί να είναι κενή"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:25
-#: airtime_mvc/application/forms/RegisterAirtime.php:30
-#: airtime_mvc/application/forms/SupportSettings.php:18
-msgid "Station Name"
-msgstr "Όνομα Σταθμού"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:33
-msgid "Station Description"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:42
-#: airtime_mvc/application/forms/RegisterAirtime.php:106
-msgid "Station Logo:"
-msgstr "Λογότυπο Σταθμού:"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:62
-msgid "Default Crossfade Duration (s):"
-msgstr "Προεπιλεγμένη Διάρκεια Crossfade (s):"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:76
-msgid "Default Fade In (s):"
-msgstr "Προεπιλεγμένο Fade In (s):"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:90
-msgid "Default Fade Out (s):"
-msgstr "Προεπιλεγμένο Fade Out (s):"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:102
-msgid "Public Airtime API"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:103
-msgid "Required for embeddable schedule widget."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:105
-msgid "Disabled"
-msgstr "Απενεργοποιημένο"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:106
-msgid "Enabled"
-msgstr "Ενεργοποιημένο"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:109
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
msgid ""
-"Enabling this feature will allow Airtime to provide schedule data\n"
-" to external widgets that can be embedded in your website."
+"To configure and use the embeddable player you must:
\n"
+" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
+" 2. Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/forms/GeneralPreferences.php:120
-msgid "Default Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:134
-msgid "Week Starts On"
-msgstr "Η Εβδομάδα αρχίζει "
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:150
-msgid "Display login button on your Radio Page?"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:158
-#: airtime_mvc/application/controllers/LocaleController.php:249
-msgid "Sunday"
-msgstr "Κυριακή"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:159
-#: airtime_mvc/application/controllers/LocaleController.php:250
-msgid "Monday"
-msgstr "Δευτέρα"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:160
-#: airtime_mvc/application/controllers/LocaleController.php:251
-msgid "Tuesday"
-msgstr "Τρίτη"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:161
-#: airtime_mvc/application/controllers/LocaleController.php:252
-msgid "Wednesday"
-msgstr "Τετάρτη"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:162
-#: airtime_mvc/application/controllers/LocaleController.php:253
-msgid "Thursday"
-msgstr "Πέμπτη"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:163
-#: airtime_mvc/application/controllers/LocaleController.php:254
-msgid "Friday"
-msgstr "Παρασκευή"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:164
-#: airtime_mvc/application/controllers/LocaleController.php:255
-msgid "Saturday"
-msgstr "Σάββατο"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
-msgid "Default License:"
-msgstr "Προεπιλεγμένη Άδεια :"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
-msgid "All rights are reserved"
-msgstr "Διατήρηση όλων των δικαιωμάτων"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
-msgid "The work is in the public domain"
-msgstr "Εργασία δημόσιας χρήσης"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
-msgid "Creative Commons Attribution"
-msgstr "Απόδοση Creative Commons"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
-msgid "Creative Commons Attribution Noncommercial"
-msgstr "Απόδοση Creative Commons Μη Εμπορική Χρήση"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
-msgid "Creative Commons Attribution No Derivative Works"
-msgstr "Απόδοση Creative Commons Όχι Παράγωγα Έργα"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
-msgid "Creative Commons Attribution Share Alike"
-msgstr "Απόδοση Creative Commons Share Alike"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
-msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
-msgstr "Απόδοση Creative Commons Μη Εμπορική Χρήση Όχι Παράγωγα Έργα"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
-msgid "Creative Commons Attribution Noncommercial Share Alike"
-msgstr "Απόδοση Creative Commons Μη Εμπορική Χρήση Share Alike"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
-msgid "Default Sharing Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
-msgid "Public"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
-msgid "Private"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:18
-#: airtime_mvc/application/forms/DateRange.php:16
-msgid "Date Start:"
-msgstr "Ημερομηνία Έναρξης:"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:37
-#: airtime_mvc/application/forms/ShowBuilder.php:65
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
-#: airtime_mvc/application/forms/DateRange.php:35
-#: airtime_mvc/application/forms/DateRange.php:63
-msgid "Invalid character entered"
-msgstr "Εισαγωγή άκυρου χαρακτήρα"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:46
-#: airtime_mvc/application/forms/AddShowRepeats.php:56
-#: airtime_mvc/application/forms/DateRange.php:44
-msgid "Date End:"
-msgstr "Ημερομηνία Λήξης:"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:72
-#: airtime_mvc/application/forms/ShowBuilder.php:88
-msgid "Filter by Show"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:80
-msgid "All My Shows:"
-msgstr "Όλες οι Εκπομπές μου:"
-
-#: airtime_mvc/application/forms/EditAudioMD.php:145
-msgid "ISRC Number:"
-msgstr "Αριθμός ISRC:"
-
-#: airtime_mvc/application/forms/EditAudioMD.php:176
-msgid "OK"
-msgstr "ΟΚ"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
-msgid "Day must be specified"
-msgstr "Η μέρα πρέπει να προσδιοριστεί"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
-msgid "Time must be specified"
-msgstr "Η ώρα πρέπει να προσδιοριστεί"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
-msgid "Must wait at least 1 hour to rebroadcast"
-msgstr "Πρέπει να περιμένετε τουλάχιστον 1 ώρα για την αναμετάδοση"
-
-#: airtime_mvc/application/forms/AddShowWhat.php:30
-msgid "Untitled Show"
-msgstr "Εκπομπή χωρίς Τίτλο"
-
-#: airtime_mvc/application/forms/AddShowWhat.php:69
-msgid "Instance Description:"
-msgstr ""
-
-#: airtime_mvc/application/forms/DangerousPreferences.php:12
-msgid "Delete All Tracks in Library"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:39
-#: airtime_mvc/application/forms/SupportSettings.php:31
-msgid "Phone:"
-msgstr "Τηλέφωνο:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:62
-#: airtime_mvc/application/forms/SupportSettings.php:54
-msgid "Station Web Site:"
-msgstr "Ιστοσελίδα Σταθμού:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:73
-#: airtime_mvc/application/forms/BillingClient.php:102
-#: airtime_mvc/application/forms/SupportSettings.php:65
-msgid "Country:"
-msgstr "Χώρα"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:84
-#: airtime_mvc/application/forms/BillingClient.php:70
-#: airtime_mvc/application/forms/SupportSettings.php:76
-msgid "City:"
-msgstr "Πόλη"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:96
-#: airtime_mvc/application/forms/SupportSettings.php:88
-msgid "Station Description:"
-msgstr "Περιγραφή Σταθμού:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:116
-#: airtime_mvc/application/forms/SupportSettings.php:98
-#: airtime_mvc/application/controllers/LocaleController.php:341
-msgid "Send support feedback"
-msgstr "Αποστολή Σχολίων Υποστήριξης"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:126
-#: airtime_mvc/application/forms/SupportSettings.php:108
-#, php-format
-msgid "Promote my station on %s"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:151
-#: airtime_mvc/application/forms/SupportSettings.php:120
-#, php-format
-msgid "By checking this box, I agree to %s's %sprivacy policy%s."
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:169
-#: airtime_mvc/application/forms/SupportSettings.php:143
-msgid "You have to agree to privacy policy."
-msgstr "Πρέπει να συμφωνείτε με την πολιτική προστασίας προσωπικών δεδομένων."
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:10
-msgid "Link:"
-msgstr "Σύνδεσμος"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:16
-msgid "Repeat Type:"
-msgstr "Τύπος Επανάληψης:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:19
-msgid "weekly"
-msgstr "εβδομαδιαία"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:20
-msgid "every 2 weeks"
-msgstr "κάθε 2 εβδομάδες"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:21
-msgid "every 3 weeks"
-msgstr "κάθε 3 εβδομάδες"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:22
-msgid "every 4 weeks"
-msgstr "κάθε 4 εβδομάδες"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:23
-msgid "monthly"
-msgstr "μηνιαία"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:32
-msgid "Select Days:"
-msgstr "Επιλέξτε Ημέρες:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:35
-#: airtime_mvc/application/controllers/LocaleController.php:256
-msgid "Sun"
-msgstr "Κυρ"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:36
-#: airtime_mvc/application/controllers/LocaleController.php:257
-msgid "Mon"
-msgstr "Δευ"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:37
-#: airtime_mvc/application/controllers/LocaleController.php:258
-msgid "Tue"
-msgstr "Τρι"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:38
-#: airtime_mvc/application/controllers/LocaleController.php:259
-msgid "Wed"
-msgstr "Τετ"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:39
-#: airtime_mvc/application/controllers/LocaleController.php:260
-msgid "Thu"
-msgstr "Πεμ"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:40
-#: airtime_mvc/application/controllers/LocaleController.php:261
-msgid "Fri"
-msgstr "Παρ"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:41
-#: airtime_mvc/application/controllers/LocaleController.php:262
-msgid "Sat"
-msgstr "Σαβ"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:47
-msgid "Repeat By:"
-msgstr "Επανάληψη από:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the month"
-msgstr "ημέρα του μήνα"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the week"
-msgstr "ημέρα της εβδομάδας"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:69
-msgid "No End?"
-msgstr "Χωρίς Τέλος;"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:106
-msgid "End date must be after start date"
-msgstr "Η ημερομηνία λήξης πρέπει να είναι μετά την ημερομηνία έναρξης"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:113
-msgid "Please select a repeat day"
-msgstr "Επιλέξτε ημέρα επανάληψης"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:10
-#, php-format
-msgid "Use %s Authentication:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:16
-msgid "Use Custom Authentication:"
-msgstr "Χρήση Προσαρμοσμένης Ταυτοποίησης:"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:25
-msgid "Custom Username"
-msgstr "Προσαρμοσμένο Όνομα Χρήστη"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:37
-msgid "Custom Password"
-msgstr "Προσαρμοσμένος Κωδικός Πρόσβασης"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:77
-msgid "Username field cannot be empty."
-msgstr "Το πεδίο 'Όνομα Χρήστη' δεν μπορεί να είναι κενό."
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:82
-msgid "Password field cannot be empty."
-msgstr "Το πεδίο 'Κωδικός Πρόσβασης' δεν μπορεί να είναι κενό."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
-msgid "Enabled:"
-msgstr "Ενεργοποιημένο"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
-msgid "Mobile:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
-msgid "Stream Type:"
-msgstr "Τύπος Stream:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
-msgid "Service Type:"
-msgstr "Τύπος Υπηρεσίας:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
-msgid "Channels:"
-msgstr "Κανάλια"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "1 - Mono"
-msgstr "1 - Mono"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "2 - Stereo"
-msgstr "2 - Stereo"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
-msgid "Server"
-msgstr "Διακομιστής"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
-msgid "Port"
-msgstr "Θύρα"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
-msgid "Only numbers are allowed."
-msgstr "Επιτρέπονται μόνο αριθμοί."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
-msgid "URL"
-msgstr "Διεύθυνση URL:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
-msgid "Mount Point"
-msgstr "Σημείο Προσάρτησης"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
-msgid "Admin User"
-msgstr "Διαχειριστής Χρήστης"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
-msgid "Admin Password"
-msgstr "Κωδικός πρόσβασης Διαχειριστή"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
-#: airtime_mvc/application/controllers/LocaleController.php:173
-msgid "Getting information from the server..."
-msgstr "Λήψη πληροφοριών από το διακομιστή..."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
-msgid "Server cannot be empty."
-msgstr "Ο διακομιστής δεν μπορεί να είναι κενός."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
-msgid "Port cannot be empty."
-msgstr "Το Port δεν μπορεί να είναι κενό."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
-msgid "Mount cannot be empty with Icecast server."
-msgstr "Η προσάρτηση δεν μπορεί να είναι κενή με διακομιστή Icecast."
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
-msgid "'%value%' is no valid email address in the basic format local-part@hostname"
-msgstr "'%value%' δεν αποτελεί έγκυρη διεύθυνση ηλεκτρονικού ταχυδρομείου στη βασική μορφή local-part@hostname"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
-msgid "'%value%' does not fit the date format '%format%'"
-msgstr "'%value%' δεν ταιριάζει με τη μορφή ημερομηνίας '%format%'"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
-msgid "'%value%' is less than %min% characters long"
-msgstr "'%value%' είναι λιγότερο από %min% χαρακτήρες "
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
-msgid "'%value%' is more than %max% characters long"
-msgstr "'%value%' είναι περισσότερο από %max% χαρακτήρες "
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
-msgid "'%value%' is not between '%min%' and '%max%', inclusively"
-msgstr "'%value%' δεν είναι μεταξύ '%min%' και '%max%', συνολικά"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
-msgid "Passwords do not match"
-msgstr "Οι κωδικοί πρόσβασης δεν συμπίπτουν"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
-msgid "hours"
-msgstr "ώρες"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
-msgid "minutes"
-msgstr "λεπτά"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
-msgid "Randomly"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
-msgid "Newest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
-msgid "Oldest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
-msgid "Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
-msgid "Static"
-msgstr "Στατικό"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
-msgid "Dynamic"
-msgstr "Δυναμικό"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
-msgid "Allow Repeated Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
-msgid "Sort Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
-msgid "Limit to:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
-msgid "Generate playlist content and save criteria"
-msgstr "Δημιουργία λίστας αναπαραγωγής περιεχομένου και αποθήκευση κριτηρίων"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
-msgid "Generate"
-msgstr "Δημιουργία"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
-msgid "Shuffle playlist content"
-msgstr "Περιεχόμενο λίστας Shuffle "
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
-msgid "Limit cannot be empty or smaller than 0"
-msgstr "Το όριο δεν μπορεί να είναι κενό ή μικρότερο από 0"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
-msgid "Limit cannot be more than 24 hrs"
-msgstr "Το όριο δεν μπορεί να είναι ξεπερνάει τις 24 ώρες"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
-msgid "The value should be an integer"
-msgstr "Η τιμή πρέπει να είναι ακέραιος αριθμός"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
-msgid "500 is the max item limit value you can set"
-msgstr "Το 500 είναι η μέγιστη οριακή τιμή σημείου, που μπορείτε να ορίσετε"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
-msgid "You must select Criteria and Modifier"
-msgstr "Θα πρέπει να επιλέξετε Κριτήρια και Τροποποιητή"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
-msgid "'Length' should be in '00:00:00' format"
-msgstr "Το «Μήκος» θα πρέπει να είναι σε υπό μορφής '00:00:00'"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
-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:594
-msgid "The value has to be numeric"
-msgstr "Η τιμή πρέπει να είναι αριθμός"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
-msgid "The value should be less then 2147483648"
-msgstr "Η τιμή πρέπει να είναι μικρότερη από 2147483648"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
-#, php-format
-msgid "The value should be less than %s characters"
-msgstr "Η τιμή πρέπει να είναι μικρότερη από %s χαρακτήρες"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
-msgid "Value cannot be empty"
-msgstr "Η αξία δεν μπορεί να είναι κενή"
-
-#: airtime_mvc/application/forms/Login.php:102
-msgid "Type the characters you see in the picture below."
-msgstr "Πληκτρολογήστε τους χαρακτήρες που βλέπετε στην παρακάτω εικόνα."
-
-#: airtime_mvc/application/forms/StreamSetting.php:26
-msgid "Icecast Vorbis Metadata"
-msgstr "Μεταδεδομένα Icecast Vorbis "
-
-#: airtime_mvc/application/forms/StreamSetting.php:36
-msgid "Stream Label:"
-msgstr "Stream Label:"
-
-#: airtime_mvc/application/forms/StreamSetting.php:37
-msgid "Artist - Title"
-msgstr "Καλλιτέχνης - Τίτλος"
-
-#: airtime_mvc/application/forms/StreamSetting.php:38
-msgid "Show - Artist - Title"
-msgstr "Εκπομπή - Καλλιτέχνης - Τίτλος"
-
-#: airtime_mvc/application/forms/StreamSetting.php:39
-msgid "Station name - Show name"
-msgstr "Όνομα Σταθμού - Όνομα Εκπομπής"
-
-#: airtime_mvc/application/forms/StreamSetting.php:45
-msgid "Off Air Metadata"
-msgstr "Μεταδεδομένα Off Air"
-
-#: airtime_mvc/application/forms/StreamSetting.php:51
-msgid "Enable Replay Gain"
-msgstr "Ενεργοποίηση Επανάληψη Κέρδους"
-
-#: airtime_mvc/application/forms/StreamSetting.php:57
-msgid "Replay Gain Modifier"
-msgstr "Τροποποιητής Επανάληψης Κέρδους"
-
-#: airtime_mvc/application/forms/StreamSetting.php:65
-msgid "Streaming Server:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Airtime Pro Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Custom / 3rd Party Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:95
-msgid "User Type:"
-msgstr "Τύπος Χρήστη:"
-
-#: airtime_mvc/application/forms/AddUser.php:99
-#: airtime_mvc/application/controllers/LocaleController.php:324
-msgid "Guest"
-msgstr "Επισκέπτης"
-
-#: airtime_mvc/application/forms/AddUser.php:100
-#: airtime_mvc/application/controllers/LocaleController.php:322
-msgid "DJ"
-msgstr "DJ"
-
-#: airtime_mvc/application/forms/AddUser.php:101
-#: airtime_mvc/application/controllers/LocaleController.php:323
-msgid "Program Manager"
-msgstr "Διευθυντής Προγράμματος"
-
-#: airtime_mvc/application/forms/AddUser.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:321
-msgid "Admin"
-msgstr "Διαχειριστής"
-
-#: airtime_mvc/application/forms/BillingClient.php:17
-msgid "First Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:26
-msgid "Last Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:35
-msgid "Company Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:44
-msgid "Email Address:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:54
-msgid "Address 1:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:63
-msgid "Address 2:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:80
-msgid "State/Region:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:89
-msgid "Zip Code / Postal Code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:112
-msgid "Phone Number:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:121
-msgid "Please choose a security question:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:126
-msgid "What is the name of your favorite childhood friend?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:127
-msgid "What school did you attend for sixth grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:128
-msgid "In what city did you meet your spouse/significant other?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:129
-msgid "What street did you live on in third grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:130
-msgid "What is the first name of the boy or girl that you first kissed?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:131
-msgid "In what city or town was your first job?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:135
-msgid "Please enter an answer:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:152
-msgid "VAT/Tax ID (EU only)"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:162
-msgid "Subscribe to Sourcefabric newsletter"
-msgstr ""
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
-msgid "Import Folder:"
-msgstr "Εισαγωγή Φακέλου:"
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
-msgid "Watched Folders:"
-msgstr "Παροβεβλημμένοι Φάκελοι:"
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
-msgid "Not a valid Directory"
-msgstr "Μη έγκυρο Ευρετήριο"
-
-#: airtime_mvc/application/forms/PasswordRestore.php:14
-msgid "Email"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordRestore.php:36
-msgid "Reset password"
-msgstr "Επαναφορά κωδικού πρόσβασης"
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
-msgid "Plan type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
-msgid "Billing cycle:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
-msgid "Payment method:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
-msgid "PayPal"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
-msgid "Credit Card via 2Checkout"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:213
-#, php-format
-msgid "The year %s must be within the range of 1753 - 9999"
-msgstr "Το έτος %s πρέπει να είναι εντός του εύρους 1753 - 9999"
-
-#: airtime_mvc/application/common/DateHelper.php:216
-#, php-format
-msgid "%s-%s-%s is not a valid date"
-msgstr "%s-%s-%s δεν αποτελεί έγκυρη ημερομηνία"
-
-#: airtime_mvc/application/common/DateHelper.php:240
-#, php-format
-msgid "%s:%s:%s is not a valid time"
-msgstr "%s : %s : %s δεν αποτελεί έγκυρη ώρα"
-
-#: airtime_mvc/application/common/UsabilityHints.php:55
-msgid "Upload some tracks below to add them to your library!"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:57
-#, php-format
-msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:63
-msgid "Click the 'New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:65
-#, php-format
-msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:73
-msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:75
-#, php-format
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
msgid ""
-"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
-" %sCreate an unlinked show now%s."
+"To use the embeddable weekly schedule widget you must:
\n"
+" Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/common/UsabilityHints.php:80
-msgid "To start broadcasting, click on the current show and select 'Schedule Show'"
-msgstr ""
+#: airtime_mvc/application/controllers/ListenerstatController.php:51
+msgid "Please make sure admin user/password is correct on System->Streams page."
+msgstr "Παρακαλούμε σιγουρευτείτε ότι ο χρήστης/κωδικός πρόσβασης διαχειριστή είναι σωστός στη σελίδα Σύστημα>Streams."
-#: airtime_mvc/application/common/UsabilityHints.php:82
+#: airtime_mvc/application/controllers/UserController.php:86
+msgid "User added successfully!"
+msgstr "Ο χρήστης προστέθηκε επιτυχώς!"
+
+#: airtime_mvc/application/controllers/UserController.php:88
+msgid "User updated successfully!"
+msgstr "Ο χρήστης ενημερώθηκε με επιτυχία!"
+
+#: airtime_mvc/application/controllers/UserController.php:187
+msgid "Settings updated successfully!"
+msgstr "Οι ρυθμίσεις ενημερώθηκαν επιτυχώς!"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:53
#, php-format
-msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
-msgstr ""
+msgid "You are viewing an older version of %s"
+msgstr "Βλέπετε μια παλαιότερη έκδοση του %s"
-#: airtime_mvc/application/common/UsabilityHints.php:89
-msgid "Click on the show starting next and select 'Schedule Show'"
-msgstr ""
+#: airtime_mvc/application/controllers/PlaylistController.php:140
+msgid "You cannot add tracks to dynamic blocks."
+msgstr "Δεν μπορείτε να προσθέσετε κομμάτια σε δυναμικά blocks."
-#: airtime_mvc/application/common/UsabilityHints.php:91
+#: airtime_mvc/application/controllers/PlaylistController.php:161
#, php-format
-msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+msgid "You don't have permission to delete selected %s(s)."
+msgstr "Δεν έχετε άδεια διαγραφής επιλεγμένων %s(s)."
+
+#: airtime_mvc/application/controllers/PlaylistController.php:174
+msgid "You can only add tracks to smart block."
+msgstr "Μπορείτε να προσθέσετε κομμάτια μόνο σε smart block."
+
+#: airtime_mvc/application/controllers/PlaylistController.php:180
+#: airtime_mvc/application/controllers/LocaleController.php:50
+msgid "You can only add tracks, smart blocks, and webstreams to playlists."
+msgstr "Μπορείτε να προσθέσετε μόνο κομμάτια, smart blocks και webstreams σε λίστες αναπαραγωγής."
+
+#: airtime_mvc/application/controllers/PlaylistController.php:192
+msgid "Untitled Playlist"
+msgstr "Λίστα Αναπαραγωγλης χωρίς Τίτλο"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:194
+msgid "Untitled Smart Block"
+msgstr "Smart Block χωρίς Τίτλο"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:522
+msgid "Unknown Playlist"
+msgstr "Άγνωστη λίστα αναπαραγωγής"
+
+#: airtime_mvc/application/controllers/ErrorController.php:78
+msgid "Page not found."
msgstr ""
+#: airtime_mvc/application/controllers/ErrorController.php:87
+msgid "The requested action is not supported."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:98
+msgid "You do not have permission to access this resource."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:109
+msgid "An internal application error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/controllers/Apiv2Controller.php:77
+#: airtime_mvc/application/controllers/ApiController.php:79
+msgid "You are not allowed to access this resource."
+msgstr "Δεν έχετε δικαίωμα πρόσβασης σε αυτό το βοήθημα"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:72
+msgid "Preferences updated."
+msgstr "Οι προτιμήσεις ενημερώθηκαν."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:115
+msgid "Support setting updated."
+msgstr "Η ρύθμιση υποστήριξης ενημερώθηκε."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:123
+msgid "Support Feedback"
+msgstr "Σχόλια Υποστήριξης"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:251
+msgid "Stream Setting Updated."
+msgstr "Η Ρύθμιση Stream Ενημερώθηκε."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:342
+msgid "path should be specified"
+msgstr "η διαδρομή πρέπει να καθοριστεί"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:437
+msgid "Problem with Liquidsoap..."
+msgstr "Πρόβλημα με Liquidsoap ..."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:493
+msgid "Request method not accepted"
+msgstr ""
+
+#: airtime_mvc/application/controllers/DashboardController.php:35
+#: airtime_mvc/application/controllers/DashboardController.php:84
+msgid "You don't have permission to disconnect source."
+msgstr "Δεν έχετε άδεια για αποσύνδεση πηγής."
+
+#: airtime_mvc/application/controllers/DashboardController.php:37
+#: airtime_mvc/application/controllers/DashboardController.php:86
+msgid "There is no source connected to this input."
+msgstr "Δεν υπάρχει καμία πηγή που είναι συνδεδεμένη σε αυτή την είσοδο."
+
+#: airtime_mvc/application/controllers/DashboardController.php:81
+msgid "You don't have permission to switch source."
+msgstr "Δεν έχετε άδεια για αλλαγή πηγής."
+
+#: airtime_mvc/application/controllers/LoginController.php:43
+msgid "Please enter your username and password."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:93
+msgid "Wrong username or password provided. Please try again."
+msgstr "Άκυρο όνομα χρήστη ή κωδικός πρόσβασης. Παρακαλώ δοκιμάστε ξανά."
+
+#: airtime_mvc/application/controllers/LoginController.php:167
+msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
+msgstr "Το e-mail δεν μπόρεσε να σταλεί. Ελέγξτε τις ρυθμίσεις email του διακομιστή σας και βεβαιωθείτε ότι έχει ρυθμιστεί σωστά."
+
+#: airtime_mvc/application/controllers/LoginController.php:173
+msgid "There was a problem with the username or email address you entered."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ApiController.php:244
+#: airtime_mvc/application/controllers/ApiController.php:317
+#: airtime_mvc/application/controllers/ApiController.php:392
+#: airtime_mvc/application/controllers/ApiController.php:435
+#: airtime_mvc/application/controllers/ApiController.php:474
+#: airtime_mvc/application/controllers/ApiController.php:507
+msgid "You are not allowed to access this resource. "
+msgstr "Δεν έχετε δικαίωμα πρόσβασης σε αυτό το βοήθημα. "
+
+#: airtime_mvc/application/controllers/ApiController.php:698
+#: airtime_mvc/application/controllers/ApiController.php:718
+#: airtime_mvc/application/controllers/ApiController.php:730
+#, php-format
+msgid "File does not exist in %s"
+msgstr ""
+
+#: airtime_mvc/application/controllers/ApiController.php:781
+msgid "Bad request. no 'mode' parameter passed."
+msgstr "Λανθασμένο αίτημα. Η παράμετρος «κατάσταση» δεν πέρασε."
+
+#: airtime_mvc/application/controllers/ApiController.php:791
+msgid "Bad request. 'mode' parameter is invalid"
+msgstr "Λανθασμένο αίτημα. Η παράμετρος «κατάσταση» δεν είναι έγκυρη"
+
#: airtime_mvc/application/controllers/LocaleController.php:30
#: airtime_mvc/application/layouts/scripts/audio-player.phtml:5
msgid "Audio Player"
@@ -2909,11 +560,6 @@ msgstr "Προσθήκη %s στοιχείου/ων"
msgid "You can only add tracks to smart blocks."
msgstr "Μπορείτε να προσθέσετε μόνο κομμάτια στα smart blocks."
-#: airtime_mvc/application/controllers/LocaleController.php:50
-#: airtime_mvc/application/controllers/PlaylistController.php:180
-msgid "You can only add tracks, smart blocks, and webstreams to playlists."
-msgstr "Μπορείτε να προσθέσετε μόνο κομμάτια, smart blocks και webstreams σε λίστες αναπαραγωγής."
-
#: airtime_mvc/application/controllers/LocaleController.php:53
msgid "Please select a cursor position on timeline."
msgstr "Παρακαλούμε επιλέξτε μια θέση δρομέα στο χρονοδιάγραμμα."
@@ -2954,11 +600,6 @@ msgstr ""
msgid "Click 'New' to create one."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:66
-#: airtime_mvc/application/controllers/LibraryController.php:123
-msgid "Edit Metadata"
-msgstr "Επεξεργασία Μεταδεδομένων"
-
#: airtime_mvc/application/controllers/LocaleController.php:67
msgid "Add to selected show"
msgstr "Προσθήκη στην επιλεγμένη εκπομπή"
@@ -2987,6 +628,12 @@ msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετ
msgid "Scheduled"
msgstr "Προγραμματισμένο"
+#: airtime_mvc/application/controllers/LocaleController.php:74
+#: airtime_mvc/application/layouts/scripts/layout.phtml:78
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
+msgid "Tracks"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:75
#: airtime_mvc/application/layouts/scripts/layout.phtml:60
msgid "Playlist"
@@ -2996,18 +643,96 @@ msgstr ""
msgid "Bit Rate"
msgstr "Ρυθμός Bit:"
+#: airtime_mvc/application/controllers/LocaleController.php:80
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
+#: airtime_mvc/application/models/Block.php:1354
+msgid "BPM"
+msgstr "BPM"
+
+#: airtime_mvc/application/controllers/LocaleController.php:84
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
+#: airtime_mvc/application/models/Block.php:1361
+msgid "Encoded By"
+msgstr "Κωδικοποιήθηκε από"
+
+#: airtime_mvc/application/controllers/LocaleController.php:89
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
+#: airtime_mvc/application/models/Block.php:1367
+msgid "Last Modified"
+msgstr "Τελευταία τροποποίηση"
+
+#: airtime_mvc/application/controllers/LocaleController.php:90
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
+#: airtime_mvc/application/models/Block.php:1368
+msgid "Last Played"
+msgstr "Τελευταία αναπαραγωγή"
+
+#: airtime_mvc/application/controllers/LocaleController.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
+#: airtime_mvc/application/models/Block.php:1370
+msgid "Mime"
+msgstr "Μίμος"
+
+#: airtime_mvc/application/controllers/LocaleController.php:94
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
+#: airtime_mvc/application/models/Block.php:1372
+msgid "Owner"
+msgstr "Ιδιοκτήτης"
+
+#: airtime_mvc/application/controllers/LocaleController.php:95
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
+#: airtime_mvc/application/models/Block.php:1373
+msgid "Replay Gain"
+msgstr "Κέρδος Επανάληψης"
+
#: airtime_mvc/application/controllers/LocaleController.php:96
msgid "Sample Rate"
msgstr "Ρυθμός δειγματοληψίας"
+#: airtime_mvc/application/controllers/LocaleController.php:97
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
+#: airtime_mvc/application/models/Block.php:1376
+msgid "Track Number"
+msgstr "Αριθμός Κομματιού"
+
+#: airtime_mvc/application/controllers/LocaleController.php:98
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
+#: airtime_mvc/application/models/Block.php:1377
+msgid "Uploaded"
+msgstr "Φορτώθηκε"
+
+#: airtime_mvc/application/controllers/LocaleController.php:99
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
+#: airtime_mvc/application/models/Block.php:1378
+msgid "Website"
+msgstr "Ιστοσελίδα"
+
#: airtime_mvc/application/controllers/LocaleController.php:101
msgid "Loading..."
msgstr "Φόρτωση..."
+#: airtime_mvc/application/controllers/LocaleController.php:102
+#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
+msgid "All"
+msgstr "Όλα"
+
#: airtime_mvc/application/controllers/LocaleController.php:103
msgid "Files"
msgstr "Αρχεία"
+#: airtime_mvc/application/controllers/LocaleController.php:104
+#: airtime_mvc/application/layouts/scripts/layout.phtml:80
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
+msgid "Playlists"
+msgstr "Λίστες αναπαραγωγής"
+
+#: airtime_mvc/application/controllers/LocaleController.php:105
+#: airtime_mvc/application/layouts/scripts/layout.phtml:82
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
+msgid "Smart Blocks"
+msgstr "Smart Blocks"
+
#: airtime_mvc/application/controllers/LocaleController.php:106
msgid "Web Streams"
msgstr "Web Streams"
@@ -3152,6 +877,74 @@ msgstr "Το Smart block αποθηκεύτηκε"
msgid "Processing..."
msgstr "Επεξεργασία..."
+#: airtime_mvc/application/controllers/LocaleController.php:151
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
+#: airtime_mvc/application/models/Block.php:1383
+msgid "Select modifier"
+msgstr "Επιλέξτε τροποποιητή"
+
+#: airtime_mvc/application/controllers/LocaleController.php:152
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
+#: airtime_mvc/application/models/Block.php:1384
+msgid "contains"
+msgstr "περιέχει"
+
+#: airtime_mvc/application/controllers/LocaleController.php:153
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
+#: airtime_mvc/application/models/Block.php:1385
+msgid "does not contain"
+msgstr "δεν περιέχει"
+
+#: airtime_mvc/application/controllers/LocaleController.php:154
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
+#: airtime_mvc/application/models/Block.php:1386
+#: airtime_mvc/application/models/Block.php:1390
+msgid "is"
+msgstr "είναι"
+
+#: airtime_mvc/application/controllers/LocaleController.php:155
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
+#: airtime_mvc/application/models/Block.php:1387
+#: airtime_mvc/application/models/Block.php:1391
+msgid "is not"
+msgstr "δεν είναι"
+
+#: airtime_mvc/application/controllers/LocaleController.php:156
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
+#: airtime_mvc/application/models/Block.php:1388
+msgid "starts with"
+msgstr "ξεκινά με"
+
+#: airtime_mvc/application/controllers/LocaleController.php:157
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
+#: airtime_mvc/application/models/Block.php:1389
+msgid "ends with"
+msgstr "τελειώνει με"
+
+#: airtime_mvc/application/controllers/LocaleController.php:158
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
+#: airtime_mvc/application/models/Block.php:1392
+msgid "is greater than"
+msgstr "είναι μεγαλύτερος από"
+
+#: airtime_mvc/application/controllers/LocaleController.php:159
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
+#: airtime_mvc/application/models/Block.php:1393
+msgid "is less than"
+msgstr "είναι μικρότερος από"
+
+#: airtime_mvc/application/controllers/LocaleController.php:160
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
+#: airtime_mvc/application/models/Block.php:1394
+msgid "is in the range"
+msgstr "είναι στην κλίμακα"
+
#: airtime_mvc/application/controllers/LocaleController.php:162
msgid "Choose Storage Folder"
msgstr "Επιλογή Φακέλου Αποθήκευσης"
@@ -3168,6 +961,11 @@ msgstr ""
"Είστε βέβαιοι ότι θέλετε να αλλάξετε το φάκελο αποθήκευσης;\n"
"Αυτό θα αφαιρέσει τα αρχεία από τη βιβλιοθήκη του Airtime!"
+#: airtime_mvc/application/controllers/LocaleController.php:166
+#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
+msgid "Manage Media Folders"
+msgstr "Διαχείριση Φακέλων Πολυμέσων"
+
#: airtime_mvc/application/controllers/LocaleController.php:167
msgid "Are you sure you want to remove the watched folder?"
msgstr "Είστε βέβαιοι ότι θέλετε να αφαιρέσετε το φάκελο που προβάλλεται;"
@@ -3189,6 +987,11 @@ msgstr "Συνδέθηκε με τον διακομιστή streaming "
msgid "The stream is disabled"
msgstr "Το stream είναι απενεργοποιημένο"
+#: airtime_mvc/application/controllers/LocaleController.php:173
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
+msgid "Getting information from the server..."
+msgstr "Λήψη πληροφοριών από το διακομιστή..."
+
#: airtime_mvc/application/controllers/LocaleController.php:174
msgid "Can not connect to the streaming server"
msgstr "Αδύνατη η σύνδεση με τον διακομιστή streaming "
@@ -3416,6 +1219,76 @@ msgstr ""
msgid "Month"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:249
+#: airtime_mvc/application/forms/GeneralPreferences.php:158
+msgid "Sunday"
+msgstr "Κυριακή"
+
+#: airtime_mvc/application/controllers/LocaleController.php:250
+#: airtime_mvc/application/forms/GeneralPreferences.php:159
+msgid "Monday"
+msgstr "Δευτέρα"
+
+#: airtime_mvc/application/controllers/LocaleController.php:251
+#: airtime_mvc/application/forms/GeneralPreferences.php:160
+msgid "Tuesday"
+msgstr "Τρίτη"
+
+#: airtime_mvc/application/controllers/LocaleController.php:252
+#: airtime_mvc/application/forms/GeneralPreferences.php:161
+msgid "Wednesday"
+msgstr "Τετάρτη"
+
+#: airtime_mvc/application/controllers/LocaleController.php:253
+#: airtime_mvc/application/forms/GeneralPreferences.php:162
+msgid "Thursday"
+msgstr "Πέμπτη"
+
+#: airtime_mvc/application/controllers/LocaleController.php:254
+#: airtime_mvc/application/forms/GeneralPreferences.php:163
+msgid "Friday"
+msgstr "Παρασκευή"
+
+#: airtime_mvc/application/controllers/LocaleController.php:255
+#: airtime_mvc/application/forms/GeneralPreferences.php:164
+msgid "Saturday"
+msgstr "Σάββατο"
+
+#: airtime_mvc/application/controllers/LocaleController.php:256
+#: airtime_mvc/application/forms/AddShowRepeats.php:35
+msgid "Sun"
+msgstr "Κυρ"
+
+#: airtime_mvc/application/controllers/LocaleController.php:257
+#: airtime_mvc/application/forms/AddShowRepeats.php:36
+msgid "Mon"
+msgstr "Δευ"
+
+#: airtime_mvc/application/controllers/LocaleController.php:258
+#: airtime_mvc/application/forms/AddShowRepeats.php:37
+msgid "Tue"
+msgstr "Τρι"
+
+#: airtime_mvc/application/controllers/LocaleController.php:259
+#: airtime_mvc/application/forms/AddShowRepeats.php:38
+msgid "Wed"
+msgstr "Τετ"
+
+#: airtime_mvc/application/controllers/LocaleController.php:260
+#: airtime_mvc/application/forms/AddShowRepeats.php:39
+msgid "Thu"
+msgstr "Πεμ"
+
+#: airtime_mvc/application/controllers/LocaleController.php:261
+#: airtime_mvc/application/forms/AddShowRepeats.php:40
+msgid "Fri"
+msgstr "Παρ"
+
+#: airtime_mvc/application/controllers/LocaleController.php:262
+#: airtime_mvc/application/forms/AddShowRepeats.php:41
+msgid "Sat"
+msgstr "Σαβ"
+
#: airtime_mvc/application/controllers/LocaleController.php:263
msgid "Shows longer than their scheduled time will be cut off by a following show."
msgstr "Εκπομπές μεγαλύτερες από την προγραμματισμένη διάρκειά τους θα διακόπτονται από την επόμενη εκπομπή."
@@ -3425,7 +1298,7 @@ msgid "Cancel Current Show?"
msgstr "Ακύρωση Τρέχουσας Εκπομπής;"
#: airtime_mvc/application/controllers/LocaleController.php:265
-#: airtime_mvc/application/controllers/LocaleController.php:309
+#: airtime_mvc/application/controllers/LocaleController.php:312
msgid "Stop recording current show?"
msgstr "Πάυση ηχογράφησης τρέχουσας εκπομπής;"
@@ -3445,6 +1318,11 @@ msgstr "Αφαίρεση όλου του περιεχομένου;"
msgid "Delete selected item(s)?"
msgstr "Διαγραφή επιλεγμένου στοιχείου/ων;"
+#: airtime_mvc/application/controllers/LocaleController.php:273
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
+msgid "Start"
+msgstr "Έναρξη"
+
#: airtime_mvc/application/controllers/LocaleController.php:274
msgid "End"
msgstr "Τέλος"
@@ -3453,580 +1331,467 @@ msgstr "Τέλος"
msgid "Duration"
msgstr "Διάρκεια"
-#: airtime_mvc/application/controllers/LocaleController.php:283
+#: airtime_mvc/application/controllers/LocaleController.php:276
+msgid "Filtering out "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:277
+msgid " of "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:278
+msgid " records"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/layouts/scripts/layout.phtml:140
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
+#: airtime_mvc/application/models/Block.php:1358
+msgid "Cue In"
+msgstr "Cue In"
+
+#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/layouts/scripts/layout.phtml:147
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
+#: airtime_mvc/application/models/Block.php:1359
+msgid "Cue Out"
+msgstr "Cue Out"
+
+#: airtime_mvc/application/controllers/LocaleController.php:286
#: airtime_mvc/application/layouts/scripts/layout.phtml:167
msgid "Fade In"
msgstr "Fade In"
-#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/controllers/LocaleController.php:287
#: airtime_mvc/application/layouts/scripts/layout.phtml:168
msgid "Fade Out"
msgstr "Fade Out"
-#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/controllers/LocaleController.php:288
msgid "Show Empty"
msgstr "Η εκπομπή είναι άδεια"
-#: airtime_mvc/application/controllers/LocaleController.php:286
+#: airtime_mvc/application/controllers/LocaleController.php:289
msgid "Recording From Line In"
msgstr "Ηχογράφηση Από Line In"
-#: airtime_mvc/application/controllers/LocaleController.php:287
+#: airtime_mvc/application/controllers/LocaleController.php:290
msgid "Track preview"
msgstr "Προεπισκόπηση κομματιού"
-#: airtime_mvc/application/controllers/LocaleController.php:291
+#: airtime_mvc/application/controllers/LocaleController.php:294
msgid "Cannot schedule outside a show."
msgstr "Δεν είναι δυνατός ο προγραμματισμός εκτός εκπομπής."
-#: airtime_mvc/application/controllers/LocaleController.php:292
+#: airtime_mvc/application/controllers/LocaleController.php:295
msgid "Moving 1 Item"
msgstr "Μετακίνηση 1 Στοιχείου"
-#: airtime_mvc/application/controllers/LocaleController.php:293
+#: airtime_mvc/application/controllers/LocaleController.php:296
#, php-format
msgid "Moving %s Items"
msgstr "Μετακίνηση Στοιχείων %s"
-#: airtime_mvc/application/controllers/LocaleController.php:296
+#: airtime_mvc/application/controllers/LocaleController.php:297
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
+#: airtime_mvc/application/forms/Preferences.php:40
+#: airtime_mvc/application/forms/EditHistory.php:131
+#: airtime_mvc/application/forms/AddUser.php:110
+#: airtime_mvc/application/forms/PasswordChange.php:43
+#: airtime_mvc/application/forms/SupportSettings.php:131
+msgid "Save"
+msgstr "Αποθήκευση"
+
+#: airtime_mvc/application/controllers/LocaleController.php:298
+#: airtime_mvc/application/controllers/LocaleController.php:321
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
+#: airtime_mvc/application/forms/EditHistory.php:141
+#: airtime_mvc/application/forms/EditAudioMD.php:186
+msgid "Cancel"
+msgstr "Ακύρωση"
+
+#: airtime_mvc/application/controllers/LocaleController.php:299
msgid "Fade Editor"
msgstr "Επεξεργαστής Fade"
-#: airtime_mvc/application/controllers/LocaleController.php:297
+#: airtime_mvc/application/controllers/LocaleController.php:300
msgid "Cue Editor"
msgstr "Επεξεργαστής Cue"
-#: airtime_mvc/application/controllers/LocaleController.php:298
+#: airtime_mvc/application/controllers/LocaleController.php:301
msgid "Waveform features are available in a browser supporting the Web Audio API"
msgstr "Τα χαρακτηριστικά της κυμματοειδούς μορφής είναι διαθέσιμα σε πρόγραμμα πλοήγησης που υποστηρίζει Web Audio API"
-#: airtime_mvc/application/controllers/LocaleController.php:301
+#: airtime_mvc/application/controllers/LocaleController.php:304
msgid "Select all"
msgstr "Επιλογή όλων"
-#: airtime_mvc/application/controllers/LocaleController.php:302
+#: airtime_mvc/application/controllers/LocaleController.php:305
msgid "Select none"
msgstr "Καμία Επιλογή"
-#: airtime_mvc/application/controllers/LocaleController.php:303
+#: airtime_mvc/application/controllers/LocaleController.php:306
msgid "Trim overbooked shows"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:304
+#: airtime_mvc/application/controllers/LocaleController.php:307
msgid "Remove selected scheduled items"
msgstr "Αφαίρεση επιλεγμένων προγραμματισμένων στοιχείων "
-#: airtime_mvc/application/controllers/LocaleController.php:305
+#: airtime_mvc/application/controllers/LocaleController.php:308
msgid "Jump to the current playing track"
msgstr "Μετάβαση στο τρέχον κομμάτι "
-#: airtime_mvc/application/controllers/LocaleController.php:306
+#: airtime_mvc/application/controllers/LocaleController.php:309
msgid "Cancel current show"
msgstr "Ακύρωση τρέχουσας εκπομπής"
-#: airtime_mvc/application/controllers/LocaleController.php:311
+#: airtime_mvc/application/controllers/LocaleController.php:314
msgid "Open library to add or remove content"
msgstr "Άνοιγμα βιβλιοθήκης για προσθήκη ή αφαίρεση περιεχομένου"
-#: airtime_mvc/application/controllers/LocaleController.php:312
+#: airtime_mvc/application/controllers/LocaleController.php:315
msgid "Add / Remove Content"
msgstr "Προσθήκη / Αφαίρεση Περιεχομένου"
#: airtime_mvc/application/controllers/LocaleController.php:317
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
+msgid "in use"
+msgstr "σε χρήση"
+
+#: airtime_mvc/application/controllers/LocaleController.php:318
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
+msgid "Disk"
+msgstr "Δίσκος"
+
+#: airtime_mvc/application/controllers/LocaleController.php:320
msgid "Look in"
msgstr "Κοιτάξτε σε"
-#: airtime_mvc/application/controllers/LocaleController.php:319
+#: airtime_mvc/application/controllers/LocaleController.php:322
msgid "Open"
msgstr "Άνοιγμα"
+#: airtime_mvc/application/controllers/LocaleController.php:324
+#: airtime_mvc/application/forms/AddUser.php:102
+msgid "Admin"
+msgstr "Διαχειριστής"
+
#: airtime_mvc/application/controllers/LocaleController.php:325
+#: airtime_mvc/application/forms/AddUser.php:100
+msgid "DJ"
+msgstr "DJ"
+
+#: airtime_mvc/application/controllers/LocaleController.php:326
+#: airtime_mvc/application/forms/AddUser.php:101
+msgid "Program Manager"
+msgstr "Διευθυντής Προγράμματος"
+
+#: airtime_mvc/application/controllers/LocaleController.php:327
+#: airtime_mvc/application/forms/AddUser.php:99
+msgid "Guest"
+msgstr "Επισκέπτης"
+
+#: airtime_mvc/application/controllers/LocaleController.php:328
msgid "Guests can do the following:"
msgstr "Οι επισκέπτες μπορούν να κάνουν τα παρακάτω"
-#: airtime_mvc/application/controllers/LocaleController.php:326
+#: airtime_mvc/application/controllers/LocaleController.php:329
msgid "View schedule"
msgstr "Προβολή Προγράμματος"
-#: airtime_mvc/application/controllers/LocaleController.php:327
+#: airtime_mvc/application/controllers/LocaleController.php:330
msgid "View show content"
msgstr "Προβολή περιεχομένου εκπομπής"
-#: airtime_mvc/application/controllers/LocaleController.php:328
+#: airtime_mvc/application/controllers/LocaleController.php:331
msgid "DJs can do the following:"
msgstr "Οι DJ μπορούν να κάνουν τα παρακάτω"
-#: airtime_mvc/application/controllers/LocaleController.php:329
+#: airtime_mvc/application/controllers/LocaleController.php:332
msgid "Manage assigned show content"
msgstr "Διαχείριση ανατεθημένου περιεχομένου εκπομπής"
-#: airtime_mvc/application/controllers/LocaleController.php:330
+#: airtime_mvc/application/controllers/LocaleController.php:333
msgid "Import media files"
msgstr "Εισαγωγή αρχείων πολυμέσων"
-#: airtime_mvc/application/controllers/LocaleController.php:331
+#: airtime_mvc/application/controllers/LocaleController.php:334
msgid "Create playlists, smart blocks, and webstreams"
msgstr "Δημιουργία λιστών αναπαραγωγής, smart blocks, και webstreams "
-#: airtime_mvc/application/controllers/LocaleController.php:332
+#: airtime_mvc/application/controllers/LocaleController.php:335
msgid "Manage their own library content"
msgstr "Διαχείριση δικού τους περιεχομένου βιβλιοθήκης"
-#: airtime_mvc/application/controllers/LocaleController.php:333
+#: airtime_mvc/application/controllers/LocaleController.php:336
msgid "Progam Managers can do the following:"
msgstr "Οι Μάνατζερ Προγράμματος μπορούν να κάνουν τα παρακάτω:"
-#: airtime_mvc/application/controllers/LocaleController.php:334
+#: airtime_mvc/application/controllers/LocaleController.php:337
msgid "View and manage show content"
msgstr "Προβολή και διαχείριση περιεχομένου εκπομπής"
-#: airtime_mvc/application/controllers/LocaleController.php:335
+#: airtime_mvc/application/controllers/LocaleController.php:338
msgid "Schedule shows"
msgstr "Πρόγραμμα εκπομπών"
-#: airtime_mvc/application/controllers/LocaleController.php:336
+#: airtime_mvc/application/controllers/LocaleController.php:339
msgid "Manage all library content"
msgstr "Διαχείριση όλου του περιεχομένου βιβλιοθήκης"
-#: airtime_mvc/application/controllers/LocaleController.php:337
+#: airtime_mvc/application/controllers/LocaleController.php:340
msgid "Admins can do the following:"
msgstr "ΟΙ Διαχειριστές μπορούν να κάνουν τα παρακάτω:"
-#: airtime_mvc/application/controllers/LocaleController.php:338
+#: airtime_mvc/application/controllers/LocaleController.php:341
msgid "Manage preferences"
msgstr "Διαχείριση προτιμήσεων"
-#: airtime_mvc/application/controllers/LocaleController.php:339
+#: airtime_mvc/application/controllers/LocaleController.php:342
msgid "Manage users"
msgstr "Διαχείριση Χρηστών"
-#: airtime_mvc/application/controllers/LocaleController.php:340
+#: airtime_mvc/application/controllers/LocaleController.php:343
msgid "Manage watched folders"
msgstr "Διαχείριση προβεβλημένων φακέλων "
-#: airtime_mvc/application/controllers/LocaleController.php:342
+#: airtime_mvc/application/controllers/LocaleController.php:344
+#: airtime_mvc/application/forms/RegisterAirtime.php:116
+#: airtime_mvc/application/forms/SupportSettings.php:98
+msgid "Send support feedback"
+msgstr "Αποστολή Σχολίων Υποστήριξης"
+
+#: airtime_mvc/application/controllers/LocaleController.php:345
msgid "View system status"
msgstr "Προβολή κατάστασης συστήματος"
-#: airtime_mvc/application/controllers/LocaleController.php:343
+#: airtime_mvc/application/controllers/LocaleController.php:346
msgid "Access playout history"
msgstr "Πρόσβαση στην ιστορία playout"
-#: airtime_mvc/application/controllers/LocaleController.php:344
+#: airtime_mvc/application/controllers/LocaleController.php:347
msgid "View listener stats"
msgstr "Προβολή στατιστικών των ακροατών"
-#: airtime_mvc/application/controllers/LocaleController.php:346
+#: airtime_mvc/application/controllers/LocaleController.php:349
msgid "Show / hide columns"
msgstr "Εμφάνιση / απόκρυψη στηλών"
-#: airtime_mvc/application/controllers/LocaleController.php:348
+#: airtime_mvc/application/controllers/LocaleController.php:351
msgid "From {from} to {to}"
msgstr "Από {από} σε {σε}"
-#: airtime_mvc/application/controllers/LocaleController.php:349
+#: airtime_mvc/application/controllers/LocaleController.php:352
msgid "kbps"
msgstr "Kbps"
-#: airtime_mvc/application/controllers/LocaleController.php:350
+#: airtime_mvc/application/controllers/LocaleController.php:353
msgid "yyyy-mm-dd"
msgstr "εεεε-μμ-ηη"
-#: airtime_mvc/application/controllers/LocaleController.php:351
+#: airtime_mvc/application/controllers/LocaleController.php:354
msgid "hh:mm:ss.t"
msgstr "ωω:λλ:δδ.t"
-#: airtime_mvc/application/controllers/LocaleController.php:352
+#: airtime_mvc/application/controllers/LocaleController.php:355
msgid "kHz"
msgstr "kHz"
-#: airtime_mvc/application/controllers/LocaleController.php:355
+#: airtime_mvc/application/controllers/LocaleController.php:358
msgid "Su"
msgstr "Κυ"
-#: airtime_mvc/application/controllers/LocaleController.php:356
+#: airtime_mvc/application/controllers/LocaleController.php:359
msgid "Mo"
msgstr "Δε"
-#: airtime_mvc/application/controllers/LocaleController.php:357
+#: airtime_mvc/application/controllers/LocaleController.php:360
msgid "Tu"
msgstr "Τρ"
-#: airtime_mvc/application/controllers/LocaleController.php:358
+#: airtime_mvc/application/controllers/LocaleController.php:361
msgid "We"
msgstr "Τε"
-#: airtime_mvc/application/controllers/LocaleController.php:359
+#: airtime_mvc/application/controllers/LocaleController.php:362
msgid "Th"
msgstr "Πε"
-#: airtime_mvc/application/controllers/LocaleController.php:360
+#: airtime_mvc/application/controllers/LocaleController.php:363
msgid "Fr"
msgstr "Πα"
-#: airtime_mvc/application/controllers/LocaleController.php:361
+#: airtime_mvc/application/controllers/LocaleController.php:364
msgid "Sa"
msgstr "Σα"
-#: airtime_mvc/application/controllers/LocaleController.php:364
+#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
+msgid "Close"
+msgstr "Κλείσιμο"
+
+#: airtime_mvc/application/controllers/LocaleController.php:367
msgid "Hour"
msgstr "Ώρα"
-#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:368
msgid "Minute"
msgstr "Λεπτό"
-#: airtime_mvc/application/controllers/LocaleController.php:366
+#: airtime_mvc/application/controllers/LocaleController.php:369
msgid "Done"
msgstr "Ολοκληρώθηκε"
-#: airtime_mvc/application/controllers/LocaleController.php:369
+#: airtime_mvc/application/controllers/LocaleController.php:372
msgid "Select files"
msgstr "Επιλογή αρχείων"
-#: airtime_mvc/application/controllers/LocaleController.php:370
-#: airtime_mvc/application/controllers/LocaleController.php:371
+#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:374
msgid "Add files to the upload queue and click the start button."
msgstr "Προσθέστε αρχεία στην ουρά ανεβάσματος και κάντε κλίκ στο κουμπί έναρξης"
-#: airtime_mvc/application/controllers/LocaleController.php:372
-#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:376
msgid "Status"
msgstr "Κατάσταση"
-#: airtime_mvc/application/controllers/LocaleController.php:374
+#: airtime_mvc/application/controllers/LocaleController.php:377
msgid "Add Files"
msgstr "Προσθήκη Αρχείων"
-#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:378
msgid "Stop Upload"
msgstr "Στάση Ανεβάσματος"
-#: airtime_mvc/application/controllers/LocaleController.php:376
+#: airtime_mvc/application/controllers/LocaleController.php:379
msgid "Start upload"
msgstr "Έναρξη ανεβάσματος"
-#: airtime_mvc/application/controllers/LocaleController.php:377
+#: airtime_mvc/application/controllers/LocaleController.php:380
msgid "Add files"
msgstr "Προσθήκη αρχείων"
-#: airtime_mvc/application/controllers/LocaleController.php:378
+#: airtime_mvc/application/controllers/LocaleController.php:381
#, php-format
msgid "Uploaded %d/%d files"
msgstr "Ανέβηκαν %d/%d αρχεία"
-#: airtime_mvc/application/controllers/LocaleController.php:379
+#: airtime_mvc/application/controllers/LocaleController.php:382
msgid "N/A"
msgstr "N/A"
-#: airtime_mvc/application/controllers/LocaleController.php:380
+#: airtime_mvc/application/controllers/LocaleController.php:383
msgid "Drag files here."
msgstr "Σύρετε αρχεία εδώ."
-#: airtime_mvc/application/controllers/LocaleController.php:381
+#: airtime_mvc/application/controllers/LocaleController.php:384
msgid "File extension error."
msgstr "Σφάλμα επέκτασης αρχείου."
-#: airtime_mvc/application/controllers/LocaleController.php:382
+#: airtime_mvc/application/controllers/LocaleController.php:385
msgid "File size error."
msgstr "Σφάλμα μεγέθους αρχείου."
-#: airtime_mvc/application/controllers/LocaleController.php:383
+#: airtime_mvc/application/controllers/LocaleController.php:386
msgid "File count error."
msgstr "Σφάλμα μέτρησης αρχείων."
-#: airtime_mvc/application/controllers/LocaleController.php:384
+#: airtime_mvc/application/controllers/LocaleController.php:387
msgid "Init error."
msgstr "Σφάλμα αρχικοποίησης."
-#: airtime_mvc/application/controllers/LocaleController.php:385
+#: airtime_mvc/application/controllers/LocaleController.php:388
msgid "HTTP Error."
msgstr "Σφάλμα HTTP."
-#: airtime_mvc/application/controllers/LocaleController.php:386
+#: airtime_mvc/application/controllers/LocaleController.php:389
msgid "Security error."
msgstr "Σφάλμα ασφάλειας."
-#: airtime_mvc/application/controllers/LocaleController.php:387
+#: airtime_mvc/application/controllers/LocaleController.php:390
msgid "Generic error."
msgstr "Γενικό σφάλμα."
-#: airtime_mvc/application/controllers/LocaleController.php:388
+#: airtime_mvc/application/controllers/LocaleController.php:391
msgid "IO error."
msgstr "Σφάλμα IO"
-#: airtime_mvc/application/controllers/LocaleController.php:389
+#: airtime_mvc/application/controllers/LocaleController.php:392
#, php-format
msgid "File: %s"
msgstr "Αρχείο: %s"
-#: airtime_mvc/application/controllers/LocaleController.php:391
+#: airtime_mvc/application/controllers/LocaleController.php:394
#, php-format
msgid "%d files queued"
msgstr "%d αρχεία σε αναμονή"
-#: airtime_mvc/application/controllers/LocaleController.php:392
+#: airtime_mvc/application/controllers/LocaleController.php:395
msgid "File: %f, size: %s, max file size: %m"
msgstr "Αρχείο: %f, μέγεθος: %s, μέγιστο μέγεθος αρχείου: %m"
-#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/controllers/LocaleController.php:396
msgid "Upload URL might be wrong or doesn't exist"
msgstr "Το URL είτε είναι λάθος ή δεν υφίσταται"
-#: airtime_mvc/application/controllers/LocaleController.php:394
+#: airtime_mvc/application/controllers/LocaleController.php:397
msgid "Error: File too large: "
msgstr "Σφάλμα: Πολύ μεγάλο αρχείο: "
-#: airtime_mvc/application/controllers/LocaleController.php:395
+#: airtime_mvc/application/controllers/LocaleController.php:398
msgid "Error: Invalid file extension: "
msgstr "Σφάλμα: Μη έγκυρη προέκταση αρχείου: "
-#: airtime_mvc/application/controllers/LocaleController.php:398
+#: airtime_mvc/application/controllers/LocaleController.php:400
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
+msgid "Set Default"
+msgstr "Ως Προεπιλογή"
+
+#: airtime_mvc/application/controllers/LocaleController.php:401
msgid "Create Entry"
msgstr "Δημιουργία Εισόδου"
-#: airtime_mvc/application/controllers/LocaleController.php:399
+#: airtime_mvc/application/controllers/LocaleController.php:402
msgid "Edit History Record"
msgstr "Επεξεργασία Ιστορικού"
-#: airtime_mvc/application/controllers/LocaleController.php:402
+#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
+#: airtime_mvc/application/forms/EditHistoryItem.php:57
+msgid "No Show"
+msgstr "Καμία Εκπομπή"
+
+#: airtime_mvc/application/controllers/LocaleController.php:405
#, php-format
msgid "Copied %s row%s to the clipboard"
msgstr "Αντιγράφηκαν %s σειρές%s στο πρόχειρο"
-#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/controllers/LocaleController.php:406
#, php-format
msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished."
msgstr "%sΕκτύπωση προβολής%sΠαρακαλούμε να χρησιμοποιείσετε την λειτουργία εκτύπωσης του περιηγητή σας για να τυπώσετε τον πίνακα. Όταν τελειώσετε πατήστε escape"
-#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/controllers/LocaleController.php:407
msgid "New Show"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:405
+#: airtime_mvc/application/controllers/LocaleController.php:408
msgid "New Log Entry"
msgstr ""
-#: airtime_mvc/application/controllers/ScheduleController.php:389
-#, php-format
-msgid "Rebroadcast of show %s from %s at %s"
-msgstr "Αναμετάδοση της εκπομπής %s από %s σε %s"
-
-#: airtime_mvc/application/controllers/ScheduleController.php:712
-#: airtime_mvc/application/controllers/LibraryController.php:131
-msgid "Download"
-msgstr "Λήψη"
-
-#: airtime_mvc/application/controllers/ErrorController.php:78
-msgid "Page not found."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:87
-msgid "The requested action is not supported."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:98
-msgid "You do not have permission to access this resource."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:109
-msgid "An internal application error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ListenerstatController.php:51
-msgid "Please make sure admin user/password is correct on System->Streams page."
-msgstr "Παρακαλούμε σιγουρευτείτε ότι ο χρήστης/κωδικός πρόσβασης διαχειριστή είναι σωστός στη σελίδα Σύστημα>Streams."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:53
-#, php-format
-msgid "You are viewing an older version of %s"
-msgstr "Βλέπετε μια παλαιότερη έκδοση του %s"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:140
-msgid "You cannot add tracks to dynamic blocks."
-msgstr "Δεν μπορείτε να προσθέσετε κομμάτια σε δυναμικά blocks."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:147
-#: airtime_mvc/application/controllers/LibraryController.php:31
-#, php-format
-msgid "%s not found"
-msgstr "%s δεν βρέθηκε"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:161
-#, php-format
-msgid "You don't have permission to delete selected %s(s)."
-msgstr "Δεν έχετε άδεια διαγραφής επιλεγμένων %s(s)."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:168
-#: airtime_mvc/application/controllers/LibraryController.php:40
-msgid "Something went wrong."
-msgstr "Κάτι πήγε στραβά."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:174
-msgid "You can only add tracks to smart block."
-msgstr "Μπορείτε να προσθέσετε κομμάτια μόνο σε smart block."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:192
-msgid "Untitled Playlist"
-msgstr "Λίστα Αναπαραγωγλης χωρίς Τίτλο"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:194
-msgid "Untitled Smart Block"
-msgstr "Smart Block χωρίς Τίτλο"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:522
-msgid "Unknown Playlist"
-msgstr "Άγνωστη λίστα αναπαραγωγής"
-
-#: airtime_mvc/application/controllers/LoginController.php:43
-msgid "Please enter your username and password."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:93
-msgid "Wrong username or password provided. Please try again."
-msgstr "Άκυρο όνομα χρήστη ή κωδικός πρόσβασης. Παρακαλώ δοκιμάστε ξανά."
-
-#: airtime_mvc/application/controllers/LoginController.php:167
-msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
-msgstr "Το e-mail δεν μπόρεσε να σταλεί. Ελέγξτε τις ρυθμίσεις email του διακομιστή σας και βεβαιωθείτε ότι έχει ρυθμιστεί σωστά."
-
-#: airtime_mvc/application/controllers/LoginController.php:173
-msgid "There was a problem with the username or email address you entered."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:35
-#: airtime_mvc/application/controllers/DashboardController.php:84
-msgid "You don't have permission to disconnect source."
-msgstr "Δεν έχετε άδεια για αποσύνδεση πηγής."
-
-#: airtime_mvc/application/controllers/DashboardController.php:37
-#: airtime_mvc/application/controllers/DashboardController.php:86
-msgid "There is no source connected to this input."
-msgstr "Δεν υπάρχει καμία πηγή που είναι συνδεδεμένη σε αυτή την είσοδο."
-
-#: airtime_mvc/application/controllers/DashboardController.php:81
-msgid "You don't have permission to switch source."
-msgstr "Δεν έχετε άδεια για αλλαγή πηγής."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:72
-msgid "Preferences updated."
-msgstr "Οι προτιμήσεις ενημερώθηκαν."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:115
-msgid "Support setting updated."
-msgstr "Η ρύθμιση υποστήριξης ενημερώθηκε."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:123
-msgid "Support Feedback"
-msgstr "Σχόλια Υποστήριξης"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:251
-msgid "Stream Setting Updated."
-msgstr "Η Ρύθμιση Stream Ενημερώθηκε."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:342
-msgid "path should be specified"
-msgstr "η διαδρομή πρέπει να καθοριστεί"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:437
-msgid "Problem with Liquidsoap..."
-msgstr "Πρόβλημα με Liquidsoap ..."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:493
-msgid "Request method not accepted"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:86
-msgid "User added successfully!"
-msgstr "Ο χρήστης προστέθηκε επιτυχώς!"
-
-#: airtime_mvc/application/controllers/UserController.php:88
-msgid "User updated successfully!"
-msgstr "Ο χρήστης ενημερώθηκε με επιτυχία!"
-
-#: airtime_mvc/application/controllers/UserController.php:187
-msgid "Settings updated successfully!"
-msgstr "Οι ρυθμίσεις ενημερώθηκαν επιτυχώς!"
-
-#: airtime_mvc/application/controllers/WebstreamController.php:28
-#: airtime_mvc/application/controllers/WebstreamController.php:32
-msgid "Untitled Webstream"
-msgstr "Webstream χωρίς Τίτλο"
-
-#: airtime_mvc/application/controllers/WebstreamController.php:150
-msgid "Webstream saved."
-msgstr "Το Webstream αποθηκεύτηκε."
-
-#: airtime_mvc/application/controllers/WebstreamController.php:158
-msgid "Invalid form values."
-msgstr "Άκυρες μορφές αξίας."
-
-#: airtime_mvc/application/controllers/LibraryController.php:95
-#: airtime_mvc/application/controllers/ShowbuilderController.php:136
-msgid "Preview"
-msgstr "Προεπισκόπηση"
-
-#: airtime_mvc/application/controllers/LibraryController.php:115
-#: airtime_mvc/application/controllers/LibraryController.php:177
-#: airtime_mvc/application/controllers/LibraryController.php:200
-msgid "Add to Playlist"
-msgstr "Προσθήκη στη λίστα αναπαραγωγής"
-
-#: airtime_mvc/application/controllers/LibraryController.php:117
-msgid "Add to Smart Block"
-msgstr "Προσθήκη στο Smart Block"
-
-#: airtime_mvc/application/controllers/LibraryController.php:147
-msgid "View track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:148
-msgid "Remove track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:154
-#: airtime_mvc/application/controllers/LibraryController.php:159
-msgid "Upload track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:169
-msgid "Duplicate Playlist"
-msgstr "Αντιγραφή Λίστας Αναπαραγωγής"
-
-#: airtime_mvc/application/controllers/LibraryController.php:213
-msgid "No action available"
-msgstr "Καμία διαθέσιμη δράση"
-
-#: airtime_mvc/application/controllers/LibraryController.php:233
-msgid "You don't have permission to delete selected items."
-msgstr "Δεν έχετε άδεια διαγραφής των επιλεγμένων στοιχείων."
-
-#: airtime_mvc/application/controllers/LibraryController.php:279
-msgid "Could not delete file because it is scheduled in the future."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:282
-msgid "Could not delete file(s)."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:322
-#, php-format
-msgid "Copy of %s"
-msgstr "Αντιγραφή από %s"
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
-msgid ""
-"To configure and use the embeddable player you must:
\n"
-" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
-" 2. Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
-msgid ""
-"To use the embeddable weekly schedule widget you must:
\n"
-" Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
#: airtime_mvc/application/controllers/ShowbuilderController.php:138
msgid "Select cursor"
msgstr "Επιλέξτε cursor"
@@ -4039,39 +1804,78 @@ msgstr "Αφαίρεση cursor"
msgid "show does not exist"
msgstr "η εκπομπή δεν υπάρχει"
-#: airtime_mvc/application/controllers/ApiController.php:79
-msgid "You are not allowed to access this resource."
-msgstr "Δεν έχετε δικαίωμα πρόσβασης σε αυτό το βοήθημα"
-
-#: airtime_mvc/application/controllers/ApiController.php:244
-#: airtime_mvc/application/controllers/ApiController.php:317
-#: airtime_mvc/application/controllers/ApiController.php:392
-#: airtime_mvc/application/controllers/ApiController.php:435
-#: airtime_mvc/application/controllers/ApiController.php:474
-#: airtime_mvc/application/controllers/ApiController.php:507
-msgid "You are not allowed to access this resource. "
-msgstr "Δεν έχετε δικαίωμα πρόσβασης σε αυτό το βοήθημα. "
-
-#: airtime_mvc/application/controllers/ApiController.php:698
-#: airtime_mvc/application/controllers/ApiController.php:718
-#: airtime_mvc/application/controllers/ApiController.php:730
+#: airtime_mvc/application/controllers/ScheduleController.php:389
#, php-format
-msgid "File does not exist in %s"
+msgid "Rebroadcast of show %s from %s at %s"
+msgstr "Αναμετάδοση της εκπομπής %s από %s σε %s"
+
+#: airtime_mvc/application/common/UsabilityHints.php:55
+msgid "Upload some tracks below to add them to your library!"
msgstr ""
-#: airtime_mvc/application/controllers/ApiController.php:781
-msgid "Bad request. no 'mode' parameter passed."
-msgstr "Λανθασμένο αίτημα. Η παράμετρος «κατάσταση» δεν πέρασε."
-
-#: airtime_mvc/application/controllers/ApiController.php:791
-msgid "Bad request. 'mode' parameter is invalid"
-msgstr "Λανθασμένο αίτημα. Η παράμετρος «κατάσταση» δεν είναι έγκυρη"
-
-#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#: airtime_mvc/application/common/UsabilityHints.php:57
#, php-format
-msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
msgstr ""
+#: airtime_mvc/application/common/UsabilityHints.php:63
+msgid "Click the 'New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:65
+#, php-format
+msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:73
+msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:75
+#, php-format
+msgid ""
+"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
+" %sCreate an unlinked show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:80
+msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:82
+#, php-format
+msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:89
+msgid "Click on the show starting next and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:91
+#, php-format
+msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/DateHelper.php:213
+#, php-format
+msgid "The year %s must be within the range of 1753 - 9999"
+msgstr "Το έτος %s πρέπει να είναι εντός του εύρους 1753 - 9999"
+
+#: airtime_mvc/application/common/DateHelper.php:216
+#, php-format
+msgid "%s-%s-%s is not a valid date"
+msgstr "%s-%s-%s δεν αποτελεί έγκυρη ημερομηνία"
+
+#: airtime_mvc/application/common/DateHelper.php:240
+#, php-format
+msgid "%s:%s:%s is not a valid time"
+msgstr "%s : %s : %s δεν αποτελεί έγκυρη ώρα"
+
+#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
+msgid "Live stream"
+msgstr "Ζωντανό Stream"
+
#: airtime_mvc/application/layouts/scripts/layout.phtml:63
msgid "Smart Block"
msgstr ""
@@ -4084,6 +1888,17 @@ msgstr ""
msgid "Upload"
msgstr ""
+#: airtime_mvc/application/layouts/scripts/layout.phtml:76
+#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
+msgid "Dashboard"
+msgstr ""
+
+#: airtime_mvc/application/layouts/scripts/layout.phtml:84
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
+msgid "Webstreams"
+msgstr ""
+
#: airtime_mvc/application/layouts/scripts/layout.phtml:135
#: airtime_mvc/application/layouts/scripts/layout.phtml:161
msgid "Play"
@@ -4106,401 +1921,2128 @@ msgstr "Ρύθμιση Cue Out"
msgid "Cursor"
msgstr "Cursor"
-#~ msgid "Show:"
-#~ msgstr "Εκπομπή:"
+#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#, php-format
+msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
+msgid "Drop files here or click to browse your computer."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
+msgid "Failed"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
+msgid "Pending"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
+msgid "Recent Uploads"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
+msgid "Share"
+msgstr "Μοιραστείτε"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
+msgid "Select stream:"
+msgstr "Επιλέξτε stream:"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
+msgid "mute"
+msgstr "Σίγαση"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
+msgid "unmute"
+msgstr "Κατάργηση σίγασης"
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
+msgid "About"
+msgstr "Σχετικά"
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
+#, php-format
+msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
+#, php-format
+msgid "%1$s %2$s is distributed under the %3$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
+#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
+#, php-format
+msgid "Welcome to %s!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
+#, php-format
+msgid "Here's how you can get started using %s to automate your broadcasts: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
+msgid "Upload audio tracks"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
+msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
+msgid "Schedule a show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
+msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
+msgid "Add tracks to your show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
+msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
+msgid "Now you're good to go!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
+#, php-format
+msgid "For more detailed help, read the %suser manual%s."
+msgstr "Για περισσότερες αναλυτικές οδηγίες, διαβάστε το %sεγχειρίδιο%s ."
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
+#: airtime_mvc/application/configs/navigation.php:40
+msgid "Weekly Schedule"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
+#: airtime_mvc/application/forms/Player.php:77
+msgid "Preview:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
+#: airtime_mvc/application/configs/navigation.php:34
+msgid "Player"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:97
+msgid "Playout History"
+msgstr "Ιστορικό Playout"
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
+msgid "Log Sheet"
+msgstr "Σελίδα Σύνδεσης"
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
+msgid "File Summary"
+msgstr "Περίληψη Αρχείων"
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
+msgid "Show Summary"
+msgstr "Προβολή Περίληψης"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
+msgid "Expand Static Block"
+msgstr "Επέκταση Στατικών Block"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
+msgid "Expand Dynamic Block"
+msgstr "Επέκταση Δυναμικών Block"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
+msgid "Choose some search criteria above and click Generate to create this playlist."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
+msgid "A track list will be generated when you schedule this smart block into a show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
+msgid "Drag tracks here from your library to add them to the playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
+msgid "Editing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:26
+msgid "Name:"
+msgstr "Όνομα:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
+#: airtime_mvc/application/forms/AddShowWhat.php:54
+msgid "Description:"
+msgstr "Περιγραφή:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
+#: airtime_mvc/application/forms/AddShowWhen.php:89
+msgid "Duration:"
+msgstr "Διάρκεια:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
+msgid "Toggle Details"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+msgid "Shuffle playlist"
+msgstr "Shuffle λίστα αναπαραγωγής"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
+msgid "Shuffle"
+msgstr "Shuffle"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
+msgid "Playlist crossfade"
+msgstr "Crossfade λίστας αναπαραγωγής"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+msgid "Empty playlist content"
+msgstr "Άδειασμα περιεχομένου λίστας αναπαραγωγής"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Clear"
+msgstr "Εκκαθάριση"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+msgid "Fade in: "
+msgstr "Fade in: "
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "Fade out: "
+msgstr "Fade out: "
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+msgid "Save playlist"
+msgstr "Αποθήκευση λίστας αναπαραγωγής"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
+msgid "No open playlist"
+msgstr "Καμία ανοικτή λίστα αναπαραγωγής"
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
+msgid "Show Waveform"
+msgstr "Εμφάνιση κυμματοειδούς μορφής"
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "(ss.t)"
+msgstr "(Ss.t)"
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Remove all content from this smart block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
+msgid "No smart block currently open"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+msgid "Cue In: "
+msgstr "Cue In: "
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "(hh:mm:ss.t)"
+msgstr "(ωω:λλ:δδ.t)"
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "Cue Out: "
+msgstr "Cue Out: "
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
+msgid "Original Length:"
+msgstr "Αρχική Διάρκεια:"
+
+#: airtime_mvc/application/views/scripts/preference/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:56
+msgid "General"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
+msgid "Stream Settings"
+msgstr "Ρυθμίσεις Stream"
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
+msgid "Global"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
+msgid "dB"
+msgstr "βΔ"
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
+msgid "Output Streams"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:3
+#: airtime_mvc/application/forms/Login.php:83
+msgid "Login"
+msgstr "Σύνδεση"
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:7
+#, php-format
+msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
+msgid "Email Sent!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
+msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
+msgid "Back"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
+msgid "Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
+msgid "New password"
+msgstr "Νέος κωδικός πρόσβασης"
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
+msgid "Please enter and confirm your new password in the fields below."
+msgstr "Παρακαλώ εισάγετε και επαληθεύστε τον νέο κωδικό πρόσβασής σας στα παρακάτω πεδία. "
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
+msgid "Manage Users"
+msgstr "Διαχείριση Χρηστών"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
+msgid "New User"
+msgstr "Νέος Χρήστης"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
+msgid "id"
+msgstr "ταυτότητα"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
+#: airtime_mvc/application/forms/PasswordRestore.php:25
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
+msgid "Username"
+msgstr "Όνομα Χρήστη"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
+msgid "First Name"
+msgstr "Όνομα"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
+msgid "Last Name"
+msgstr "Επώνυμο"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
+msgid "User Type"
+msgstr "Τύπος Χρήστη"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
+#, php-format
+msgid "Super Admin details can be changed in your Billing Settings."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
+msgid "Find Shows"
+msgstr "Εύρεση Εκπομπών"
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
+msgid "Choose Show Instance"
+msgstr "Επιλογή Παρουσίας Εκπομπής"
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
+msgid "Find"
+msgstr "Εύρεση"
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
+#: airtime_mvc/application/configs/navigation.php:61
+msgid "My Profile"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
+#, php-format
+msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
+msgid "Repeat Days:"
+msgstr "Επανάληψη Ημερών:"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
+#: airtime_mvc/application/forms/GeneralPreferences.php:53
+#: airtime_mvc/application/forms/AddShowStyle.php:64
+msgid "Remove"
+msgstr "Αφαίρεση"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
+msgid "Add"
+msgstr "Προσθήκη"
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
+msgid "Show Source"
+msgstr "Εμφάνιση Πηγής "
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
+msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
+msgid "Register Airtime"
+msgstr "Εγγραφή σε Airtime"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
+#, php-format
+msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
+#, php-format
+msgid "Click the box below to promote your station on %s."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
+msgid "(Required)"
+msgstr "(Απαιτείται)"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
+msgid "(for verification purposes only, will not be published)"
+msgstr "(Μόνο για σκοπούς επαλήθευσης, δεν θα δημοσιευθεί)"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
+#: airtime_mvc/application/forms/GeneralPreferences.php:43
+msgid "Note: Anything larger than 600x600 will be resized."
+msgstr "Σημείωση: Οτιδήποτε μεγαλύτερο από 600x600 θα αλλάξει μέγεθος."
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
+msgid "Show me what I am sending "
+msgstr "Δείξε μου τι στέλνω "
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
+msgid "Terms and Conditions"
+msgstr "Όροι και Προϋποθέσεις"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
+msgid "Choose Days:"
+msgstr "Επιλέξτε Ημέρες:"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
+msgid "Search Criteria:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
+msgid "New Criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
+msgid "or"
+msgstr "ή"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
+msgid "and"
+msgstr "και"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
+msgid "New Modifier"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
+msgid " to "
+msgstr " να "
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
+msgid "files meet the criteria"
+msgstr "τα αρχεία πληρούν τα κριτήρια"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
+msgid "file meets the criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
+msgid "Filter History"
+msgstr "Φιλτράρισμα Ιστορίας"
+
+#: airtime_mvc/application/views/scripts/form/login.phtml:41
+msgid "Forgot your password?"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
+msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
+msgstr "(Για να προωθήσετε τον σταθμό σας, η 'Αποστολή σχολίων υποστήριξης» πρέπει να είναι ενεργοποιημένη)."
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
+msgid "Stream "
+msgstr "Stream "
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
+msgid "Additional Options"
+msgstr "Πρόσθετες επιλογές"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
+msgid "The following info will be displayed to listeners in their media player:"
+msgstr "Η παρακάτω πληροφορία θα εμφανίζεται στις συσκευές αναπαραγωγής πολυμέσων των ακροατών σας:"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
+msgid "(Your radio station website)"
+msgstr "(Ιστοσελίδα του Ραδιοφωνικού σταθμού)"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
+msgid "Stream URL: "
+msgstr "URL Stream: "
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
+msgid "Choose folder"
+msgstr "Επιλέξτε φάκελο"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
+msgid "Set"
+msgstr "Ορισμός"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
+msgid "Current Import Folder:"
+msgstr "Τρέχων Φάκελος Εισαγωγής:"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
+#, php-format
+msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
+msgid "Remove watched directory"
+msgstr "Αφαίρεση προβεβλημμένου ευρετηρίου"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
+msgid "You are not watching any media folders."
+msgstr "Δεν παρακολουθείτε κανέναν φάκελο πολυμέσων."
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
+msgid "Live Broadcasting"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
+msgid "Master Source"
+msgstr "Κύρια Πηγή "
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
+msgid "Use these settings in your broadcasting software to stream live at any time."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
+msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
+msgid "TuneIn Settings"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
+msgid "SoundCloud Settings"
+msgstr "Ρυθμίσεις SoundCloud"
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
+msgid "Dangerous Options"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Add this show"
+msgstr "Προσθήκη αυτής της εκπομπής "
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Update show"
+msgstr "Ενημέρωση εκπομπής"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
+msgid "What"
+msgstr "Τι"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
+msgid "When"
+msgstr "Πότε"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
+msgid "Live Stream Input"
+msgstr "Είσοδος Live Stream "
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
+msgid "Who"
+msgstr "Ποιός"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
+msgid "Style"
+msgstr "Στυλ"
+
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
+msgid "Disk Space"
+msgstr "Χώρος δίσκου"
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:3
+msgid "File import in progress..."
+msgstr "Εισαγωγή αρχείου σε εξέλιξη..."
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:10
+#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
+msgid "Advanced Search Options"
+msgstr "Προηγμένες Επιλογές Αναζήτησης"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
+#: airtime_mvc/application/forms/EditAudioMD.php:24
+#: airtime_mvc/application/forms/Player.php:15
+msgid "Title:"
+msgstr "Τίτλος:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
+#: airtime_mvc/application/forms/EditAudioMD.php:34
+msgid "Creator:"
+msgstr "Δημιουργός:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
+#: airtime_mvc/application/forms/EditAudioMD.php:44
+msgid "Album:"
+msgstr "Album:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
+msgid "Track:"
+msgstr "Κομμάτι:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
+msgid "Length:"
+msgstr "Διάρκεια:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
+msgid "Sample Rate:"
+msgstr "Ρυθμός δειγματοληψίας:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
+msgid "Bit Rate:"
+msgstr "Ρυθμός Δεδομένων:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
+#: airtime_mvc/application/forms/EditAudioMD.php:115
+msgid "Mood:"
+msgstr "Διάθεση:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:45
+#: airtime_mvc/application/forms/EditAudioMD.php:62
+msgid "Genre:"
+msgstr "Είδος:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
+#: airtime_mvc/application/forms/EditAudioMD.php:72
+msgid "Year:"
+msgstr "Έτος"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
+#: airtime_mvc/application/forms/EditAudioMD.php:85
+msgid "Label:"
+msgstr "Δισκογραφική:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
+#: airtime_mvc/application/forms/EditAudioMD.php:125
+msgid "BPM:"
+msgstr "BPM:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
+#: airtime_mvc/application/forms/EditAudioMD.php:95
+msgid "Composer:"
+msgstr "Συνθέτης:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
+#: airtime_mvc/application/forms/EditAudioMD.php:105
+msgid "Conductor:"
+msgstr "Μαέστρος:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
+#: airtime_mvc/application/forms/EditAudioMD.php:135
+msgid "Copyright:"
+msgstr "Copyright:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
+msgid "Isrc Number:"
+msgstr "Αριθμός ISRC:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
+#: airtime_mvc/application/forms/EditAudioMD.php:155
+msgid "Website:"
+msgstr "Ιστοσελίδα:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
+#: airtime_mvc/application/forms/EditAudioMD.php:165
+#: airtime_mvc/application/forms/EditUser.php:119
+#: airtime_mvc/application/forms/Login.php:68
+msgid "Language:"
+msgstr "Γλώσσα:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
+msgid "File Path:"
+msgstr "Διαδρομή Αρχείου"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
+msgid "Web Stream"
+msgstr "Web Stream"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
+msgid "Dynamic Smart Block"
+msgstr "Δυναμικά Smart Block"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
+msgid "Static Smart Block"
+msgstr "Στατικά Smart Block"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
+msgid "Audio Track"
+msgstr "Κομμάτι Ήχου"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
+msgid "Playlist Contents: "
+msgstr "Περιεχόμενα Λίστας Αναπαραγωγής: "
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
+msgid "Static Smart Block Contents: "
+msgstr "Περιεχόμενα Στατικών Smart Block : "
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
+msgid "Dynamic Smart Block Criteria: "
+msgstr "Κριτήρια Δυναμικών Smart Block: "
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
+msgid "Limit to "
+msgstr "Όριο για "
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
+#: airtime_mvc/application/forms/AddShowWhat.php:36
+msgid "URL:"
+msgstr "Διεύθυνση URL:"
+
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
+msgid "Viewing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
+msgid "Listeners"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
+msgid "Stream Data Collection Status"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
+msgid "Your trial expires in"
+msgstr "Το δοκιμαστικό λήγει σε"
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
+msgid "days"
+msgstr "ημέρες"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
+msgid "Previous:"
+msgstr "Προηγούμενο"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
+msgid "Next:"
+msgstr "Επόμενο"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
+msgid "Source Streams"
+msgstr "Πηγή Streams"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
+msgid "ON AIR"
+msgstr "ON AIR"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
+msgid "Listen"
+msgstr "Ακούστε!"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
+msgid "Logout"
+msgstr "Έξοδος"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
+msgid "Playout History Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
+msgid "Log Sheet Templates"
+msgstr "Template Φόρμας Σύνδεσης"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
+msgid "New Log Sheet Template"
+msgstr "Νέο Template Φόρμας Σύνδεσης"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
+msgid "No Log Sheet Templates"
+msgstr "Κανένα Template Φόρμας Σύνδεσης"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
+msgid "File Summary Templates"
+msgstr "Template Περίληψης Αρχείου"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
+msgid "New File Summary Template"
+msgstr "Νέο Template Περίληψης Αρχείου"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
+msgid "No File Summary Templates"
+msgstr "Κανένα Template Περίληψης Αρχείου"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
+msgid "Creating File Summary Template"
+msgstr "Δημιουργία Αρχείου Περίληψης Template "
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
+msgid "Creating Log Sheet Template"
+msgstr "Δημιουργία Template Φόρμας Σύνδεσης"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
+msgid "Name"
+msgstr "Ονομασία"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
+msgid "Add more elements"
+msgstr "Προσθήκη περισσότερων στοιχείων"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
+msgid "Add New Field"
+msgstr "Προσθήκη Νέου Πεδίου"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
+msgid "Set Default Template"
+msgstr "Ορισμός Προεπιλεγμένου Template "
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
+msgid "Description"
+msgstr "Περιγραφή"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
+msgid "Stream URL:"
+msgstr "URL Stream:"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
+msgid "Default Length:"
+msgstr "Προεπιλεγμένη Διάρκεια:"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
+msgid "No webstream"
+msgstr "Κανένα webstream"
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
+#: airtime_mvc/application/views/scripts/error/error.phtml:6
+msgid "An error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
+msgid "Access Denied!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
+msgid "You do not have permission to access this page!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
+#: airtime_mvc/application/views/scripts/error/error.phtml:14
+#: airtime_mvc/application/configs/navigation.php:143
+msgid "Help"
+msgstr "Βοήθεια"
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
+msgid "Oops!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
+msgid "Something went wrong!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
+msgid "Bad Request!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
+msgid "The requested action is not supported!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
+msgid "Page not found!"
+msgstr "Η σελίδα δεν βρέθηκε!"
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
+msgid "We couldn't find the page you were looking for."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error.phtml:12
+msgid "Looks like the page you were looking for doesn't exist!"
+msgstr "Η σελίδα που ψάχνατε δεν υπάρχει!"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
+msgid "previous"
+msgstr "προηγούμενο"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
+msgid "play"
+msgstr "αναπαραγωγή"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
+msgid "pause"
+msgstr "παύση"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
+msgid "next"
+msgstr "επόμενο"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
+msgid "stop"
+msgstr "στάση"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
+msgid "max volume"
+msgstr "μέγιστη ένταση"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
+msgid "Update Required"
+msgstr "Απαιτείται Ενημέρωση "
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
+#, php-format
+msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
+msgstr "Για να παίξετε τα πολυμέσα θα πρέπει είτε να αναβαθμίστε το πρόγραμμα περιήγησηής σας σε μια πρόσφατη έκδοση ή να ενημέρώσετε το %sFlash plugin %s σας."
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
+msgid "Plan type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
+msgid "Billing cycle:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
+msgid "Payment method:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
+msgid "PayPal"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
+msgid "Credit Card via 2Checkout"
+msgstr ""
+
+#: airtime_mvc/application/forms/DateRange.php:16
+#: airtime_mvc/application/forms/ShowBuilder.php:18
+msgid "Date Start:"
+msgstr "Ημερομηνία Έναρξης:"
+
+#: airtime_mvc/application/forms/DateRange.php:35
+#: airtime_mvc/application/forms/DateRange.php:63
+#: airtime_mvc/application/forms/ShowBuilder.php:37
+#: airtime_mvc/application/forms/ShowBuilder.php:65
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
+msgid "Invalid character entered"
+msgstr "Εισαγωγή άκυρου χαρακτήρα"
+
+#: airtime_mvc/application/forms/DateRange.php:44
+#: airtime_mvc/application/forms/ShowBuilder.php:46
+#: airtime_mvc/application/forms/AddShowRepeats.php:56
+msgid "Date End:"
+msgstr "Ημερομηνία Λήξης:"
+
+#: airtime_mvc/application/forms/ShowBuilder.php:72
+#: airtime_mvc/application/forms/ShowBuilder.php:88
+msgid "Filter by Show"
+msgstr ""
+
+#: airtime_mvc/application/forms/ShowBuilder.php:80
+msgid "All My Shows:"
+msgstr "Όλες οι Εκπομπές μου:"
+
+#: airtime_mvc/application/forms/AddShowWho.php:10
+msgid "Search Users:"
+msgstr "Αναζήτηση Χρηστών:"
+
+#: airtime_mvc/application/forms/AddShowWho.php:24
+msgid "DJs:"
+msgstr "DJs:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:30
+#: airtime_mvc/application/forms/GeneralPreferences.php:25
+#: airtime_mvc/application/forms/SupportSettings.php:18
+msgid "Station Name"
+msgstr "Όνομα Σταθμού"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:39
+#: airtime_mvc/application/forms/SupportSettings.php:31
+msgid "Phone:"
+msgstr "Τηλέφωνο:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:51
+#: airtime_mvc/application/forms/AddUser.php:67
+#: airtime_mvc/application/forms/EditUser.php:83
+#: airtime_mvc/application/forms/SupportSettings.php:43
+msgid "Email:"
+msgstr "Email:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:62
+#: airtime_mvc/application/forms/SupportSettings.php:54
+msgid "Station Web Site:"
+msgstr "Ιστοσελίδα Σταθμού:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:73
+#: airtime_mvc/application/forms/SupportSettings.php:65
+msgid "Country:"
+msgstr "Χώρα"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:84
+#: airtime_mvc/application/forms/SupportSettings.php:76
+msgid "City:"
+msgstr "Πόλη"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:96
+#: airtime_mvc/application/forms/SupportSettings.php:88
+msgid "Station Description:"
+msgstr "Περιγραφή Σταθμού:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:106
+#: airtime_mvc/application/forms/GeneralPreferences.php:42
+msgid "Station Logo:"
+msgstr "Λογότυπο Σταθμού:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:126
+#: airtime_mvc/application/forms/SupportSettings.php:108
+#, php-format
+msgid "Promote my station on %s"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:151
+#: airtime_mvc/application/forms/SupportSettings.php:120
+#, php-format
+msgid "By checking this box, I agree to %s's %sprivacy policy%s."
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:169
+#: airtime_mvc/application/forms/SupportSettings.php:143
+msgid "You have to agree to privacy policy."
+msgstr "Πρέπει να συμφωνείτε με την πολιτική προστασίας προσωπικών δεδομένων."
+
+#: airtime_mvc/application/forms/AddShowRR.php:10
+msgid "Record from Line In?"
+msgstr "Ηχογράφηση από Line In;"
+
+#: airtime_mvc/application/forms/AddShowRR.php:16
+msgid "Rebroadcast?"
+msgstr "Αναμετάδοση;"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
+#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
+msgid "Value is required and can't be empty"
+msgstr "Απαιτείται αξία και δεν μπορεί να είναι κενή"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
+msgid "'%value%' is no valid email address in the basic format local-part@hostname"
+msgstr "'%value%' δεν αποτελεί έγκυρη διεύθυνση ηλεκτρονικού ταχυδρομείου στη βασική μορφή local-part@hostname"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
+msgid "'%value%' does not fit the date format '%format%'"
+msgstr "'%value%' δεν ταιριάζει με τη μορφή ημερομηνίας '%format%'"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
+msgid "'%value%' is less than %min% characters long"
+msgstr "'%value%' είναι λιγότερο από %min% χαρακτήρες "
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
+msgid "'%value%' is more than %max% characters long"
+msgstr "'%value%' είναι περισσότερο από %max% χαρακτήρες "
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
+msgid "'%value%' is not between '%min%' and '%max%', inclusively"
+msgstr "'%value%' δεν είναι μεταξύ '%min%' και '%max%', συνολικά"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
+msgid "Passwords do not match"
+msgstr "Οι κωδικοί πρόσβασης δεν συμπίπτουν"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
+msgid "Day must be specified"
+msgstr "Η μέρα πρέπει να προσδιοριστεί"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
+msgid "Time must be specified"
+msgstr "Η ώρα πρέπει να προσδιοριστεί"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
+msgid "Must wait at least 1 hour to rebroadcast"
+msgstr "Πρέπει να περιμένετε τουλάχιστον 1 ώρα για την αναμετάδοση"
+
+#: airtime_mvc/application/forms/PasswordRestore.php:14
+msgid "Email"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordRestore.php:36
+msgid "Reset password"
+msgstr "Επαναφορά κωδικού πρόσβασης"
+
+#: airtime_mvc/application/forms/AddShowWhat.php:30
+msgid "Untitled Show"
+msgstr "Εκπομπή χωρίς Τίτλο"
+
+#: airtime_mvc/application/forms/AddShowWhat.php:69
+msgid "Instance Description:"
+msgstr ""
+
+#: airtime_mvc/application/forms/DangerousPreferences.php:12
+msgid "Delete All Tracks in Library"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditAudioMD.php:145
+msgid "ISRC Number:"
+msgstr "Αριθμός ISRC:"
+
+#: airtime_mvc/application/forms/EditAudioMD.php:176
+msgid "OK"
+msgstr "ΟΚ"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:33
+msgid "Station Description"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:62
+msgid "Default Crossfade Duration (s):"
+msgstr "Προεπιλεγμένη Διάρκεια Crossfade (s):"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:68
+#: airtime_mvc/application/forms/GeneralPreferences.php:82
+#: airtime_mvc/application/forms/GeneralPreferences.php:96
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
+msgid "Please enter a time in seconds (eg. 0.5)"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:76
+msgid "Default Fade In (s):"
+msgstr "Προεπιλεγμένο Fade In (s):"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:90
+msgid "Default Fade Out (s):"
+msgstr "Προεπιλεγμένο Fade Out (s):"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:102
+msgid "Public Airtime API"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:103
+msgid "Required for embeddable schedule widget."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:105
+msgid "Disabled"
+msgstr "Απενεργοποιημένο"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:106
+msgid "Enabled"
+msgstr "Ενεργοποιημένο"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:109
+msgid ""
+"Enabling this feature will allow Airtime to provide schedule data\n"
+" to external widgets that can be embedded in your website."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:120
+msgid "Default Language"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:127
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
+msgid "Station Timezone"
+msgstr "Ζώνη Ώρας Σταθμού"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:134
+msgid "Week Starts On"
+msgstr "Η Εβδομάδα αρχίζει "
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:150
+msgid "Display login button on your Radio Page?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:29
+#: airtime_mvc/application/forms/EditUser.php:37
+#: airtime_mvc/application/forms/Login.php:41
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
+msgid "Username:"
+msgstr "Όνομα Χρήστη:"
+
+#: airtime_mvc/application/forms/AddUser.php:38
+#: airtime_mvc/application/forms/EditUser.php:48
+#: airtime_mvc/application/forms/Login.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
+msgid "Password:"
+msgstr "Κωδικός πρόσβασης:"
+
+#: airtime_mvc/application/forms/AddUser.php:46
+#: airtime_mvc/application/forms/EditUser.php:57
+msgid "Verify Password:"
+msgstr "Επαλήθευση κωδικού πρόσβασης"
+
+#: airtime_mvc/application/forms/AddUser.php:55
+#: airtime_mvc/application/forms/EditUser.php:67
+msgid "Firstname:"
+msgstr "Όνομα:"
+
+#: airtime_mvc/application/forms/AddUser.php:61
+#: airtime_mvc/application/forms/EditUser.php:75
+msgid "Lastname:"
+msgstr "Επώνυμο:"
+
+#: airtime_mvc/application/forms/AddUser.php:76
+#: airtime_mvc/application/forms/EditUser.php:94
+msgid "Mobile Phone:"
+msgstr "Κινητό Τηλέφωνο:"
+
+#: airtime_mvc/application/forms/AddUser.php:82
+#: airtime_mvc/application/forms/EditUser.php:102
+msgid "Skype:"
+msgstr "Skype"
+
+#: airtime_mvc/application/forms/AddUser.php:88
+#: airtime_mvc/application/forms/EditUser.php:110
+msgid "Jabber:"
+msgstr "Jabber"
+
+#: airtime_mvc/application/forms/AddUser.php:95
+msgid "User Type:"
+msgstr "Τύπος Χρήστη:"
+
+#: airtime_mvc/application/forms/AddUser.php:120
+#: airtime_mvc/application/forms/EditUser.php:155
+msgid "Login name is not unique."
+msgstr "Το όνομα εισόδου δεν είναι μοναδικό."
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
+msgid "Import Folder:"
+msgstr "Εισαγωγή Φακέλου:"
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
+msgid "Watched Folders:"
+msgstr "Παροβεβλημμένοι Φάκελοι:"
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
+msgid "Not a valid Directory"
+msgstr "Μη έγκυρο Ευρετήριο"
+
+#: airtime_mvc/application/forms/BillingClient.php:126
+msgid "What is the name of your favorite childhood friend?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:127
+msgid "What school did you attend for sixth grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:128
+msgid "In what city did you meet your spouse/significant other?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:129
+msgid "What street did you live on in third grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:130
+msgid "What is the first name of the boy or girl that you first kissed?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:131
+msgid "In what city or town was your first job?"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
+msgid "Default License:"
+msgstr "Προεπιλεγμένη Άδεια :"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
+msgid "All rights are reserved"
+msgstr "Διατήρηση όλων των δικαιωμάτων"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
+msgid "The work is in the public domain"
+msgstr "Εργασία δημόσιας χρήσης"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
+msgid "Creative Commons Attribution"
+msgstr "Απόδοση Creative Commons"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
+msgid "Creative Commons Attribution Noncommercial"
+msgstr "Απόδοση Creative Commons Μη Εμπορική Χρήση"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
+msgid "Creative Commons Attribution No Derivative Works"
+msgstr "Απόδοση Creative Commons Όχι Παράγωγα Έργα"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
+msgid "Creative Commons Attribution Share Alike"
+msgstr "Απόδοση Creative Commons Share Alike"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
+msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
+msgstr "Απόδοση Creative Commons Μη Εμπορική Χρήση Όχι Παράγωγα Έργα"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
+msgid "Creative Commons Attribution Noncommercial Share Alike"
+msgstr "Απόδοση Creative Commons Μη Εμπορική Χρήση Share Alike"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
+msgid "Default Sharing Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
+msgid "Public"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
+msgid "Private"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditUser.php:129
+msgid "Interface Timezone:"
+msgstr "Interface Ζώνης ώρας:"
+
+#: airtime_mvc/application/forms/Player.php:14
+msgid "Now Playing"
+msgstr "Αναπαραγωγή σε Εξέλιξη"
+
+#: airtime_mvc/application/forms/Player.php:25
+msgid "Select Stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:28
+msgid "Auto detect the most appropriate stream to use."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:29
+msgid "Select a stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:41
+msgid " - Mobile friendly"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:45
+msgid " - The player does not support Opus streams."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:71
+msgid "Embeddable code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:72
+msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
+#: airtime_mvc/application/models/Block.php:1351
+msgid "Select criteria"
+msgstr "Επιλέξτε κριτήρια"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
+#: airtime_mvc/application/models/Block.php:1353
+msgid "Bit Rate (Kbps)"
+msgstr "Bit Rate (Kbps)"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
+#: airtime_mvc/application/models/Block.php:1374
+msgid "Sample Rate (kHz)"
+msgstr "Ρυθμός Δειγματοληψίας (kHz)"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
+msgid "hours"
+msgstr "ώρες"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
+msgid "minutes"
+msgstr "λεπτά"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
+#: airtime_mvc/application/models/Block.php:333
+msgid "items"
+msgstr "στοιχεία"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
+msgid "Randomly"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
+msgid "Newest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
+msgid "Oldest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
+msgid "Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
+msgid "Static"
+msgstr "Στατικό"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
+msgid "Dynamic"
+msgstr "Δυναμικό"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
+msgid "Allow Repeated Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
+msgid "Sort Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
+msgid "Limit to:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
+msgid "Generate playlist content and save criteria"
+msgstr "Δημιουργία λίστας αναπαραγωγής περιεχομένου και αποθήκευση κριτηρίων"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
+msgid "Generate"
+msgstr "Δημιουργία"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
+msgid "Shuffle playlist content"
+msgstr "Περιεχόμενο λίστας Shuffle "
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
+msgid "Limit cannot be empty or smaller than 0"
+msgstr "Το όριο δεν μπορεί να είναι κενό ή μικρότερο από 0"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
+msgid "Limit cannot be more than 24 hrs"
+msgstr "Το όριο δεν μπορεί να είναι ξεπερνάει τις 24 ώρες"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
+msgid "The value should be an integer"
+msgstr "Η τιμή πρέπει να είναι ακέραιος αριθμός"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
+msgid "500 is the max item limit value you can set"
+msgstr "Το 500 είναι η μέγιστη οριακή τιμή σημείου, που μπορείτε να ορίσετε"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
+msgid "You must select Criteria and Modifier"
+msgstr "Θα πρέπει να επιλέξετε Κριτήρια και Τροποποιητή"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
+msgid "'Length' should be in '00:00:00' format"
+msgstr "Το «Μήκος» θα πρέπει να είναι σε υπό μορφής '00:00:00'"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
+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:594
+msgid "The value has to be numeric"
+msgstr "Η τιμή πρέπει να είναι αριθμός"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
+msgid "The value should be less then 2147483648"
+msgstr "Η τιμή πρέπει να είναι μικρότερη από 2147483648"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
+#, php-format
+msgid "The value should be less than %s characters"
+msgstr "Η τιμή πρέπει να είναι μικρότερη από %s χαρακτήρες"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
+msgid "Value cannot be empty"
+msgstr "Η αξία δεν μπορεί να είναι κενή"
+
+#: airtime_mvc/application/forms/StreamSetting.php:26
+msgid "Icecast Vorbis Metadata"
+msgstr "Μεταδεδομένα Icecast Vorbis "
+
+#: airtime_mvc/application/forms/StreamSetting.php:36
+msgid "Stream Label:"
+msgstr "Stream Label:"
+
+#: airtime_mvc/application/forms/StreamSetting.php:37
+msgid "Artist - Title"
+msgstr "Καλλιτέχνης - Τίτλος"
+
+#: airtime_mvc/application/forms/StreamSetting.php:38
+msgid "Show - Artist - Title"
+msgstr "Εκπομπή - Καλλιτέχνης - Τίτλος"
+
+#: airtime_mvc/application/forms/StreamSetting.php:39
+msgid "Station name - Show name"
+msgstr "Όνομα Σταθμού - Όνομα Εκπομπής"
+
+#: airtime_mvc/application/forms/StreamSetting.php:45
+msgid "Off Air Metadata"
+msgstr "Μεταδεδομένα Off Air"
+
+#: airtime_mvc/application/forms/StreamSetting.php:51
+msgid "Enable Replay Gain"
+msgstr "Ενεργοποίηση Επανάληψη Κέρδους"
+
+#: airtime_mvc/application/forms/StreamSetting.php:57
+msgid "Replay Gain Modifier"
+msgstr "Τροποποιητής Επανάληψης Κέρδους"
+
+#: airtime_mvc/application/forms/StreamSetting.php:65
+msgid "Streaming Server:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Airtime Pro Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Custom / 3rd Party Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordChange.php:17
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
+msgid "Password"
+msgstr "Κωδικός πρόσβασης"
-#~ msgid "enter a time in seconds 0{.0}"
-#~ msgstr "εισάγετε ένα χρόνο σε δευτερόλεπτα 0{.0}"
+#: airtime_mvc/application/forms/PasswordChange.php:28
+msgid "Confirm new password"
+msgstr "Επιβεβαίωση νέου κωδικού πρόσβασης"
-#~ msgid "Allow Remote Websites To Access \"Schedule\" Info?%s (Enable this to make front-end widgets work.)"
-#~ msgstr "Επιτρέψτε την Πρόσβαση \"Πρόγραμμα\" Πληροφορίες;%s σε Ιστοσελίδες με Απομακρυσμένη Πρόσβαση (Ενεργοποιήστε το για να λειτουργήσουν τα front-end widgets.)"
+#: airtime_mvc/application/forms/PasswordChange.php:36
+msgid "Password confirmation does not match your password."
+msgstr "Η επιβεβαίωση κωδικού δεν ταιριάζει με τον κωδικό πρόσβασής σας."
-#~ msgid "Default Interface Language"
-#~ msgstr "Προεπιλογή Γλώσσας Interface"
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
+msgid "Station Language"
+msgstr ""
-#~ msgid "Get new password"
-#~ msgstr "Αποκτήστε νέο κωδικό πρόσβασης"
-
-#~ msgid "Set smart block type:"
-#~ msgstr "Ορισμός τύπου smart block:"
-
-#~ msgid "Allow Repeat Tracks:"
-#~ msgstr "Επιτρέψτε την επανάληψη κομματιών:"
-
-#~ msgid "Limit to"
-#~ msgstr "Όριο για"
-
-#~ msgid "Auto Switch Off"
-#~ msgstr "Αυτόματη Απενεργοποίηση"
-
-#~ msgid "Auto Switch On"
-#~ msgstr "Αυτόματη Ενεργοποίηση"
-
-#~ msgid "Switch Transition Fade (s)"
-#~ msgstr "Διακόπτης Fade Μετάβασης (s)"
-
-#~ msgid "enter a time in seconds 00{.000000}"
-#~ msgstr "εισάγετε την ώρα σε δευτερόλεπτα 00{.000000}"
-
-#~ msgid "Master Username"
-#~ msgstr "Κύριο Όνομα Χρήστη"
-
-#~ msgid "Master Password"
-#~ msgstr "Κύριος Κωδικός Πρόσβασης"
-
-#~ msgid "Master Source Connection URL"
-#~ msgstr "URL Σύνδεσης Κύριας Πηγής "
-
-#~ msgid "Show Source Connection URL"
-#~ msgstr "Εμφάνιση URL Σύνδεσης Πηγής "
-
-#~ msgid "Master Source Port"
-#~ msgstr "Κύριο Port Πηγής"
-
-#~ msgid "Master Source Mount Point"
-#~ msgstr "Κύριο Σημείο Προσάρτησης Πηγής"
-
-#~ msgid "Show Source Port"
-#~ msgstr "Εμφάνιση Port Πηγής"
-
-#~ msgid "Show Source Mount Point"
-#~ msgstr "Εμφάνιση Σημείου Προσάρτησης Πηγής"
-
-#~ msgid "You cannot use same port as Master DJ port."
-#~ msgstr "Δεν μπορείτε να χρησιμοποιήσετε το ίδιο port ως Master DJ Show port."
-
-#~ msgid "Port %s is not available"
-#~ msgstr "Μη διαθέσιμο Port %s "
-
-#~ msgid "E-mail"
-#~ msgstr "E-mail"
-
-#~ msgid "Restore password"
-#~ msgstr "Επαναφορά κωδικού πρόσβασης"
-
-#~ msgid "Hardware Audio Output"
-#~ msgstr "Έξοδος Hardware Ήχου"
-
-#~ msgid "Output Type"
-#~ msgstr "Τύπος Εξόδου"
-
-#~ msgid "Date/Time Start:"
-#~ msgstr "Ημερομηνία/Ώρα Έναρξης:"
-
-#~ msgid "Date/Time End:"
-#~ msgstr "Ημερομηνία/Ώρα Λήξης:"
-
-#~ msgid "Automatically Upload Recorded Shows"
-#~ msgstr "Αυτόματο Ανέβασμα Ηχογραφημένων Εκπομπών"
-
-#~ msgid "Enable SoundCloud Upload"
-#~ msgstr "Ενεργοποίηση Ανεβάσματος SoundCloud"
-
-#~ msgid "Automatically Mark Files \"Downloadable\" on SoundCloud"
-#~ msgstr "Αυτόματη Σήμανση Αρχείων \"για λήψη \" στο SoundCloud"
-
-#~ msgid "SoundCloud Email"
-#~ msgstr "SoundCloud Email"
-
-#~ msgid "SoundCloud Password"
-#~ msgstr "Κωδικός πρόσβασης SoundCloud"
-
-#~ msgid "SoundCloud Tags: (separate tags with spaces)"
-#~ msgstr "SoundCloud Ετικέτες: (διαχωρίσετε ετικέτες με κενά)"
-
-#~ msgid "Default Genre:"
-#~ msgstr "Προεπιλεγμένο Είδος:"
-
-#~ msgid "Default Track Type:"
-#~ msgstr "Προεπιλεγμένος Τύπος Κομματιού:"
-
-#~ msgid "Original"
-#~ msgstr "Πρώτυπο"
-
-#~ msgid "Remix"
-#~ msgstr "Remix"
-
-#~ msgid "Live"
-#~ msgstr "Live"
-
-#~ msgid "Recording"
-#~ msgstr "Εγγραφή"
-
-#~ msgid "Spoken"
-#~ msgstr "Ομιλούμενο"
-
-#~ msgid "Podcast"
-#~ msgstr "Podcast"
-
-#~ msgid "Demo"
-#~ msgstr "Demo"
-
-#~ msgid "Work in progress"
-#~ msgstr "Εργασία σε εξέλιξη"
-
-#~ msgid "Stem"
-#~ msgstr "Στέλεχος"
-
-#~ msgid "Loop"
-#~ msgstr "Loop"
-
-#~ msgid "Sound Effect"
-#~ msgstr "Εφέ Ήχου"
-
-#~ msgid "One Shot Sample"
-#~ msgstr "Δείγμα Shot"
-
-#~ msgid "Other"
-#~ msgstr "Άλλο"
-
-#~ msgid "Enable System Emails (Password Reset)"
-#~ msgstr "Ενεργοποίηση Emails Συστήματος (Επαναφορά κωδικού πρόσβασης)"
-
-#~ msgid "Reset Password 'From' Email"
-#~ msgstr "Επαναφορά Κωδικού πρόσβασης 'Από' E-mail"
-
-#~ msgid "Configure Mail Server"
-#~ msgstr "Διαμόρφωση Διακομιστή Αλληλογραφίας"
-
-#~ msgid "Requires Authentication"
-#~ msgstr "Απαιτείται Έλεγχος Ταυτότητας"
-
-#~ msgid "Mail Server"
-#~ msgstr "Διακομιστής Αλληλογραφίας"
-
-#~ msgid "Email Address"
-#~ msgstr "Διεύθυνση Ηλεκτρονικού Ταχυδρομείου"
-
-#~ msgid "Please enter your user name and password"
-#~ msgstr "Παρακαλώ εισάγετε το όνομα χρήστη και τον κωδικό πρόσβασής σας"
-
-#~ msgid "Given email not found."
-#~ msgstr "Το email δεν βρέθηκε."
-
-#~ msgid "Page not found"
-#~ msgstr "Η σελίδα δεν βρέθηκε"
-
-#~ msgid "Application error"
-#~ msgstr "Σφάλμα εφαρμογής"
-
-#~ msgid "Playlist / Block"
-#~ msgstr "Λίστα αναπαραγωγής/ Block"
-
-#~ msgid "If you change the username or password values for an enabled stream the playout engine will be rebooted and your listeners will hear silence for 5-10 seconds. Changing the following fields will NOT cause a reboot: Stream Label (Global Settings), and Switch Transition Fade(s), Master Username, and Master Password (Input Stream Settings). If Airtime is recording, and if the change causes a playout engine restart, the recording will be interrupted."
-#~ msgstr "Εάν αλλάξετε το όνομα χρήστη ή τον κωδικό πρόσβασης για ένα ενεργοποιημένο stream, η μηχανή playout θα πραγματοποιήσει επανεκκίνηση και οι ακροατές σας θα ακούσουν σιωπή για 5-10 δευτερόλεπτα. Με την αλλαγή των παρακάτω πεδίων ΔΕΝ θα προκληθεί επανεκκίνηση: Stream Label (Γενικές Ρυθμίσεις), και Εναλλαγή Fade(s) Μετάβασης, Κύριο Όνομα χρήστη και Κύριος Κωδικός πρόσβασης (Ρυθμίσεις Stream Εισόδου). Αν το Airtime ηχογραφεί και αν η αλλαγή προκαλέσει επανεκκίνηση της μηχανής playout, η ηχογράφηση θα διακοπεί."
-
-#~ msgid "today"
-#~ msgstr "σήμερα"
-
-#~ msgid "day"
-#~ msgstr "ημέρα"
-
-#~ msgid "week"
-#~ msgstr "εβδομάδα"
-
-#~ msgid "month"
-#~ msgstr "μήνας"
-
-#~ msgid "Remove overbooked tracks"
-#~ msgstr "Αφαίρεση υπεράριθμων κρατήσεων κομματιών"
-
-#~ msgid "Soundcloud"
-#~ msgstr "Soundcloud"
-
-#~ msgid "View on Soundcloud"
-#~ msgstr "Προβολή σε Soundcloud"
-
-#~ msgid "Re-upload to SoundCloud"
-#~ msgstr "Επαναφόρτωση σε SoundCloud"
-
-#~ msgid "Upload to SoundCloud"
-#~ msgstr "Ανέβασμα σε SoundCloud"
-
-#~ msgid "Could not delete some scheduled files."
-#~ msgstr "Δεν ήταν δυνατή η διαγραφή ορισμένων προγραμματισμένων αρχείων."
-
-#~ msgid "Add Media"
-#~ msgstr "Προσθήκη Πολυμέσων"
-
-#~ msgid "Library"
-#~ msgstr "Βιβλιοθήκη"
-
-#~ msgid "System"
-#~ msgstr "Σύστημα"
-
-#~ msgid "Preferences"
-#~ msgstr "Προτιμήσεις"
-
-#~ msgid "Media Folders"
-#~ msgstr "Φάκελοι Πολυμέσων"
-
-#~ msgid "History"
-#~ msgstr "Ιστορικό"
-
-#~ msgid "Service"
-#~ msgstr "Εξυπηρέτηση"
-
-#~ msgid "Uptime"
-#~ msgstr "Χρόνος λειτουργίας"
-
-#~ msgid "CPU"
-#~ msgstr "CPU"
-
-#~ msgid "Memory"
-#~ msgstr "Μνήμη"
-
-#~ msgid "Email / Mail Server Settings"
-#~ msgstr "Ρυθμίσεις Δακομιστή Email / Αλληλογραφίας"
-
-#~ msgid "Connection URL: "
-#~ msgstr "URL Σύνδεσης: "
-
-#~ msgid "Input Stream Settings"
-#~ msgstr "Ρυθμίσεις Stream Εισόδου"
-
-#~ msgid "Master Source Connection URL:"
-#~ msgstr "URL Σύνδεσης Κυρίαρχης Πηγής:"
-
-#~ msgid "Override"
-#~ msgstr "Παράκαμψη"
-
-#~ msgid "RESET"
-#~ msgstr "ΕΠΑΝΑΦΟΡΑ"
-
-#~ msgid "Show Source Connection URL:"
-#~ msgstr "Εμφάνιση Πηγής URL Σύνδεσης:"
-
-#~ msgid "Filter By Show:"
-#~ msgstr "Φιλτράρισμα βάσει Εκπομπών:"
-
-#~ msgid "%s's Settings"
-#~ msgstr "%s's Ρυθμίσεις"
-
-#~ msgid "Sourcefabric Privacy Policy"
-#~ msgstr "Πολιτική Προστασίας Προσωπικών Δεδομένων της Sourcefabric"
-
-#~ msgid "Smart Block Options"
-#~ msgstr "Επιλογές Smart Block"
-
-#~ msgid "file meet the criteria"
-#~ msgstr "το αρχείο πληρεί τα κριτήρια"
-
-#~ msgid "New"
-#~ msgstr "Νέο"
-
-#~ msgid "New Playlist"
-#~ msgstr "Νέα λίστα αναπαραγωγής"
-
-#~ msgid "New Smart Block"
-#~ msgstr "Νέο Smart Block"
-
-#~ msgid "New Webstream"
-#~ msgstr "Νέο Webstream"
-
-#~ msgid "View / edit description"
-#~ msgstr "Προβολή / επεξεργασία περιγραφής"
-
-#~ msgid "Global Settings"
-#~ msgstr "Γενικές ρυθμίσεις"
-
-#~ msgid "Output Stream Settings"
-#~ msgstr "Ρυθμίσεις Stream Εξόδου"
-
-#~ msgid "Listener Count Over Time"
-#~ msgstr "Καταμέτρηση Ακροατών με την Πάροδου Χρόνου"
-
-#~ msgid "Begin by adding your files to the library using the 'Add Media' menu button. You can drag and drop your files to this window too."
-#~ msgstr "Ξεκινήστε με την προσθήκη αρχείων στη βιβλιοθήκη επιλέγοντας 'Προσθήκη Πολυμέσων' στο μενού. Μπορείτε να κάνετε και drag-and-drop στα αρχεία σας σε αυτό το παράθυρο."
-
-#~ msgid "Create a show by going to 'Calendar' in the menu bar, and then clicking the '+ Show' icon. This can be either a one-time or repeating show. Only admins and program managers can add shows."
-#~ msgstr "Δημιουργήστε μια εκπομπή πηγαίνοντας στο «Ημερολόγιο» και στη συνέχεια κάνοντας κλικ στο εικονίδιο '+Εκπομπή'. Αυτό μπορεί να είναι είτε μια ή επαναλαμβανόμενες εκπομπές. Μόνο οι διαχειριστές και οι μουσικοί παραγωγοί μπορούν να επεξεργαστούν την εκπομπή."
-
-#~ msgid "Add media to the show by going to your show in the Schedule calendar, left-clicking on it and selecting 'Add / Remove Content'"
-#~ msgstr "Προσθέστε πολυμέσα στην εκπομπή σας πηγαίνοντας στο Ημερολόγιο προγραμματισμού, κάνοντας αριστερό κλικ πάνω στην εκπομπή και επιλέγοντας 'Προσθήκη / Αφαίρεση Περιεχομένου'"
-
-#~ msgid "Select your media from the left pane and drag them to your show in the right pane."
-#~ msgstr "Επιλέξτε τα πολυμέσα σας από το αριστερό τμήμα του παραθύρου και σύρετέ τα στην εκπομπή σας στο δεξιό τμήμα."
-
-#~ msgid "Then you're good to go!"
-#~ msgstr "Και είστε έτοιμοι!"
-
-#~ msgid "Please enter your account e-mail address. You will receive a link to create a new password via e-mail."
-#~ msgstr "Παρακαλώ εισάγετε τη διεύθυνση e-mail σας. Θα λάβετε ένα σύνδεσμο για να δημιουργήσετε έναν νέο κωδικό πρόσβασης μέσω e-mail."
-
-#~ msgid "Email sent"
-#~ msgstr "Το e-mail εστάλη"
-
-#~ msgid "An email has been sent"
-#~ msgstr "Το e-mail εστάλη"
-
-#~ msgid "Back to login screen"
-#~ msgstr "Επιστροφή στην σελίδα εισόδου"
-
-#~ msgid "Scheduled Play"
-#~ msgstr "Πρόγραμμα"
-
-#~ msgid "Station time"
-#~ msgstr "Χρόνος σταθμού"
-
-#~ msgid "Zend Framework Default Application"
-#~ msgstr "Εφαρμογή Προεπιλεγμένου Πλαισίου Zend "
-
-#~ msgid "Empty smart block"
-#~ msgstr "Άδειασμα smart block"
-
-#~ msgid "Empty playlist"
-#~ msgstr "Άδειασμα λίστας αναπαραγωγής"
-
-#~ msgid "Empty smart block content"
-#~ msgstr "Εκκαθάριση περιεχομένου του smart block"
-
-#~ msgid "No open smart block"
-#~ msgstr "Κανένα ανοικτό smart block "
-
-#~ msgid "Record & Rebroadcast"
-#~ msgstr "Εγγραφή και Αναμετάδοση"
-
-#~ msgid "Failed to create 'organize' directory."
-#~ msgstr "Αποτυχία δημιουργίας «οργάνωση» directory."
-
-#~ msgid "The file was not uploaded, there is %s MB of disk space left and the file you are uploading has a size of %s MB."
-#~ msgstr "Το αρχείο δεν ανέβηκε, υπάρχει %s MB ελεύθερου χώρου στο δίσκο και το αρχείο που ανεβάζετε έχει μέγεθος %s MB."
-
-#~ msgid "This file appears to be corrupted and will not be added to media library."
-#~ msgstr "Αυτό το αρχείο φαίνεται να είναι κατεστραμμένο και δεν θα προστεθεί στη βιβλιοθήκη πολυμέσων."
-
-#~ msgid "The file was not uploaded, this error can occur if the computer hard drive does not have enough disk space or the stor directory does not have correct write permissions."
-#~ msgstr "Το αρχείο δεν ανέβηκε, αυτό το σφάλμα μπορεί να προκύψει είτε διότι ο σκληρός δίσκος του υπολογιστή δεν έχει αρκετό χώρο ή διότι ο directory αποθήκευσης δεν έχει έγγυρες άδειες εγγραφής."
-
-#~ msgid ""
-#~ "Hi %s, \n"
-#~ "\n"
-#~ "Click this link to reset your password: "
-#~ msgstr ""
-#~ "Γεια σας %s , \n"
-#~ "\n"
-#~ "Πατήστε αυτόν τον σύνδεσμο για να επαναφέρετε τον κωδικό πρόσβασής σας: "
-
-#~ msgid "Show Content"
-#~ msgstr "Εμφάνιση Περιεχομένου"
-
-#~ msgid "Remove All Content"
-#~ msgstr "Αφαίρεση Όλου του Περιεχομένου"
-
-#~ msgid "Cancel Current Show"
-#~ msgstr "Ακύρωση Τρέχουσας Εκπομπής"
-
-#~ msgid "Edit This Instance"
-#~ msgstr "Επεξεργασία της Παρουσίας"
-
-#~ msgid "Delete This Instance"
-#~ msgstr "Διαγραφή Της Παρουσίας"
-
-#~ msgid "Delete This Instance and All Following"
-#~ msgstr "Διαγραφή Της Παρουσίας και Όλων των Ακόλουθών της"
-
-#~ msgid "Please selection an option"
-#~ msgstr "Παρακαλούμε επιλέξτε μια επιλογή"
-
-#~ msgid "No Records"
-#~ msgstr "Κανένα Αρχείο"
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
+msgid "Enabled:"
+msgstr "Ενεργοποιημένο"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
+msgid "Mobile:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
+msgid "Stream Type:"
+msgstr "Τύπος Stream:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
+msgid "Service Type:"
+msgstr "Τύπος Υπηρεσίας:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
+msgid "Channels:"
+msgstr "Κανάλια"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "1 - Mono"
+msgstr "1 - Mono"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "2 - Stereo"
+msgstr "2 - Stereo"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
+msgid "Server"
+msgstr "Διακομιστής"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
+msgid "Port"
+msgstr "Θύρα"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
+msgid "Only numbers are allowed."
+msgstr "Επιτρέπονται μόνο αριθμοί."
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
+msgid "URL"
+msgstr "Διεύθυνση URL:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
+msgid "Mount Point"
+msgstr "Σημείο Προσάρτησης"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
+msgid "Admin User"
+msgstr "Διαχειριστής Χρήστης"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
+msgid "Admin Password"
+msgstr "Κωδικός πρόσβασης Διαχειριστή"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
+msgid "Server cannot be empty."
+msgstr "Ο διακομιστής δεν μπορεί να είναι κενός."
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
+msgid "Port cannot be empty."
+msgstr "Το Port δεν μπορεί να είναι κενό."
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
+msgid "Mount cannot be empty with Icecast server."
+msgstr "Η προσάρτηση δεν μπορεί να είναι κενή με διακομιστή Icecast."
+
+#: airtime_mvc/application/forms/AddShowWhen.php:16
+msgid "'%value%' does not fit the time format 'HH:mm'"
+msgstr "'%value%' δεν ταιριάζει με τη μορφή της ώρας 'ΩΩ:λλ'"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:22
+msgid "Start Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:37
+msgid "In the Future:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:64
+msgid "End Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:98
+msgid "Timezone:"
+msgstr "Ζώνη Ώρας"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:107
+msgid "Repeats?"
+msgstr "Επαναλήψεις;"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:139
+msgid "Cannot create show in the past"
+msgstr "Δεν είναι δυνατή η δημιουργία εκπομπής στο παρελθόν"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:147
+msgid "Cannot modify start date/time of the show that is already started"
+msgstr "Αδύνατη η τροποποίηση ημερομηνίας/ώρας έναρξης της εκπομπής που έχει ήδη αρχίσει"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:156
+#: airtime_mvc/application/models/Show.php:282
+msgid "End date/time cannot be in the past"
+msgstr "Η λήξη ημερομηνίας/χρόνου δεν μπορεί να είναι στο παρελθόν"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:164
+msgid "Cannot have duration < 0m"
+msgstr "Δεν μπορεί να έχει διάρκεια < 0m"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:168
+msgid "Cannot have duration 00h 00m"
+msgstr "Δεν μπορεί να έχει διάρκεια 00h 00m"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:175
+msgid "Cannot have duration greater than 24h"
+msgstr "Δεν μπορεί να έχει διάρκεια μεγαλύτερη από 24 ώρες"
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:19
+msgid "Push metadata to your station on TuneIn?"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:24
+msgid "Station ID:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:30
+msgid "Partner Key:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:36
+msgid "Partner Id:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:77
+#: airtime_mvc/application/forms/TuneInPreferences.php:86
+msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:10
+#, php-format
+msgid "Use %s Authentication:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:16
+msgid "Use Custom Authentication:"
+msgstr "Χρήση Προσαρμοσμένης Ταυτοποίησης:"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:25
+msgid "Custom Username"
+msgstr "Προσαρμοσμένο Όνομα Χρήστη"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:37
+msgid "Custom Password"
+msgstr "Προσαρμοσμένος Κωδικός Πρόσβασης"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:48
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
+msgid "Host:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
+msgid "Port:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:60
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
+msgid "Mount:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:77
+msgid "Username field cannot be empty."
+msgstr "Το πεδίο 'Όνομα Χρήστη' δεν μπορεί να είναι κενό."
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:82
+msgid "Password field cannot be empty."
+msgstr "Το πεδίο 'Κωδικός Πρόσβασης' δεν μπορεί να είναι κενό."
+
+#: airtime_mvc/application/forms/AddShowStyle.php:12
+msgid "Background Colour:"
+msgstr "Χρώμα Φόντου:"
+
+#: airtime_mvc/application/forms/AddShowStyle.php:31
+msgid "Text Colour:"
+msgstr "Χρώμα Κειμένου:"
+
+#: airtime_mvc/application/forms/AddShowStyle.php:49
+msgid "Current Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:72
+msgid "Show Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:87
+msgid "Logo Preview:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Login.php:102
+msgid "Type the characters you see in the picture below."
+msgstr "Πληκτρολογήστε τους χαρακτήρες που βλέπετε στην παρακάτω εικόνα."
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
+msgid "Auto Switch Off:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
+msgid "Auto Switch On:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
+msgid "Switch Transition Fade (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:10
+msgid "Link:"
+msgstr "Σύνδεσμος"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:16
+msgid "Repeat Type:"
+msgstr "Τύπος Επανάληψης:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:19
+msgid "weekly"
+msgstr "εβδομαδιαία"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:20
+msgid "every 2 weeks"
+msgstr "κάθε 2 εβδομάδες"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:21
+msgid "every 3 weeks"
+msgstr "κάθε 3 εβδομάδες"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:22
+msgid "every 4 weeks"
+msgstr "κάθε 4 εβδομάδες"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:23
+msgid "monthly"
+msgstr "μηνιαία"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:32
+msgid "Select Days:"
+msgstr "Επιλέξτε Ημέρες:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:47
+msgid "Repeat By:"
+msgstr "Επανάληψη από:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the month"
+msgstr "ημέρα του μήνα"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the week"
+msgstr "ημέρα της εβδομάδας"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:69
+msgid "No End?"
+msgstr "Χωρίς Τέλος;"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:106
+msgid "End date must be after start date"
+msgstr "Η ημερομηνία λήξης πρέπει να είναι μετά την ημερομηνία έναρξης"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:113
+msgid "Please select a repeat day"
+msgstr "Επιλέξτε ημέρα επανάληψης"
+
+#: airtime_mvc/application/configs/navigation.php:12
+msgid "Radio Page"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:19
+msgid "Calendar"
+msgstr "Ημερολόγιο"
+
+#: airtime_mvc/application/configs/navigation.php:26
+msgid "Widgets"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:48
+msgid "Settings"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:67
+msgid "Users"
+msgstr "Xρήστες"
+
+#: airtime_mvc/application/configs/navigation.php:74
+msgid "Streams"
+msgstr "Streams"
+
+#: airtime_mvc/application/configs/navigation.php:82
+msgid "Analytics"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:90
+msgid "Listener Stats"
+msgstr "Στατιστικές Ακροατών"
+
+#: airtime_mvc/application/configs/navigation.php:104
+msgid "History Templates"
+msgstr "Ιστορικό Template"
+
+#: airtime_mvc/application/configs/navigation.php:113
+msgid "Billing"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:120
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:127
+msgid "Account Details"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:134
+msgid "View Invoices"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:150
+msgid "Getting Started"
+msgstr "Έναρξη"
+
+#: airtime_mvc/application/configs/navigation.php:157
+msgid "FAQ"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:162
+msgid "User Manual"
+msgstr "Εγχειρίδιο Χρήστη"
+
+#: airtime_mvc/application/configs/navigation.php:167
+msgid "File a Support Ticket"
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:833
+#: airtime_mvc/application/models/Playlist.php:812
+msgid "Cue in and cue out are null."
+msgstr "Cue in και cue out είναι μηδέν."
+
+#: airtime_mvc/application/models/Block.php:868
+#: airtime_mvc/application/models/Block.php:924
+#: airtime_mvc/application/models/Playlist.php:851
+#: airtime_mvc/application/models/Playlist.php:895
+msgid "Can't set cue out to be greater than file length."
+msgstr "Το cue out δεν μπορεί να είναι μεγαλύτερο από το μήκος του αρχείου."
+
+#: airtime_mvc/application/models/Block.php:879
+#: airtime_mvc/application/models/Block.php:900
+#: airtime_mvc/application/models/Playlist.php:843
+#: airtime_mvc/application/models/Playlist.php:868
+msgid "Can't set cue in to be larger than cue out."
+msgstr "Το cue in δεν μπορεί να είναι μεγαλύτερης διάρκειας από το cue out."
+
+#: airtime_mvc/application/models/Block.php:935
+#: airtime_mvc/application/models/Playlist.php:887
+msgid "Can't set cue out to be smaller than cue in."
+msgstr "Το cue out δεν μπορεί να είναι μικρότερο από το cue in."
+
+#: airtime_mvc/application/models/Block.php:1366
+msgid "Upload Time"
+msgstr ""
+
+#: airtime_mvc/application/models/ShowBuilder.php:212
+#, php-format
+msgid "Rebroadcast of %s from %s"
+msgstr "Αναμετάδοση του %s από %s"
+
+#: airtime_mvc/application/models/Preference.php:460
+#, php-format
+msgid "Powered by %s"
+msgstr ""
+
+#: airtime_mvc/application/models/Preference.php:588
+msgid "Select Country"
+msgstr "Επιλέξτε Χώρα"
+
+#: airtime_mvc/application/models/MusicDir.php:160
+#, php-format
+msgid "%s is already watched."
+msgstr "%s έχει ήδη προβληθεί."
+
+#: airtime_mvc/application/models/MusicDir.php:164
+#, php-format
+msgid "%s contains nested watched directory: %s"
+msgstr "%s περιέχει ένθετο ευρετήριο προβεβλημένων: %s"
+
+#: airtime_mvc/application/models/MusicDir.php:168
+#, php-format
+msgid "%s is nested within existing watched directory: %s"
+msgstr "%s βρίσκεται σε υποκατηγορία υπάρχωντος ευρετηρίου προβεβλημμένων: %s"
+
+#: airtime_mvc/application/models/MusicDir.php:189
+#: airtime_mvc/application/models/MusicDir.php:370
+#, php-format
+msgid "%s is not a valid directory."
+msgstr "%s μη έγκυρο ευρετήριο."
+
+#: airtime_mvc/application/models/MusicDir.php:232
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list"
+msgstr "%s έχει ήδη οριστεί ως το τρέχον ευρετήριο αποθήκευσης ή βρίσκεται στη λίστα προβεβλημένων φακέλων"
+
+#: airtime_mvc/application/models/MusicDir.php:388
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list."
+msgstr "%s έχει ήδη οριστεί ως το τρέχον ευρετήριο αποθήκευσης ή βρίσκεται στη λίστα προβεβλημένων φακέλων."
+
+#: airtime_mvc/application/models/MusicDir.php:431
+#, php-format
+msgid "%s doesn't exist in the watched list."
+msgstr "%s δεν υπάρχει στη λίστα προβεβλημένων."
+
+#: airtime_mvc/application/models/Auth.php:33
+#, php-format
+msgid ""
+"Hi %s, \n"
+"\n"
+"Please click this link to reset your password: "
+msgstr ""
+
+#: airtime_mvc/application/models/Auth.php:38
+#, php-format
+msgid "%s Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/models/Show.php:184
+msgid "Shows can have a max length of 24 hours."
+msgstr "Η μέγιστη διάρκει εκπομπών είναι 24 ώρες."
+
+#: airtime_mvc/application/models/Show.php:293
+msgid ""
+"Cannot schedule overlapping shows.\n"
+"Note: Resizing a repeating show affects all of its repeats."
+msgstr ""
+"Δεν είναι δυνατός ο προγραμματισμός αλληλοεπικαλυπτώμενων εκπομπών.\n"
+" Σημείωση: Η αλλαγή μεγέθους μιας εκπομπής επηρεάζει όλες τις επαναλήψεις της."
+
+#: airtime_mvc/application/models/Scheduler.php:73
+msgid "Cannot move items out of linked shows"
+msgstr "Η μετακίνηση στοιχείων εκτός συνδεδεμένων εκπομπών είναι αδύνατη."
+
+#: airtime_mvc/application/models/Scheduler.php:119
+msgid "The schedule you're viewing is out of date! (sched mismatch)"
+msgstr "Το πρόγραμμα που βλέπετε δεν είναι έγκυρο! (αναντιστοιχία προγράμματος)"
+
+#: airtime_mvc/application/models/Scheduler.php:124
+msgid "The schedule you're viewing is out of date! (instance mismatch)"
+msgstr "Το πρόγραμμα που βλέπετε δεν είναι ενημερωμένο! (αναντιστοιχία παραδείγματος)"
+
+#: airtime_mvc/application/models/Scheduler.php:132
+#: airtime_mvc/application/models/Scheduler.php:458
+#: airtime_mvc/application/models/Scheduler.php:490
+msgid "The schedule you're viewing is out of date!"
+msgstr "Το πρόγραμμα που βλέπετε δεν είναι ενημερωμένο!"
+
+#: airtime_mvc/application/models/Scheduler.php:142
+#, php-format
+msgid "You are not allowed to schedule show %s."
+msgstr "Δεν έχετε δικαίωμα προγραμματισμού εκπομπής%s.."
+
+#: airtime_mvc/application/models/Scheduler.php:146
+msgid "You cannot add files to recording shows."
+msgstr "Δεν μπορείτε να προσθεσετε αρχεία σε ηχογραφημένες εκπομπές."
+
+#: airtime_mvc/application/models/Scheduler.php:152
+#, php-format
+msgid "The show %s is over and cannot be scheduled."
+msgstr "Η εκπομπή %s έχει τελειώσει και δεν μπορεί να προγραμματιστεί."
+
+#: airtime_mvc/application/models/Scheduler.php:159
+#, php-format
+msgid "The show %s has been previously updated!"
+msgstr "Η εκπομπή %s έχει ενημερωθεί πρόσφατα!"
+
+#: airtime_mvc/application/models/Scheduler.php:178
+msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
+msgstr "Το περιεχόμενο συνδεδεμένων εκπομπών πρέπει να να προγραμματιστεί πριν ή μετά την αναμετάδοσή τους"
+
+#: airtime_mvc/application/models/Scheduler.php:195
+msgid "Cannot schedule a playlist that contains missing files."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:216
+#: airtime_mvc/application/models/Scheduler.php:305
+msgid "A selected File does not exist!"
+msgstr "Ένα επιλεγμένο αρχείο δεν υπάρχει!"
+
+#: airtime_mvc/application/models/Schedule.php:206
+msgid "livestream"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:166
+msgid "Length needs to be greater than 0 minutes"
+msgstr "Το μήκος πρέπει να είναι μεγαλύτερο από 0 λεπτά"
+
+#: airtime_mvc/application/models/Webstream.php:171
+msgid "Length should be of form \"00h 00m\""
+msgstr "Το μήκος πρέπει να είναι υπό μορφής \"00h 00m\""
+
+#: airtime_mvc/application/models/Webstream.php:184
+msgid "URL should be of form \"http://domain\""
+msgstr "Το URL θα πρέπει να είναι υπό μορφής \"http://domain \""
+
+#: airtime_mvc/application/models/Webstream.php:187
+msgid "URL should be 512 characters or less"
+msgstr "Το URL πρέπει να αποτελέιται από μέχρι και 512 χαρακτήρες "
+
+#: airtime_mvc/application/models/Webstream.php:193
+msgid "No MIME type found for webstream."
+msgstr "Δεν βρέθηκε τύπος MIME για webstream."
+
+#: airtime_mvc/application/models/Webstream.php:209
+msgid "Webstream name cannot be empty"
+msgstr "Το όνομα του webstream δεν μπορεί να είναι κενό"
+
+#: airtime_mvc/application/models/Webstream.php:278
+msgid "Could not parse XSPF playlist"
+msgstr "Δεν ήταν δυνατή η ανάλυση της λίστας αναπαραγωγής XSPF "
+
+#: airtime_mvc/application/models/Webstream.php:298
+msgid "Could not parse PLS playlist"
+msgstr "Αδυναμία ανάλυσης λίστας αναπαραγωγής PLS"
+
+#: airtime_mvc/application/models/Webstream.php:318
+msgid "Could not parse M3U playlist"
+msgstr "Δεν ήταν δυνατή η ανάλυση της λίστας αναπαραγωγής M3U"
+
+#: airtime_mvc/application/models/Webstream.php:332
+msgid "Invalid webstream - This appears to be a file download."
+msgstr "Μη έγκυρο webstream - Αυτό φαίνεται να αποτελεί αρχείο λήψης."
+
+#: airtime_mvc/application/models/Webstream.php:336
+#, php-format
+msgid "Unrecognized stream type: %s"
+msgstr "Άγνωστος τύπος stream: %s"
+
+#: airtime_mvc/public/setup/rabbitmq-setup.php:78
+msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
+msgstr ""
+
+#~ msgid "My Account"
+#~ msgstr "Ο λογαριασμός μου"
diff --git a/airtime_mvc/locale/el_GR/LC_MESSAGES/pro.po b/airtime_mvc/locale/el_GR/LC_MESSAGES/pro.po
index 866ee0acb..f59b52c3d 100644
--- a/airtime_mvc/locale/el_GR/LC_MESSAGES/pro.po
+++ b/airtime_mvc/locale/el_GR/LC_MESSAGES/pro.po
@@ -1,3 +1,139 @@
+#: airtime_mvc/application/controllers/LoginController.php:170
+#, php-format
+msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
+#, php-format
+msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
+#, php-format
+msgid "If you are the primary owner of this station, please reset your password here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
+msgid "Thank you!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
+msgid "Your station has been upgraded successfully."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
+msgid "Return to Airtime"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+#, php-format
+msgid "Purchase an %s plan!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+msgid "My Account"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
+msgid "Upgrade today to get more listeners and storage space!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
+msgid "View Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:257
+msgid "Your Current Plan:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:291
+msgid "Please enter your payment details:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
+msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
+msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:17
+msgid "First Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:26
+msgid "Last Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:35
+msgid "Company Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:44
+msgid "Email Address:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:54
+msgid "Address 1:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:63
+msgid "Address 2:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:70
+msgid "City:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:80
+msgid "State/Region:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:89
+msgid "Zip Code / Postal Code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:102
+msgid "Country:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:112
+msgid "Phone Number:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:121
+msgid "Please choose a security question:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:135
+msgid "Please enter an answer:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:152
+msgid "VAT/Tax ID (EU only)"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:162
+msgid "Subscribe to Sourcefabric newsletter"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:172
+msgid "Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:181
+msgid "Verify Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:193
+msgid "Save"
+msgstr ""
+
#: airtime_mvc/application/models/Auth.php:35
#, php-format
msgid ""
@@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
-msgid "Thank you!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
-msgid "Your station has been upgraded successfully."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
-msgid "Return to Airtime"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
-#, php-format
-msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
-msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
-msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
-#, php-format
-msgid "If you are the primary owner of this station, please reset your password here."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:170
-#, php-format
-msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
-msgstr ""
diff --git a/airtime_mvc/locale/en_CA/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/en_CA/LC_MESSAGES/airtime.mo
index 69e3450d1..7f9524b07 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 d33e2768c..560d16d0d 100644
--- a/airtime_mvc/locale/en_CA/LC_MESSAGES/airtime.po
+++ b/airtime_mvc/locale/en_CA/LC_MESSAGES/airtime.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Airtime\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-09-03 10:24-0400\n"
-"PO-Revision-Date: 2014-11-14 09:58+0000\n"
+"POT-Creation-Date: 2015-09-04 11:17-0400\n"
+"PO-Revision-Date: 2015-09-04 08:15+0000\n"
"Last-Translator: Daniel James \n"
"Language-Team: English (Canada) (http://www.transifex.com/sourcefabric/airtime/language/en_CA/)\n"
"Language: en_CA\n"
@@ -19,132 +19,6 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: airtime_mvc/public/setup/rabbitmq-setup.php:78
-msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1117
-#: airtime_mvc/application/services/HistoryService.php:1157
-#: airtime_mvc/application/services/HistoryService.php:1174
-#: airtime_mvc/application/models/Block.php:1375
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
-#: airtime_mvc/application/controllers/LocaleController.php:76
-msgid "Title"
-msgstr "Title"
-
-#: airtime_mvc/application/services/HistoryService.php:1118
-#: airtime_mvc/application/services/HistoryService.php:1158
-#: airtime_mvc/application/services/HistoryService.php:1175
-#: airtime_mvc/application/models/Block.php:1360
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
-#: airtime_mvc/application/controllers/LocaleController.php:77
-msgid "Creator"
-msgstr "Creator"
-
-#: airtime_mvc/application/services/HistoryService.php:1119
-#: airtime_mvc/application/models/Block.php:1352
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
-#: airtime_mvc/application/controllers/LocaleController.php:78
-msgid "Album"
-msgstr "Album"
-
-#: airtime_mvc/application/services/HistoryService.php:1120
-#: airtime_mvc/application/services/HistoryService.php:1177
-#: airtime_mvc/application/models/Block.php:1369
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
-#: airtime_mvc/application/controllers/LocaleController.php:91
-msgid "Length"
-msgstr "Length"
-
-#: airtime_mvc/application/services/HistoryService.php:1121
-#: airtime_mvc/application/models/Block.php:1362
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
-#: airtime_mvc/application/controllers/LocaleController.php:85
-msgid "Genre"
-msgstr "Genre"
-
-#: airtime_mvc/application/services/HistoryService.php:1122
-#: airtime_mvc/application/models/Block.php:1371
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
-#: airtime_mvc/application/controllers/LocaleController.php:93
-msgid "Mood"
-msgstr "Mood"
-
-#: airtime_mvc/application/services/HistoryService.php:1123
-#: airtime_mvc/application/models/Block.php:1364
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
-#: airtime_mvc/application/controllers/LocaleController.php:87
-msgid "Label"
-msgstr "Label"
-
-#: airtime_mvc/application/services/HistoryService.php:1124
-#: airtime_mvc/application/services/HistoryService.php:1178
-#: airtime_mvc/application/models/Block.php:1355
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
-#: airtime_mvc/application/controllers/LocaleController.php:81
-msgid "Composer"
-msgstr "Composer"
-
-#: airtime_mvc/application/services/HistoryService.php:1125
-#: airtime_mvc/application/models/Block.php:1363
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
-#: airtime_mvc/application/controllers/LocaleController.php:86
-msgid "ISRC"
-msgstr "ISRC"
-
-#: airtime_mvc/application/services/HistoryService.php:1126
-#: airtime_mvc/application/services/HistoryService.php:1179
-#: airtime_mvc/application/models/Block.php:1357
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
-#: airtime_mvc/application/controllers/LocaleController.php:83
-msgid "Copyright"
-msgstr "Copyright"
-
-#: airtime_mvc/application/services/HistoryService.php:1127
-#: airtime_mvc/application/models/Block.php:1379
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
-#: airtime_mvc/application/controllers/LocaleController.php:100
-msgid "Year"
-msgstr "Year"
-
-#: airtime_mvc/application/services/HistoryService.php:1128
-msgid "Track"
-msgstr "Track"
-
-#: airtime_mvc/application/services/HistoryService.php:1129
-#: airtime_mvc/application/models/Block.php:1356
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
-#: airtime_mvc/application/controllers/LocaleController.php:82
-msgid "Conductor"
-msgstr "Conductor"
-
-#: airtime_mvc/application/services/HistoryService.php:1130
-#: airtime_mvc/application/models/Block.php:1365
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
-#: airtime_mvc/application/controllers/LocaleController.php:88
-msgid "Language"
-msgstr "Language"
-
-#: airtime_mvc/application/services/HistoryService.php:1155
-#: airtime_mvc/application/forms/EditHistoryItem.php:32
-msgid "Start Time"
-msgstr "Start Time"
-
-#: airtime_mvc/application/services/HistoryService.php:1156
-#: airtime_mvc/application/forms/EditHistoryItem.php:44
-msgid "End Time"
-msgstr "End Time"
-
-#: airtime_mvc/application/services/HistoryService.php:1176
-msgid "Played"
-msgstr "Played"
-
#: airtime_mvc/application/services/CalendarService.php:50
msgid "Record file doesn't exist"
msgstr "Record file doesn't exist"
@@ -240,2604 +114,381 @@ msgstr "Show was deleted because recorded show does not exist!"
msgid "Must wait 1 hour to rebroadcast."
msgstr "Must wait 1 hour to rebroadcast."
-#: airtime_mvc/application/models/Schedule.php:206
-msgid "livestream"
+#: airtime_mvc/application/services/HistoryService.php:1117
+#: airtime_mvc/application/services/HistoryService.php:1157
+#: airtime_mvc/application/services/HistoryService.php:1174
+#: airtime_mvc/application/controllers/LocaleController.php:76
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
+#: airtime_mvc/application/models/Block.php:1375
+msgid "Title"
+msgstr "Title"
+
+#: airtime_mvc/application/services/HistoryService.php:1118
+#: airtime_mvc/application/services/HistoryService.php:1158
+#: airtime_mvc/application/services/HistoryService.php:1175
+#: airtime_mvc/application/controllers/LocaleController.php:77
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
+#: airtime_mvc/application/models/Block.php:1360
+msgid "Creator"
+msgstr "Creator"
+
+#: airtime_mvc/application/services/HistoryService.php:1119
+#: airtime_mvc/application/controllers/LocaleController.php:78
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
+#: airtime_mvc/application/models/Block.php:1352
+msgid "Album"
+msgstr "Album"
+
+#: airtime_mvc/application/services/HistoryService.php:1120
+#: airtime_mvc/application/services/HistoryService.php:1177
+#: airtime_mvc/application/controllers/LocaleController.php:91
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
+#: airtime_mvc/application/models/Block.php:1369
+msgid "Length"
+msgstr "Length"
+
+#: airtime_mvc/application/services/HistoryService.php:1121
+#: airtime_mvc/application/controllers/LocaleController.php:85
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
+#: airtime_mvc/application/models/Block.php:1362
+msgid "Genre"
+msgstr "Genre"
+
+#: airtime_mvc/application/services/HistoryService.php:1122
+#: airtime_mvc/application/controllers/LocaleController.php:93
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
+#: airtime_mvc/application/models/Block.php:1371
+msgid "Mood"
+msgstr "Mood"
+
+#: airtime_mvc/application/services/HistoryService.php:1123
+#: airtime_mvc/application/controllers/LocaleController.php:87
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
+#: airtime_mvc/application/models/Block.php:1364
+msgid "Label"
+msgstr "Label"
+
+#: airtime_mvc/application/services/HistoryService.php:1124
+#: airtime_mvc/application/services/HistoryService.php:1178
+#: airtime_mvc/application/controllers/LocaleController.php:81
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
+#: airtime_mvc/application/models/Block.php:1355
+msgid "Composer"
+msgstr "Composer"
+
+#: airtime_mvc/application/services/HistoryService.php:1125
+#: airtime_mvc/application/controllers/LocaleController.php:86
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
+#: airtime_mvc/application/models/Block.php:1363
+msgid "ISRC"
+msgstr "ISRC"
+
+#: airtime_mvc/application/services/HistoryService.php:1126
+#: airtime_mvc/application/services/HistoryService.php:1179
+#: airtime_mvc/application/controllers/LocaleController.php:83
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
+#: airtime_mvc/application/models/Block.php:1357
+msgid "Copyright"
+msgstr "Copyright"
+
+#: airtime_mvc/application/services/HistoryService.php:1127
+#: airtime_mvc/application/controllers/LocaleController.php:100
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
+#: airtime_mvc/application/models/Block.php:1379
+msgid "Year"
+msgstr "Year"
+
+#: airtime_mvc/application/services/HistoryService.php:1128
+msgid "Track"
+msgstr "Track"
+
+#: airtime_mvc/application/services/HistoryService.php:1129
+#: airtime_mvc/application/controllers/LocaleController.php:82
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
+#: airtime_mvc/application/models/Block.php:1356
+msgid "Conductor"
+msgstr "Conductor"
+
+#: airtime_mvc/application/services/HistoryService.php:1130
+#: airtime_mvc/application/controllers/LocaleController.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
+#: airtime_mvc/application/models/Block.php:1365
+msgid "Language"
+msgstr "Language"
+
+#: airtime_mvc/application/services/HistoryService.php:1155
+#: airtime_mvc/application/forms/EditHistoryItem.php:32
+msgid "Start Time"
+msgstr "Start Time"
+
+#: airtime_mvc/application/services/HistoryService.php:1156
+#: airtime_mvc/application/forms/EditHistoryItem.php:44
+msgid "End Time"
+msgstr "End Time"
+
+#: airtime_mvc/application/services/HistoryService.php:1176
+msgid "Played"
+msgstr "Played"
+
+#: airtime_mvc/application/controllers/LibraryController.php:31
+#: airtime_mvc/application/controllers/PlaylistController.php:147
+#, php-format
+msgid "%s not found"
+msgstr "%s not found"
+
+#: airtime_mvc/application/controllers/LibraryController.php:40
+#: airtime_mvc/application/controllers/PlaylistController.php:168
+msgid "Something went wrong."
+msgstr "Something went wrong."
+
+#: airtime_mvc/application/controllers/LibraryController.php:95
+#: airtime_mvc/application/controllers/ShowbuilderController.php:136
+msgid "Preview"
+msgstr "Preview"
+
+#: airtime_mvc/application/controllers/LibraryController.php:115
+#: airtime_mvc/application/controllers/LibraryController.php:177
+#: airtime_mvc/application/controllers/LibraryController.php:200
+msgid "Add to Playlist"
+msgstr "Add to Playlist"
+
+#: airtime_mvc/application/controllers/LibraryController.php:117
+msgid "Add to Smart Block"
+msgstr "Add to Smart Block"
+
+#: airtime_mvc/application/controllers/LibraryController.php:123
+#: airtime_mvc/application/controllers/LocaleController.php:66
+msgid "Edit Metadata"
+msgstr "Edit Metadata"
+
+#: airtime_mvc/application/controllers/LibraryController.php:131
+#: airtime_mvc/application/controllers/ScheduleController.php:712
+msgid "Download"
+msgstr "Download"
+
+#: airtime_mvc/application/controllers/LibraryController.php:147
+msgid "View track"
msgstr ""
-#: airtime_mvc/application/models/ShowBuilder.php:212
-#, php-format
-msgid "Rebroadcast of %s from %s"
-msgstr "Rebroadcast of %s from %s"
-
-#: airtime_mvc/application/models/Webstream.php:166
-msgid "Length needs to be greater than 0 minutes"
-msgstr "Length needs to be greater than 0 minutes"
-
-#: airtime_mvc/application/models/Webstream.php:171
-msgid "Length should be of form \"00h 00m\""
-msgstr "Length should be of form \"00h 00m\""
-
-#: airtime_mvc/application/models/Webstream.php:184
-msgid "URL should be of form \"http://domain\""
-msgstr "URL should be of form \"http://domain\""
-
-#: airtime_mvc/application/models/Webstream.php:187
-msgid "URL should be 512 characters or less"
-msgstr "URL should be 512 characters or less"
-
-#: airtime_mvc/application/models/Webstream.php:193
-msgid "No MIME type found for webstream."
-msgstr "No MIME type found for webstream."
-
-#: airtime_mvc/application/models/Webstream.php:209
-msgid "Webstream name cannot be empty"
-msgstr "Webstream name cannot be empty"
-
-#: airtime_mvc/application/models/Webstream.php:278
-msgid "Could not parse XSPF playlist"
-msgstr "Could not parse XSPF playlist"
-
-#: airtime_mvc/application/models/Webstream.php:298
-msgid "Could not parse PLS playlist"
-msgstr "Could not parse PLS playlist"
-
-#: airtime_mvc/application/models/Webstream.php:318
-msgid "Could not parse M3U playlist"
-msgstr "Could not parse M3U playlist"
-
-#: airtime_mvc/application/models/Webstream.php:332
-msgid "Invalid webstream - This appears to be a file download."
-msgstr "Invalid webstream - This appears to be a file download."
-
-#: airtime_mvc/application/models/Webstream.php:336
-#, php-format
-msgid "Unrecognized stream type: %s"
-msgstr "Unrecognized stream type: %s"
-
-#: airtime_mvc/application/models/Preference.php:460
-#, php-format
-msgid "Powered by %s"
+#: airtime_mvc/application/controllers/LibraryController.php:148
+msgid "Remove track"
msgstr ""
-#: airtime_mvc/application/models/Preference.php:588
-msgid "Select Country"
-msgstr "Select Country"
+#: airtime_mvc/application/controllers/LibraryController.php:154
+#: airtime_mvc/application/controllers/LibraryController.php:159
+msgid "Upload track"
+msgstr ""
-#: airtime_mvc/application/models/MusicDir.php:160
+#: airtime_mvc/application/controllers/LibraryController.php:169
+msgid "Duplicate Playlist"
+msgstr "Duplicate Playlist"
+
+#: airtime_mvc/application/controllers/LibraryController.php:213
+msgid "No action available"
+msgstr "No action available"
+
+#: airtime_mvc/application/controllers/LibraryController.php:233
+msgid "You don't have permission to delete selected items."
+msgstr "You don't have permission to delete selected items."
+
+#: airtime_mvc/application/controllers/LibraryController.php:279
+msgid "Could not delete file because it is scheduled in the future."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:282
+msgid "Could not delete file(s)."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:322
#, php-format
-msgid "%s is already watched."
-msgstr "%s is already watched."
+msgid "Copy of %s"
+msgstr "Copy of %s"
-#: airtime_mvc/application/models/MusicDir.php:164
-#, php-format
-msgid "%s contains nested watched directory: %s"
-msgstr "%s contains nested watched directory: %s"
+#: airtime_mvc/application/controllers/WebstreamController.php:28
+#: airtime_mvc/application/controllers/WebstreamController.php:32
+msgid "Untitled Webstream"
+msgstr "Untitled Webstream"
-#: airtime_mvc/application/models/MusicDir.php:168
-#, php-format
-msgid "%s is nested within existing watched directory: %s"
-msgstr "%s is nested within existing watched directory: %s"
+#: airtime_mvc/application/controllers/WebstreamController.php:150
+msgid "Webstream saved."
+msgstr "Webstream saved."
-#: airtime_mvc/application/models/MusicDir.php:189
-#: airtime_mvc/application/models/MusicDir.php:370
-#, php-format
-msgid "%s is not a valid directory."
-msgstr "%s is not a valid directory."
+#: airtime_mvc/application/controllers/WebstreamController.php:158
+msgid "Invalid form values."
+msgstr "Invalid form values."
-#: airtime_mvc/application/models/MusicDir.php:232
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list"
-msgstr "%s is already set as the current storage dir or in the watched folders list"
-
-#: airtime_mvc/application/models/MusicDir.php:388
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list."
-msgstr "%s is already set as the current storage dir or in the watched folders list."
-
-#: airtime_mvc/application/models/MusicDir.php:431
-#, php-format
-msgid "%s doesn't exist in the watched list."
-msgstr "%s doesn't exist in the watched list."
-
-#: airtime_mvc/application/models/Show.php:184
-msgid "Shows can have a max length of 24 hours."
-msgstr "Shows can have a max length of 24 hours."
-
-#: airtime_mvc/application/models/Show.php:282
-#: airtime_mvc/application/forms/AddShowWhen.php:156
-msgid "End date/time cannot be in the past"
-msgstr "End date/time cannot be in the past"
-
-#: airtime_mvc/application/models/Show.php:293
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
msgid ""
-"Cannot schedule overlapping shows.\n"
-"Note: Resizing a repeating show affects all of its repeats."
+"To configure and use the embeddable player you must:
\n"
+" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
+" 2. Enable the Public Airtime API under System -> Preferences"
msgstr ""
-"Cannot schedule overlapping shows.\n"
-"Note: Resizing a repeating show affects all of its repeats."
-#: airtime_mvc/application/models/Auth.php:33
-#, php-format
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
msgid ""
-"Hi %s, \n"
-"\n"
-"Please click this link to reset your password: "
+"To use the embeddable weekly schedule widget you must:
\n"
+" Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/models/Auth.php:38
+#: airtime_mvc/application/controllers/ListenerstatController.php:51
+msgid "Please make sure admin user/password is correct on System->Streams page."
+msgstr "Please make sure Admin User and Admin Password for the streaming server are present and correct under Stream -> Additional Options on the System -> Streams page."
+
+#: airtime_mvc/application/controllers/UserController.php:86
+msgid "User added successfully!"
+msgstr "User added successfully!"
+
+#: airtime_mvc/application/controllers/UserController.php:88
+msgid "User updated successfully!"
+msgstr "User updated successfully!"
+
+#: airtime_mvc/application/controllers/UserController.php:187
+msgid "Settings updated successfully!"
+msgstr "Settings updated successfully!"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:53
#, php-format
-msgid "%s Password Reset"
-msgstr ""
+msgid "You are viewing an older version of %s"
+msgstr "You are viewing an older version of %s"
-#: airtime_mvc/application/models/Block.php:333
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
-msgid "items"
-msgstr "items"
+#: airtime_mvc/application/controllers/PlaylistController.php:140
+msgid "You cannot add tracks to dynamic blocks."
+msgstr "You cannot add tracks to dynamic blocks."
-#: airtime_mvc/application/models/Block.php:833
-#: airtime_mvc/application/models/Playlist.php:812
-msgid "Cue in and cue out are null."
-msgstr "Cue in and cue out are null."
-
-#: airtime_mvc/application/models/Block.php:868
-#: airtime_mvc/application/models/Block.php:924
-#: airtime_mvc/application/models/Playlist.php:851
-#: airtime_mvc/application/models/Playlist.php:895
-msgid "Can't set cue out to be greater than file length."
-msgstr "Can't set cue out to be greater than file length."
-
-#: airtime_mvc/application/models/Block.php:879
-#: airtime_mvc/application/models/Block.php:900
-#: airtime_mvc/application/models/Playlist.php:843
-#: airtime_mvc/application/models/Playlist.php:868
-msgid "Can't set cue in to be larger than cue out."
-msgstr "Can't set cue in to be larger than cue out."
-
-#: airtime_mvc/application/models/Block.php:935
-#: airtime_mvc/application/models/Playlist.php:887
-msgid "Can't set cue out to be smaller than cue in."
-msgstr "Can't set cue out to be smaller than cue in."
-
-#: airtime_mvc/application/models/Block.php:1351
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
-msgid "Select criteria"
-msgstr "Select criteria"
-
-#: airtime_mvc/application/models/Block.php:1353
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
-msgid "Bit Rate (Kbps)"
-msgstr "Bit Rate (Kbps)"
-
-#: airtime_mvc/application/models/Block.php:1354
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
-#: airtime_mvc/application/controllers/LocaleController.php:80
-msgid "BPM"
-msgstr "BPM"
-
-#: airtime_mvc/application/models/Block.php:1358
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
-#: airtime_mvc/application/controllers/LocaleController.php:281
-#: airtime_mvc/application/layouts/scripts/layout.phtml:140
-msgid "Cue In"
-msgstr "Cue In"
-
-#: airtime_mvc/application/models/Block.php:1359
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:282
-#: airtime_mvc/application/layouts/scripts/layout.phtml:147
-msgid "Cue Out"
-msgstr "Cue Out"
-
-#: airtime_mvc/application/models/Block.php:1361
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
-#: airtime_mvc/application/controllers/LocaleController.php:84
-msgid "Encoded By"
-msgstr "Encoded By"
-
-#: airtime_mvc/application/models/Block.php:1366
-msgid "Upload Time"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1367
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
-#: airtime_mvc/application/controllers/LocaleController.php:89
-msgid "Last Modified"
-msgstr "Last Modified"
-
-#: airtime_mvc/application/models/Block.php:1368
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
-#: airtime_mvc/application/controllers/LocaleController.php:90
-msgid "Last Played"
-msgstr "Last Played"
-
-#: airtime_mvc/application/models/Block.php:1370
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
-#: airtime_mvc/application/controllers/LocaleController.php:92
-msgid "Mime"
-msgstr "Mime"
-
-#: airtime_mvc/application/models/Block.php:1372
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
-#: airtime_mvc/application/controllers/LocaleController.php:94
-msgid "Owner"
-msgstr "Owner"
-
-#: airtime_mvc/application/models/Block.php:1373
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
-#: airtime_mvc/application/controllers/LocaleController.php:95
-msgid "Replay Gain"
-msgstr "Replay Gain"
-
-#: airtime_mvc/application/models/Block.php:1374
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
-msgid "Sample Rate (kHz)"
-msgstr "Sample Rate (kHz)"
-
-#: airtime_mvc/application/models/Block.php:1376
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
-#: airtime_mvc/application/controllers/LocaleController.php:97
-msgid "Track Number"
-msgstr "Track Number"
-
-#: airtime_mvc/application/models/Block.php:1377
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
-#: airtime_mvc/application/controllers/LocaleController.php:98
-msgid "Uploaded"
-msgstr "Uploaded"
-
-#: airtime_mvc/application/models/Block.php:1378
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
-#: airtime_mvc/application/controllers/LocaleController.php:99
-msgid "Website"
-msgstr "Website"
-
-#: airtime_mvc/application/models/Block.php:1383
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
-#: airtime_mvc/application/controllers/LocaleController.php:151
-msgid "Select modifier"
-msgstr "Select modifier"
-
-#: airtime_mvc/application/models/Block.php:1384
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
-#: airtime_mvc/application/controllers/LocaleController.php:152
-msgid "contains"
-msgstr "contains"
-
-#: airtime_mvc/application/models/Block.php:1385
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
-#: airtime_mvc/application/controllers/LocaleController.php:153
-msgid "does not contain"
-msgstr "does not contain"
-
-#: airtime_mvc/application/models/Block.php:1386
-#: airtime_mvc/application/models/Block.php:1390
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
-#: airtime_mvc/application/controllers/LocaleController.php:154
-msgid "is"
-msgstr "is"
-
-#: airtime_mvc/application/models/Block.php:1387
-#: airtime_mvc/application/models/Block.php:1391
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
-#: airtime_mvc/application/controllers/LocaleController.php:155
-msgid "is not"
-msgstr "is not"
-
-#: airtime_mvc/application/models/Block.php:1388
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
-#: airtime_mvc/application/controllers/LocaleController.php:156
-msgid "starts with"
-msgstr "starts with"
-
-#: airtime_mvc/application/models/Block.php:1389
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
-#: airtime_mvc/application/controllers/LocaleController.php:157
-msgid "ends with"
-msgstr "ends with"
-
-#: airtime_mvc/application/models/Block.php:1392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
-#: airtime_mvc/application/controllers/LocaleController.php:158
-msgid "is greater than"
-msgstr "is greater than"
-
-#: airtime_mvc/application/models/Block.php:1393
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
-#: airtime_mvc/application/controllers/LocaleController.php:159
-msgid "is less than"
-msgstr "is less than"
-
-#: airtime_mvc/application/models/Block.php:1394
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
-#: airtime_mvc/application/controllers/LocaleController.php:160
-msgid "is in the range"
-msgstr "is in the range"
-
-#: airtime_mvc/application/models/Scheduler.php:73
-msgid "Cannot move items out of linked shows"
-msgstr "Cannot move items out of linked shows"
-
-#: airtime_mvc/application/models/Scheduler.php:119
-msgid "The schedule you're viewing is out of date! (sched mismatch)"
-msgstr "The schedule you're viewing is out of date! (sched mismatch)"
-
-#: airtime_mvc/application/models/Scheduler.php:124
-msgid "The schedule you're viewing is out of date! (instance mismatch)"
-msgstr "The schedule you're viewing is out of date! (instance mismatch)"
-
-#: airtime_mvc/application/models/Scheduler.php:132
-#: airtime_mvc/application/models/Scheduler.php:458
-#: airtime_mvc/application/models/Scheduler.php:490
-msgid "The schedule you're viewing is out of date!"
-msgstr "The schedule you're viewing is out of date!"
-
-#: airtime_mvc/application/models/Scheduler.php:142
+#: airtime_mvc/application/controllers/PlaylistController.php:161
#, php-format
-msgid "You are not allowed to schedule show %s."
-msgstr "You are not allowed to schedule show %s."
+msgid "You don't have permission to delete selected %s(s)."
+msgstr "You don't have permission to delete selected %s(s)."
-#: airtime_mvc/application/models/Scheduler.php:146
-msgid "You cannot add files to recording shows."
-msgstr "You cannot add files to recording shows."
+#: airtime_mvc/application/controllers/PlaylistController.php:174
+msgid "You can only add tracks to smart block."
+msgstr "You can only add tracks to smart block."
-#: airtime_mvc/application/models/Scheduler.php:152
+#: airtime_mvc/application/controllers/PlaylistController.php:180
+#: airtime_mvc/application/controllers/LocaleController.php:50
+msgid "You can only add tracks, smart blocks, and webstreams to playlists."
+msgstr "You can only add tracks, smart blocks, and webstreams to playlists."
+
+#: airtime_mvc/application/controllers/PlaylistController.php:192
+msgid "Untitled Playlist"
+msgstr "Untitled Playlist"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:194
+msgid "Untitled Smart Block"
+msgstr "Untitled Smart Block"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:522
+msgid "Unknown Playlist"
+msgstr "Unknown Playlist"
+
+#: airtime_mvc/application/controllers/ErrorController.php:78
+msgid "Page not found."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:87
+msgid "The requested action is not supported."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:98
+msgid "You do not have permission to access this resource."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:109
+msgid "An internal application error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/controllers/Apiv2Controller.php:77
+#: airtime_mvc/application/controllers/ApiController.php:79
+msgid "You are not allowed to access this resource."
+msgstr "You are not allowed to access this resource."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:72
+msgid "Preferences updated."
+msgstr "Preferences updated."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:115
+msgid "Support setting updated."
+msgstr "Support setting updated."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:123
+msgid "Support Feedback"
+msgstr "Support Feedback"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:251
+msgid "Stream Setting Updated."
+msgstr "Stream Setting Updated."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:342
+msgid "path should be specified"
+msgstr "path should be specified"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:437
+msgid "Problem with Liquidsoap..."
+msgstr "Problem with Liquidsoap..."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:493
+msgid "Request method not accepted"
+msgstr ""
+
+#: airtime_mvc/application/controllers/DashboardController.php:35
+#: airtime_mvc/application/controllers/DashboardController.php:84
+msgid "You don't have permission to disconnect source."
+msgstr "You don't have permission to disconnect source."
+
+#: airtime_mvc/application/controllers/DashboardController.php:37
+#: airtime_mvc/application/controllers/DashboardController.php:86
+msgid "There is no source connected to this input."
+msgstr "There is no source connected to this input."
+
+#: airtime_mvc/application/controllers/DashboardController.php:81
+msgid "You don't have permission to switch source."
+msgstr "You don't have permission to switch source."
+
+#: airtime_mvc/application/controllers/LoginController.php:43
+msgid "Please enter your username and password."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:93
+msgid "Wrong username or password provided. Please try again."
+msgstr "Wrong username or password provided. Please try again."
+
+#: airtime_mvc/application/controllers/LoginController.php:167
+msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
+msgstr "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
+
+#: airtime_mvc/application/controllers/LoginController.php:173
+msgid "There was a problem with the username or email address you entered."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ApiController.php:244
+#: airtime_mvc/application/controllers/ApiController.php:317
+#: airtime_mvc/application/controllers/ApiController.php:392
+#: airtime_mvc/application/controllers/ApiController.php:435
+#: airtime_mvc/application/controllers/ApiController.php:474
+#: airtime_mvc/application/controllers/ApiController.php:507
+msgid "You are not allowed to access this resource. "
+msgstr "You are not allowed to access this resource. "
+
+#: airtime_mvc/application/controllers/ApiController.php:698
+#: airtime_mvc/application/controllers/ApiController.php:718
+#: airtime_mvc/application/controllers/ApiController.php:730
#, php-format
-msgid "The show %s is over and cannot be scheduled."
-msgstr "The show %s is over and cannot be scheduled."
-
-#: airtime_mvc/application/models/Scheduler.php:159
-#, php-format
-msgid "The show %s has been previously updated!"
-msgstr "The show %s has been previously updated!"
-
-#: airtime_mvc/application/models/Scheduler.php:178
-msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
-msgstr "Content in linked shows must be scheduled before or after any one is broadcasted"
-
-#: airtime_mvc/application/models/Scheduler.php:195
-msgid "Cannot schedule a playlist that contains missing files."
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:216
-#: airtime_mvc/application/models/Scheduler.php:305
-msgid "A selected File does not exist!"
-msgstr "A selected File does not exist!"
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
-#: airtime_mvc/application/configs/navigation.php:40
-msgid "Weekly Schedule"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
-#: airtime_mvc/application/forms/Player.php:77
-msgid "Preview:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
-#: airtime_mvc/application/configs/navigation.php:34
-msgid "Player"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
-#: airtime_mvc/application/controllers/LocaleController.php:362
-#: airtime_mvc/application/controllers/LocaleController.php:390
-msgid "Close"
-msgstr "Close"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Add this show"
-msgstr "Add this show"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Update show"
-msgstr "Update show"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
-msgid "What"
-msgstr "What"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
-msgid "When"
-msgstr "When"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
-msgid "Live Stream Input"
-msgstr "Live Stream Input"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
-msgid "Who"
-msgstr "Who"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
-msgid "Style"
-msgstr "Style"
-
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
-#: airtime_mvc/application/controllers/LocaleController.php:273
-msgid "Start"
-msgstr "Start"
-
-#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
-msgid "Password Reset"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
-msgid "Email Sent!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
-msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
-msgid "Back"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
-msgid "New password"
-msgstr "New password"
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
-msgid "Please enter and confirm your new password in the fields below."
-msgstr "Please enter and confirm your new password in the fields below."
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:3
-#: airtime_mvc/application/forms/Login.php:83
-msgid "Login"
-msgstr "Login"
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:7
-#, php-format
-msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:97
-msgid "Playout History"
-msgstr "Playout History"
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
-msgid "Log Sheet"
-msgstr "Log Sheet"
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
-msgid "File Summary"
-msgstr "File Summary"
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
-msgid "Show Summary"
-msgstr "Show Summary"
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
-msgid "Your trial expires in"
-msgstr "Your trial expires in"
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
-msgid "days"
-msgstr "days"
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-#, php-format
-msgid "Purchase an %s Pro plan!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-msgid "My Account"
-msgstr "My Account"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
-msgid "Previous:"
-msgstr "Previous:"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
-msgid "Next:"
-msgstr "Next:"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
-msgid "Source Streams"
-msgstr "Source Streams"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
-msgid "Master Source"
-msgstr "Master Source"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
-msgid "Show Source"
-msgstr "Show Source"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
-msgid "ON AIR"
-msgstr "ON AIR"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
-msgid "Listen"
-msgstr "Listen"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
-msgid "Logout"
-msgstr "Logout"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
-msgid "Drop files here or click to browse your computer."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
-#: airtime_mvc/application/controllers/LocaleController.php:314
-msgid "in use"
-msgstr "in use"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
-#: airtime_mvc/application/controllers/LocaleController.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:401
-msgid "All"
-msgstr "All"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
-msgid "Failed"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
-msgid "Pending"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
-msgid "Recent Uploads"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
-#: airtime_mvc/application/configs/navigation.php:120
-msgid "Account Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
-msgid "Upgrade today to get more listeners and storage space!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
-msgid "View Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
-msgid "About"
-msgstr "About"
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
-#, php-format
-msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
-#, php-format
-msgid "%1$s %2$s is distributed under the %3$s"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
-#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
-msgid "Live stream"
-msgstr "Live stream"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
-msgid "Share"
-msgstr "Share"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
-msgid "Select stream:"
-msgstr "Select stream:"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
-msgid "mute"
-msgstr "mute"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
-msgid "unmute"
-msgstr "unmute"
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
-#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
-#, php-format
-msgid "Welcome to %s!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
-#, php-format
-msgid "Here's how you can get started using %s to automate your broadcasts: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
-msgid "Upload audio tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
-msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
-msgid "Schedule a show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
-msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
-msgid "Add tracks to your show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
-msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
-msgid "Now you're good to go!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
-#, php-format
-msgid "For more detailed help, read the %suser manual%s."
-msgstr "For more detailed help, read the %suser manual%s."
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
-msgid "Listeners"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
-msgid "Stream Data Collection Status"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
-#: airtime_mvc/application/views/scripts/error/error.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
-msgid "An error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
-msgid "Access Denied!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
-msgid "You do not have permission to access this page!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
-#: airtime_mvc/application/views/scripts/error/error.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
-#: airtime_mvc/application/configs/navigation.php:143
-msgid "Help"
-msgstr "Help"
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
-msgid "Page not found!"
-msgstr "Page not found!"
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
-msgid "We couldn't find the page you were looking for."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error.phtml:12
-msgid "Looks like the page you were looking for doesn't exist!"
-msgstr "Looks like the page you were looking for doesn't exist!"
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
-msgid "Oops!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
-msgid "Something went wrong!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
-msgid "Bad Request!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
-msgid "The requested action is not supported!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
-msgid "Viewing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
-msgid "Editing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:3
-msgid "File import in progress..."
-msgstr "File import in progress..."
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:10
-#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
-msgid "Advanced Search Options"
-msgstr "Advanced Search Options"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
-#: airtime_mvc/application/forms/Player.php:15
-#: airtime_mvc/application/forms/EditAudioMD.php:24
-msgid "Title:"
-msgstr "Title:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
-#: airtime_mvc/application/forms/EditAudioMD.php:34
-msgid "Creator:"
-msgstr "Creator:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
-#: airtime_mvc/application/forms/EditAudioMD.php:44
-msgid "Album:"
-msgstr "Album:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
-msgid "Track:"
-msgstr "Track:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
-msgid "Length:"
-msgstr "Length:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
-msgid "Sample Rate:"
-msgstr "Sample Rate:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
-msgid "Bit Rate:"
-msgstr "Bit Rate:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
-#: airtime_mvc/application/forms/EditAudioMD.php:115
-msgid "Mood:"
-msgstr "Mood:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
-#: airtime_mvc/application/forms/EditAudioMD.php:62
-#: airtime_mvc/application/forms/AddShowWhat.php:45
-msgid "Genre:"
-msgstr "Genre:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
-#: airtime_mvc/application/forms/EditAudioMD.php:72
-msgid "Year:"
-msgstr "Year:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
-#: airtime_mvc/application/forms/EditAudioMD.php:85
-msgid "Label:"
-msgstr "Label:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
-#: airtime_mvc/application/forms/EditAudioMD.php:125
-msgid "BPM:"
-msgstr "BPM:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
-#: airtime_mvc/application/forms/EditAudioMD.php:95
-msgid "Composer:"
-msgstr "Composer:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
-#: airtime_mvc/application/forms/EditAudioMD.php:105
-msgid "Conductor:"
-msgstr "Conductor:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
-#: airtime_mvc/application/forms/EditAudioMD.php:135
-msgid "Copyright:"
-msgstr "Copyright:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
-msgid "Isrc Number:"
-msgstr "Isrc Number:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
-#: airtime_mvc/application/forms/EditAudioMD.php:155
-msgid "Website:"
-msgstr "Website:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
-#: airtime_mvc/application/forms/EditUser.php:119
-#: airtime_mvc/application/forms/EditAudioMD.php:165
-#: airtime_mvc/application/forms/Login.php:68
-msgid "Language:"
-msgstr "Language:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
-msgid "File Path:"
-msgstr "File Path:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
-#: airtime_mvc/application/forms/AddShowWhat.php:26
-msgid "Name:"
-msgstr "Name:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
-#: airtime_mvc/application/forms/AddShowWhat.php:54
-msgid "Description:"
-msgstr "Description:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
-msgid "Web Stream"
-msgstr "Web Stream"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
-msgid "Dynamic Smart Block"
-msgstr "Dynamic Smart Block"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
-msgid "Static Smart Block"
-msgstr "Static Smart Block"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
-msgid "Audio Track"
-msgstr "Audio Track"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
-msgid "Playlist Contents: "
-msgstr "Playlist Contents: "
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
-msgid "Static Smart Block Contents: "
-msgstr "Static Smart Block Contents: "
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
-msgid "Dynamic Smart Block Criteria: "
-msgstr "Dynamic Smart Block Criteria: "
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
-msgid "Limit to "
-msgstr "Limit to "
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
-#: airtime_mvc/application/forms/AddShowWhat.php:36
-msgid "URL:"
-msgstr "URL:"
-
-#: airtime_mvc/application/views/scripts/form/login.phtml:41
-msgid "Forgot your password?"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
-#, php-format
-msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
-#, php-format
-msgid "Click the box below to promote your station on %s."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
-msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
-msgstr "(In order to promote your station, 'Send support feedback' must be enabled)."
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
-msgid "(Required)"
-msgstr "(Required)"
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
-msgid "(for verification purposes only, will not be published)"
-msgstr "(for verification purposes only, will not be published)"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
-msgid "Choose folder"
-msgstr "Choose folder"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
-msgid "Set"
-msgstr "Set"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
-msgid "Current Import Folder:"
-msgstr "Current Import Folder:"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
-msgid "Add"
-msgstr "Add"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
-#, php-format
-msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
-msgid "Remove watched directory"
-msgstr "Remove watched directory"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
-msgid "You are not watching any media folders."
-msgstr "You are not watching any media folders."
-
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
-msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
-msgid "Live Broadcasting"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
-msgid "Use these settings in your broadcasting software to stream live at any time."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
-msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
-msgid "Choose Show Instance"
-msgstr "Choose Show Instance"
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
-#: airtime_mvc/application/forms/EditHistoryItem.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:400
-msgid "No Show"
-msgstr "No Show"
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
-msgid "Find"
-msgstr "Find"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
-msgid "Choose Days:"
-msgstr "Choose Days:"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
-#: airtime_mvc/application/forms/AddShowStyle.php:64
-#: airtime_mvc/application/forms/GeneralPreferences.php:53
-msgid "Remove"
-msgstr "Remove"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
-msgid "Stream "
-msgstr "Stream "
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
-msgid "Additional Options"
-msgstr "Additional Options"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
-msgid "The following info will be displayed to listeners in their media player:"
-msgstr "The following info will be displayed to listeners in their media player:"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
-msgid "(Your radio station website)"
-msgstr "(Your radio station website)"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
-msgid "Stream URL: "
-msgstr "Stream URL: "
-
-#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
-msgid "Find Shows"
-msgstr "Find Shows"
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
-msgid "TuneIn Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
-msgid "SoundCloud Settings"
-msgstr "SoundCloud Settings"
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
-msgid "Dangerous Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
-msgid "Search Criteria:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
-msgid "New Criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
-msgid "or"
-msgstr "or"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
-msgid "and"
-msgstr "and"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
-msgid "New Modifier"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
-msgid " to "
-msgstr " to "
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
-msgid "files meet the criteria"
-msgstr "files meet the criteria"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
-msgid "file meets the criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
-msgid "Filter History"
-msgstr "Filter History"
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
-#: airtime_mvc/application/configs/navigation.php:61
-msgid "My Profile"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
-#, php-format
-msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
-#: airtime_mvc/application/forms/Preferences.php:40
-#: airtime_mvc/application/forms/PasswordChange.php:43
-#: airtime_mvc/application/forms/AddUser.php:110
-#: airtime_mvc/application/forms/BillingClient.php:193
-#: airtime_mvc/application/forms/SupportSettings.php:131
-#: airtime_mvc/application/forms/EditHistory.php:131
-#: airtime_mvc/application/controllers/LocaleController.php:294
-msgid "Save"
-msgstr "Save"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
-msgid "Repeat Days:"
-msgstr "Repeat Days:"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
-msgid "Register Airtime"
-msgstr "Register Airtime"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
-#: airtime_mvc/application/forms/GeneralPreferences.php:43
-msgid "Note: Anything larger than 600x600 will be resized."
-msgstr "Note: Anything larger than 600x600 will be resized."
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
-msgid "Show me what I am sending "
-msgstr "Show me what I am sending "
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
-msgid "Terms and Conditions"
-msgstr "Terms and Conditions"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
-msgid "Creating File Summary Template"
-msgstr "Creating File Summary Template"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
-msgid "Creating Log Sheet Template"
-msgstr "Creating Log Sheet Template"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
-msgid "Name"
-msgstr "Name"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
-msgid "Add more elements"
-msgstr "Add more elements"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
-msgid "Add New Field"
-msgstr "Add New Field"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
-msgid "Set Default Template"
-msgstr "Set Default Template"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
-msgid "Playout History Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
-msgid "Log Sheet Templates"
-msgstr "Log Sheet Templates"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
-msgid "New Log Sheet Template"
-msgstr "New Log Sheet Template"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
-msgid "No Log Sheet Templates"
-msgstr "No Log Sheet Templates"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
-#: airtime_mvc/application/controllers/LocaleController.php:397
-msgid "Set Default"
-msgstr "Set Default"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
-msgid "File Summary Templates"
-msgstr "File Summary Templates"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
-msgid "New File Summary Template"
-msgstr "New File Summary Template"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
-msgid "No File Summary Templates"
-msgstr "No File Summary Templates"
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
-msgid "Disk Space"
-msgstr "Disk Space"
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
-#: airtime_mvc/application/controllers/LocaleController.php:315
-msgid "Disk"
-msgstr "Disk"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
-#: airtime_mvc/application/forms/AddShowWhen.php:89
-msgid "Duration:"
-msgstr "Duration:"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
-msgid "Toggle Details"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
-msgid "Playlist crossfade"
-msgstr "Playlist crossfade"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-msgid "Remove all content from this smart block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Clear"
-msgstr "Clear"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "Fade in: "
-msgstr "Fade in: "
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "(ss.t)"
-msgstr "(ss.t)"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-msgid "Fade out: "
-msgstr "Fade out: "
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
-#: airtime_mvc/application/forms/EditAudioMD.php:186
-#: airtime_mvc/application/forms/EditHistory.php:141
-#: airtime_mvc/application/controllers/LocaleController.php:295
-#: airtime_mvc/application/controllers/LocaleController.php:318
-msgid "Cancel"
-msgstr "Cancel"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
-msgid "No smart block currently open"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
-msgid "Show Waveform"
-msgstr "Show Waveform"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-msgid "Cue In: "
-msgstr "Cue In: "
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "(hh:mm:ss.t)"
-msgstr "(hh:mm:ss.t)"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "Cue Out: "
-msgstr "Cue Out: "
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
-msgid "Original Length:"
-msgstr "Original Length:"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
-msgid "Expand Static Block"
-msgstr "Expand Static Block"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
-msgid "Expand Dynamic Block"
-msgstr "Expand Dynamic Block"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
-msgid "Choose some search criteria above and click Generate to create this playlist."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
-msgid "A track list will be generated when you schedule this smart block into a show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
-msgid "Drag tracks here from your library to add them to the playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-msgid "Shuffle playlist"
-msgstr "Shuffle playlist"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
-msgid "Shuffle"
-msgstr "Shuffle"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Empty playlist content"
-msgstr "Empty playlist content"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-msgid "Save playlist"
-msgstr "Save playlist"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
-msgid "No open playlist"
-msgstr "No open playlist"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
-msgid "previous"
-msgstr "previous"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
-msgid "play"
-msgstr "play"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
-msgid "pause"
-msgstr "pause"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
-msgid "next"
-msgstr "next"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
-msgid "stop"
-msgstr "stop"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
-msgid "max volume"
-msgstr "max volume"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
-msgid "Update Required"
-msgstr "Update Required"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
-#, php-format
-msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
-msgstr "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
-msgid "Stream Settings"
-msgstr "Stream Settings"
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
-msgid "Global"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
-msgid "dB"
-msgstr "dB"
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
-msgid "Output Streams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
-#: airtime_mvc/application/controllers/LocaleController.php:166
-msgid "Manage Media Folders"
-msgstr "Manage Media Folders"
-
-#: airtime_mvc/application/views/scripts/preference/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:56
-msgid "General"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
-msgid "Description"
-msgstr "Description"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
-msgid "Stream URL:"
-msgstr "Stream URL:"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
-msgid "Default Length:"
-msgstr "Default Length:"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
-msgid "No webstream"
-msgstr "No webstream"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
-msgid "Manage Users"
-msgstr "Manage Users"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
-msgid "New User"
-msgstr "New User"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
-msgid "id"
-msgstr "id"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
-#: airtime_mvc/application/forms/PasswordRestore.php:25
-msgid "Username"
-msgstr "Username"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
-msgid "First Name"
-msgstr "First Name"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
-msgid "Last Name"
-msgstr "Last Name"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
-msgid "User Type"
-msgstr "User Type"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
-#, php-format
-msgid "Super Admin details can be changed in your Billing Settings."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
-#: airtime_mvc/application/controllers/LocaleController.php:74
-#: airtime_mvc/application/layouts/scripts/layout.phtml:78
-msgid "Tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
-#: airtime_mvc/application/controllers/LocaleController.php:104
-#: airtime_mvc/application/layouts/scripts/layout.phtml:80
-msgid "Playlists"
-msgstr "Playlists"
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
-#: airtime_mvc/application/controllers/LocaleController.php:105
-#: airtime_mvc/application/layouts/scripts/layout.phtml:82
-msgid "Smart Blocks"
-msgstr "Smart Blocks"
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
-#: airtime_mvc/application/layouts/scripts/layout.phtml:84
-msgid "Webstreams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
-#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
-#: airtime_mvc/application/layouts/scripts/layout.phtml:76
-msgid "Dashboard"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:12
-msgid "Radio Page"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:19
-msgid "Calendar"
-msgstr "Calendar"
-
-#: airtime_mvc/application/configs/navigation.php:26
-msgid "Widgets"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:48
-msgid "Settings"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:67
-msgid "Users"
-msgstr "Users"
-
-#: airtime_mvc/application/configs/navigation.php:74
-msgid "Streams"
-msgstr "Streams"
-
-#: airtime_mvc/application/configs/navigation.php:82
-msgid "Analytics"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:90
-msgid "Listener Stats"
-msgstr "Listener Stats"
-
-#: airtime_mvc/application/configs/navigation.php:104
-msgid "History Templates"
-msgstr "History Templates"
-
-#: airtime_mvc/application/configs/navigation.php:113
-msgid "Billing"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:127
-msgid "Account Details"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:134
-msgid "View Invoices"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:150
-msgid "Getting Started"
-msgstr "Getting Started"
-
-#: airtime_mvc/application/configs/navigation.php:157
-msgid "FAQ"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:162
-msgid "User Manual"
-msgstr "User Manual"
-
-#: airtime_mvc/application/configs/navigation.php:167
-msgid "File a Support Ticket"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:12
-msgid "Background Colour:"
-msgstr "Background Colour:"
-
-#: airtime_mvc/application/forms/AddShowStyle.php:31
-msgid "Text Colour:"
-msgstr "Text Colour:"
-
-#: airtime_mvc/application/forms/AddShowStyle.php:49
-msgid "Current Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:72
-msgid "Show Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:87
-msgid "Logo Preview:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:19
-msgid "Push metadata to your station on TuneIn?"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:24
-msgid "Station ID:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:30
-msgid "Partner Key:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:36
-msgid "Partner Id:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:77
-#: airtime_mvc/application/forms/TuneInPreferences.php:86
-msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:14
-msgid "Now Playing"
-msgstr "Now Playing"
-
-#: airtime_mvc/application/forms/Player.php:25
-msgid "Select Stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:28
-msgid "Auto detect the most appropriate stream to use."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:29
-msgid "Select a stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:41
-msgid " - Mobile friendly"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:45
-msgid " - The player does not support Opus streams."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:71
-msgid "Embeddable code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:72
-msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:37
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
-#: airtime_mvc/application/forms/Login.php:41
-#: airtime_mvc/application/forms/AddUser.php:29
-msgid "Username:"
-msgstr "Username:"
-
-#: airtime_mvc/application/forms/EditUser.php:48
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
-#: airtime_mvc/application/forms/Login.php:54
-#: airtime_mvc/application/forms/AddUser.php:38
-#: airtime_mvc/application/forms/BillingClient.php:172
-msgid "Password:"
-msgstr "Password:"
-
-#: airtime_mvc/application/forms/EditUser.php:57
-#: airtime_mvc/application/forms/AddUser.php:46
-#: airtime_mvc/application/forms/BillingClient.php:181
-msgid "Verify Password:"
-msgstr "Verify Password:"
-
-#: airtime_mvc/application/forms/EditUser.php:67
-#: airtime_mvc/application/forms/AddUser.php:55
-msgid "Firstname:"
-msgstr "First name:"
-
-#: airtime_mvc/application/forms/EditUser.php:75
-#: airtime_mvc/application/forms/AddUser.php:61
-msgid "Lastname:"
-msgstr "Last name:"
-
-#: airtime_mvc/application/forms/EditUser.php:83
-#: airtime_mvc/application/forms/RegisterAirtime.php:51
-#: airtime_mvc/application/forms/AddUser.php:67
-#: airtime_mvc/application/forms/SupportSettings.php:43
-msgid "Email:"
-msgstr "Email:"
-
-#: airtime_mvc/application/forms/EditUser.php:94
-#: airtime_mvc/application/forms/AddUser.php:76
-msgid "Mobile Phone:"
-msgstr "Mobile Phone:"
-
-#: airtime_mvc/application/forms/EditUser.php:102
-#: airtime_mvc/application/forms/AddUser.php:82
-msgid "Skype:"
-msgstr "Skype:"
-
-#: airtime_mvc/application/forms/EditUser.php:110
-#: airtime_mvc/application/forms/AddUser.php:88
-msgid "Jabber:"
-msgstr "Jabber:"
-
-#: airtime_mvc/application/forms/EditUser.php:129
-msgid "Interface Timezone:"
-msgstr "Interface Timezone:"
-
-#: airtime_mvc/application/forms/EditUser.php:155
-#: airtime_mvc/application/forms/AddUser.php:120
-msgid "Login name is not unique."
-msgstr "Login name is not unique."
-
-#: airtime_mvc/application/forms/AddShowRR.php:10
-msgid "Record from Line In?"
-msgstr "Record from Line In?"
-
-#: airtime_mvc/application/forms/AddShowRR.php:16
-msgid "Rebroadcast?"
-msgstr "Rebroadcast?"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:16
-msgid "'%value%' does not fit the time format 'HH:mm'"
-msgstr "'%value%' does not fit the time format 'HH:mm'"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:22
-msgid "Start Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:37
-msgid "In the Future:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:64
-msgid "End Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:98
-msgid "Timezone:"
-msgstr "Timezone:"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:107
-msgid "Repeats?"
-msgstr "Repeats?"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:139
-msgid "Cannot create show in the past"
-msgstr "Cannot create show in the past"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:147
-msgid "Cannot modify start date/time of the show that is already started"
-msgstr "Cannot modify start date/time of the show that is already started"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:164
-msgid "Cannot have duration < 0m"
-msgstr "Cannot have duration < 0m"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:168
-msgid "Cannot have duration 00h 00m"
-msgstr "Cannot have duration 00h 00m"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:175
-msgid "Cannot have duration greater than 24h"
-msgstr "Cannot have duration greater than 24h"
-
-#: airtime_mvc/application/forms/AddShowWho.php:10
-msgid "Search Users:"
-msgstr "Search Users:"
-
-#: airtime_mvc/application/forms/AddShowWho.php:24
-msgid "DJs:"
-msgstr "DJs:"
-
-#: airtime_mvc/application/forms/PasswordChange.php:17
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
-msgid "Password"
-msgstr "Password"
-
-#: airtime_mvc/application/forms/PasswordChange.php:28
-msgid "Confirm new password"
-msgstr "Confirm new password"
-
-#: airtime_mvc/application/forms/PasswordChange.php:36
-msgid "Password confirmation does not match your password."
-msgstr "Password confirmation does not match your password."
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
-msgid "Station Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
-#: airtime_mvc/application/forms/GeneralPreferences.php:127
-msgid "Station Timezone"
-msgstr "Station Timezone"
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
-msgid "Auto Switch Off:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
-msgid "Auto Switch On:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
-msgid "Switch Transition Fade (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
-#: airtime_mvc/application/forms/GeneralPreferences.php:68
-#: airtime_mvc/application/forms/GeneralPreferences.php:82
-#: airtime_mvc/application/forms/GeneralPreferences.php:96
-msgid "Please enter a time in seconds (eg. 0.5)"
+msgid "File does not exist in %s"
msgstr ""
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
-#: airtime_mvc/application/forms/AddShowLiveStream.php:48
-msgid "Host:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
-#: airtime_mvc/application/forms/AddShowLiveStream.php:54
-msgid "Port:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
-#: airtime_mvc/application/forms/AddShowLiveStream.php:60
-msgid "Mount:"
-msgstr ""
-
-#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
-msgid "Value is required and can't be empty"
-msgstr "Value is required and can't be empty"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:25
-#: airtime_mvc/application/forms/RegisterAirtime.php:30
-#: airtime_mvc/application/forms/SupportSettings.php:18
-msgid "Station Name"
-msgstr "Station Name"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:33
-msgid "Station Description"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:42
-#: airtime_mvc/application/forms/RegisterAirtime.php:106
-msgid "Station Logo:"
-msgstr "Station Logo:"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:62
-msgid "Default Crossfade Duration (s):"
-msgstr "Default Crossfade Duration (s):"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:76
-msgid "Default Fade In (s):"
-msgstr "Default Fade In (s):"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:90
-msgid "Default Fade Out (s):"
-msgstr "Default Fade Out (s):"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:102
-msgid "Public Airtime API"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:103
-msgid "Required for embeddable schedule widget."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:105
-msgid "Disabled"
-msgstr "Disabled"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:106
-msgid "Enabled"
-msgstr "Enabled"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:109
-msgid ""
-"Enabling this feature will allow Airtime to provide schedule data\n"
-" to external widgets that can be embedded in your website."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:120
-msgid "Default Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:134
-msgid "Week Starts On"
-msgstr "Week Starts On"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:150
-msgid "Display login button on your Radio Page?"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:158
-#: airtime_mvc/application/controllers/LocaleController.php:249
-msgid "Sunday"
-msgstr "Sunday"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:159
-#: airtime_mvc/application/controllers/LocaleController.php:250
-msgid "Monday"
-msgstr "Monday"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:160
-#: airtime_mvc/application/controllers/LocaleController.php:251
-msgid "Tuesday"
-msgstr "Tuesday"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:161
-#: airtime_mvc/application/controllers/LocaleController.php:252
-msgid "Wednesday"
-msgstr "Wednesday"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:162
-#: airtime_mvc/application/controllers/LocaleController.php:253
-msgid "Thursday"
-msgstr "Thursday"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:163
-#: airtime_mvc/application/controllers/LocaleController.php:254
-msgid "Friday"
-msgstr "Friday"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:164
-#: airtime_mvc/application/controllers/LocaleController.php:255
-msgid "Saturday"
-msgstr "Saturday"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
-msgid "Default License:"
-msgstr "Default License:"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
-msgid "All rights are reserved"
-msgstr "All rights are reserved"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
-msgid "The work is in the public domain"
-msgstr "The work is in the public domain"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
-msgid "Creative Commons Attribution"
-msgstr "Creative Commons Attribution"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
-msgid "Creative Commons Attribution Noncommercial"
-msgstr "Creative Commons Attribution Noncommercial"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
-msgid "Creative Commons Attribution No Derivative Works"
-msgstr "Creative Commons Attribution No Derivative Works"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
-msgid "Creative Commons Attribution Share Alike"
-msgstr "Creative Commons Attribution Share Alike"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
-msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
-msgstr "Creative Commons Attribution Noncommercial Non Derivate Works"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
-msgid "Creative Commons Attribution Noncommercial Share Alike"
-msgstr "Creative Commons Attribution Noncommercial Share Alike"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
-msgid "Default Sharing Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
-msgid "Public"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
-msgid "Private"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:18
-#: airtime_mvc/application/forms/DateRange.php:16
-msgid "Date Start:"
-msgstr "Date Start:"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:37
-#: airtime_mvc/application/forms/ShowBuilder.php:65
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
-#: airtime_mvc/application/forms/DateRange.php:35
-#: airtime_mvc/application/forms/DateRange.php:63
-msgid "Invalid character entered"
-msgstr "Invalid character entered"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:46
-#: airtime_mvc/application/forms/AddShowRepeats.php:56
-#: airtime_mvc/application/forms/DateRange.php:44
-msgid "Date End:"
-msgstr "Date End:"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:72
-#: airtime_mvc/application/forms/ShowBuilder.php:88
-msgid "Filter by Show"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:80
-msgid "All My Shows:"
-msgstr "All My Shows:"
-
-#: airtime_mvc/application/forms/EditAudioMD.php:145
-msgid "ISRC Number:"
-msgstr "ISRC Number:"
-
-#: airtime_mvc/application/forms/EditAudioMD.php:176
-msgid "OK"
-msgstr "OK"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
-msgid "Day must be specified"
-msgstr "Day must be specified"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
-msgid "Time must be specified"
-msgstr "Time must be specified"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
-msgid "Must wait at least 1 hour to rebroadcast"
-msgstr "Must wait at least 1 hour to rebroadcast"
-
-#: airtime_mvc/application/forms/AddShowWhat.php:30
-msgid "Untitled Show"
-msgstr "Untitled Show"
-
-#: airtime_mvc/application/forms/AddShowWhat.php:69
-msgid "Instance Description:"
-msgstr ""
-
-#: airtime_mvc/application/forms/DangerousPreferences.php:12
-msgid "Delete All Tracks in Library"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:39
-#: airtime_mvc/application/forms/SupportSettings.php:31
-msgid "Phone:"
-msgstr "Phone:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:62
-#: airtime_mvc/application/forms/SupportSettings.php:54
-msgid "Station Web Site:"
-msgstr "Station Web Site:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:73
-#: airtime_mvc/application/forms/BillingClient.php:102
-#: airtime_mvc/application/forms/SupportSettings.php:65
-msgid "Country:"
-msgstr "Country:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:84
-#: airtime_mvc/application/forms/BillingClient.php:70
-#: airtime_mvc/application/forms/SupportSettings.php:76
-msgid "City:"
-msgstr "City:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:96
-#: airtime_mvc/application/forms/SupportSettings.php:88
-msgid "Station Description:"
-msgstr "Station Description:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:116
-#: airtime_mvc/application/forms/SupportSettings.php:98
-#: airtime_mvc/application/controllers/LocaleController.php:341
-msgid "Send support feedback"
-msgstr "Send support feedback"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:126
-#: airtime_mvc/application/forms/SupportSettings.php:108
-#, php-format
-msgid "Promote my station on %s"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:151
-#: airtime_mvc/application/forms/SupportSettings.php:120
-#, php-format
-msgid "By checking this box, I agree to %s's %sprivacy policy%s."
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:169
-#: airtime_mvc/application/forms/SupportSettings.php:143
-msgid "You have to agree to privacy policy."
-msgstr "You have to agree to privacy policy."
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:10
-msgid "Link:"
-msgstr "Link:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:16
-msgid "Repeat Type:"
-msgstr "Repeat Type:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:19
-msgid "weekly"
-msgstr "weekly"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:20
-msgid "every 2 weeks"
-msgstr "every 2 weeks"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:21
-msgid "every 3 weeks"
-msgstr "every 3 weeks"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:22
-msgid "every 4 weeks"
-msgstr "every 4 weeks"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:23
-msgid "monthly"
-msgstr "monthly"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:32
-msgid "Select Days:"
-msgstr "Select Days:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:35
-#: airtime_mvc/application/controllers/LocaleController.php:256
-msgid "Sun"
-msgstr "Sun"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:36
-#: airtime_mvc/application/controllers/LocaleController.php:257
-msgid "Mon"
-msgstr "Mon"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:37
-#: airtime_mvc/application/controllers/LocaleController.php:258
-msgid "Tue"
-msgstr "Tue"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:38
-#: airtime_mvc/application/controllers/LocaleController.php:259
-msgid "Wed"
-msgstr "Wed"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:39
-#: airtime_mvc/application/controllers/LocaleController.php:260
-msgid "Thu"
-msgstr "Thu"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:40
-#: airtime_mvc/application/controllers/LocaleController.php:261
-msgid "Fri"
-msgstr "Fri"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:41
-#: airtime_mvc/application/controllers/LocaleController.php:262
-msgid "Sat"
-msgstr "Sat"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:47
-msgid "Repeat By:"
-msgstr "Repeat By:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the month"
-msgstr "day of the month"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the week"
-msgstr "day of the week"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:69
-msgid "No End?"
-msgstr "No End?"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:106
-msgid "End date must be after start date"
-msgstr "End date must be after start date"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:113
-msgid "Please select a repeat day"
-msgstr "Please select a repeat day"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:10
-#, php-format
-msgid "Use %s Authentication:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:16
-msgid "Use Custom Authentication:"
-msgstr "Use Custom Authentication:"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:25
-msgid "Custom Username"
-msgstr "Custom Username"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:37
-msgid "Custom Password"
-msgstr "Custom Password"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:77
-msgid "Username field cannot be empty."
-msgstr "Username field cannot be empty."
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:82
-msgid "Password field cannot be empty."
-msgstr "Password field cannot be empty."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
-msgid "Enabled:"
-msgstr "Enabled:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
-msgid "Mobile:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
-msgid "Stream Type:"
-msgstr "Stream Type:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
-msgid "Service Type:"
-msgstr "Service Type:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
-msgid "Channels:"
-msgstr "Channels:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "1 - Mono"
-msgstr "1 - Mono"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "2 - Stereo"
-msgstr "2 - Stereo"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
-msgid "Server"
-msgstr "Server"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
-msgid "Port"
-msgstr "Port"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
-msgid "Only numbers are allowed."
-msgstr "Only numbers are allowed."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
-msgid "URL"
-msgstr "URL"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
-msgid "Mount Point"
-msgstr "Mount Point"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
-msgid "Admin User"
-msgstr "Admin User"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
-msgid "Admin Password"
-msgstr "Admin Password"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
-#: airtime_mvc/application/controllers/LocaleController.php:173
-msgid "Getting information from the server..."
-msgstr "Getting information from the server..."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
-msgid "Server cannot be empty."
-msgstr "Server cannot be empty."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
-msgid "Port cannot be empty."
-msgstr "Port cannot be empty."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
-msgid "Mount cannot be empty with Icecast server."
-msgstr "Mount cannot be empty with Icecast server."
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
-msgid "'%value%' is no valid email address in the basic format local-part@hostname"
-msgstr "'%value%' is no valid email address in the basic format local-part@hostname"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
-msgid "'%value%' does not fit the date format '%format%'"
-msgstr "'%value%' does not fit the date format '%format%'"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
-msgid "'%value%' is less than %min% characters long"
-msgstr "'%value%' is less than %min% characters long"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
-msgid "'%value%' is more than %max% characters long"
-msgstr "'%value%' is more than %max% characters long"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
-msgid "'%value%' is not between '%min%' and '%max%', inclusively"
-msgstr "'%value%' is not between '%min%' and '%max%', inclusively"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
-msgid "Passwords do not match"
-msgstr "Passwords do not match"
+#: airtime_mvc/application/controllers/ApiController.php:781
+msgid "Bad request. no 'mode' parameter passed."
+msgstr "Bad request. no 'mode' parameter passed."
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
-msgid "hours"
-msgstr "hours"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
-msgid "minutes"
-msgstr "minutes"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
-msgid "Randomly"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
-msgid "Newest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
-msgid "Oldest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
-msgid "Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
-msgid "Static"
-msgstr "Static"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
-msgid "Dynamic"
-msgstr "Dynamic"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
-msgid "Allow Repeated Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
-msgid "Sort Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
-msgid "Limit to:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
-msgid "Generate playlist content and save criteria"
-msgstr "Generate playlist content and save criteria"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
-msgid "Generate"
-msgstr "Generate"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
-msgid "Shuffle playlist content"
-msgstr "Shuffle playlist content"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
-msgid "Limit cannot be empty or smaller than 0"
-msgstr "Limit cannot be empty or smaller than 0"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
-msgid "Limit cannot be more than 24 hrs"
-msgstr "Limit cannot be more than 24 hrs"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
-msgid "The value should be an integer"
-msgstr "The value should be an integer"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
-msgid "500 is the max item limit value you can set"
-msgstr "500 is the max item limit value you can set"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
-msgid "You must select Criteria and Modifier"
-msgstr "You must select Criteria and Modifier"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
-msgid "'Length' should be in '00:00:00' format"
-msgstr "'Length' should be in '00:00:00' format"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
-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:594
-msgid "The value has to be numeric"
-msgstr "The value has to be numeric"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
-msgid "The value should be less then 2147483648"
-msgstr "The value should be less then 2147483648"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
-#, php-format
-msgid "The value should be less than %s characters"
-msgstr "The value should be less than %s characters"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
-msgid "Value cannot be empty"
-msgstr "Value cannot be empty"
-
-#: airtime_mvc/application/forms/Login.php:102
-msgid "Type the characters you see in the picture below."
-msgstr "Type the characters you see in the picture below."
-
-#: airtime_mvc/application/forms/StreamSetting.php:26
-msgid "Icecast Vorbis Metadata"
-msgstr "Icecast Vorbis Metadata"
-
-#: airtime_mvc/application/forms/StreamSetting.php:36
-msgid "Stream Label:"
-msgstr "Stream Label:"
-
-#: airtime_mvc/application/forms/StreamSetting.php:37
-msgid "Artist - Title"
-msgstr "Artist - Title"
-
-#: airtime_mvc/application/forms/StreamSetting.php:38
-msgid "Show - Artist - Title"
-msgstr "Show - Artist - Title"
-
-#: airtime_mvc/application/forms/StreamSetting.php:39
-msgid "Station name - Show name"
-msgstr "Station name - Show name"
-
-#: airtime_mvc/application/forms/StreamSetting.php:45
-msgid "Off Air Metadata"
-msgstr "Off Air Metadata"
-
-#: airtime_mvc/application/forms/StreamSetting.php:51
-msgid "Enable Replay Gain"
-msgstr "Enable Replay Gain"
-
-#: airtime_mvc/application/forms/StreamSetting.php:57
-msgid "Replay Gain Modifier"
-msgstr "Replay Gain Modifier"
-
-#: airtime_mvc/application/forms/StreamSetting.php:65
-msgid "Streaming Server:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Airtime Pro Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Custom / 3rd Party Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:95
-msgid "User Type:"
-msgstr "User Type:"
-
-#: airtime_mvc/application/forms/AddUser.php:99
-#: airtime_mvc/application/controllers/LocaleController.php:324
-msgid "Guest"
-msgstr "Guest"
-
-#: airtime_mvc/application/forms/AddUser.php:100
-#: airtime_mvc/application/controllers/LocaleController.php:322
-msgid "DJ"
-msgstr "DJ"
-
-#: airtime_mvc/application/forms/AddUser.php:101
-#: airtime_mvc/application/controllers/LocaleController.php:323
-msgid "Program Manager"
-msgstr "Program Manager"
-
-#: airtime_mvc/application/forms/AddUser.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:321
-msgid "Admin"
-msgstr "Admin"
-
-#: airtime_mvc/application/forms/BillingClient.php:17
-msgid "First Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:26
-msgid "Last Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:35
-msgid "Company Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:44
-msgid "Email Address:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:54
-msgid "Address 1:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:63
-msgid "Address 2:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:80
-msgid "State/Region:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:89
-msgid "Zip Code / Postal Code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:112
-msgid "Phone Number:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:121
-msgid "Please choose a security question:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:126
-msgid "What is the name of your favorite childhood friend?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:127
-msgid "What school did you attend for sixth grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:128
-msgid "In what city did you meet your spouse/significant other?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:129
-msgid "What street did you live on in third grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:130
-msgid "What is the first name of the boy or girl that you first kissed?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:131
-msgid "In what city or town was your first job?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:135
-msgid "Please enter an answer:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:152
-msgid "VAT/Tax ID (EU only)"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:162
-msgid "Subscribe to Sourcefabric newsletter"
-msgstr ""
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
-msgid "Import Folder:"
-msgstr "Import Folder:"
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
-msgid "Watched Folders:"
-msgstr "Watched Folders:"
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
-msgid "Not a valid Directory"
-msgstr "Not a valid Directory"
-
-#: airtime_mvc/application/forms/PasswordRestore.php:14
-msgid "Email"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordRestore.php:36
-msgid "Reset password"
-msgstr "Reset password"
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
-msgid "Plan type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
-msgid "Billing cycle:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
-msgid "Payment method:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
-msgid "PayPal"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
-msgid "Credit Card via 2Checkout"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:213
-#, php-format
-msgid "The year %s must be within the range of 1753 - 9999"
-msgstr "The year %s must be within the range of 1753 - 9999"
-
-#: airtime_mvc/application/common/DateHelper.php:216
-#, php-format
-msgid "%s-%s-%s is not a valid date"
-msgstr "%s-%s-%s is not a valid date"
-
-#: airtime_mvc/application/common/DateHelper.php:240
-#, php-format
-msgid "%s:%s:%s is not a valid time"
-msgstr "%s:%s:%s is not a valid time"
-
-#: airtime_mvc/application/common/UsabilityHints.php:55
-msgid "Upload some tracks below to add them to your library!"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:57
-#, php-format
-msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:63
-msgid "Click the 'New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:65
-#, php-format
-msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:73
-msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:75
-#, php-format
-msgid ""
-"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
-" %sCreate an unlinked show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:80
-msgid "To start broadcasting, click on the current show and select 'Schedule Show'"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:82
-#, php-format
-msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:89
-msgid "Click on the show starting next and select 'Schedule Show'"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:91
-#, php-format
-msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
-msgstr ""
+#: airtime_mvc/application/controllers/ApiController.php:791
+msgid "Bad request. 'mode' parameter is invalid"
+msgstr "Bad request. 'mode' parameter is invalid"
#: airtime_mvc/application/controllers/LocaleController.php:30
#: airtime_mvc/application/layouts/scripts/audio-player.phtml:5
@@ -2909,11 +560,6 @@ msgstr "Adding %s Items"
msgid "You can only add tracks to smart blocks."
msgstr "You can only add tracks to smart blocks."
-#: airtime_mvc/application/controllers/LocaleController.php:50
-#: airtime_mvc/application/controllers/PlaylistController.php:180
-msgid "You can only add tracks, smart blocks, and webstreams to playlists."
-msgstr "You can only add tracks, smart blocks, and webstreams to playlists."
-
#: airtime_mvc/application/controllers/LocaleController.php:53
msgid "Please select a cursor position on timeline."
msgstr "Please select a cursor position on timeline."
@@ -2954,11 +600,6 @@ msgstr ""
msgid "Click 'New' to create one."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:66
-#: airtime_mvc/application/controllers/LibraryController.php:123
-msgid "Edit Metadata"
-msgstr "Edit Metadata"
-
#: airtime_mvc/application/controllers/LocaleController.php:67
msgid "Add to selected show"
msgstr "Add to selected show"
@@ -2987,6 +628,12 @@ msgstr "Are you sure you want to delete the selected item(s)?"
msgid "Scheduled"
msgstr "Scheduled"
+#: airtime_mvc/application/controllers/LocaleController.php:74
+#: airtime_mvc/application/layouts/scripts/layout.phtml:78
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
+msgid "Tracks"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:75
#: airtime_mvc/application/layouts/scripts/layout.phtml:60
msgid "Playlist"
@@ -2996,18 +643,96 @@ msgstr ""
msgid "Bit Rate"
msgstr "Bit Rate"
+#: airtime_mvc/application/controllers/LocaleController.php:80
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
+#: airtime_mvc/application/models/Block.php:1354
+msgid "BPM"
+msgstr "BPM"
+
+#: airtime_mvc/application/controllers/LocaleController.php:84
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
+#: airtime_mvc/application/models/Block.php:1361
+msgid "Encoded By"
+msgstr "Encoded By"
+
+#: airtime_mvc/application/controllers/LocaleController.php:89
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
+#: airtime_mvc/application/models/Block.php:1367
+msgid "Last Modified"
+msgstr "Last Modified"
+
+#: airtime_mvc/application/controllers/LocaleController.php:90
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
+#: airtime_mvc/application/models/Block.php:1368
+msgid "Last Played"
+msgstr "Last Played"
+
+#: airtime_mvc/application/controllers/LocaleController.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
+#: airtime_mvc/application/models/Block.php:1370
+msgid "Mime"
+msgstr "Mime"
+
+#: airtime_mvc/application/controllers/LocaleController.php:94
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
+#: airtime_mvc/application/models/Block.php:1372
+msgid "Owner"
+msgstr "Owner"
+
+#: airtime_mvc/application/controllers/LocaleController.php:95
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
+#: airtime_mvc/application/models/Block.php:1373
+msgid "Replay Gain"
+msgstr "Replay Gain"
+
#: airtime_mvc/application/controllers/LocaleController.php:96
msgid "Sample Rate"
msgstr "Sample Rate"
+#: airtime_mvc/application/controllers/LocaleController.php:97
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
+#: airtime_mvc/application/models/Block.php:1376
+msgid "Track Number"
+msgstr "Track Number"
+
+#: airtime_mvc/application/controllers/LocaleController.php:98
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
+#: airtime_mvc/application/models/Block.php:1377
+msgid "Uploaded"
+msgstr "Uploaded"
+
+#: airtime_mvc/application/controllers/LocaleController.php:99
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
+#: airtime_mvc/application/models/Block.php:1378
+msgid "Website"
+msgstr "Website"
+
#: airtime_mvc/application/controllers/LocaleController.php:101
msgid "Loading..."
msgstr "Loading..."
+#: airtime_mvc/application/controllers/LocaleController.php:102
+#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
+msgid "All"
+msgstr "All"
+
#: airtime_mvc/application/controllers/LocaleController.php:103
msgid "Files"
msgstr "Files"
+#: airtime_mvc/application/controllers/LocaleController.php:104
+#: airtime_mvc/application/layouts/scripts/layout.phtml:80
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
+msgid "Playlists"
+msgstr "Playlists"
+
+#: airtime_mvc/application/controllers/LocaleController.php:105
+#: airtime_mvc/application/layouts/scripts/layout.phtml:82
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
+msgid "Smart Blocks"
+msgstr "Smart Blocks"
+
#: airtime_mvc/application/controllers/LocaleController.php:106
msgid "Web Streams"
msgstr "Web Streams"
@@ -3152,6 +877,74 @@ msgstr "Smart block saved"
msgid "Processing..."
msgstr "Processing..."
+#: airtime_mvc/application/controllers/LocaleController.php:151
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
+#: airtime_mvc/application/models/Block.php:1383
+msgid "Select modifier"
+msgstr "Select modifier"
+
+#: airtime_mvc/application/controllers/LocaleController.php:152
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
+#: airtime_mvc/application/models/Block.php:1384
+msgid "contains"
+msgstr "contains"
+
+#: airtime_mvc/application/controllers/LocaleController.php:153
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
+#: airtime_mvc/application/models/Block.php:1385
+msgid "does not contain"
+msgstr "does not contain"
+
+#: airtime_mvc/application/controllers/LocaleController.php:154
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
+#: airtime_mvc/application/models/Block.php:1386
+#: airtime_mvc/application/models/Block.php:1390
+msgid "is"
+msgstr "is"
+
+#: airtime_mvc/application/controllers/LocaleController.php:155
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
+#: airtime_mvc/application/models/Block.php:1387
+#: airtime_mvc/application/models/Block.php:1391
+msgid "is not"
+msgstr "is not"
+
+#: airtime_mvc/application/controllers/LocaleController.php:156
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
+#: airtime_mvc/application/models/Block.php:1388
+msgid "starts with"
+msgstr "starts with"
+
+#: airtime_mvc/application/controllers/LocaleController.php:157
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
+#: airtime_mvc/application/models/Block.php:1389
+msgid "ends with"
+msgstr "ends with"
+
+#: airtime_mvc/application/controllers/LocaleController.php:158
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
+#: airtime_mvc/application/models/Block.php:1392
+msgid "is greater than"
+msgstr "is greater than"
+
+#: airtime_mvc/application/controllers/LocaleController.php:159
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
+#: airtime_mvc/application/models/Block.php:1393
+msgid "is less than"
+msgstr "is less than"
+
+#: airtime_mvc/application/controllers/LocaleController.php:160
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
+#: airtime_mvc/application/models/Block.php:1394
+msgid "is in the range"
+msgstr "is in the range"
+
#: airtime_mvc/application/controllers/LocaleController.php:162
msgid "Choose Storage Folder"
msgstr "Choose Storage Folder"
@@ -3168,6 +961,11 @@ msgstr ""
"Are you sure you want to change the storage folder?\n"
"This will remove the files from your Airtime library!"
+#: airtime_mvc/application/controllers/LocaleController.php:166
+#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
+msgid "Manage Media Folders"
+msgstr "Manage Media Folders"
+
#: airtime_mvc/application/controllers/LocaleController.php:167
msgid "Are you sure you want to remove the watched folder?"
msgstr "Are you sure you want to remove the watched folder?"
@@ -3189,6 +987,11 @@ msgstr "Connected to the streaming server"
msgid "The stream is disabled"
msgstr "The stream is disabled"
+#: airtime_mvc/application/controllers/LocaleController.php:173
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
+msgid "Getting information from the server..."
+msgstr "Getting information from the server..."
+
#: airtime_mvc/application/controllers/LocaleController.php:174
msgid "Can not connect to the streaming server"
msgstr "Can not connect to the streaming server"
@@ -3416,6 +1219,76 @@ msgstr ""
msgid "Month"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:249
+#: airtime_mvc/application/forms/GeneralPreferences.php:158
+msgid "Sunday"
+msgstr "Sunday"
+
+#: airtime_mvc/application/controllers/LocaleController.php:250
+#: airtime_mvc/application/forms/GeneralPreferences.php:159
+msgid "Monday"
+msgstr "Monday"
+
+#: airtime_mvc/application/controllers/LocaleController.php:251
+#: airtime_mvc/application/forms/GeneralPreferences.php:160
+msgid "Tuesday"
+msgstr "Tuesday"
+
+#: airtime_mvc/application/controllers/LocaleController.php:252
+#: airtime_mvc/application/forms/GeneralPreferences.php:161
+msgid "Wednesday"
+msgstr "Wednesday"
+
+#: airtime_mvc/application/controllers/LocaleController.php:253
+#: airtime_mvc/application/forms/GeneralPreferences.php:162
+msgid "Thursday"
+msgstr "Thursday"
+
+#: airtime_mvc/application/controllers/LocaleController.php:254
+#: airtime_mvc/application/forms/GeneralPreferences.php:163
+msgid "Friday"
+msgstr "Friday"
+
+#: airtime_mvc/application/controllers/LocaleController.php:255
+#: airtime_mvc/application/forms/GeneralPreferences.php:164
+msgid "Saturday"
+msgstr "Saturday"
+
+#: airtime_mvc/application/controllers/LocaleController.php:256
+#: airtime_mvc/application/forms/AddShowRepeats.php:35
+msgid "Sun"
+msgstr "Sun"
+
+#: airtime_mvc/application/controllers/LocaleController.php:257
+#: airtime_mvc/application/forms/AddShowRepeats.php:36
+msgid "Mon"
+msgstr "Mon"
+
+#: airtime_mvc/application/controllers/LocaleController.php:258
+#: airtime_mvc/application/forms/AddShowRepeats.php:37
+msgid "Tue"
+msgstr "Tue"
+
+#: airtime_mvc/application/controllers/LocaleController.php:259
+#: airtime_mvc/application/forms/AddShowRepeats.php:38
+msgid "Wed"
+msgstr "Wed"
+
+#: airtime_mvc/application/controllers/LocaleController.php:260
+#: airtime_mvc/application/forms/AddShowRepeats.php:39
+msgid "Thu"
+msgstr "Thu"
+
+#: airtime_mvc/application/controllers/LocaleController.php:261
+#: airtime_mvc/application/forms/AddShowRepeats.php:40
+msgid "Fri"
+msgstr "Fri"
+
+#: airtime_mvc/application/controllers/LocaleController.php:262
+#: airtime_mvc/application/forms/AddShowRepeats.php:41
+msgid "Sat"
+msgstr "Sat"
+
#: airtime_mvc/application/controllers/LocaleController.php:263
msgid "Shows longer than their scheduled time will be cut off by a following show."
msgstr "Shows longer than their scheduled time will be cut off by a following show."
@@ -3425,7 +1298,7 @@ msgid "Cancel Current Show?"
msgstr "Cancel Current Show?"
#: airtime_mvc/application/controllers/LocaleController.php:265
-#: airtime_mvc/application/controllers/LocaleController.php:309
+#: airtime_mvc/application/controllers/LocaleController.php:312
msgid "Stop recording current show?"
msgstr "Stop recording current show?"
@@ -3445,6 +1318,11 @@ msgstr "Remove all content?"
msgid "Delete selected item(s)?"
msgstr "Delete selected item(s)?"
+#: airtime_mvc/application/controllers/LocaleController.php:273
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
+msgid "Start"
+msgstr "Start"
+
#: airtime_mvc/application/controllers/LocaleController.php:274
msgid "End"
msgstr "End"
@@ -3453,580 +1331,467 @@ msgstr "End"
msgid "Duration"
msgstr "Duration"
-#: airtime_mvc/application/controllers/LocaleController.php:283
+#: airtime_mvc/application/controllers/LocaleController.php:276
+msgid "Filtering out "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:277
+msgid " of "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:278
+msgid " records"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/layouts/scripts/layout.phtml:140
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
+#: airtime_mvc/application/models/Block.php:1358
+msgid "Cue In"
+msgstr "Cue In"
+
+#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/layouts/scripts/layout.phtml:147
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
+#: airtime_mvc/application/models/Block.php:1359
+msgid "Cue Out"
+msgstr "Cue Out"
+
+#: airtime_mvc/application/controllers/LocaleController.php:286
#: airtime_mvc/application/layouts/scripts/layout.phtml:167
msgid "Fade In"
msgstr "Fade In"
-#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/controllers/LocaleController.php:287
#: airtime_mvc/application/layouts/scripts/layout.phtml:168
msgid "Fade Out"
msgstr "Fade Out"
-#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/controllers/LocaleController.php:288
msgid "Show Empty"
msgstr "Show Empty"
-#: airtime_mvc/application/controllers/LocaleController.php:286
+#: airtime_mvc/application/controllers/LocaleController.php:289
msgid "Recording From Line In"
msgstr "Recording From Line In"
-#: airtime_mvc/application/controllers/LocaleController.php:287
+#: airtime_mvc/application/controllers/LocaleController.php:290
msgid "Track preview"
msgstr "Track preview"
-#: airtime_mvc/application/controllers/LocaleController.php:291
+#: airtime_mvc/application/controllers/LocaleController.php:294
msgid "Cannot schedule outside a show."
msgstr "Cannot schedule outside a show."
-#: airtime_mvc/application/controllers/LocaleController.php:292
+#: airtime_mvc/application/controllers/LocaleController.php:295
msgid "Moving 1 Item"
msgstr "Moving 1 Item"
-#: airtime_mvc/application/controllers/LocaleController.php:293
+#: airtime_mvc/application/controllers/LocaleController.php:296
#, php-format
msgid "Moving %s Items"
msgstr "Moving %s Items"
-#: airtime_mvc/application/controllers/LocaleController.php:296
+#: airtime_mvc/application/controllers/LocaleController.php:297
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
+#: airtime_mvc/application/forms/Preferences.php:40
+#: airtime_mvc/application/forms/EditHistory.php:131
+#: airtime_mvc/application/forms/AddUser.php:110
+#: airtime_mvc/application/forms/PasswordChange.php:43
+#: airtime_mvc/application/forms/SupportSettings.php:131
+msgid "Save"
+msgstr "Save"
+
+#: airtime_mvc/application/controllers/LocaleController.php:298
+#: airtime_mvc/application/controllers/LocaleController.php:321
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
+#: airtime_mvc/application/forms/EditHistory.php:141
+#: airtime_mvc/application/forms/EditAudioMD.php:186
+msgid "Cancel"
+msgstr "Cancel"
+
+#: airtime_mvc/application/controllers/LocaleController.php:299
msgid "Fade Editor"
msgstr "Fade Editor"
-#: airtime_mvc/application/controllers/LocaleController.php:297
+#: airtime_mvc/application/controllers/LocaleController.php:300
msgid "Cue Editor"
msgstr "Cue Editor"
-#: airtime_mvc/application/controllers/LocaleController.php:298
+#: airtime_mvc/application/controllers/LocaleController.php:301
msgid "Waveform features are available in a browser supporting the Web Audio API"
msgstr "Waveform features are available in a browser supporting the Web Audio API"
-#: airtime_mvc/application/controllers/LocaleController.php:301
+#: airtime_mvc/application/controllers/LocaleController.php:304
msgid "Select all"
msgstr "Select all"
-#: airtime_mvc/application/controllers/LocaleController.php:302
+#: airtime_mvc/application/controllers/LocaleController.php:305
msgid "Select none"
msgstr "Select none"
-#: airtime_mvc/application/controllers/LocaleController.php:303
+#: airtime_mvc/application/controllers/LocaleController.php:306
msgid "Trim overbooked shows"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:304
+#: airtime_mvc/application/controllers/LocaleController.php:307
msgid "Remove selected scheduled items"
msgstr "Remove selected scheduled items"
-#: airtime_mvc/application/controllers/LocaleController.php:305
+#: airtime_mvc/application/controllers/LocaleController.php:308
msgid "Jump to the current playing track"
msgstr "Jump to the current playing track"
-#: airtime_mvc/application/controllers/LocaleController.php:306
+#: airtime_mvc/application/controllers/LocaleController.php:309
msgid "Cancel current show"
msgstr "Cancel current show"
-#: airtime_mvc/application/controllers/LocaleController.php:311
+#: airtime_mvc/application/controllers/LocaleController.php:314
msgid "Open library to add or remove content"
msgstr "Open library to add or remove content"
-#: airtime_mvc/application/controllers/LocaleController.php:312
+#: airtime_mvc/application/controllers/LocaleController.php:315
msgid "Add / Remove Content"
msgstr "Add / Remove Content"
#: airtime_mvc/application/controllers/LocaleController.php:317
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
+msgid "in use"
+msgstr "in use"
+
+#: airtime_mvc/application/controllers/LocaleController.php:318
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
+msgid "Disk"
+msgstr "Disk"
+
+#: airtime_mvc/application/controllers/LocaleController.php:320
msgid "Look in"
msgstr "Look in"
-#: airtime_mvc/application/controllers/LocaleController.php:319
+#: airtime_mvc/application/controllers/LocaleController.php:322
msgid "Open"
msgstr "Open"
+#: airtime_mvc/application/controllers/LocaleController.php:324
+#: airtime_mvc/application/forms/AddUser.php:102
+msgid "Admin"
+msgstr "Admin"
+
#: airtime_mvc/application/controllers/LocaleController.php:325
+#: airtime_mvc/application/forms/AddUser.php:100
+msgid "DJ"
+msgstr "DJ"
+
+#: airtime_mvc/application/controllers/LocaleController.php:326
+#: airtime_mvc/application/forms/AddUser.php:101
+msgid "Program Manager"
+msgstr "Program Manager"
+
+#: airtime_mvc/application/controllers/LocaleController.php:327
+#: airtime_mvc/application/forms/AddUser.php:99
+msgid "Guest"
+msgstr "Guest"
+
+#: airtime_mvc/application/controllers/LocaleController.php:328
msgid "Guests can do the following:"
msgstr "Guests can do the following:"
-#: airtime_mvc/application/controllers/LocaleController.php:326
+#: airtime_mvc/application/controllers/LocaleController.php:329
msgid "View schedule"
msgstr "View schedule"
-#: airtime_mvc/application/controllers/LocaleController.php:327
+#: airtime_mvc/application/controllers/LocaleController.php:330
msgid "View show content"
msgstr "View show content"
-#: airtime_mvc/application/controllers/LocaleController.php:328
+#: airtime_mvc/application/controllers/LocaleController.php:331
msgid "DJs can do the following:"
msgstr "DJs can do the following:"
-#: airtime_mvc/application/controllers/LocaleController.php:329
+#: airtime_mvc/application/controllers/LocaleController.php:332
msgid "Manage assigned show content"
msgstr "Manage assigned show content"
-#: airtime_mvc/application/controllers/LocaleController.php:330
+#: airtime_mvc/application/controllers/LocaleController.php:333
msgid "Import media files"
msgstr "Import media files"
-#: airtime_mvc/application/controllers/LocaleController.php:331
+#: airtime_mvc/application/controllers/LocaleController.php:334
msgid "Create playlists, smart blocks, and webstreams"
msgstr "Create playlists, smart blocks, and webstreams"
-#: airtime_mvc/application/controllers/LocaleController.php:332
+#: airtime_mvc/application/controllers/LocaleController.php:335
msgid "Manage their own library content"
msgstr "Manage their own library content"
-#: airtime_mvc/application/controllers/LocaleController.php:333
+#: airtime_mvc/application/controllers/LocaleController.php:336
msgid "Progam Managers can do the following:"
msgstr "Progam Managers can do the following:"
-#: airtime_mvc/application/controllers/LocaleController.php:334
+#: airtime_mvc/application/controllers/LocaleController.php:337
msgid "View and manage show content"
msgstr "View and manage show content"
-#: airtime_mvc/application/controllers/LocaleController.php:335
+#: airtime_mvc/application/controllers/LocaleController.php:338
msgid "Schedule shows"
msgstr "Schedule shows"
-#: airtime_mvc/application/controllers/LocaleController.php:336
+#: airtime_mvc/application/controllers/LocaleController.php:339
msgid "Manage all library content"
msgstr "Manage all library content"
-#: airtime_mvc/application/controllers/LocaleController.php:337
+#: airtime_mvc/application/controllers/LocaleController.php:340
msgid "Admins can do the following:"
msgstr "Admins can do the following:"
-#: airtime_mvc/application/controllers/LocaleController.php:338
+#: airtime_mvc/application/controllers/LocaleController.php:341
msgid "Manage preferences"
msgstr "Manage preferences"
-#: airtime_mvc/application/controllers/LocaleController.php:339
+#: airtime_mvc/application/controllers/LocaleController.php:342
msgid "Manage users"
msgstr "Manage users"
-#: airtime_mvc/application/controllers/LocaleController.php:340
+#: airtime_mvc/application/controllers/LocaleController.php:343
msgid "Manage watched folders"
msgstr "Manage watched folders"
-#: airtime_mvc/application/controllers/LocaleController.php:342
+#: airtime_mvc/application/controllers/LocaleController.php:344
+#: airtime_mvc/application/forms/RegisterAirtime.php:116
+#: airtime_mvc/application/forms/SupportSettings.php:98
+msgid "Send support feedback"
+msgstr "Send support feedback"
+
+#: airtime_mvc/application/controllers/LocaleController.php:345
msgid "View system status"
msgstr "View system status"
-#: airtime_mvc/application/controllers/LocaleController.php:343
+#: airtime_mvc/application/controllers/LocaleController.php:346
msgid "Access playout history"
msgstr "Access playout history"
-#: airtime_mvc/application/controllers/LocaleController.php:344
+#: airtime_mvc/application/controllers/LocaleController.php:347
msgid "View listener stats"
msgstr "View listener stats"
-#: airtime_mvc/application/controllers/LocaleController.php:346
+#: airtime_mvc/application/controllers/LocaleController.php:349
msgid "Show / hide columns"
msgstr "Show / hide columns"
-#: airtime_mvc/application/controllers/LocaleController.php:348
+#: airtime_mvc/application/controllers/LocaleController.php:351
msgid "From {from} to {to}"
msgstr "From {from} to {to}"
-#: airtime_mvc/application/controllers/LocaleController.php:349
+#: airtime_mvc/application/controllers/LocaleController.php:352
msgid "kbps"
msgstr "kbps"
-#: airtime_mvc/application/controllers/LocaleController.php:350
+#: airtime_mvc/application/controllers/LocaleController.php:353
msgid "yyyy-mm-dd"
msgstr "yyyy-mm-dd"
-#: airtime_mvc/application/controllers/LocaleController.php:351
+#: airtime_mvc/application/controllers/LocaleController.php:354
msgid "hh:mm:ss.t"
msgstr "hh:mm:ss.t"
-#: airtime_mvc/application/controllers/LocaleController.php:352
+#: airtime_mvc/application/controllers/LocaleController.php:355
msgid "kHz"
msgstr "kHz"
-#: airtime_mvc/application/controllers/LocaleController.php:355
+#: airtime_mvc/application/controllers/LocaleController.php:358
msgid "Su"
msgstr "Su"
-#: airtime_mvc/application/controllers/LocaleController.php:356
+#: airtime_mvc/application/controllers/LocaleController.php:359
msgid "Mo"
msgstr "Mo"
-#: airtime_mvc/application/controllers/LocaleController.php:357
+#: airtime_mvc/application/controllers/LocaleController.php:360
msgid "Tu"
msgstr "Tu"
-#: airtime_mvc/application/controllers/LocaleController.php:358
+#: airtime_mvc/application/controllers/LocaleController.php:361
msgid "We"
msgstr "We"
-#: airtime_mvc/application/controllers/LocaleController.php:359
+#: airtime_mvc/application/controllers/LocaleController.php:362
msgid "Th"
msgstr "Th"
-#: airtime_mvc/application/controllers/LocaleController.php:360
+#: airtime_mvc/application/controllers/LocaleController.php:363
msgid "Fr"
msgstr "Fr"
-#: airtime_mvc/application/controllers/LocaleController.php:361
+#: airtime_mvc/application/controllers/LocaleController.php:364
msgid "Sa"
msgstr "Sa"
-#: airtime_mvc/application/controllers/LocaleController.php:364
+#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
+msgid "Close"
+msgstr "Close"
+
+#: airtime_mvc/application/controllers/LocaleController.php:367
msgid "Hour"
msgstr "Hour"
-#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:368
msgid "Minute"
msgstr "Minute"
-#: airtime_mvc/application/controllers/LocaleController.php:366
+#: airtime_mvc/application/controllers/LocaleController.php:369
msgid "Done"
msgstr "Done"
-#: airtime_mvc/application/controllers/LocaleController.php:369
+#: airtime_mvc/application/controllers/LocaleController.php:372
msgid "Select files"
msgstr "Select files"
-#: airtime_mvc/application/controllers/LocaleController.php:370
-#: airtime_mvc/application/controllers/LocaleController.php:371
+#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:374
msgid "Add files to the upload queue and click the start button."
msgstr "Add files to the upload queue and click the start button."
-#: airtime_mvc/application/controllers/LocaleController.php:372
-#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:376
msgid "Status"
msgstr "Status"
-#: airtime_mvc/application/controllers/LocaleController.php:374
+#: airtime_mvc/application/controllers/LocaleController.php:377
msgid "Add Files"
msgstr "Add Files"
-#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:378
msgid "Stop Upload"
msgstr "Stop Upload"
-#: airtime_mvc/application/controllers/LocaleController.php:376
+#: airtime_mvc/application/controllers/LocaleController.php:379
msgid "Start upload"
msgstr "Start upload"
-#: airtime_mvc/application/controllers/LocaleController.php:377
+#: airtime_mvc/application/controllers/LocaleController.php:380
msgid "Add files"
msgstr "Add files"
-#: airtime_mvc/application/controllers/LocaleController.php:378
+#: airtime_mvc/application/controllers/LocaleController.php:381
#, php-format
msgid "Uploaded %d/%d files"
msgstr "Uploaded %d/%d files"
-#: airtime_mvc/application/controllers/LocaleController.php:379
+#: airtime_mvc/application/controllers/LocaleController.php:382
msgid "N/A"
msgstr "N/A"
-#: airtime_mvc/application/controllers/LocaleController.php:380
+#: airtime_mvc/application/controllers/LocaleController.php:383
msgid "Drag files here."
msgstr "Drag files here."
-#: airtime_mvc/application/controllers/LocaleController.php:381
+#: airtime_mvc/application/controllers/LocaleController.php:384
msgid "File extension error."
msgstr "File extension error."
-#: airtime_mvc/application/controllers/LocaleController.php:382
+#: airtime_mvc/application/controllers/LocaleController.php:385
msgid "File size error."
msgstr "File size error."
-#: airtime_mvc/application/controllers/LocaleController.php:383
+#: airtime_mvc/application/controllers/LocaleController.php:386
msgid "File count error."
msgstr "File count error."
-#: airtime_mvc/application/controllers/LocaleController.php:384
+#: airtime_mvc/application/controllers/LocaleController.php:387
msgid "Init error."
msgstr "Init error."
-#: airtime_mvc/application/controllers/LocaleController.php:385
+#: airtime_mvc/application/controllers/LocaleController.php:388
msgid "HTTP Error."
msgstr "HTTP Error."
-#: airtime_mvc/application/controllers/LocaleController.php:386
+#: airtime_mvc/application/controllers/LocaleController.php:389
msgid "Security error."
msgstr "Security error."
-#: airtime_mvc/application/controllers/LocaleController.php:387
+#: airtime_mvc/application/controllers/LocaleController.php:390
msgid "Generic error."
msgstr "Generic error."
-#: airtime_mvc/application/controllers/LocaleController.php:388
+#: airtime_mvc/application/controllers/LocaleController.php:391
msgid "IO error."
msgstr "IO error."
-#: airtime_mvc/application/controllers/LocaleController.php:389
+#: airtime_mvc/application/controllers/LocaleController.php:392
#, php-format
msgid "File: %s"
msgstr "File: %s"
-#: airtime_mvc/application/controllers/LocaleController.php:391
+#: airtime_mvc/application/controllers/LocaleController.php:394
#, php-format
msgid "%d files queued"
msgstr "%d files queued"
-#: airtime_mvc/application/controllers/LocaleController.php:392
+#: airtime_mvc/application/controllers/LocaleController.php:395
msgid "File: %f, size: %s, max file size: %m"
msgstr "File: %f, size: %s, max file size: %m"
-#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/controllers/LocaleController.php:396
msgid "Upload URL might be wrong or doesn't exist"
msgstr "Upload URL might be wrong or doesn't exist"
-#: airtime_mvc/application/controllers/LocaleController.php:394
+#: airtime_mvc/application/controllers/LocaleController.php:397
msgid "Error: File too large: "
msgstr "Error: File too large: "
-#: airtime_mvc/application/controllers/LocaleController.php:395
+#: airtime_mvc/application/controllers/LocaleController.php:398
msgid "Error: Invalid file extension: "
msgstr "Error: Invalid file extension: "
-#: airtime_mvc/application/controllers/LocaleController.php:398
+#: airtime_mvc/application/controllers/LocaleController.php:400
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
+msgid "Set Default"
+msgstr "Set Default"
+
+#: airtime_mvc/application/controllers/LocaleController.php:401
msgid "Create Entry"
msgstr "Create Entry"
-#: airtime_mvc/application/controllers/LocaleController.php:399
+#: airtime_mvc/application/controllers/LocaleController.php:402
msgid "Edit History Record"
msgstr "Edit History Record"
-#: airtime_mvc/application/controllers/LocaleController.php:402
+#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
+#: airtime_mvc/application/forms/EditHistoryItem.php:57
+msgid "No Show"
+msgstr "No Show"
+
+#: airtime_mvc/application/controllers/LocaleController.php:405
#, php-format
msgid "Copied %s row%s to the clipboard"
msgstr "Copied %s row%s to the clipboard"
-#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/controllers/LocaleController.php:406
#, php-format
msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished."
msgstr "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished."
-#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/controllers/LocaleController.php:407
msgid "New Show"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:405
+#: airtime_mvc/application/controllers/LocaleController.php:408
msgid "New Log Entry"
msgstr ""
-#: airtime_mvc/application/controllers/ScheduleController.php:389
-#, php-format
-msgid "Rebroadcast of show %s from %s at %s"
-msgstr "Rebroadcast of show %s from %s at %s"
-
-#: airtime_mvc/application/controllers/ScheduleController.php:712
-#: airtime_mvc/application/controllers/LibraryController.php:131
-msgid "Download"
-msgstr "Download"
-
-#: airtime_mvc/application/controllers/ErrorController.php:78
-msgid "Page not found."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:87
-msgid "The requested action is not supported."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:98
-msgid "You do not have permission to access this resource."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:109
-msgid "An internal application error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ListenerstatController.php:51
-msgid "Please make sure admin user/password is correct on System->Streams page."
-msgstr "Please make sure Admin User and Admin Password for the streaming server are present and correct under Stream -> Additional Options on the System -> Streams page."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:53
-#, php-format
-msgid "You are viewing an older version of %s"
-msgstr "You are viewing an older version of %s"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:140
-msgid "You cannot add tracks to dynamic blocks."
-msgstr "You cannot add tracks to dynamic blocks."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:147
-#: airtime_mvc/application/controllers/LibraryController.php:31
-#, php-format
-msgid "%s not found"
-msgstr "%s not found"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:161
-#, php-format
-msgid "You don't have permission to delete selected %s(s)."
-msgstr "You don't have permission to delete selected %s(s)."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:168
-#: airtime_mvc/application/controllers/LibraryController.php:40
-msgid "Something went wrong."
-msgstr "Something went wrong."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:174
-msgid "You can only add tracks to smart block."
-msgstr "You can only add tracks to smart block."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:192
-msgid "Untitled Playlist"
-msgstr "Untitled Playlist"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:194
-msgid "Untitled Smart Block"
-msgstr "Untitled Smart Block"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:522
-msgid "Unknown Playlist"
-msgstr "Unknown Playlist"
-
-#: airtime_mvc/application/controllers/LoginController.php:43
-msgid "Please enter your username and password."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:93
-msgid "Wrong username or password provided. Please try again."
-msgstr "Wrong username or password provided. Please try again."
-
-#: airtime_mvc/application/controllers/LoginController.php:167
-msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
-msgstr "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
-
-#: airtime_mvc/application/controllers/LoginController.php:173
-msgid "There was a problem with the username or email address you entered."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:35
-#: airtime_mvc/application/controllers/DashboardController.php:84
-msgid "You don't have permission to disconnect source."
-msgstr "You don't have permission to disconnect source."
-
-#: airtime_mvc/application/controllers/DashboardController.php:37
-#: airtime_mvc/application/controllers/DashboardController.php:86
-msgid "There is no source connected to this input."
-msgstr "There is no source connected to this input."
-
-#: airtime_mvc/application/controllers/DashboardController.php:81
-msgid "You don't have permission to switch source."
-msgstr "You don't have permission to switch source."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:72
-msgid "Preferences updated."
-msgstr "Preferences updated."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:115
-msgid "Support setting updated."
-msgstr "Support setting updated."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:123
-msgid "Support Feedback"
-msgstr "Support Feedback"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:251
-msgid "Stream Setting Updated."
-msgstr "Stream Setting Updated."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:342
-msgid "path should be specified"
-msgstr "path should be specified"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:437
-msgid "Problem with Liquidsoap..."
-msgstr "Problem with Liquidsoap..."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:493
-msgid "Request method not accepted"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:86
-msgid "User added successfully!"
-msgstr "User added successfully!"
-
-#: airtime_mvc/application/controllers/UserController.php:88
-msgid "User updated successfully!"
-msgstr "User updated successfully!"
-
-#: airtime_mvc/application/controllers/UserController.php:187
-msgid "Settings updated successfully!"
-msgstr "Settings updated successfully!"
-
-#: airtime_mvc/application/controllers/WebstreamController.php:28
-#: airtime_mvc/application/controllers/WebstreamController.php:32
-msgid "Untitled Webstream"
-msgstr "Untitled Webstream"
-
-#: airtime_mvc/application/controllers/WebstreamController.php:150
-msgid "Webstream saved."
-msgstr "Webstream saved."
-
-#: airtime_mvc/application/controllers/WebstreamController.php:158
-msgid "Invalid form values."
-msgstr "Invalid form values."
-
-#: airtime_mvc/application/controllers/LibraryController.php:95
-#: airtime_mvc/application/controllers/ShowbuilderController.php:136
-msgid "Preview"
-msgstr "Preview"
-
-#: airtime_mvc/application/controllers/LibraryController.php:115
-#: airtime_mvc/application/controllers/LibraryController.php:177
-#: airtime_mvc/application/controllers/LibraryController.php:200
-msgid "Add to Playlist"
-msgstr "Add to Playlist"
-
-#: airtime_mvc/application/controllers/LibraryController.php:117
-msgid "Add to Smart Block"
-msgstr "Add to Smart Block"
-
-#: airtime_mvc/application/controllers/LibraryController.php:147
-msgid "View track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:148
-msgid "Remove track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:154
-#: airtime_mvc/application/controllers/LibraryController.php:159
-msgid "Upload track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:169
-msgid "Duplicate Playlist"
-msgstr "Duplicate Playlist"
-
-#: airtime_mvc/application/controllers/LibraryController.php:213
-msgid "No action available"
-msgstr "No action available"
-
-#: airtime_mvc/application/controllers/LibraryController.php:233
-msgid "You don't have permission to delete selected items."
-msgstr "You don't have permission to delete selected items."
-
-#: airtime_mvc/application/controllers/LibraryController.php:279
-msgid "Could not delete file because it is scheduled in the future."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:282
-msgid "Could not delete file(s)."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:322
-#, php-format
-msgid "Copy of %s"
-msgstr "Copy of %s"
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
-msgid ""
-"To configure and use the embeddable player you must:
\n"
-" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
-" 2. Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
-msgid ""
-"To use the embeddable weekly schedule widget you must:
\n"
-" Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
#: airtime_mvc/application/controllers/ShowbuilderController.php:138
msgid "Select cursor"
msgstr "Select cursor"
@@ -4039,39 +1804,78 @@ msgstr "Remove cursor"
msgid "show does not exist"
msgstr "show does not exist"
-#: airtime_mvc/application/controllers/ApiController.php:79
-msgid "You are not allowed to access this resource."
-msgstr "You are not allowed to access this resource."
-
-#: airtime_mvc/application/controllers/ApiController.php:244
-#: airtime_mvc/application/controllers/ApiController.php:317
-#: airtime_mvc/application/controllers/ApiController.php:392
-#: airtime_mvc/application/controllers/ApiController.php:435
-#: airtime_mvc/application/controllers/ApiController.php:474
-#: airtime_mvc/application/controllers/ApiController.php:507
-msgid "You are not allowed to access this resource. "
-msgstr "You are not allowed to access this resource. "
-
-#: airtime_mvc/application/controllers/ApiController.php:698
-#: airtime_mvc/application/controllers/ApiController.php:718
-#: airtime_mvc/application/controllers/ApiController.php:730
+#: airtime_mvc/application/controllers/ScheduleController.php:389
#, php-format
-msgid "File does not exist in %s"
+msgid "Rebroadcast of show %s from %s at %s"
+msgstr "Rebroadcast of show %s from %s at %s"
+
+#: airtime_mvc/application/common/UsabilityHints.php:55
+msgid "Upload some tracks below to add them to your library!"
msgstr ""
-#: airtime_mvc/application/controllers/ApiController.php:781
-msgid "Bad request. no 'mode' parameter passed."
-msgstr "Bad request. no 'mode' parameter passed."
-
-#: airtime_mvc/application/controllers/ApiController.php:791
-msgid "Bad request. 'mode' parameter is invalid"
-msgstr "Bad request. 'mode' parameter is invalid"
-
-#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#: airtime_mvc/application/common/UsabilityHints.php:57
#, php-format
-msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
msgstr ""
+#: airtime_mvc/application/common/UsabilityHints.php:63
+msgid "Click the 'New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:65
+#, php-format
+msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:73
+msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:75
+#, php-format
+msgid ""
+"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
+" %sCreate an unlinked show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:80
+msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:82
+#, php-format
+msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:89
+msgid "Click on the show starting next and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:91
+#, php-format
+msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/DateHelper.php:213
+#, php-format
+msgid "The year %s must be within the range of 1753 - 9999"
+msgstr "The year %s must be within the range of 1753 - 9999"
+
+#: airtime_mvc/application/common/DateHelper.php:216
+#, php-format
+msgid "%s-%s-%s is not a valid date"
+msgstr "%s-%s-%s is not a valid date"
+
+#: airtime_mvc/application/common/DateHelper.php:240
+#, php-format
+msgid "%s:%s:%s is not a valid time"
+msgstr "%s:%s:%s is not a valid time"
+
+#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
+msgid "Live stream"
+msgstr "Live stream"
+
#: airtime_mvc/application/layouts/scripts/layout.phtml:63
msgid "Smart Block"
msgstr ""
@@ -4084,6 +1888,17 @@ msgstr ""
msgid "Upload"
msgstr ""
+#: airtime_mvc/application/layouts/scripts/layout.phtml:76
+#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
+msgid "Dashboard"
+msgstr ""
+
+#: airtime_mvc/application/layouts/scripts/layout.phtml:84
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
+msgid "Webstreams"
+msgstr ""
+
#: airtime_mvc/application/layouts/scripts/layout.phtml:135
#: airtime_mvc/application/layouts/scripts/layout.phtml:161
msgid "Play"
@@ -4106,401 +1921,2128 @@ msgstr "Set Cue Out"
msgid "Cursor"
msgstr "Cursor"
-#~ msgid "Show:"
-#~ msgstr "Show:"
+#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#, php-format
+msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
+msgid "Drop files here or click to browse your computer."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
+msgid "Failed"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
+msgid "Pending"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
+msgid "Recent Uploads"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
+msgid "Share"
+msgstr "Share"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
+msgid "Select stream:"
+msgstr "Select stream:"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
+msgid "mute"
+msgstr "mute"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
+msgid "unmute"
+msgstr "unmute"
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
+msgid "About"
+msgstr "About"
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
+#, php-format
+msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
+#, php-format
+msgid "%1$s %2$s is distributed under the %3$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
+#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
+#, php-format
+msgid "Welcome to %s!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
+#, php-format
+msgid "Here's how you can get started using %s to automate your broadcasts: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
+msgid "Upload audio tracks"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
+msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
+msgid "Schedule a show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
+msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
+msgid "Add tracks to your show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
+msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
+msgid "Now you're good to go!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
+#, php-format
+msgid "For more detailed help, read the %suser manual%s."
+msgstr "For more detailed help, read the %suser manual%s."
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
+#: airtime_mvc/application/configs/navigation.php:40
+msgid "Weekly Schedule"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
+#: airtime_mvc/application/forms/Player.php:77
+msgid "Preview:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
+#: airtime_mvc/application/configs/navigation.php:34
+msgid "Player"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:97
+msgid "Playout History"
+msgstr "Playout History"
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
+msgid "Log Sheet"
+msgstr "Log Sheet"
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
+msgid "File Summary"
+msgstr "File Summary"
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
+msgid "Show Summary"
+msgstr "Show Summary"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
+msgid "Expand Static Block"
+msgstr "Expand Static Block"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
+msgid "Expand Dynamic Block"
+msgstr "Expand Dynamic Block"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
+msgid "Choose some search criteria above and click Generate to create this playlist."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
+msgid "A track list will be generated when you schedule this smart block into a show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
+msgid "Drag tracks here from your library to add them to the playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
+msgid "Editing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:26
+msgid "Name:"
+msgstr "Name:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
+#: airtime_mvc/application/forms/AddShowWhat.php:54
+msgid "Description:"
+msgstr "Description:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
+#: airtime_mvc/application/forms/AddShowWhen.php:89
+msgid "Duration:"
+msgstr "Duration:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
+msgid "Toggle Details"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+msgid "Shuffle playlist"
+msgstr "Shuffle playlist"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
+msgid "Shuffle"
+msgstr "Shuffle"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
+msgid "Playlist crossfade"
+msgstr "Playlist crossfade"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+msgid "Empty playlist content"
+msgstr "Empty playlist content"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Clear"
+msgstr "Clear"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+msgid "Fade in: "
+msgstr "Fade in: "
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "Fade out: "
+msgstr "Fade out: "
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+msgid "Save playlist"
+msgstr "Save playlist"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
+msgid "No open playlist"
+msgstr "No open 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 "Show Waveform"
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "(ss.t)"
+msgstr "(ss.t)"
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Remove all content from this smart block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
+msgid "No smart block currently open"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+msgid "Cue In: "
+msgstr "Cue In: "
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "(hh:mm:ss.t)"
+msgstr "(hh:mm:ss.t)"
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "Cue Out: "
+msgstr "Cue Out: "
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
+msgid "Original Length:"
+msgstr "Original Length:"
+
+#: airtime_mvc/application/views/scripts/preference/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:56
+msgid "General"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
+msgid "Stream Settings"
+msgstr "Stream Settings"
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
+msgid "Global"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
+msgid "dB"
+msgstr "dB"
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
+msgid "Output Streams"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:3
+#: airtime_mvc/application/forms/Login.php:83
+msgid "Login"
+msgstr "Login"
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:7
+#, php-format
+msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
+msgid "Email Sent!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
+msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
+msgid "Back"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
+msgid "Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
+msgid "New password"
+msgstr "New password"
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
+msgid "Please enter and confirm your new password in the fields below."
+msgstr "Please enter and confirm your new password in the fields below."
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
+msgid "Manage Users"
+msgstr "Manage Users"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
+msgid "New User"
+msgstr "New User"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
+msgid "id"
+msgstr "id"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
+#: airtime_mvc/application/forms/PasswordRestore.php:25
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
+msgid "Username"
+msgstr "Username"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
+msgid "First Name"
+msgstr "First Name"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
+msgid "Last Name"
+msgstr "Last Name"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
+msgid "User Type"
+msgstr "User Type"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
+#, php-format
+msgid "Super Admin details can be changed in your Billing Settings."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
+msgid "Find Shows"
+msgstr "Find Shows"
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
+msgid "Choose Show Instance"
+msgstr "Choose Show Instance"
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
+msgid "Find"
+msgstr "Find"
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
+#: airtime_mvc/application/configs/navigation.php:61
+msgid "My Profile"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
+#, php-format
+msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
+msgid "Repeat Days:"
+msgstr "Repeat Days:"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
+#: airtime_mvc/application/forms/GeneralPreferences.php:53
+#: airtime_mvc/application/forms/AddShowStyle.php:64
+msgid "Remove"
+msgstr "Remove"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
+msgid "Add"
+msgstr "Add"
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
+msgid "Show Source"
+msgstr "Show Source"
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
+msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
+msgid "Register Airtime"
+msgstr "Register Airtime"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
+#, php-format
+msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
+#, php-format
+msgid "Click the box below to promote your station on %s."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
+msgid "(Required)"
+msgstr "(Required)"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
+msgid "(for verification purposes only, will not be published)"
+msgstr "(for verification purposes only, will not be published)"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
+#: airtime_mvc/application/forms/GeneralPreferences.php:43
+msgid "Note: Anything larger than 600x600 will be resized."
+msgstr "Note: Anything larger than 600x600 will be resized."
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
+msgid "Show me what I am sending "
+msgstr "Show me what I am sending "
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
+msgid "Terms and Conditions"
+msgstr "Terms and Conditions"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
+msgid "Choose Days:"
+msgstr "Choose Days:"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
+msgid "Search Criteria:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
+msgid "New Criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
+msgid "or"
+msgstr "or"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
+msgid "and"
+msgstr "and"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
+msgid "New Modifier"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
+msgid " to "
+msgstr " to "
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
+msgid "files meet the criteria"
+msgstr "files meet the criteria"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
+msgid "file meets the criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
+msgid "Filter History"
+msgstr "Filter History"
+
+#: airtime_mvc/application/views/scripts/form/login.phtml:41
+msgid "Forgot your password?"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
+msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
+msgstr "(In order to promote your station, 'Send support feedback' must be enabled)."
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
+msgid "Stream "
+msgstr "Stream "
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
+msgid "Additional Options"
+msgstr "Additional Options"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
+msgid "The following info will be displayed to listeners in their media player:"
+msgstr "The following info will be displayed to listeners in their media player:"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
+msgid "(Your radio station website)"
+msgstr "(Your radio station website)"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
+msgid "Stream URL: "
+msgstr "Stream URL: "
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
+msgid "Choose folder"
+msgstr "Choose folder"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
+msgid "Set"
+msgstr "Set"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
+msgid "Current Import Folder:"
+msgstr "Current Import Folder:"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
+#, php-format
+msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
+msgid "Remove watched directory"
+msgstr "Remove watched directory"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
+msgid "You are not watching any media folders."
+msgstr "You are not watching any media folders."
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
+msgid "Live Broadcasting"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
+msgid "Master Source"
+msgstr "Master Source"
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
+msgid "Use these settings in your broadcasting software to stream live at any time."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
+msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
+msgid "TuneIn Settings"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
+msgid "SoundCloud Settings"
+msgstr "SoundCloud Settings"
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
+msgid "Dangerous Options"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Add this show"
+msgstr "Add this show"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Update show"
+msgstr "Update show"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
+msgid "What"
+msgstr "What"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
+msgid "When"
+msgstr "When"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
+msgid "Live Stream Input"
+msgstr "Live Stream Input"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
+msgid "Who"
+msgstr "Who"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
+msgid "Style"
+msgstr "Style"
+
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
+msgid "Disk Space"
+msgstr "Disk Space"
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:3
+msgid "File import in progress..."
+msgstr "File import in progress..."
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:10
+#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
+msgid "Advanced Search Options"
+msgstr "Advanced Search Options"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
+#: airtime_mvc/application/forms/EditAudioMD.php:24
+#: airtime_mvc/application/forms/Player.php:15
+msgid "Title:"
+msgstr "Title:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
+#: airtime_mvc/application/forms/EditAudioMD.php:34
+msgid "Creator:"
+msgstr "Creator:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
+#: airtime_mvc/application/forms/EditAudioMD.php:44
+msgid "Album:"
+msgstr "Album:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
+msgid "Track:"
+msgstr "Track:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
+msgid "Length:"
+msgstr "Length:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
+msgid "Sample Rate:"
+msgstr "Sample Rate:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
+msgid "Bit Rate:"
+msgstr "Bit Rate:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
+#: airtime_mvc/application/forms/EditAudioMD.php:115
+msgid "Mood:"
+msgstr "Mood:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:45
+#: airtime_mvc/application/forms/EditAudioMD.php:62
+msgid "Genre:"
+msgstr "Genre:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
+#: airtime_mvc/application/forms/EditAudioMD.php:72
+msgid "Year:"
+msgstr "Year:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
+#: airtime_mvc/application/forms/EditAudioMD.php:85
+msgid "Label:"
+msgstr "Label:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
+#: airtime_mvc/application/forms/EditAudioMD.php:125
+msgid "BPM:"
+msgstr "BPM:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
+#: airtime_mvc/application/forms/EditAudioMD.php:95
+msgid "Composer:"
+msgstr "Composer:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
+#: airtime_mvc/application/forms/EditAudioMD.php:105
+msgid "Conductor:"
+msgstr "Conductor:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
+#: airtime_mvc/application/forms/EditAudioMD.php:135
+msgid "Copyright:"
+msgstr "Copyright:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
+msgid "Isrc Number:"
+msgstr "Isrc Number:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
+#: airtime_mvc/application/forms/EditAudioMD.php:155
+msgid "Website:"
+msgstr "Website:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
+#: airtime_mvc/application/forms/EditAudioMD.php:165
+#: airtime_mvc/application/forms/EditUser.php:119
+#: airtime_mvc/application/forms/Login.php:68
+msgid "Language:"
+msgstr "Language:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
+msgid "File Path:"
+msgstr "File Path:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
+msgid "Web Stream"
+msgstr "Web Stream"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
+msgid "Dynamic Smart Block"
+msgstr "Dynamic Smart Block"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
+msgid "Static Smart Block"
+msgstr "Static Smart Block"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
+msgid "Audio Track"
+msgstr "Audio Track"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
+msgid "Playlist Contents: "
+msgstr "Playlist Contents: "
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
+msgid "Static Smart Block Contents: "
+msgstr "Static Smart Block Contents: "
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
+msgid "Dynamic Smart Block Criteria: "
+msgstr "Dynamic Smart Block Criteria: "
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
+msgid "Limit to "
+msgstr "Limit to "
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
+#: airtime_mvc/application/forms/AddShowWhat.php:36
+msgid "URL:"
+msgstr "URL:"
+
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
+msgid "Viewing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
+msgid "Listeners"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
+msgid "Stream Data Collection Status"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
+msgid "Your trial expires in"
+msgstr "Your trial expires in"
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
+msgid "days"
+msgstr "days"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
+msgid "Previous:"
+msgstr "Previous:"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
+msgid "Next:"
+msgstr "Next:"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
+msgid "Source Streams"
+msgstr "Source Streams"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
+msgid "ON AIR"
+msgstr "ON AIR"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
+msgid "Listen"
+msgstr "Listen"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
+msgid "Logout"
+msgstr "Logout"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
+msgid "Playout History Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
+msgid "Log Sheet Templates"
+msgstr "Log Sheet Templates"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
+msgid "New Log Sheet Template"
+msgstr "New Log Sheet Template"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
+msgid "No Log Sheet Templates"
+msgstr "No Log Sheet Templates"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
+msgid "File Summary Templates"
+msgstr "File Summary Templates"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
+msgid "New File Summary Template"
+msgstr "New File Summary Template"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
+msgid "No File Summary Templates"
+msgstr "No File Summary Templates"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
+msgid "Creating File Summary Template"
+msgstr "Creating File Summary Template"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
+msgid "Creating Log Sheet Template"
+msgstr "Creating Log Sheet Template"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
+msgid "Name"
+msgstr "Name"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
+msgid "Add more elements"
+msgstr "Add more elements"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
+msgid "Add New Field"
+msgstr "Add New Field"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
+msgid "Set Default Template"
+msgstr "Set Default Template"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
+msgid "Description"
+msgstr "Description"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
+msgid "Stream URL:"
+msgstr "Stream URL:"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
+msgid "Default Length:"
+msgstr "Default Length:"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
+msgid "No webstream"
+msgstr "No webstream"
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
+#: airtime_mvc/application/views/scripts/error/error.phtml:6
+msgid "An error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
+msgid "Access Denied!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
+msgid "You do not have permission to access this page!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
+#: airtime_mvc/application/views/scripts/error/error.phtml:14
+#: airtime_mvc/application/configs/navigation.php:143
+msgid "Help"
+msgstr "Help"
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
+msgid "Oops!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
+msgid "Something went wrong!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
+msgid "Bad Request!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
+msgid "The requested action is not supported!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
+msgid "Page not found!"
+msgstr "Page not found!"
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
+msgid "We couldn't find the page you were looking for."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error.phtml:12
+msgid "Looks like the page you were looking for doesn't exist!"
+msgstr "Looks like the page you were looking for doesn't exist!"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
+msgid "previous"
+msgstr "previous"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
+msgid "play"
+msgstr "play"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
+msgid "pause"
+msgstr "pause"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
+msgid "next"
+msgstr "next"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
+msgid "stop"
+msgstr "stop"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
+msgid "max volume"
+msgstr "max volume"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
+msgid "Update Required"
+msgstr "Update Required"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
+#, php-format
+msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
+msgstr "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
+msgid "Plan type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
+msgid "Billing cycle:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
+msgid "Payment method:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
+msgid "PayPal"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
+msgid "Credit Card via 2Checkout"
+msgstr ""
+
+#: airtime_mvc/application/forms/DateRange.php:16
+#: airtime_mvc/application/forms/ShowBuilder.php:18
+msgid "Date Start:"
+msgstr "Date Start:"
+
+#: airtime_mvc/application/forms/DateRange.php:35
+#: airtime_mvc/application/forms/DateRange.php:63
+#: airtime_mvc/application/forms/ShowBuilder.php:37
+#: airtime_mvc/application/forms/ShowBuilder.php:65
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
+msgid "Invalid character entered"
+msgstr "Invalid character entered"
+
+#: airtime_mvc/application/forms/DateRange.php:44
+#: airtime_mvc/application/forms/ShowBuilder.php:46
+#: airtime_mvc/application/forms/AddShowRepeats.php:56
+msgid "Date End:"
+msgstr "Date End:"
+
+#: airtime_mvc/application/forms/ShowBuilder.php:72
+#: airtime_mvc/application/forms/ShowBuilder.php:88
+msgid "Filter by Show"
+msgstr ""
+
+#: airtime_mvc/application/forms/ShowBuilder.php:80
+msgid "All My Shows:"
+msgstr "All My Shows:"
+
+#: airtime_mvc/application/forms/AddShowWho.php:10
+msgid "Search Users:"
+msgstr "Search Users:"
+
+#: airtime_mvc/application/forms/AddShowWho.php:24
+msgid "DJs:"
+msgstr "DJs:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:30
+#: airtime_mvc/application/forms/GeneralPreferences.php:25
+#: airtime_mvc/application/forms/SupportSettings.php:18
+msgid "Station Name"
+msgstr "Station Name"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:39
+#: airtime_mvc/application/forms/SupportSettings.php:31
+msgid "Phone:"
+msgstr "Phone:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:51
+#: airtime_mvc/application/forms/AddUser.php:67
+#: airtime_mvc/application/forms/EditUser.php:83
+#: airtime_mvc/application/forms/SupportSettings.php:43
+msgid "Email:"
+msgstr "Email:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:62
+#: airtime_mvc/application/forms/SupportSettings.php:54
+msgid "Station Web Site:"
+msgstr "Station Web Site:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:73
+#: airtime_mvc/application/forms/SupportSettings.php:65
+msgid "Country:"
+msgstr "Country:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:84
+#: airtime_mvc/application/forms/SupportSettings.php:76
+msgid "City:"
+msgstr "City:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:96
+#: airtime_mvc/application/forms/SupportSettings.php:88
+msgid "Station Description:"
+msgstr "Station Description:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:106
+#: airtime_mvc/application/forms/GeneralPreferences.php:42
+msgid "Station Logo:"
+msgstr "Station Logo:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:126
+#: airtime_mvc/application/forms/SupportSettings.php:108
+#, php-format
+msgid "Promote my station on %s"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:151
+#: airtime_mvc/application/forms/SupportSettings.php:120
+#, php-format
+msgid "By checking this box, I agree to %s's %sprivacy policy%s."
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:169
+#: airtime_mvc/application/forms/SupportSettings.php:143
+msgid "You have to agree to privacy policy."
+msgstr "You have to agree to privacy policy."
+
+#: airtime_mvc/application/forms/AddShowRR.php:10
+msgid "Record from Line In?"
+msgstr "Record from Line In?"
+
+#: airtime_mvc/application/forms/AddShowRR.php:16
+msgid "Rebroadcast?"
+msgstr "Rebroadcast?"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
+#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
+msgid "Value is required and can't be empty"
+msgstr "Value is required and can't be empty"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
+msgid "'%value%' is no valid email address in the basic format local-part@hostname"
+msgstr "'%value%' is no valid email address in the basic format local-part@hostname"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
+msgid "'%value%' does not fit the date format '%format%'"
+msgstr "'%value%' does not fit the date format '%format%'"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
+msgid "'%value%' is less than %min% characters long"
+msgstr "'%value%' is less than %min% characters long"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
+msgid "'%value%' is more than %max% characters long"
+msgstr "'%value%' is more than %max% characters long"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
+msgid "'%value%' is not between '%min%' and '%max%', inclusively"
+msgstr "'%value%' is not between '%min%' and '%max%', inclusively"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
+msgid "Passwords do not match"
+msgstr "Passwords do not match"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
+msgid "Day must be specified"
+msgstr "Day must be specified"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
+msgid "Time must be specified"
+msgstr "Time must be specified"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
+msgid "Must wait at least 1 hour to rebroadcast"
+msgstr "Must wait at least 1 hour to rebroadcast"
+
+#: airtime_mvc/application/forms/PasswordRestore.php:14
+msgid "Email"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordRestore.php:36
+msgid "Reset password"
+msgstr "Reset password"
+
+#: airtime_mvc/application/forms/AddShowWhat.php:30
+msgid "Untitled Show"
+msgstr "Untitled Show"
+
+#: airtime_mvc/application/forms/AddShowWhat.php:69
+msgid "Instance Description:"
+msgstr ""
+
+#: airtime_mvc/application/forms/DangerousPreferences.php:12
+msgid "Delete All Tracks in Library"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditAudioMD.php:145
+msgid "ISRC Number:"
+msgstr "ISRC Number:"
+
+#: airtime_mvc/application/forms/EditAudioMD.php:176
+msgid "OK"
+msgstr "OK"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:33
+msgid "Station Description"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:62
+msgid "Default Crossfade Duration (s):"
+msgstr "Default Crossfade Duration (s):"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:68
+#: airtime_mvc/application/forms/GeneralPreferences.php:82
+#: airtime_mvc/application/forms/GeneralPreferences.php:96
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
+msgid "Please enter a time in seconds (eg. 0.5)"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:76
+msgid "Default Fade In (s):"
+msgstr "Default Fade In (s):"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:90
+msgid "Default Fade Out (s):"
+msgstr "Default Fade Out (s):"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:102
+msgid "Public Airtime API"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:103
+msgid "Required for embeddable schedule widget."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:105
+msgid "Disabled"
+msgstr "Disabled"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:106
+msgid "Enabled"
+msgstr "Enabled"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:109
+msgid ""
+"Enabling this feature will allow Airtime to provide schedule data\n"
+" to external widgets that can be embedded in your website."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:120
+msgid "Default Language"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:127
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
+msgid "Station Timezone"
+msgstr "Station Timezone"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:134
+msgid "Week Starts On"
+msgstr "Week Starts On"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:150
+msgid "Display login button on your Radio Page?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:29
+#: airtime_mvc/application/forms/EditUser.php:37
+#: airtime_mvc/application/forms/Login.php:41
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
+msgid "Username:"
+msgstr "Username:"
+
+#: airtime_mvc/application/forms/AddUser.php:38
+#: airtime_mvc/application/forms/EditUser.php:48
+#: airtime_mvc/application/forms/Login.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
+msgid "Password:"
+msgstr "Password:"
+
+#: airtime_mvc/application/forms/AddUser.php:46
+#: airtime_mvc/application/forms/EditUser.php:57
+msgid "Verify Password:"
+msgstr "Verify Password:"
+
+#: airtime_mvc/application/forms/AddUser.php:55
+#: airtime_mvc/application/forms/EditUser.php:67
+msgid "Firstname:"
+msgstr "First name:"
+
+#: airtime_mvc/application/forms/AddUser.php:61
+#: airtime_mvc/application/forms/EditUser.php:75
+msgid "Lastname:"
+msgstr "Last name:"
+
+#: airtime_mvc/application/forms/AddUser.php:76
+#: airtime_mvc/application/forms/EditUser.php:94
+msgid "Mobile Phone:"
+msgstr "Mobile Phone:"
+
+#: airtime_mvc/application/forms/AddUser.php:82
+#: airtime_mvc/application/forms/EditUser.php:102
+msgid "Skype:"
+msgstr "Skype:"
+
+#: airtime_mvc/application/forms/AddUser.php:88
+#: airtime_mvc/application/forms/EditUser.php:110
+msgid "Jabber:"
+msgstr "Jabber:"
+
+#: airtime_mvc/application/forms/AddUser.php:95
+msgid "User Type:"
+msgstr "User Type:"
+
+#: airtime_mvc/application/forms/AddUser.php:120
+#: airtime_mvc/application/forms/EditUser.php:155
+msgid "Login name is not unique."
+msgstr "Login name is not unique."
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
+msgid "Import Folder:"
+msgstr "Import Folder:"
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
+msgid "Watched Folders:"
+msgstr "Watched Folders:"
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
+msgid "Not a valid Directory"
+msgstr "Not a valid Directory"
+
+#: airtime_mvc/application/forms/BillingClient.php:126
+msgid "What is the name of your favorite childhood friend?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:127
+msgid "What school did you attend for sixth grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:128
+msgid "In what city did you meet your spouse/significant other?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:129
+msgid "What street did you live on in third grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:130
+msgid "What is the first name of the boy or girl that you first kissed?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:131
+msgid "In what city or town was your first job?"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
+msgid "Default License:"
+msgstr "Default License:"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
+msgid "All rights are reserved"
+msgstr "All rights are reserved"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
+msgid "The work is in the public domain"
+msgstr "The work is in the public domain"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
+msgid "Creative Commons Attribution"
+msgstr "Creative Commons Attribution"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
+msgid "Creative Commons Attribution Noncommercial"
+msgstr "Creative Commons Attribution Noncommercial"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
+msgid "Creative Commons Attribution No Derivative Works"
+msgstr "Creative Commons Attribution No Derivative Works"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
+msgid "Creative Commons Attribution Share Alike"
+msgstr "Creative Commons Attribution Share Alike"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
+msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
+msgstr "Creative Commons Attribution Noncommercial Non Derivate Works"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
+msgid "Creative Commons Attribution Noncommercial Share Alike"
+msgstr "Creative Commons Attribution Noncommercial Share Alike"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
+msgid "Default Sharing Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
+msgid "Public"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
+msgid "Private"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditUser.php:129
+msgid "Interface Timezone:"
+msgstr "Interface Timezone:"
+
+#: airtime_mvc/application/forms/Player.php:14
+msgid "Now Playing"
+msgstr "Now Playing"
+
+#: airtime_mvc/application/forms/Player.php:25
+msgid "Select Stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:28
+msgid "Auto detect the most appropriate stream to use."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:29
+msgid "Select a stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:41
+msgid " - Mobile friendly"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:45
+msgid " - The player does not support Opus streams."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:71
+msgid "Embeddable code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:72
+msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
+#: airtime_mvc/application/models/Block.php:1351
+msgid "Select criteria"
+msgstr "Select criteria"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
+#: airtime_mvc/application/models/Block.php:1353
+msgid "Bit Rate (Kbps)"
+msgstr "Bit Rate (Kbps)"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
+#: airtime_mvc/application/models/Block.php:1374
+msgid "Sample Rate (kHz)"
+msgstr "Sample Rate (kHz)"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
+msgid "hours"
+msgstr "hours"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
+msgid "minutes"
+msgstr "minutes"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
+#: airtime_mvc/application/models/Block.php:333
+msgid "items"
+msgstr "items"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
+msgid "Randomly"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
+msgid "Newest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
+msgid "Oldest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
+msgid "Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
+msgid "Static"
+msgstr "Static"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
+msgid "Dynamic"
+msgstr "Dynamic"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
+msgid "Allow Repeated Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
+msgid "Sort Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
+msgid "Limit to:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
+msgid "Generate playlist content and save criteria"
+msgstr "Generate playlist content and save criteria"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
+msgid "Generate"
+msgstr "Generate"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
+msgid "Shuffle playlist content"
+msgstr "Shuffle playlist content"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
+msgid "Limit cannot be empty or smaller than 0"
+msgstr "Limit cannot be empty or smaller than 0"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
+msgid "Limit cannot be more than 24 hrs"
+msgstr "Limit cannot be more than 24 hrs"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
+msgid "The value should be an integer"
+msgstr "The value should be an integer"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
+msgid "500 is the max item limit value you can set"
+msgstr "500 is the max item limit value you can set"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
+msgid "You must select Criteria and Modifier"
+msgstr "You must select Criteria and Modifier"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
+msgid "'Length' should be in '00:00:00' format"
+msgstr "'Length' should be in '00:00:00' format"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
+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:594
+msgid "The value has to be numeric"
+msgstr "The value has to be numeric"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
+msgid "The value should be less then 2147483648"
+msgstr "The value should be less then 2147483648"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
+#, php-format
+msgid "The value should be less than %s characters"
+msgstr "The value should be less than %s characters"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
+msgid "Value cannot be empty"
+msgstr "Value cannot be empty"
+
+#: airtime_mvc/application/forms/StreamSetting.php:26
+msgid "Icecast Vorbis Metadata"
+msgstr "Icecast Vorbis Metadata"
+
+#: airtime_mvc/application/forms/StreamSetting.php:36
+msgid "Stream Label:"
+msgstr "Stream Label:"
+
+#: airtime_mvc/application/forms/StreamSetting.php:37
+msgid "Artist - Title"
+msgstr "Artist - Title"
+
+#: airtime_mvc/application/forms/StreamSetting.php:38
+msgid "Show - Artist - Title"
+msgstr "Show - Artist - Title"
+
+#: airtime_mvc/application/forms/StreamSetting.php:39
+msgid "Station name - Show name"
+msgstr "Station name - Show name"
+
+#: airtime_mvc/application/forms/StreamSetting.php:45
+msgid "Off Air Metadata"
+msgstr "Off Air Metadata"
+
+#: airtime_mvc/application/forms/StreamSetting.php:51
+msgid "Enable Replay Gain"
+msgstr "Enable Replay Gain"
+
+#: airtime_mvc/application/forms/StreamSetting.php:57
+msgid "Replay Gain Modifier"
+msgstr "Replay Gain Modifier"
+
+#: airtime_mvc/application/forms/StreamSetting.php:65
+msgid "Streaming Server:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Airtime Pro Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Custom / 3rd Party Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordChange.php:17
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
+msgid "Password"
+msgstr "Password"
-#~ msgid "enter a time in seconds 0{.0}"
-#~ msgstr "enter a time in seconds 0{.0}"
+#: airtime_mvc/application/forms/PasswordChange.php:28
+msgid "Confirm new password"
+msgstr "Confirm new password"
-#~ msgid "Allow Remote Websites To Access \"Schedule\" Info?%s (Enable this to make front-end widgets work.)"
-#~ msgstr "Allow Remote Websites To Access \"Schedule\" Info?%s (Enable this to make front-end widgets work.)"
+#: airtime_mvc/application/forms/PasswordChange.php:36
+msgid "Password confirmation does not match your password."
+msgstr "Password confirmation does not match your password."
-#~ msgid "Default Interface Language"
-#~ msgstr "Default Interface Language"
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
+msgid "Station Language"
+msgstr ""
-#~ msgid "Get new password"
-#~ msgstr "Get new password"
-
-#~ msgid "Set smart block type:"
-#~ msgstr "Set smart block type:"
-
-#~ msgid "Allow Repeat Tracks:"
-#~ msgstr "Allow Repeat Tracks:"
-
-#~ msgid "Limit to"
-#~ msgstr "Limit to"
-
-#~ msgid "Auto Switch Off"
-#~ msgstr "Auto Switch Off"
-
-#~ msgid "Auto Switch On"
-#~ msgstr "Auto Switch On"
-
-#~ msgid "Switch Transition Fade (s)"
-#~ msgstr "Switch Transition Fade (s)"
-
-#~ msgid "enter a time in seconds 00{.000000}"
-#~ msgstr "enter a time in seconds 00{.000000}"
-
-#~ msgid "Master Username"
-#~ msgstr "Master Username"
-
-#~ msgid "Master Password"
-#~ msgstr "Master Password"
-
-#~ msgid "Master Source Connection URL"
-#~ msgstr "Master Source Connection URL"
-
-#~ msgid "Show Source Connection URL"
-#~ msgstr "Show Source Connection URL"
-
-#~ msgid "Master Source Port"
-#~ msgstr "Master Source Port"
-
-#~ msgid "Master Source Mount Point"
-#~ msgstr "Master Source Mount Point"
-
-#~ msgid "Show Source Port"
-#~ msgstr "Show Source Port"
-
-#~ msgid "Show Source Mount Point"
-#~ msgstr "Show Source Mount Point"
-
-#~ msgid "You cannot use same port as Master DJ port."
-#~ msgstr "You cannot use same port as Master DJ port."
-
-#~ msgid "Port %s is not available"
-#~ msgstr "Port %s is not available"
-
-#~ msgid "E-mail"
-#~ msgstr "E-mail"
-
-#~ msgid "Restore password"
-#~ msgstr "Restore password"
-
-#~ msgid "Hardware Audio Output"
-#~ msgstr "Hardware Audio Output"
-
-#~ msgid "Output Type"
-#~ msgstr "Output Type"
-
-#~ msgid "Date/Time Start:"
-#~ msgstr "Date/Time Start:"
-
-#~ msgid "Date/Time End:"
-#~ msgstr "Date/Time End:"
-
-#~ msgid "Automatically Upload Recorded Shows"
-#~ msgstr "Automatically Upload Recorded Shows"
-
-#~ msgid "Enable SoundCloud Upload"
-#~ msgstr "Enable SoundCloud Upload"
-
-#~ msgid "Automatically Mark Files \"Downloadable\" on SoundCloud"
-#~ msgstr "Automatically Mark Files \"Downloadable\" on SoundCloud"
-
-#~ msgid "SoundCloud Email"
-#~ msgstr "SoundCloud Email"
-
-#~ msgid "SoundCloud Password"
-#~ msgstr "SoundCloud Password"
-
-#~ msgid "SoundCloud Tags: (separate tags with spaces)"
-#~ msgstr "SoundCloud Tags: (separate tags with spaces)"
-
-#~ msgid "Default Genre:"
-#~ msgstr "Default Genre:"
-
-#~ msgid "Default Track Type:"
-#~ msgstr "Default Track Type:"
-
-#~ msgid "Original"
-#~ msgstr "Original"
-
-#~ msgid "Remix"
-#~ msgstr "Remix"
-
-#~ msgid "Live"
-#~ msgstr "Live"
-
-#~ msgid "Recording"
-#~ msgstr "Recording"
-
-#~ msgid "Spoken"
-#~ msgstr "Spoken"
-
-#~ msgid "Podcast"
-#~ msgstr "Podcast"
-
-#~ msgid "Demo"
-#~ msgstr "Demo"
-
-#~ msgid "Work in progress"
-#~ msgstr "Work in progress"
-
-#~ msgid "Stem"
-#~ msgstr "Stem"
-
-#~ msgid "Loop"
-#~ msgstr "Loop"
-
-#~ msgid "Sound Effect"
-#~ msgstr "Sound Effect"
-
-#~ msgid "One Shot Sample"
-#~ msgstr "One Shot Sample"
-
-#~ msgid "Other"
-#~ msgstr "Other"
-
-#~ msgid "Enable System Emails (Password Reset)"
-#~ msgstr "Enable System Emails (Password Reset)"
-
-#~ msgid "Reset Password 'From' Email"
-#~ msgstr "Reset Password 'From' Email"
-
-#~ msgid "Configure Mail Server"
-#~ msgstr "Configure Mail Server"
-
-#~ msgid "Requires Authentication"
-#~ msgstr "Requires Authentication"
-
-#~ msgid "Mail Server"
-#~ msgstr "Mail Server"
-
-#~ msgid "Email Address"
-#~ msgstr "Email Address"
-
-#~ msgid "Please enter your user name and password"
-#~ msgstr "Please enter your user name and password"
-
-#~ msgid "Given email not found."
-#~ msgstr "Given email not found."
-
-#~ msgid "Page not found"
-#~ msgstr "Page not found"
-
-#~ msgid "Application error"
-#~ msgstr "Application error"
-
-#~ msgid "Playlist / Block"
-#~ msgstr "Playlist / Block"
-
-#~ msgid "If you change the username or password values for an enabled stream the playout engine will be rebooted and your listeners will hear silence for 5-10 seconds. Changing the following fields will NOT cause a reboot: Stream Label (Global Settings), and Switch Transition Fade(s), Master Username, and Master Password (Input Stream Settings). If Airtime is recording, and if the change causes a playout engine restart, the recording will be interrupted."
-#~ msgstr "If you change the username or password values for an enabled stream the playout engine will be rebooted and your listeners will hear silence for 5-10 seconds. Changing the following fields will NOT cause a reboot: Stream Label (Global Settings), and Switch Transition Fade(s), Master Username, and Master Password (Input Stream Settings). If Airtime is recording, and if the change causes a playout engine restart, the recording will be interrupted."
-
-#~ msgid "today"
-#~ msgstr "today"
-
-#~ msgid "day"
-#~ msgstr "day"
-
-#~ msgid "week"
-#~ msgstr "week"
-
-#~ msgid "month"
-#~ msgstr "month"
-
-#~ msgid "Remove overbooked tracks"
-#~ msgstr "Remove overbooked tracks"
-
-#~ msgid "Soundcloud"
-#~ msgstr "Soundcloud"
-
-#~ msgid "View on Soundcloud"
-#~ msgstr "View on Soundcloud"
-
-#~ msgid "Re-upload to SoundCloud"
-#~ msgstr "Re-upload to SoundCloud"
-
-#~ msgid "Upload to SoundCloud"
-#~ msgstr "Upload to SoundCloud"
-
-#~ msgid "Could not delete some scheduled files."
-#~ msgstr "Could not delete some scheduled files."
-
-#~ msgid "Add Media"
-#~ msgstr "Add Media"
-
-#~ msgid "Library"
-#~ msgstr "Library"
-
-#~ msgid "System"
-#~ msgstr "System"
-
-#~ msgid "Preferences"
-#~ msgstr "Preferences"
-
-#~ msgid "Media Folders"
-#~ msgstr "Media Folders"
-
-#~ msgid "History"
-#~ msgstr "History"
-
-#~ msgid "Service"
-#~ msgstr "Service"
-
-#~ msgid "Uptime"
-#~ msgstr "Uptime"
-
-#~ msgid "CPU"
-#~ msgstr "CPU"
-
-#~ msgid "Memory"
-#~ msgstr "Memory"
-
-#~ msgid "Email / Mail Server Settings"
-#~ msgstr "Email / Mail Server Settings"
-
-#~ msgid "Connection URL: "
-#~ msgstr "Connection URL: "
-
-#~ msgid "Input Stream Settings"
-#~ msgstr "Input Stream Settings"
-
-#~ msgid "Master Source Connection URL:"
-#~ msgstr "Master Source Connection URL:"
-
-#~ msgid "Override"
-#~ msgstr "Override"
-
-#~ msgid "RESET"
-#~ msgstr "RESET"
-
-#~ msgid "Show Source Connection URL:"
-#~ msgstr "Show Source Connection URL:"
-
-#~ msgid "Filter By Show:"
-#~ msgstr "Filter By Show:"
-
-#~ msgid "%s's Settings"
-#~ msgstr "%s's Settings"
-
-#~ msgid "Sourcefabric Privacy Policy"
-#~ msgstr "Sourcefabric Privacy Policy"
-
-#~ msgid "Smart Block Options"
-#~ msgstr "Smart Block Options"
-
-#~ msgid "file meet the criteria"
-#~ msgstr "file meet the criteria"
-
-#~ msgid "New"
-#~ msgstr "New"
-
-#~ msgid "New Playlist"
-#~ msgstr "New Playlist"
-
-#~ msgid "New Smart Block"
-#~ msgstr "New Smart Block"
-
-#~ msgid "New Webstream"
-#~ msgstr "New Webstream"
-
-#~ msgid "View / edit description"
-#~ msgstr "View / edit description"
-
-#~ msgid "Global Settings"
-#~ msgstr "Global Settings"
-
-#~ msgid "Output Stream Settings"
-#~ msgstr "Output Stream Settings"
-
-#~ msgid "Listener Count Over Time"
-#~ msgstr "Listener Count Over Time"
-
-#~ msgid "Begin by adding your files to the library using the 'Add Media' menu button. You can drag and drop your files to this window too."
-#~ msgstr "Begin by adding your files to the library using the 'Add Media' menu button. You can drag and drop your files to this window too."
-
-#~ msgid "Create a show by going to 'Calendar' in the menu bar, and then clicking the '+ Show' icon. This can be either a one-time or repeating show. Only admins and program managers can add shows."
-#~ msgstr "Create a show by going to 'Calendar' in the menu bar, and then clicking the '+ Show' icon. This can be either a one-time or repeating show. Only admins and program managers can add shows."
-
-#~ msgid "Add media to the show by going to your show in the Schedule calendar, left-clicking on it and selecting 'Add / Remove Content'"
-#~ msgstr "Add media to the show by going to your show in the Schedule calendar, left-clicking on it and selecting 'Add / Remove Content'"
-
-#~ msgid "Select your media from the left pane and drag them to your show in the right pane."
-#~ msgstr "Select your media from the left pane and drag them to your show in the right pane."
-
-#~ msgid "Then you're good to go!"
-#~ msgstr "Then you're good to go!"
-
-#~ msgid "Please enter your account e-mail address. You will receive a link to create a new password via e-mail."
-#~ msgstr "Please enter your account e-mail address. You will receive a link to create a new password via e-mail."
-
-#~ msgid "Email sent"
-#~ msgstr "Email sent"
-
-#~ msgid "An email has been sent"
-#~ msgstr "An email has been sent"
-
-#~ msgid "Back to login screen"
-#~ msgstr "Back to login screen"
-
-#~ msgid "Scheduled Play"
-#~ msgstr "Scheduled Play"
-
-#~ msgid "Station time"
-#~ msgstr "Station time"
-
-#~ msgid "Zend Framework Default Application"
-#~ msgstr "Zend Framework Default Application"
-
-#~ msgid "Empty smart block"
-#~ msgstr "Empty smart block"
-
-#~ msgid "Empty playlist"
-#~ msgstr "Empty playlist"
-
-#~ msgid "Empty smart block content"
-#~ msgstr "Empty smart block content"
-
-#~ msgid "No open smart block"
-#~ msgstr "No open smart block"
-
-#~ msgid "Record & Rebroadcast"
-#~ msgstr "Record & Rebroadcast"
-
-#~ msgid "Failed to create 'organize' directory."
-#~ msgstr "Failed to create 'organize' directory."
-
-#~ msgid "The file was not uploaded, there is %s MB of disk space left and the file you are uploading has a size of %s MB."
-#~ msgstr "The file was not uploaded, there is %s MB of disk space left and the file you are uploading has a size of %s MB."
-
-#~ msgid "This file appears to be corrupted and will not be added to media library."
-#~ msgstr "This file appears to be corrupted and will not be added to media library."
-
-#~ msgid "The file was not uploaded, this error can occur if the computer hard drive does not have enough disk space or the stor directory does not have correct write permissions."
-#~ msgstr "The file was not uploaded, this error can occur if the computer hard drive does not have enough disk space or the stor directory does not have correct write permissions."
-
-#~ msgid ""
-#~ "Hi %s, \n"
-#~ "\n"
-#~ "Click this link to reset your password: "
-#~ msgstr ""
-#~ "Hi %s, \n"
-#~ "\n"
-#~ "Click this link to reset your password: "
-
-#~ msgid "Show Content"
-#~ msgstr "Show Content"
-
-#~ msgid "Remove All Content"
-#~ msgstr "Remove All Content"
-
-#~ msgid "Cancel Current Show"
-#~ msgstr "Cancel Current Show"
-
-#~ msgid "Edit This Instance"
-#~ msgstr "Edit This Instance"
-
-#~ msgid "Delete This Instance"
-#~ msgstr "Delete This Instance"
-
-#~ msgid "Delete This Instance and All Following"
-#~ msgstr "Delete This Instance and All Following"
-
-#~ msgid "Please selection an option"
-#~ msgstr "Please select an option"
-
-#~ msgid "No Records"
-#~ msgstr "No Records"
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
+msgid "Enabled:"
+msgstr "Enabled:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
+msgid "Mobile:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
+msgid "Stream Type:"
+msgstr "Stream Type:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
+msgid "Service Type:"
+msgstr "Service Type:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
+msgid "Channels:"
+msgstr "Channels:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "1 - Mono"
+msgstr "1 - Mono"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "2 - Stereo"
+msgstr "2 - Stereo"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
+msgid "Server"
+msgstr "Server"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
+msgid "Port"
+msgstr "Port"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
+msgid "Only numbers are allowed."
+msgstr "Only numbers are allowed."
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
+msgid "URL"
+msgstr "URL"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
+msgid "Mount Point"
+msgstr "Mount Point"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
+msgid "Admin User"
+msgstr "Admin User"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
+msgid "Admin Password"
+msgstr "Admin Password"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
+msgid "Server cannot be empty."
+msgstr "Server cannot be empty."
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
+msgid "Port cannot be empty."
+msgstr "Port cannot be empty."
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
+msgid "Mount cannot be empty with Icecast server."
+msgstr "Mount cannot be empty with Icecast server."
+
+#: airtime_mvc/application/forms/AddShowWhen.php:16
+msgid "'%value%' does not fit the time format 'HH:mm'"
+msgstr "'%value%' does not fit the time format 'HH:mm'"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:22
+msgid "Start Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:37
+msgid "In the Future:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:64
+msgid "End Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:98
+msgid "Timezone:"
+msgstr "Timezone:"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:107
+msgid "Repeats?"
+msgstr "Repeats?"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:139
+msgid "Cannot create show in the past"
+msgstr "Cannot create show in the past"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:147
+msgid "Cannot modify start date/time of the show that is already started"
+msgstr "Cannot modify start date/time of the show that is already started"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:156
+#: airtime_mvc/application/models/Show.php:282
+msgid "End date/time cannot be in the past"
+msgstr "End date/time cannot be in the past"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:164
+msgid "Cannot have duration < 0m"
+msgstr "Cannot have duration < 0m"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:168
+msgid "Cannot have duration 00h 00m"
+msgstr "Cannot have duration 00h 00m"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:175
+msgid "Cannot have duration greater than 24h"
+msgstr "Cannot have duration greater than 24h"
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:19
+msgid "Push metadata to your station on TuneIn?"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:24
+msgid "Station ID:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:30
+msgid "Partner Key:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:36
+msgid "Partner Id:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:77
+#: airtime_mvc/application/forms/TuneInPreferences.php:86
+msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:10
+#, php-format
+msgid "Use %s Authentication:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:16
+msgid "Use Custom Authentication:"
+msgstr "Use Custom Authentication:"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:25
+msgid "Custom Username"
+msgstr "Custom Username"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:37
+msgid "Custom Password"
+msgstr "Custom Password"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:48
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
+msgid "Host:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
+msgid "Port:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:60
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
+msgid "Mount:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:77
+msgid "Username field cannot be empty."
+msgstr "Username field cannot be empty."
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:82
+msgid "Password field cannot be empty."
+msgstr "Password field cannot be empty."
+
+#: airtime_mvc/application/forms/AddShowStyle.php:12
+msgid "Background Colour:"
+msgstr "Background Colour:"
+
+#: airtime_mvc/application/forms/AddShowStyle.php:31
+msgid "Text Colour:"
+msgstr "Text Colour:"
+
+#: airtime_mvc/application/forms/AddShowStyle.php:49
+msgid "Current Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:72
+msgid "Show Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:87
+msgid "Logo Preview:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Login.php:102
+msgid "Type the characters you see in the picture below."
+msgstr "Type the characters you see in the picture below."
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
+msgid "Auto Switch Off:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
+msgid "Auto Switch On:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
+msgid "Switch Transition Fade (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:10
+msgid "Link:"
+msgstr "Link:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:16
+msgid "Repeat Type:"
+msgstr "Repeat Type:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:19
+msgid "weekly"
+msgstr "weekly"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:20
+msgid "every 2 weeks"
+msgstr "every 2 weeks"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:21
+msgid "every 3 weeks"
+msgstr "every 3 weeks"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:22
+msgid "every 4 weeks"
+msgstr "every 4 weeks"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:23
+msgid "monthly"
+msgstr "monthly"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:32
+msgid "Select Days:"
+msgstr "Select Days:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:47
+msgid "Repeat By:"
+msgstr "Repeat By:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the month"
+msgstr "day of the month"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the week"
+msgstr "day of the week"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:69
+msgid "No End?"
+msgstr "No End?"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:106
+msgid "End date must be after start date"
+msgstr "End date must be after start date"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:113
+msgid "Please select a repeat day"
+msgstr "Please select a repeat day"
+
+#: airtime_mvc/application/configs/navigation.php:12
+msgid "Radio Page"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:19
+msgid "Calendar"
+msgstr "Calendar"
+
+#: airtime_mvc/application/configs/navigation.php:26
+msgid "Widgets"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:48
+msgid "Settings"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:67
+msgid "Users"
+msgstr "Users"
+
+#: airtime_mvc/application/configs/navigation.php:74
+msgid "Streams"
+msgstr "Streams"
+
+#: airtime_mvc/application/configs/navigation.php:82
+msgid "Analytics"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:90
+msgid "Listener Stats"
+msgstr "Listener Stats"
+
+#: airtime_mvc/application/configs/navigation.php:104
+msgid "History Templates"
+msgstr "History Templates"
+
+#: airtime_mvc/application/configs/navigation.php:113
+msgid "Billing"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:120
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:127
+msgid "Account Details"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:134
+msgid "View Invoices"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:150
+msgid "Getting Started"
+msgstr "Getting Started"
+
+#: airtime_mvc/application/configs/navigation.php:157
+msgid "FAQ"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:162
+msgid "User Manual"
+msgstr "User Manual"
+
+#: airtime_mvc/application/configs/navigation.php:167
+msgid "File a Support Ticket"
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:833
+#: airtime_mvc/application/models/Playlist.php:812
+msgid "Cue in and cue out are null."
+msgstr "Cue in and cue out are null."
+
+#: airtime_mvc/application/models/Block.php:868
+#: airtime_mvc/application/models/Block.php:924
+#: airtime_mvc/application/models/Playlist.php:851
+#: airtime_mvc/application/models/Playlist.php:895
+msgid "Can't set cue out to be greater than file length."
+msgstr "Can't set cue out to be greater than file length."
+
+#: airtime_mvc/application/models/Block.php:879
+#: airtime_mvc/application/models/Block.php:900
+#: airtime_mvc/application/models/Playlist.php:843
+#: airtime_mvc/application/models/Playlist.php:868
+msgid "Can't set cue in to be larger than cue out."
+msgstr "Can't set cue in to be larger than cue out."
+
+#: airtime_mvc/application/models/Block.php:935
+#: airtime_mvc/application/models/Playlist.php:887
+msgid "Can't set cue out to be smaller than cue in."
+msgstr "Can't set cue out to be smaller than cue in."
+
+#: airtime_mvc/application/models/Block.php:1366
+msgid "Upload Time"
+msgstr ""
+
+#: airtime_mvc/application/models/ShowBuilder.php:212
+#, php-format
+msgid "Rebroadcast of %s from %s"
+msgstr "Rebroadcast of %s from %s"
+
+#: airtime_mvc/application/models/Preference.php:460
+#, php-format
+msgid "Powered by %s"
+msgstr ""
+
+#: airtime_mvc/application/models/Preference.php:588
+msgid "Select Country"
+msgstr "Select Country"
+
+#: airtime_mvc/application/models/MusicDir.php:160
+#, php-format
+msgid "%s is already watched."
+msgstr "%s is already watched."
+
+#: airtime_mvc/application/models/MusicDir.php:164
+#, php-format
+msgid "%s contains nested watched directory: %s"
+msgstr "%s contains nested watched directory: %s"
+
+#: airtime_mvc/application/models/MusicDir.php:168
+#, php-format
+msgid "%s is nested within existing watched directory: %s"
+msgstr "%s is nested within existing watched directory: %s"
+
+#: airtime_mvc/application/models/MusicDir.php:189
+#: airtime_mvc/application/models/MusicDir.php:370
+#, php-format
+msgid "%s is not a valid directory."
+msgstr "%s is not a valid directory."
+
+#: airtime_mvc/application/models/MusicDir.php:232
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list"
+msgstr "%s is already set as the current storage dir or in the watched folders list"
+
+#: airtime_mvc/application/models/MusicDir.php:388
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list."
+msgstr "%s is already set as the current storage dir or in the watched folders list."
+
+#: airtime_mvc/application/models/MusicDir.php:431
+#, php-format
+msgid "%s doesn't exist in the watched list."
+msgstr "%s doesn't exist in the watched list."
+
+#: airtime_mvc/application/models/Auth.php:33
+#, php-format
+msgid ""
+"Hi %s, \n"
+"\n"
+"Please click this link to reset your password: "
+msgstr ""
+
+#: airtime_mvc/application/models/Auth.php:38
+#, php-format
+msgid "%s Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/models/Show.php:184
+msgid "Shows can have a max length of 24 hours."
+msgstr "Shows can have a max length of 24 hours."
+
+#: airtime_mvc/application/models/Show.php:293
+msgid ""
+"Cannot schedule overlapping shows.\n"
+"Note: Resizing a repeating show affects all of its repeats."
+msgstr ""
+"Cannot schedule overlapping shows.\n"
+"Note: Resizing a repeating show affects all of its repeats."
+
+#: airtime_mvc/application/models/Scheduler.php:73
+msgid "Cannot move items out of linked shows"
+msgstr "Cannot move items out of linked shows"
+
+#: airtime_mvc/application/models/Scheduler.php:119
+msgid "The schedule you're viewing is out of date! (sched mismatch)"
+msgstr "The schedule you're viewing is out of date! (sched mismatch)"
+
+#: airtime_mvc/application/models/Scheduler.php:124
+msgid "The schedule you're viewing is out of date! (instance mismatch)"
+msgstr "The schedule you're viewing is out of date! (instance mismatch)"
+
+#: airtime_mvc/application/models/Scheduler.php:132
+#: airtime_mvc/application/models/Scheduler.php:458
+#: airtime_mvc/application/models/Scheduler.php:490
+msgid "The schedule you're viewing is out of date!"
+msgstr "The schedule you're viewing is out of date!"
+
+#: airtime_mvc/application/models/Scheduler.php:142
+#, php-format
+msgid "You are not allowed to schedule show %s."
+msgstr "You are not allowed to schedule show %s."
+
+#: airtime_mvc/application/models/Scheduler.php:146
+msgid "You cannot add files to recording shows."
+msgstr "You cannot add files to recording shows."
+
+#: airtime_mvc/application/models/Scheduler.php:152
+#, php-format
+msgid "The show %s is over and cannot be scheduled."
+msgstr "The show %s is over and cannot be scheduled."
+
+#: airtime_mvc/application/models/Scheduler.php:159
+#, php-format
+msgid "The show %s has been previously updated!"
+msgstr "The show %s has been previously updated!"
+
+#: airtime_mvc/application/models/Scheduler.php:178
+msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
+msgstr "Content in linked shows must be scheduled before or after any one is broadcasted"
+
+#: airtime_mvc/application/models/Scheduler.php:195
+msgid "Cannot schedule a playlist that contains missing files."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:216
+#: airtime_mvc/application/models/Scheduler.php:305
+msgid "A selected File does not exist!"
+msgstr "A selected File does not exist!"
+
+#: airtime_mvc/application/models/Schedule.php:206
+msgid "livestream"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:166
+msgid "Length needs to be greater than 0 minutes"
+msgstr "Length needs to be greater than 0 minutes"
+
+#: airtime_mvc/application/models/Webstream.php:171
+msgid "Length should be of form \"00h 00m\""
+msgstr "Length should be of form \"00h 00m\""
+
+#: airtime_mvc/application/models/Webstream.php:184
+msgid "URL should be of form \"http://domain\""
+msgstr "URL should be of form \"http://domain\""
+
+#: airtime_mvc/application/models/Webstream.php:187
+msgid "URL should be 512 characters or less"
+msgstr "URL should be 512 characters or less"
+
+#: airtime_mvc/application/models/Webstream.php:193
+msgid "No MIME type found for webstream."
+msgstr "No MIME type found for webstream."
+
+#: airtime_mvc/application/models/Webstream.php:209
+msgid "Webstream name cannot be empty"
+msgstr "Webstream name cannot be empty"
+
+#: airtime_mvc/application/models/Webstream.php:278
+msgid "Could not parse XSPF playlist"
+msgstr "Could not parse XSPF playlist"
+
+#: airtime_mvc/application/models/Webstream.php:298
+msgid "Could not parse PLS playlist"
+msgstr "Could not parse PLS playlist"
+
+#: airtime_mvc/application/models/Webstream.php:318
+msgid "Could not parse M3U playlist"
+msgstr "Could not parse M3U playlist"
+
+#: airtime_mvc/application/models/Webstream.php:332
+msgid "Invalid webstream - This appears to be a file download."
+msgstr "Invalid webstream - This appears to be a file download."
+
+#: airtime_mvc/application/models/Webstream.php:336
+#, php-format
+msgid "Unrecognized stream type: %s"
+msgstr "Unrecognized stream type: %s"
+
+#: airtime_mvc/public/setup/rabbitmq-setup.php:78
+msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
+msgstr ""
+
+#~ msgid "My Account"
+#~ msgstr "My Account"
diff --git a/airtime_mvc/locale/en_CA/LC_MESSAGES/pro.po b/airtime_mvc/locale/en_CA/LC_MESSAGES/pro.po
index 866ee0acb..f59b52c3d 100644
--- a/airtime_mvc/locale/en_CA/LC_MESSAGES/pro.po
+++ b/airtime_mvc/locale/en_CA/LC_MESSAGES/pro.po
@@ -1,3 +1,139 @@
+#: airtime_mvc/application/controllers/LoginController.php:170
+#, php-format
+msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
+#, php-format
+msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
+#, php-format
+msgid "If you are the primary owner of this station, please reset your password here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
+msgid "Thank you!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
+msgid "Your station has been upgraded successfully."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
+msgid "Return to Airtime"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+#, php-format
+msgid "Purchase an %s plan!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+msgid "My Account"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
+msgid "Upgrade today to get more listeners and storage space!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
+msgid "View Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:257
+msgid "Your Current Plan:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:291
+msgid "Please enter your payment details:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
+msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
+msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:17
+msgid "First Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:26
+msgid "Last Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:35
+msgid "Company Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:44
+msgid "Email Address:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:54
+msgid "Address 1:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:63
+msgid "Address 2:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:70
+msgid "City:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:80
+msgid "State/Region:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:89
+msgid "Zip Code / Postal Code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:102
+msgid "Country:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:112
+msgid "Phone Number:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:121
+msgid "Please choose a security question:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:135
+msgid "Please enter an answer:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:152
+msgid "VAT/Tax ID (EU only)"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:162
+msgid "Subscribe to Sourcefabric newsletter"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:172
+msgid "Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:181
+msgid "Verify Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:193
+msgid "Save"
+msgstr ""
+
#: airtime_mvc/application/models/Auth.php:35
#, php-format
msgid ""
@@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
-msgid "Thank you!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
-msgid "Your station has been upgraded successfully."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
-msgid "Return to Airtime"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
-#, php-format
-msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
-msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
-msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
-#, php-format
-msgid "If you are the primary owner of this station, please reset your password here."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:170
-#, php-format
-msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
-msgstr ""
diff --git a/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.mo
index 58674dc0f..01e70194c 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 33073514e..1e34d2d99 100644
--- a/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po
+++ b/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po
@@ -4,14 +4,14 @@
#
# Translators:
# Daniel James , 2014
-# Daniel James , 2014
+# Daniel James , 2014-2015
# Sourcefabric , 2012
msgid ""
msgstr ""
"Project-Id-Version: Airtime\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-09-03 10:24-0400\n"
-"PO-Revision-Date: 2015-08-31 13:14+0000\n"
+"POT-Creation-Date: 2015-09-04 11:17-0400\n"
+"PO-Revision-Date: 2015-09-04 14:46+0000\n"
"Last-Translator: Daniel James \n"
"Language-Team: English (United Kingdom) (http://www.transifex.com/sourcefabric/airtime/language/en_GB/)\n"
"Language: en_GB\n"
@@ -20,132 +20,6 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: airtime_mvc/public/setup/rabbitmq-setup.php:78
-msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1117
-#: airtime_mvc/application/services/HistoryService.php:1157
-#: airtime_mvc/application/services/HistoryService.php:1174
-#: airtime_mvc/application/models/Block.php:1375
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
-#: airtime_mvc/application/controllers/LocaleController.php:76
-msgid "Title"
-msgstr "Title"
-
-#: airtime_mvc/application/services/HistoryService.php:1118
-#: airtime_mvc/application/services/HistoryService.php:1158
-#: airtime_mvc/application/services/HistoryService.php:1175
-#: airtime_mvc/application/models/Block.php:1360
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
-#: airtime_mvc/application/controllers/LocaleController.php:77
-msgid "Creator"
-msgstr "Creator"
-
-#: airtime_mvc/application/services/HistoryService.php:1119
-#: airtime_mvc/application/models/Block.php:1352
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
-#: airtime_mvc/application/controllers/LocaleController.php:78
-msgid "Album"
-msgstr "Album"
-
-#: airtime_mvc/application/services/HistoryService.php:1120
-#: airtime_mvc/application/services/HistoryService.php:1177
-#: airtime_mvc/application/models/Block.php:1369
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
-#: airtime_mvc/application/controllers/LocaleController.php:91
-msgid "Length"
-msgstr "Length"
-
-#: airtime_mvc/application/services/HistoryService.php:1121
-#: airtime_mvc/application/models/Block.php:1362
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
-#: airtime_mvc/application/controllers/LocaleController.php:85
-msgid "Genre"
-msgstr "Genre"
-
-#: airtime_mvc/application/services/HistoryService.php:1122
-#: airtime_mvc/application/models/Block.php:1371
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
-#: airtime_mvc/application/controllers/LocaleController.php:93
-msgid "Mood"
-msgstr "Mood"
-
-#: airtime_mvc/application/services/HistoryService.php:1123
-#: airtime_mvc/application/models/Block.php:1364
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
-#: airtime_mvc/application/controllers/LocaleController.php:87
-msgid "Label"
-msgstr "Label"
-
-#: airtime_mvc/application/services/HistoryService.php:1124
-#: airtime_mvc/application/services/HistoryService.php:1178
-#: airtime_mvc/application/models/Block.php:1355
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
-#: airtime_mvc/application/controllers/LocaleController.php:81
-msgid "Composer"
-msgstr "Composer"
-
-#: airtime_mvc/application/services/HistoryService.php:1125
-#: airtime_mvc/application/models/Block.php:1363
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
-#: airtime_mvc/application/controllers/LocaleController.php:86
-msgid "ISRC"
-msgstr "ISRC"
-
-#: airtime_mvc/application/services/HistoryService.php:1126
-#: airtime_mvc/application/services/HistoryService.php:1179
-#: airtime_mvc/application/models/Block.php:1357
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
-#: airtime_mvc/application/controllers/LocaleController.php:83
-msgid "Copyright"
-msgstr "Copyright"
-
-#: airtime_mvc/application/services/HistoryService.php:1127
-#: airtime_mvc/application/models/Block.php:1379
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
-#: airtime_mvc/application/controllers/LocaleController.php:100
-msgid "Year"
-msgstr "Year"
-
-#: airtime_mvc/application/services/HistoryService.php:1128
-msgid "Track"
-msgstr "Track"
-
-#: airtime_mvc/application/services/HistoryService.php:1129
-#: airtime_mvc/application/models/Block.php:1356
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
-#: airtime_mvc/application/controllers/LocaleController.php:82
-msgid "Conductor"
-msgstr "Conductor"
-
-#: airtime_mvc/application/services/HistoryService.php:1130
-#: airtime_mvc/application/models/Block.php:1365
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
-#: airtime_mvc/application/controllers/LocaleController.php:88
-msgid "Language"
-msgstr "Language"
-
-#: airtime_mvc/application/services/HistoryService.php:1155
-#: airtime_mvc/application/forms/EditHistoryItem.php:32
-msgid "Start Time"
-msgstr "Start Time"
-
-#: airtime_mvc/application/services/HistoryService.php:1156
-#: airtime_mvc/application/forms/EditHistoryItem.php:44
-msgid "End Time"
-msgstr "End Time"
-
-#: airtime_mvc/application/services/HistoryService.php:1176
-msgid "Played"
-msgstr "Played"
-
#: airtime_mvc/application/services/CalendarService.php:50
msgid "Record file doesn't exist"
msgstr "Record file doesn't exist"
@@ -157,25 +31,25 @@ msgstr "View Recorded File Metadata"
#: airtime_mvc/application/services/CalendarService.php:61
#: airtime_mvc/application/services/CalendarService.php:93
msgid "View"
-msgstr ""
+msgstr "View"
#: airtime_mvc/application/services/CalendarService.php:81
msgid "Schedule Tracks"
-msgstr ""
+msgstr "Schedule Tracks"
#: airtime_mvc/application/services/CalendarService.php:106
msgid "Clear Show"
-msgstr ""
+msgstr "Clear Show"
#: airtime_mvc/application/services/CalendarService.php:120
#: airtime_mvc/application/services/CalendarService.php:125
msgid "Cancel Show"
-msgstr ""
+msgstr "Cancel Show"
#: airtime_mvc/application/services/CalendarService.php:146
#: airtime_mvc/application/services/CalendarService.php:165
msgid "Edit Instance"
-msgstr ""
+msgstr "Edit Instance"
#: airtime_mvc/application/services/CalendarService.php:152
#: airtime_mvc/application/controllers/LibraryController.php:184
@@ -200,11 +74,11 @@ msgstr "Delete"
#: airtime_mvc/application/services/CalendarService.php:194
msgid "Delete Instance"
-msgstr ""
+msgstr "Delete Instance"
#: airtime_mvc/application/services/CalendarService.php:200
msgid "Delete Instance and All Following"
-msgstr ""
+msgstr "Delete Instance and All Following"
#: airtime_mvc/application/services/CalendarService.php:254
msgid "Permission denied"
@@ -241,2604 +115,386 @@ msgstr "Show was deleted because recorded show does not exist!"
msgid "Must wait 1 hour to rebroadcast."
msgstr "Must wait 1 hour to rebroadcast."
-#: airtime_mvc/application/models/Schedule.php:206
-msgid "livestream"
-msgstr ""
+#: airtime_mvc/application/services/HistoryService.php:1117
+#: airtime_mvc/application/services/HistoryService.php:1157
+#: airtime_mvc/application/services/HistoryService.php:1174
+#: airtime_mvc/application/controllers/LocaleController.php:76
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
+#: airtime_mvc/application/models/Block.php:1375
+msgid "Title"
+msgstr "Title"
-#: airtime_mvc/application/models/ShowBuilder.php:212
+#: airtime_mvc/application/services/HistoryService.php:1118
+#: airtime_mvc/application/services/HistoryService.php:1158
+#: airtime_mvc/application/services/HistoryService.php:1175
+#: airtime_mvc/application/controllers/LocaleController.php:77
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
+#: airtime_mvc/application/models/Block.php:1360
+msgid "Creator"
+msgstr "Creator"
+
+#: airtime_mvc/application/services/HistoryService.php:1119
+#: airtime_mvc/application/controllers/LocaleController.php:78
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
+#: airtime_mvc/application/models/Block.php:1352
+msgid "Album"
+msgstr "Album"
+
+#: airtime_mvc/application/services/HistoryService.php:1120
+#: airtime_mvc/application/services/HistoryService.php:1177
+#: airtime_mvc/application/controllers/LocaleController.php:91
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
+#: airtime_mvc/application/models/Block.php:1369
+msgid "Length"
+msgstr "Length"
+
+#: airtime_mvc/application/services/HistoryService.php:1121
+#: airtime_mvc/application/controllers/LocaleController.php:85
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
+#: airtime_mvc/application/models/Block.php:1362
+msgid "Genre"
+msgstr "Genre"
+
+#: airtime_mvc/application/services/HistoryService.php:1122
+#: airtime_mvc/application/controllers/LocaleController.php:93
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
+#: airtime_mvc/application/models/Block.php:1371
+msgid "Mood"
+msgstr "Mood"
+
+#: airtime_mvc/application/services/HistoryService.php:1123
+#: airtime_mvc/application/controllers/LocaleController.php:87
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
+#: airtime_mvc/application/models/Block.php:1364
+msgid "Label"
+msgstr "Label"
+
+#: airtime_mvc/application/services/HistoryService.php:1124
+#: airtime_mvc/application/services/HistoryService.php:1178
+#: airtime_mvc/application/controllers/LocaleController.php:81
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
+#: airtime_mvc/application/models/Block.php:1355
+msgid "Composer"
+msgstr "Composer"
+
+#: airtime_mvc/application/services/HistoryService.php:1125
+#: airtime_mvc/application/controllers/LocaleController.php:86
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
+#: airtime_mvc/application/models/Block.php:1363
+msgid "ISRC"
+msgstr "ISRC"
+
+#: airtime_mvc/application/services/HistoryService.php:1126
+#: airtime_mvc/application/services/HistoryService.php:1179
+#: airtime_mvc/application/controllers/LocaleController.php:83
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
+#: airtime_mvc/application/models/Block.php:1357
+msgid "Copyright"
+msgstr "Copyright"
+
+#: airtime_mvc/application/services/HistoryService.php:1127
+#: airtime_mvc/application/controllers/LocaleController.php:100
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
+#: airtime_mvc/application/models/Block.php:1379
+msgid "Year"
+msgstr "Year"
+
+#: airtime_mvc/application/services/HistoryService.php:1128
+msgid "Track"
+msgstr "Track"
+
+#: airtime_mvc/application/services/HistoryService.php:1129
+#: airtime_mvc/application/controllers/LocaleController.php:82
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
+#: airtime_mvc/application/models/Block.php:1356
+msgid "Conductor"
+msgstr "Conductor"
+
+#: airtime_mvc/application/services/HistoryService.php:1130
+#: airtime_mvc/application/controllers/LocaleController.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
+#: airtime_mvc/application/models/Block.php:1365
+msgid "Language"
+msgstr "Language"
+
+#: airtime_mvc/application/services/HistoryService.php:1155
+#: airtime_mvc/application/forms/EditHistoryItem.php:32
+msgid "Start Time"
+msgstr "Start Time"
+
+#: airtime_mvc/application/services/HistoryService.php:1156
+#: airtime_mvc/application/forms/EditHistoryItem.php:44
+msgid "End Time"
+msgstr "End Time"
+
+#: airtime_mvc/application/services/HistoryService.php:1176
+msgid "Played"
+msgstr "Played"
+
+#: airtime_mvc/application/controllers/LibraryController.php:31
+#: airtime_mvc/application/controllers/PlaylistController.php:147
#, php-format
-msgid "Rebroadcast of %s from %s"
-msgstr "Rebroadcast of %s from %s"
+msgid "%s not found"
+msgstr "%s not found"
-#: airtime_mvc/application/models/Webstream.php:166
-msgid "Length needs to be greater than 0 minutes"
-msgstr "Length needs to be greater than 0 minutes"
+#: airtime_mvc/application/controllers/LibraryController.php:40
+#: airtime_mvc/application/controllers/PlaylistController.php:168
+msgid "Something went wrong."
+msgstr "Something went wrong."
-#: airtime_mvc/application/models/Webstream.php:171
-msgid "Length should be of form \"00h 00m\""
-msgstr "Length should be of form \"00h 00m\""
+#: airtime_mvc/application/controllers/LibraryController.php:95
+#: airtime_mvc/application/controllers/ShowbuilderController.php:136
+msgid "Preview"
+msgstr "Preview"
-#: airtime_mvc/application/models/Webstream.php:184
-msgid "URL should be of form \"http://domain\""
-msgstr "URL should be of form \"http://domain\""
+#: airtime_mvc/application/controllers/LibraryController.php:115
+#: airtime_mvc/application/controllers/LibraryController.php:177
+#: airtime_mvc/application/controllers/LibraryController.php:200
+msgid "Add to Playlist"
+msgstr "Add to Playlist"
-#: airtime_mvc/application/models/Webstream.php:187
-msgid "URL should be 512 characters or less"
-msgstr "URL should be 512 characters or less"
+#: airtime_mvc/application/controllers/LibraryController.php:117
+msgid "Add to Smart Block"
+msgstr "Add to Smart Block"
-#: airtime_mvc/application/models/Webstream.php:193
-msgid "No MIME type found for webstream."
-msgstr "No MIME type found for webstream."
+#: airtime_mvc/application/controllers/LibraryController.php:123
+#: airtime_mvc/application/controllers/LocaleController.php:66
+msgid "Edit Metadata"
+msgstr "Edit Metadata"
-#: airtime_mvc/application/models/Webstream.php:209
-msgid "Webstream name cannot be empty"
-msgstr "Webstream name cannot be empty"
+#: airtime_mvc/application/controllers/LibraryController.php:131
+#: airtime_mvc/application/controllers/ScheduleController.php:712
+msgid "Download"
+msgstr "Download"
-#: airtime_mvc/application/models/Webstream.php:278
-msgid "Could not parse XSPF playlist"
-msgstr "Could not parse XSPF playlist"
+#: airtime_mvc/application/controllers/LibraryController.php:147
+msgid "View track"
+msgstr "View track"
-#: airtime_mvc/application/models/Webstream.php:298
-msgid "Could not parse PLS playlist"
-msgstr "Could not parse PLS playlist"
+#: airtime_mvc/application/controllers/LibraryController.php:148
+msgid "Remove track"
+msgstr "Remove track"
-#: airtime_mvc/application/models/Webstream.php:318
-msgid "Could not parse M3U playlist"
-msgstr "Could not parse M3U playlist"
+#: airtime_mvc/application/controllers/LibraryController.php:154
+#: airtime_mvc/application/controllers/LibraryController.php:159
+msgid "Upload track"
+msgstr "Upload track"
-#: airtime_mvc/application/models/Webstream.php:332
-msgid "Invalid webstream - This appears to be a file download."
-msgstr "Invalid webstream - This appears to be a file download."
+#: airtime_mvc/application/controllers/LibraryController.php:169
+msgid "Duplicate Playlist"
+msgstr "Duplicate Playlist"
-#: airtime_mvc/application/models/Webstream.php:336
+#: airtime_mvc/application/controllers/LibraryController.php:213
+msgid "No action available"
+msgstr "No action available"
+
+#: airtime_mvc/application/controllers/LibraryController.php:233
+msgid "You don't have permission to delete selected items."
+msgstr "You don't have permission to delete selected items."
+
+#: airtime_mvc/application/controllers/LibraryController.php:279
+msgid "Could not delete file because it is scheduled in the future."
+msgstr "Could not delete file because it is scheduled in the future."
+
+#: airtime_mvc/application/controllers/LibraryController.php:282
+msgid "Could not delete file(s)."
+msgstr "Could not delete file(s)."
+
+#: airtime_mvc/application/controllers/LibraryController.php:322
#, php-format
-msgid "Unrecognized stream type: %s"
-msgstr "Unrecognised stream type: %s"
+msgid "Copy of %s"
+msgstr "Copy of %s"
-#: airtime_mvc/application/models/Preference.php:460
-#, php-format
-msgid "Powered by %s"
-msgstr ""
+#: airtime_mvc/application/controllers/WebstreamController.php:28
+#: airtime_mvc/application/controllers/WebstreamController.php:32
+msgid "Untitled Webstream"
+msgstr "Untitled Webstream"
-#: airtime_mvc/application/models/Preference.php:588
-msgid "Select Country"
-msgstr "Select Country"
+#: airtime_mvc/application/controllers/WebstreamController.php:150
+msgid "Webstream saved."
+msgstr "Webstream saved."
-#: airtime_mvc/application/models/MusicDir.php:160
-#, php-format
-msgid "%s is already watched."
-msgstr "%s is already watched."
+#: airtime_mvc/application/controllers/WebstreamController.php:158
+msgid "Invalid form values."
+msgstr "Invalid form values."
-#: airtime_mvc/application/models/MusicDir.php:164
-#, php-format
-msgid "%s contains nested watched directory: %s"
-msgstr "%s contains nested watched directory: %s"
-
-#: airtime_mvc/application/models/MusicDir.php:168
-#, php-format
-msgid "%s is nested within existing watched directory: %s"
-msgstr "%s is nested within existing watched directory: %s"
-
-#: airtime_mvc/application/models/MusicDir.php:189
-#: airtime_mvc/application/models/MusicDir.php:370
-#, php-format
-msgid "%s is not a valid directory."
-msgstr "%s is not a valid directory."
-
-#: airtime_mvc/application/models/MusicDir.php:232
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list"
-msgstr "%s is already set as the current storage dir or in the watched folders list"
-
-#: airtime_mvc/application/models/MusicDir.php:388
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list."
-msgstr "%s is already set as the current storage dir or in the watched folders list."
-
-#: airtime_mvc/application/models/MusicDir.php:431
-#, php-format
-msgid "%s doesn't exist in the watched list."
-msgstr "%s doesn't exist in the watched list."
-
-#: airtime_mvc/application/models/Show.php:184
-msgid "Shows can have a max length of 24 hours."
-msgstr "Shows can have a max length of 24 hours."
-
-#: airtime_mvc/application/models/Show.php:282
-#: airtime_mvc/application/forms/AddShowWhen.php:156
-msgid "End date/time cannot be in the past"
-msgstr "End date/time cannot be in the past"
-
-#: airtime_mvc/application/models/Show.php:293
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
msgid ""
-"Cannot schedule overlapping shows.\n"
-"Note: Resizing a repeating show affects all of its repeats."
+"To configure and use the embeddable player you must:
\n"
+" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
+" 2. Enable the Public Airtime API under System -> Preferences"
msgstr ""
-"Cannot schedule overlapping shows.\n"
-"Note: Resizing a repeating show affects all of its repeats."
+"To configure and use the embeddable player you must:
\n"
+" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
+" 2. Enable the Public Airtime API under System -> Preferences"
-#: airtime_mvc/application/models/Auth.php:33
-#, php-format
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
msgid ""
-"Hi %s, \n"
-"\n"
-"Please click this link to reset your password: "
+"To use the embeddable weekly schedule widget you must:
\n"
+" Enable the Public Airtime API under System -> Preferences"
msgstr ""
+"To use the embeddable weekly schedule widget you must:
\n"
+" Enable the Public Airtime API under System -> Preferences"
-#: airtime_mvc/application/models/Auth.php:38
+#: airtime_mvc/application/controllers/ListenerstatController.php:51
+msgid "Please make sure admin user/password is correct on System->Streams page."
+msgstr "Please make sure admin user/password is correct on System->Streams page."
+
+#: airtime_mvc/application/controllers/UserController.php:86
+msgid "User added successfully!"
+msgstr "User added successfully!"
+
+#: airtime_mvc/application/controllers/UserController.php:88
+msgid "User updated successfully!"
+msgstr "User updated successfully!"
+
+#: airtime_mvc/application/controllers/UserController.php:187
+msgid "Settings updated successfully!"
+msgstr "Settings updated successfully!"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:53
#, php-format
-msgid "%s Password Reset"
-msgstr "%s Password Reset"
+msgid "You are viewing an older version of %s"
+msgstr "You are viewing an older version of %s"
-#: airtime_mvc/application/models/Block.php:333
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
-msgid "items"
-msgstr "items"
+#: airtime_mvc/application/controllers/PlaylistController.php:140
+msgid "You cannot add tracks to dynamic blocks."
+msgstr "You cannot add tracks to dynamic blocks."
-#: airtime_mvc/application/models/Block.php:833
-#: airtime_mvc/application/models/Playlist.php:812
-msgid "Cue in and cue out are null."
-msgstr "Cue in and cue out are null."
-
-#: airtime_mvc/application/models/Block.php:868
-#: airtime_mvc/application/models/Block.php:924
-#: airtime_mvc/application/models/Playlist.php:851
-#: airtime_mvc/application/models/Playlist.php:895
-msgid "Can't set cue out to be greater than file length."
-msgstr "Can't set cue out to be greater than file length."
-
-#: airtime_mvc/application/models/Block.php:879
-#: airtime_mvc/application/models/Block.php:900
-#: airtime_mvc/application/models/Playlist.php:843
-#: airtime_mvc/application/models/Playlist.php:868
-msgid "Can't set cue in to be larger than cue out."
-msgstr "Can't set cue in to be larger than cue out."
-
-#: airtime_mvc/application/models/Block.php:935
-#: airtime_mvc/application/models/Playlist.php:887
-msgid "Can't set cue out to be smaller than cue in."
-msgstr "Can't set cue out to be smaller than cue in."
-
-#: airtime_mvc/application/models/Block.php:1351
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
-msgid "Select criteria"
-msgstr "Select criteria"
-
-#: airtime_mvc/application/models/Block.php:1353
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
-msgid "Bit Rate (Kbps)"
-msgstr "Bit Rate (Kbps)"
-
-#: airtime_mvc/application/models/Block.php:1354
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
-#: airtime_mvc/application/controllers/LocaleController.php:80
-msgid "BPM"
-msgstr "BPM"
-
-#: airtime_mvc/application/models/Block.php:1358
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
-#: airtime_mvc/application/controllers/LocaleController.php:281
-#: airtime_mvc/application/layouts/scripts/layout.phtml:140
-msgid "Cue In"
-msgstr "Cue In"
-
-#: airtime_mvc/application/models/Block.php:1359
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:282
-#: airtime_mvc/application/layouts/scripts/layout.phtml:147
-msgid "Cue Out"
-msgstr "Cue Out"
-
-#: airtime_mvc/application/models/Block.php:1361
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
-#: airtime_mvc/application/controllers/LocaleController.php:84
-msgid "Encoded By"
-msgstr "Encoded By"
-
-#: airtime_mvc/application/models/Block.php:1366
-msgid "Upload Time"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1367
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
-#: airtime_mvc/application/controllers/LocaleController.php:89
-msgid "Last Modified"
-msgstr "Last Modified"
-
-#: airtime_mvc/application/models/Block.php:1368
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
-#: airtime_mvc/application/controllers/LocaleController.php:90
-msgid "Last Played"
-msgstr "Last Played"
-
-#: airtime_mvc/application/models/Block.php:1370
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
-#: airtime_mvc/application/controllers/LocaleController.php:92
-msgid "Mime"
-msgstr "Mime"
-
-#: airtime_mvc/application/models/Block.php:1372
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
-#: airtime_mvc/application/controllers/LocaleController.php:94
-msgid "Owner"
-msgstr "Owner"
-
-#: airtime_mvc/application/models/Block.php:1373
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
-#: airtime_mvc/application/controllers/LocaleController.php:95
-msgid "Replay Gain"
-msgstr "Replay Gain"
-
-#: airtime_mvc/application/models/Block.php:1374
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
-msgid "Sample Rate (kHz)"
-msgstr "Sample Rate (kHz)"
-
-#: airtime_mvc/application/models/Block.php:1376
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
-#: airtime_mvc/application/controllers/LocaleController.php:97
-msgid "Track Number"
-msgstr "Track Number"
-
-#: airtime_mvc/application/models/Block.php:1377
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
-#: airtime_mvc/application/controllers/LocaleController.php:98
-msgid "Uploaded"
-msgstr "Uploaded"
-
-#: airtime_mvc/application/models/Block.php:1378
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
-#: airtime_mvc/application/controllers/LocaleController.php:99
-msgid "Website"
-msgstr "Website"
-
-#: airtime_mvc/application/models/Block.php:1383
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
-#: airtime_mvc/application/controllers/LocaleController.php:151
-msgid "Select modifier"
-msgstr "Select modifier"
-
-#: airtime_mvc/application/models/Block.php:1384
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
-#: airtime_mvc/application/controllers/LocaleController.php:152
-msgid "contains"
-msgstr "contains"
-
-#: airtime_mvc/application/models/Block.php:1385
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
-#: airtime_mvc/application/controllers/LocaleController.php:153
-msgid "does not contain"
-msgstr "does not contain"
-
-#: airtime_mvc/application/models/Block.php:1386
-#: airtime_mvc/application/models/Block.php:1390
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
-#: airtime_mvc/application/controllers/LocaleController.php:154
-msgid "is"
-msgstr "is"
-
-#: airtime_mvc/application/models/Block.php:1387
-#: airtime_mvc/application/models/Block.php:1391
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
-#: airtime_mvc/application/controllers/LocaleController.php:155
-msgid "is not"
-msgstr "is not"
-
-#: airtime_mvc/application/models/Block.php:1388
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
-#: airtime_mvc/application/controllers/LocaleController.php:156
-msgid "starts with"
-msgstr "starts with"
-
-#: airtime_mvc/application/models/Block.php:1389
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
-#: airtime_mvc/application/controllers/LocaleController.php:157
-msgid "ends with"
-msgstr "ends with"
-
-#: airtime_mvc/application/models/Block.php:1392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
-#: airtime_mvc/application/controllers/LocaleController.php:158
-msgid "is greater than"
-msgstr "is greater than"
-
-#: airtime_mvc/application/models/Block.php:1393
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
-#: airtime_mvc/application/controllers/LocaleController.php:159
-msgid "is less than"
-msgstr "is less than"
-
-#: airtime_mvc/application/models/Block.php:1394
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
-#: airtime_mvc/application/controllers/LocaleController.php:160
-msgid "is in the range"
-msgstr "is in the range"
-
-#: airtime_mvc/application/models/Scheduler.php:73
-msgid "Cannot move items out of linked shows"
-msgstr "Cannot move items out of linked shows"
-
-#: airtime_mvc/application/models/Scheduler.php:119
-msgid "The schedule you're viewing is out of date! (sched mismatch)"
-msgstr "The schedule you're viewing is out of date! (sched mismatch)"
-
-#: airtime_mvc/application/models/Scheduler.php:124
-msgid "The schedule you're viewing is out of date! (instance mismatch)"
-msgstr "The schedule you're viewing is out of date! (instance mismatch)"
-
-#: airtime_mvc/application/models/Scheduler.php:132
-#: airtime_mvc/application/models/Scheduler.php:458
-#: airtime_mvc/application/models/Scheduler.php:490
-msgid "The schedule you're viewing is out of date!"
-msgstr "The schedule you're viewing is out of date!"
-
-#: airtime_mvc/application/models/Scheduler.php:142
+#: airtime_mvc/application/controllers/PlaylistController.php:161
#, php-format
-msgid "You are not allowed to schedule show %s."
-msgstr "You are not allowed to schedule show %s."
+msgid "You don't have permission to delete selected %s(s)."
+msgstr "You don't have permission to delete selected %s(s)."
-#: airtime_mvc/application/models/Scheduler.php:146
-msgid "You cannot add files to recording shows."
-msgstr "You cannot add files to recording shows."
+#: airtime_mvc/application/controllers/PlaylistController.php:174
+msgid "You can only add tracks to smart block."
+msgstr "You can only add tracks to smart block."
-#: airtime_mvc/application/models/Scheduler.php:152
+#: airtime_mvc/application/controllers/PlaylistController.php:180
+#: airtime_mvc/application/controllers/LocaleController.php:50
+msgid "You can only add tracks, smart blocks, and webstreams to playlists."
+msgstr "You can only add tracks, smart blocks, and webstreams to playlists."
+
+#: airtime_mvc/application/controllers/PlaylistController.php:192
+msgid "Untitled Playlist"
+msgstr "Untitled Playlist"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:194
+msgid "Untitled Smart Block"
+msgstr "Untitled Smart Block"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:522
+msgid "Unknown Playlist"
+msgstr "Unknown Playlist"
+
+#: airtime_mvc/application/controllers/ErrorController.php:78
+msgid "Page not found."
+msgstr "Page not found."
+
+#: airtime_mvc/application/controllers/ErrorController.php:87
+msgid "The requested action is not supported."
+msgstr "The requested action is not supported."
+
+#: airtime_mvc/application/controllers/ErrorController.php:98
+msgid "You do not have permission to access this resource."
+msgstr "You do not have permission to access this resource."
+
+#: airtime_mvc/application/controllers/ErrorController.php:109
+msgid "An internal application error has occurred."
+msgstr "An internal application error has occurred."
+
+#: airtime_mvc/application/controllers/Apiv2Controller.php:77
+#: airtime_mvc/application/controllers/ApiController.php:79
+msgid "You are not allowed to access this resource."
+msgstr "You are not allowed to access this resource."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:72
+msgid "Preferences updated."
+msgstr "Preferences updated."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:115
+msgid "Support setting updated."
+msgstr "Support setting updated."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:123
+msgid "Support Feedback"
+msgstr "Support Feedback"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:251
+msgid "Stream Setting Updated."
+msgstr "Stream Setting Updated."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:342
+msgid "path should be specified"
+msgstr "path should be specified"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:437
+msgid "Problem with Liquidsoap..."
+msgstr "Problem with Liquidsoap..."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:493
+msgid "Request method not accepted"
+msgstr "Request method not accepted"
+
+#: airtime_mvc/application/controllers/DashboardController.php:35
+#: airtime_mvc/application/controllers/DashboardController.php:84
+msgid "You don't have permission to disconnect source."
+msgstr "You don't have permission to disconnect source."
+
+#: airtime_mvc/application/controllers/DashboardController.php:37
+#: airtime_mvc/application/controllers/DashboardController.php:86
+msgid "There is no source connected to this input."
+msgstr "There is no source connected to this input."
+
+#: airtime_mvc/application/controllers/DashboardController.php:81
+msgid "You don't have permission to switch source."
+msgstr "You don't have permission to switch source."
+
+#: airtime_mvc/application/controllers/LoginController.php:43
+msgid "Please enter your username and password."
+msgstr "Please enter your username and password."
+
+#: airtime_mvc/application/controllers/LoginController.php:93
+msgid "Wrong username or password provided. Please try again."
+msgstr "Wrong username or password provided. Please try again."
+
+#: airtime_mvc/application/controllers/LoginController.php:167
+msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
+msgstr "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
+
+#: airtime_mvc/application/controllers/LoginController.php:173
+msgid "There was a problem with the username or email address you entered."
+msgstr "There was a problem with the username or email address you entered."
+
+#: airtime_mvc/application/controllers/ApiController.php:244
+#: airtime_mvc/application/controllers/ApiController.php:317
+#: airtime_mvc/application/controllers/ApiController.php:392
+#: airtime_mvc/application/controllers/ApiController.php:435
+#: airtime_mvc/application/controllers/ApiController.php:474
+#: airtime_mvc/application/controllers/ApiController.php:507
+msgid "You are not allowed to access this resource. "
+msgstr "You are not allowed to access this resource. "
+
+#: airtime_mvc/application/controllers/ApiController.php:698
+#: airtime_mvc/application/controllers/ApiController.php:718
+#: airtime_mvc/application/controllers/ApiController.php:730
#, php-format
-msgid "The show %s is over and cannot be scheduled."
-msgstr "The show %s is over and cannot be scheduled."
+msgid "File does not exist in %s"
+msgstr "File does not exist in %s"
-#: airtime_mvc/application/models/Scheduler.php:159
-#, php-format
-msgid "The show %s has been previously updated!"
-msgstr "The show %s has been previously updated!"
+#: airtime_mvc/application/controllers/ApiController.php:781
+msgid "Bad request. no 'mode' parameter passed."
+msgstr "Bad request. no 'mode' parameter passed."
-#: airtime_mvc/application/models/Scheduler.php:178
-msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
-msgstr "Content in linked shows must be scheduled before or after any one is broadcasted"
-
-#: airtime_mvc/application/models/Scheduler.php:195
-msgid "Cannot schedule a playlist that contains missing files."
-msgstr "Cannot schedule a playlist that contains missing files."
-
-#: airtime_mvc/application/models/Scheduler.php:216
-#: airtime_mvc/application/models/Scheduler.php:305
-msgid "A selected File does not exist!"
-msgstr "A selected File does not exist!"
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
-#: airtime_mvc/application/configs/navigation.php:40
-msgid "Weekly Schedule"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
-#: airtime_mvc/application/forms/Player.php:77
-msgid "Preview:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
-#: airtime_mvc/application/configs/navigation.php:34
-msgid "Player"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
-#: airtime_mvc/application/controllers/LocaleController.php:362
-#: airtime_mvc/application/controllers/LocaleController.php:390
-msgid "Close"
-msgstr "Close"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Add this show"
-msgstr "Add this show"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Update show"
-msgstr "Update show"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
-msgid "What"
-msgstr "What"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
-msgid "When"
-msgstr "When"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
-msgid "Live Stream Input"
-msgstr "Live Stream Input"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
-msgid "Who"
-msgstr "Who"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
-msgid "Style"
-msgstr "Style"
-
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
-#: airtime_mvc/application/controllers/LocaleController.php:273
-msgid "Start"
-msgstr "Start"
-
-#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
-msgid "Password Reset"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
-msgid "Email Sent!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
-msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
-msgid "Back"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
-msgid "New password"
-msgstr "New password"
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
-msgid "Please enter and confirm your new password in the fields below."
-msgstr "Please enter and confirm your new password in the fields below."
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:3
-#: airtime_mvc/application/forms/Login.php:83
-msgid "Login"
-msgstr "Login"
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:7
-#, php-format
-msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
-msgstr "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:97
-msgid "Playout History"
-msgstr "Playout History"
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
-msgid "Log Sheet"
-msgstr "Log Sheet"
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
-msgid "File Summary"
-msgstr "File Summary"
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
-msgid "Show Summary"
-msgstr "Show Summary"
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
-msgid "Your trial expires in"
-msgstr "Your trial expires in"
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
-msgid "days"
-msgstr "days"
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-#, php-format
-msgid "Purchase an %s Pro plan!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-msgid "My Account"
-msgstr "My Account"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
-msgid "Previous:"
-msgstr "Previous:"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
-msgid "Next:"
-msgstr "Next:"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
-msgid "Source Streams"
-msgstr "Source Streams"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
-msgid "Master Source"
-msgstr "Master Source"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
-msgid "Show Source"
-msgstr "Show Source"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
-msgid "ON AIR"
-msgstr "ON AIR"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
-msgid "Listen"
-msgstr "Listen"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
-msgid "Logout"
-msgstr "Logout"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
-msgid "Drop files here or click to browse your computer."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
-#: airtime_mvc/application/controllers/LocaleController.php:314
-msgid "in use"
-msgstr "in use"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
-#: airtime_mvc/application/controllers/LocaleController.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:401
-msgid "All"
-msgstr "All"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
-msgid "Failed"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
-msgid "Pending"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
-msgid "Recent Uploads"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
-#: airtime_mvc/application/configs/navigation.php:120
-msgid "Account Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
-msgid "Upgrade today to get more listeners and storage space!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
-msgid "View Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
-msgid "About"
-msgstr "About"
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
-#, php-format
-msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
-msgstr "%1$s %2$s, the open radio software for scheduling and remote station management."
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
-#, php-format
-msgid "%1$s %2$s is distributed under the %3$s"
-msgstr "%1$s %2$s is distributed under the %3$s"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
-#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
-msgid "Live stream"
-msgstr "Live stream"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
-msgid "Share"
-msgstr "Share"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
-msgid "Select stream:"
-msgstr "Select stream:"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
-msgid "mute"
-msgstr "mute"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
-msgid "unmute"
-msgstr "unmute"
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
-#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
-#, php-format
-msgid "Welcome to %s!"
-msgstr "Welcome to %s!"
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
-#, php-format
-msgid "Here's how you can get started using %s to automate your broadcasts: "
-msgstr "Here's how you can get started using %s to automate your broadcasts: "
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
-msgid "Upload audio tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
-msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
-msgid "Schedule a show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
-msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
-msgid "Add tracks to your show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
-msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
-msgid "Now you're good to go!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
-#, php-format
-msgid "For more detailed help, read the %suser manual%s."
-msgstr "For more detailed help, read the %suser manual%s."
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
-msgid "Listeners"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
-msgid "Stream Data Collection Status"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
-#: airtime_mvc/application/views/scripts/error/error.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
-msgid "An error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
-msgid "Access Denied!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
-msgid "You do not have permission to access this page!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
-#: airtime_mvc/application/views/scripts/error/error.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
-#: airtime_mvc/application/configs/navigation.php:143
-msgid "Help"
-msgstr "Help"
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
-msgid "Page not found!"
-msgstr "Page not found!"
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
-msgid "We couldn't find the page you were looking for."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error.phtml:12
-msgid "Looks like the page you were looking for doesn't exist!"
-msgstr "Looks like the page you were looking for doesn't exist!"
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
-msgid "Oops!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
-msgid "Something went wrong!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
-msgid "Bad Request!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
-msgid "The requested action is not supported!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
-msgid "Viewing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
-msgid "Editing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:3
-msgid "File import in progress..."
-msgstr "File import in progress..."
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:10
-#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
-msgid "Advanced Search Options"
-msgstr "Advanced Search Options"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
-#: airtime_mvc/application/forms/Player.php:15
-#: airtime_mvc/application/forms/EditAudioMD.php:24
-msgid "Title:"
-msgstr "Title:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
-#: airtime_mvc/application/forms/EditAudioMD.php:34
-msgid "Creator:"
-msgstr "Creator:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
-#: airtime_mvc/application/forms/EditAudioMD.php:44
-msgid "Album:"
-msgstr "Album:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
-msgid "Track:"
-msgstr "Track:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
-msgid "Length:"
-msgstr "Length:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
-msgid "Sample Rate:"
-msgstr "Sample Rate:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
-msgid "Bit Rate:"
-msgstr "Bit Rate:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
-#: airtime_mvc/application/forms/EditAudioMD.php:115
-msgid "Mood:"
-msgstr "Mood:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
-#: airtime_mvc/application/forms/EditAudioMD.php:62
-#: airtime_mvc/application/forms/AddShowWhat.php:45
-msgid "Genre:"
-msgstr "Genre:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
-#: airtime_mvc/application/forms/EditAudioMD.php:72
-msgid "Year:"
-msgstr "Year:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
-#: airtime_mvc/application/forms/EditAudioMD.php:85
-msgid "Label:"
-msgstr "Label:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
-#: airtime_mvc/application/forms/EditAudioMD.php:125
-msgid "BPM:"
-msgstr "BPM:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
-#: airtime_mvc/application/forms/EditAudioMD.php:95
-msgid "Composer:"
-msgstr "Composer:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
-#: airtime_mvc/application/forms/EditAudioMD.php:105
-msgid "Conductor:"
-msgstr "Conductor:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
-#: airtime_mvc/application/forms/EditAudioMD.php:135
-msgid "Copyright:"
-msgstr "Copyright:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
-msgid "Isrc Number:"
-msgstr "Isrc Number:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
-#: airtime_mvc/application/forms/EditAudioMD.php:155
-msgid "Website:"
-msgstr "Website:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
-#: airtime_mvc/application/forms/EditUser.php:119
-#: airtime_mvc/application/forms/EditAudioMD.php:165
-#: airtime_mvc/application/forms/Login.php:68
-msgid "Language:"
-msgstr "Language:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
-msgid "File Path:"
-msgstr "File Path:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
-#: airtime_mvc/application/forms/AddShowWhat.php:26
-msgid "Name:"
-msgstr "Name:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
-#: airtime_mvc/application/forms/AddShowWhat.php:54
-msgid "Description:"
-msgstr "Description:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
-msgid "Web Stream"
-msgstr "Web Stream"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
-msgid "Dynamic Smart Block"
-msgstr "Dynamic Smart Block"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
-msgid "Static Smart Block"
-msgstr "Static Smart Block"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
-msgid "Audio Track"
-msgstr "Audio Track"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
-msgid "Playlist Contents: "
-msgstr "Playlist Contents: "
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
-msgid "Static Smart Block Contents: "
-msgstr "Static Smart Block Contents: "
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
-msgid "Dynamic Smart Block Criteria: "
-msgstr "Dynamic Smart Block Criteria: "
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
-msgid "Limit to "
-msgstr "Limit to "
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
-#: airtime_mvc/application/forms/AddShowWhat.php:36
-msgid "URL:"
-msgstr "URL:"
-
-#: airtime_mvc/application/views/scripts/form/login.phtml:41
-msgid "Forgot your password?"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
-#, php-format
-msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
-#, php-format
-msgid "Click the box below to promote your station on %s."
-msgstr "Click the box below to promote your station on %s."
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
-msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
-msgstr "(In order to promote your station, 'Send support feedback' must be enabled)."
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
-msgid "(Required)"
-msgstr "(Required)"
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
-msgid "(for verification purposes only, will not be published)"
-msgstr "(for verification purposes only, will not be published)"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
-msgid "Choose folder"
-msgstr "Choose folder"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
-msgid "Set"
-msgstr "Set"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
-msgid "Current Import Folder:"
-msgstr "Current Import Folder:"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
-msgid "Add"
-msgstr "Add"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
-#, php-format
-msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
-msgstr "Rescan watched directory (This is useful if it is a network mount and may be out of sync with %s)"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
-msgid "Remove watched directory"
-msgstr "Remove watched directory"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
-msgid "You are not watching any media folders."
-msgstr "You are not watching any media folders."
-
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
-msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
-msgid "Live Broadcasting"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
-msgid "Use these settings in your broadcasting software to stream live at any time."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
-msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
-msgid "Choose Show Instance"
-msgstr "Choose Show Instance"
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
-#: airtime_mvc/application/forms/EditHistoryItem.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:400
-msgid "No Show"
-msgstr "No Show"
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
-msgid "Find"
-msgstr "Find"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
-msgid "Choose Days:"
-msgstr "Choose Days:"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
-#: airtime_mvc/application/forms/AddShowStyle.php:64
-#: airtime_mvc/application/forms/GeneralPreferences.php:53
-msgid "Remove"
-msgstr "Remove"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
-msgid "Stream "
-msgstr "Stream "
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
-msgid "Additional Options"
-msgstr "Additional Options"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
-msgid "The following info will be displayed to listeners in their media player:"
-msgstr "The following info will be displayed to listeners in their media player:"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
-msgid "(Your radio station website)"
-msgstr "(Your radio station website)"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
-msgid "Stream URL: "
-msgstr "Stream URL: "
-
-#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
-msgid "Find Shows"
-msgstr "Find Shows"
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
-msgid "TuneIn Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
-msgid "SoundCloud Settings"
-msgstr "SoundCloud Settings"
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
-msgid "Dangerous Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
-msgid "Search Criteria:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
-msgid "New Criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
-msgid "or"
-msgstr "or"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
-msgid "and"
-msgstr "and"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
-msgid "New Modifier"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
-msgid " to "
-msgstr " to "
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
-msgid "files meet the criteria"
-msgstr "files meet the criteria"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
-msgid "file meets the criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
-msgid "Filter History"
-msgstr "Filter History"
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
-#: airtime_mvc/application/configs/navigation.php:61
-msgid "My Profile"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
-#, php-format
-msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
-#: airtime_mvc/application/forms/Preferences.php:40
-#: airtime_mvc/application/forms/PasswordChange.php:43
-#: airtime_mvc/application/forms/AddUser.php:110
-#: airtime_mvc/application/forms/BillingClient.php:193
-#: airtime_mvc/application/forms/SupportSettings.php:131
-#: airtime_mvc/application/forms/EditHistory.php:131
-#: airtime_mvc/application/controllers/LocaleController.php:294
-msgid "Save"
-msgstr "Save"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
-msgid "Repeat Days:"
-msgstr "Repeat Days:"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
-msgid "Register Airtime"
-msgstr "Register Airtime"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
-#: airtime_mvc/application/forms/GeneralPreferences.php:43
-msgid "Note: Anything larger than 600x600 will be resized."
-msgstr "Note: Anything larger than 600x600 will be resized."
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
-msgid "Show me what I am sending "
-msgstr "Show me what I am sending "
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
-msgid "Terms and Conditions"
-msgstr "Terms and Conditions"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
-msgid "Creating File Summary Template"
-msgstr "Creating File Summary Template"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
-msgid "Creating Log Sheet Template"
-msgstr "Creating Log Sheet Template"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
-msgid "Name"
-msgstr "Name"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
-msgid "Add more elements"
-msgstr "Add more elements"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
-msgid "Add New Field"
-msgstr "Add New Field"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
-msgid "Set Default Template"
-msgstr "Set Default Template"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
-msgid "Playout History Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
-msgid "Log Sheet Templates"
-msgstr "Log Sheet Templates"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
-msgid "New Log Sheet Template"
-msgstr "New Log Sheet Template"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
-msgid "No Log Sheet Templates"
-msgstr "No Log Sheet Templates"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
-#: airtime_mvc/application/controllers/LocaleController.php:397
-msgid "Set Default"
-msgstr "Set Default"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
-msgid "File Summary Templates"
-msgstr "File Summary Templates"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
-msgid "New File Summary Template"
-msgstr "New File Summary Template"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
-msgid "No File Summary Templates"
-msgstr "No File Summary Templates"
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
-msgid "Disk Space"
-msgstr "Disk Space"
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
-#: airtime_mvc/application/controllers/LocaleController.php:315
-msgid "Disk"
-msgstr "Disk"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
-#: airtime_mvc/application/forms/AddShowWhen.php:89
-msgid "Duration:"
-msgstr "Duration:"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
-msgid "Toggle Details"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
-msgid "Playlist crossfade"
-msgstr "Playlist crossfade"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-msgid "Remove all content from this smart block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Clear"
-msgstr "Clear"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "Fade in: "
-msgstr "Fade in: "
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "(ss.t)"
-msgstr "(ss.t)"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-msgid "Fade out: "
-msgstr "Fade out: "
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
-#: airtime_mvc/application/forms/EditAudioMD.php:186
-#: airtime_mvc/application/forms/EditHistory.php:141
-#: airtime_mvc/application/controllers/LocaleController.php:295
-#: airtime_mvc/application/controllers/LocaleController.php:318
-msgid "Cancel"
-msgstr "Cancel"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
-msgid "No smart block currently open"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
-msgid "Show Waveform"
-msgstr "Show Waveform"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-msgid "Cue In: "
-msgstr "Cue In: "
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "(hh:mm:ss.t)"
-msgstr "(hh:mm:ss.t)"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "Cue Out: "
-msgstr "Cue Out: "
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
-msgid "Original Length:"
-msgstr "Original Length:"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
-msgid "Expand Static Block"
-msgstr "Expand Static Block"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
-msgid "Expand Dynamic Block"
-msgstr "Expand Dynamic Block"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
-msgid "Choose some search criteria above and click Generate to create this playlist."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
-msgid "A track list will be generated when you schedule this smart block into a show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
-msgid "Drag tracks here from your library to add them to the playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-msgid "Shuffle playlist"
-msgstr "Shuffle playlist"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
-msgid "Shuffle"
-msgstr "Shuffle"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Empty playlist content"
-msgstr "Empty playlist content"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-msgid "Save playlist"
-msgstr "Save playlist"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
-msgid "No open playlist"
-msgstr "No open playlist"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
-msgid "previous"
-msgstr "previous"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
-msgid "play"
-msgstr "play"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
-msgid "pause"
-msgstr "pause"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
-msgid "next"
-msgstr "next"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
-msgid "stop"
-msgstr "stop"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
-msgid "max volume"
-msgstr "max volume"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
-msgid "Update Required"
-msgstr "Update Required"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
-#, php-format
-msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
-msgstr "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
-msgid "Stream Settings"
-msgstr "Stream Settings"
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
-msgid "Global"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
-msgid "dB"
-msgstr "dB"
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
-msgid "Output Streams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
-#: airtime_mvc/application/controllers/LocaleController.php:166
-msgid "Manage Media Folders"
-msgstr "Manage Media Folders"
-
-#: airtime_mvc/application/views/scripts/preference/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:56
-msgid "General"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
-msgid "Description"
-msgstr "Description"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
-msgid "Stream URL:"
-msgstr "Stream URL:"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
-msgid "Default Length:"
-msgstr "Default Length:"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
-msgid "No webstream"
-msgstr "No webstream"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
-msgid "Manage Users"
-msgstr "Manage Users"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
-msgid "New User"
-msgstr "New User"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
-msgid "id"
-msgstr "id"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
-#: airtime_mvc/application/forms/PasswordRestore.php:25
-msgid "Username"
-msgstr "Username"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
-msgid "First Name"
-msgstr "First Name"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
-msgid "Last Name"
-msgstr "Last Name"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
-msgid "User Type"
-msgstr "User Type"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
-#, php-format
-msgid "Super Admin details can be changed in your Billing Settings."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
-#: airtime_mvc/application/controllers/LocaleController.php:74
-#: airtime_mvc/application/layouts/scripts/layout.phtml:78
-msgid "Tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
-#: airtime_mvc/application/controllers/LocaleController.php:104
-#: airtime_mvc/application/layouts/scripts/layout.phtml:80
-msgid "Playlists"
-msgstr "Playlists"
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
-#: airtime_mvc/application/controllers/LocaleController.php:105
-#: airtime_mvc/application/layouts/scripts/layout.phtml:82
-msgid "Smart Blocks"
-msgstr "Smart Blocks"
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
-#: airtime_mvc/application/layouts/scripts/layout.phtml:84
-msgid "Webstreams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
-#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
-#: airtime_mvc/application/layouts/scripts/layout.phtml:76
-msgid "Dashboard"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:12
-msgid "Radio Page"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:19
-msgid "Calendar"
-msgstr "Calendar"
-
-#: airtime_mvc/application/configs/navigation.php:26
-msgid "Widgets"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:48
-msgid "Settings"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:67
-msgid "Users"
-msgstr "Users"
-
-#: airtime_mvc/application/configs/navigation.php:74
-msgid "Streams"
-msgstr "Streams"
-
-#: airtime_mvc/application/configs/navigation.php:82
-msgid "Analytics"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:90
-msgid "Listener Stats"
-msgstr "Listener Stats"
-
-#: airtime_mvc/application/configs/navigation.php:104
-msgid "History Templates"
-msgstr "History Templates"
-
-#: airtime_mvc/application/configs/navigation.php:113
-msgid "Billing"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:127
-msgid "Account Details"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:134
-msgid "View Invoices"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:150
-msgid "Getting Started"
-msgstr "Getting Started"
-
-#: airtime_mvc/application/configs/navigation.php:157
-msgid "FAQ"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:162
-msgid "User Manual"
-msgstr "User Manual"
-
-#: airtime_mvc/application/configs/navigation.php:167
-msgid "File a Support Ticket"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:12
-msgid "Background Colour:"
-msgstr "Background Colour:"
-
-#: airtime_mvc/application/forms/AddShowStyle.php:31
-msgid "Text Colour:"
-msgstr "Text Colour:"
-
-#: airtime_mvc/application/forms/AddShowStyle.php:49
-msgid "Current Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:72
-msgid "Show Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:87
-msgid "Logo Preview:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:19
-msgid "Push metadata to your station on TuneIn?"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:24
-msgid "Station ID:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:30
-msgid "Partner Key:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:36
-msgid "Partner Id:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:77
-#: airtime_mvc/application/forms/TuneInPreferences.php:86
-msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:14
-msgid "Now Playing"
-msgstr "Now Playing"
-
-#: airtime_mvc/application/forms/Player.php:25
-msgid "Select Stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:28
-msgid "Auto detect the most appropriate stream to use."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:29
-msgid "Select a stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:41
-msgid " - Mobile friendly"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:45
-msgid " - The player does not support Opus streams."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:71
-msgid "Embeddable code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:72
-msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:37
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
-#: airtime_mvc/application/forms/Login.php:41
-#: airtime_mvc/application/forms/AddUser.php:29
-msgid "Username:"
-msgstr "Username:"
-
-#: airtime_mvc/application/forms/EditUser.php:48
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
-#: airtime_mvc/application/forms/Login.php:54
-#: airtime_mvc/application/forms/AddUser.php:38
-#: airtime_mvc/application/forms/BillingClient.php:172
-msgid "Password:"
-msgstr "Password:"
-
-#: airtime_mvc/application/forms/EditUser.php:57
-#: airtime_mvc/application/forms/AddUser.php:46
-#: airtime_mvc/application/forms/BillingClient.php:181
-msgid "Verify Password:"
-msgstr "Verify Password:"
-
-#: airtime_mvc/application/forms/EditUser.php:67
-#: airtime_mvc/application/forms/AddUser.php:55
-msgid "Firstname:"
-msgstr "Firstname:"
-
-#: airtime_mvc/application/forms/EditUser.php:75
-#: airtime_mvc/application/forms/AddUser.php:61
-msgid "Lastname:"
-msgstr "Lastname:"
-
-#: airtime_mvc/application/forms/EditUser.php:83
-#: airtime_mvc/application/forms/RegisterAirtime.php:51
-#: airtime_mvc/application/forms/AddUser.php:67
-#: airtime_mvc/application/forms/SupportSettings.php:43
-msgid "Email:"
-msgstr "Email:"
-
-#: airtime_mvc/application/forms/EditUser.php:94
-#: airtime_mvc/application/forms/AddUser.php:76
-msgid "Mobile Phone:"
-msgstr "Mobile Phone:"
-
-#: airtime_mvc/application/forms/EditUser.php:102
-#: airtime_mvc/application/forms/AddUser.php:82
-msgid "Skype:"
-msgstr "Skype:"
-
-#: airtime_mvc/application/forms/EditUser.php:110
-#: airtime_mvc/application/forms/AddUser.php:88
-msgid "Jabber:"
-msgstr "Jabber:"
-
-#: airtime_mvc/application/forms/EditUser.php:129
-msgid "Interface Timezone:"
-msgstr "Interface Timezone:"
-
-#: airtime_mvc/application/forms/EditUser.php:155
-#: airtime_mvc/application/forms/AddUser.php:120
-msgid "Login name is not unique."
-msgstr "Login name is not unique."
-
-#: airtime_mvc/application/forms/AddShowRR.php:10
-msgid "Record from Line In?"
-msgstr "Record from Line In?"
-
-#: airtime_mvc/application/forms/AddShowRR.php:16
-msgid "Rebroadcast?"
-msgstr "Rebroadcast?"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:16
-msgid "'%value%' does not fit the time format 'HH:mm'"
-msgstr "'%value%' does not fit the time format 'HH:mm'"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:22
-msgid "Start Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:37
-msgid "In the Future:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:64
-msgid "End Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:98
-msgid "Timezone:"
-msgstr "Timezone:"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:107
-msgid "Repeats?"
-msgstr "Repeats?"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:139
-msgid "Cannot create show in the past"
-msgstr "Cannot create show in the past"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:147
-msgid "Cannot modify start date/time of the show that is already started"
-msgstr "Cannot modify start date/time of the show that is already started"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:164
-msgid "Cannot have duration < 0m"
-msgstr "Cannot have duration < 0m"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:168
-msgid "Cannot have duration 00h 00m"
-msgstr "Cannot have duration 00h 00m"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:175
-msgid "Cannot have duration greater than 24h"
-msgstr "Cannot have duration greater than 24h"
-
-#: airtime_mvc/application/forms/AddShowWho.php:10
-msgid "Search Users:"
-msgstr "Search Users:"
-
-#: airtime_mvc/application/forms/AddShowWho.php:24
-msgid "DJs:"
-msgstr "DJs:"
-
-#: airtime_mvc/application/forms/PasswordChange.php:17
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
-msgid "Password"
-msgstr "Password"
-
-#: airtime_mvc/application/forms/PasswordChange.php:28
-msgid "Confirm new password"
-msgstr "Confirm new password"
-
-#: airtime_mvc/application/forms/PasswordChange.php:36
-msgid "Password confirmation does not match your password."
-msgstr "Password confirmation does not match your password."
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
-msgid "Station Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
-#: airtime_mvc/application/forms/GeneralPreferences.php:127
-msgid "Station Timezone"
-msgstr "Station Timezone"
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
-msgid "Auto Switch Off:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
-msgid "Auto Switch On:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
-msgid "Switch Transition Fade (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
-#: airtime_mvc/application/forms/GeneralPreferences.php:68
-#: airtime_mvc/application/forms/GeneralPreferences.php:82
-#: airtime_mvc/application/forms/GeneralPreferences.php:96
-msgid "Please enter a time in seconds (eg. 0.5)"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
-#: airtime_mvc/application/forms/AddShowLiveStream.php:48
-msgid "Host:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
-#: airtime_mvc/application/forms/AddShowLiveStream.php:54
-msgid "Port:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
-#: airtime_mvc/application/forms/AddShowLiveStream.php:60
-msgid "Mount:"
-msgstr ""
-
-#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
-msgid "Value is required and can't be empty"
-msgstr "Value is required and can't be empty"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:25
-#: airtime_mvc/application/forms/RegisterAirtime.php:30
-#: airtime_mvc/application/forms/SupportSettings.php:18
-msgid "Station Name"
-msgstr "Station Name"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:33
-msgid "Station Description"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:42
-#: airtime_mvc/application/forms/RegisterAirtime.php:106
-msgid "Station Logo:"
-msgstr "Station Logo:"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:62
-msgid "Default Crossfade Duration (s):"
-msgstr "Default Crossfade Duration (s):"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:76
-msgid "Default Fade In (s):"
-msgstr "Default Fade In (s):"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:90
-msgid "Default Fade Out (s):"
-msgstr "Default Fade Out (s):"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:102
-msgid "Public Airtime API"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:103
-msgid "Required for embeddable schedule widget."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:105
-msgid "Disabled"
-msgstr "Disabled"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:106
-msgid "Enabled"
-msgstr "Enabled"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:109
-msgid ""
-"Enabling this feature will allow Airtime to provide schedule data\n"
-" to external widgets that can be embedded in your website."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:120
-msgid "Default Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:134
-msgid "Week Starts On"
-msgstr "Week Starts On"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:150
-msgid "Display login button on your Radio Page?"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:158
-#: airtime_mvc/application/controllers/LocaleController.php:249
-msgid "Sunday"
-msgstr "Sunday"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:159
-#: airtime_mvc/application/controllers/LocaleController.php:250
-msgid "Monday"
-msgstr "Monday"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:160
-#: airtime_mvc/application/controllers/LocaleController.php:251
-msgid "Tuesday"
-msgstr "Tuesday"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:161
-#: airtime_mvc/application/controllers/LocaleController.php:252
-msgid "Wednesday"
-msgstr "Wednesday"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:162
-#: airtime_mvc/application/controllers/LocaleController.php:253
-msgid "Thursday"
-msgstr "Thursday"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:163
-#: airtime_mvc/application/controllers/LocaleController.php:254
-msgid "Friday"
-msgstr "Friday"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:164
-#: airtime_mvc/application/controllers/LocaleController.php:255
-msgid "Saturday"
-msgstr "Saturday"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
-msgid "Default License:"
-msgstr "Default License:"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
-msgid "All rights are reserved"
-msgstr "All rights are reserved"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
-msgid "The work is in the public domain"
-msgstr "The work is in the public domain"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
-msgid "Creative Commons Attribution"
-msgstr "Creative Commons Attribution"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
-msgid "Creative Commons Attribution Noncommercial"
-msgstr "Creative Commons Attribution Noncommercial"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
-msgid "Creative Commons Attribution No Derivative Works"
-msgstr "Creative Commons Attribution No Derivative Works"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
-msgid "Creative Commons Attribution Share Alike"
-msgstr "Creative Commons Attribution Share Alike"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
-msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
-msgstr "Creative Commons Attribution Noncommercial Non Derivate Works"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
-msgid "Creative Commons Attribution Noncommercial Share Alike"
-msgstr "Creative Commons Attribution Noncommercial Share Alike"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
-msgid "Default Sharing Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
-msgid "Public"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
-msgid "Private"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:18
-#: airtime_mvc/application/forms/DateRange.php:16
-msgid "Date Start:"
-msgstr "Date Start:"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:37
-#: airtime_mvc/application/forms/ShowBuilder.php:65
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
-#: airtime_mvc/application/forms/DateRange.php:35
-#: airtime_mvc/application/forms/DateRange.php:63
-msgid "Invalid character entered"
-msgstr "Invalid character entered"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:46
-#: airtime_mvc/application/forms/AddShowRepeats.php:56
-#: airtime_mvc/application/forms/DateRange.php:44
-msgid "Date End:"
-msgstr "Date End:"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:72
-#: airtime_mvc/application/forms/ShowBuilder.php:88
-msgid "Filter by Show"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:80
-msgid "All My Shows:"
-msgstr "All My Shows:"
-
-#: airtime_mvc/application/forms/EditAudioMD.php:145
-msgid "ISRC Number:"
-msgstr "ISRC Number:"
-
-#: airtime_mvc/application/forms/EditAudioMD.php:176
-msgid "OK"
-msgstr "OK"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
-msgid "Day must be specified"
-msgstr "Day must be specified"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
-msgid "Time must be specified"
-msgstr "Time must be specified"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
-msgid "Must wait at least 1 hour to rebroadcast"
-msgstr "Must wait at least 1 hour to rebroadcast"
-
-#: airtime_mvc/application/forms/AddShowWhat.php:30
-msgid "Untitled Show"
-msgstr "Untitled Show"
-
-#: airtime_mvc/application/forms/AddShowWhat.php:69
-msgid "Instance Description:"
-msgstr ""
-
-#: airtime_mvc/application/forms/DangerousPreferences.php:12
-msgid "Delete All Tracks in Library"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:39
-#: airtime_mvc/application/forms/SupportSettings.php:31
-msgid "Phone:"
-msgstr "Phone:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:62
-#: airtime_mvc/application/forms/SupportSettings.php:54
-msgid "Station Web Site:"
-msgstr "Station Web Site:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:73
-#: airtime_mvc/application/forms/BillingClient.php:102
-#: airtime_mvc/application/forms/SupportSettings.php:65
-msgid "Country:"
-msgstr "Country:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:84
-#: airtime_mvc/application/forms/BillingClient.php:70
-#: airtime_mvc/application/forms/SupportSettings.php:76
-msgid "City:"
-msgstr "City:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:96
-#: airtime_mvc/application/forms/SupportSettings.php:88
-msgid "Station Description:"
-msgstr "Station Description:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:116
-#: airtime_mvc/application/forms/SupportSettings.php:98
-#: airtime_mvc/application/controllers/LocaleController.php:341
-msgid "Send support feedback"
-msgstr "Send support feedback"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:126
-#: airtime_mvc/application/forms/SupportSettings.php:108
-#, php-format
-msgid "Promote my station on %s"
-msgstr "Promote my station on %s"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:151
-#: airtime_mvc/application/forms/SupportSettings.php:120
-#, php-format
-msgid "By checking this box, I agree to %s's %sprivacy policy%s."
-msgstr "By checking this box, I agree to %s's %sprivacy policy%s."
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:169
-#: airtime_mvc/application/forms/SupportSettings.php:143
-msgid "You have to agree to privacy policy."
-msgstr "You have to agree to privacy policy."
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:10
-msgid "Link:"
-msgstr "Link:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:16
-msgid "Repeat Type:"
-msgstr "Repeat Type:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:19
-msgid "weekly"
-msgstr "weekly"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:20
-msgid "every 2 weeks"
-msgstr "every 2 weeks"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:21
-msgid "every 3 weeks"
-msgstr "every 3 weeks"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:22
-msgid "every 4 weeks"
-msgstr "every 4 weeks"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:23
-msgid "monthly"
-msgstr "monthly"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:32
-msgid "Select Days:"
-msgstr "Select Days:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:35
-#: airtime_mvc/application/controllers/LocaleController.php:256
-msgid "Sun"
-msgstr "Sun"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:36
-#: airtime_mvc/application/controllers/LocaleController.php:257
-msgid "Mon"
-msgstr "Mon"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:37
-#: airtime_mvc/application/controllers/LocaleController.php:258
-msgid "Tue"
-msgstr "Tue"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:38
-#: airtime_mvc/application/controllers/LocaleController.php:259
-msgid "Wed"
-msgstr "Wed"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:39
-#: airtime_mvc/application/controllers/LocaleController.php:260
-msgid "Thu"
-msgstr "Thu"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:40
-#: airtime_mvc/application/controllers/LocaleController.php:261
-msgid "Fri"
-msgstr "Fri"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:41
-#: airtime_mvc/application/controllers/LocaleController.php:262
-msgid "Sat"
-msgstr "Sat"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:47
-msgid "Repeat By:"
-msgstr "Repeat By:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the month"
-msgstr "day of the month"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the week"
-msgstr "day of the week"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:69
-msgid "No End?"
-msgstr "No End?"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:106
-msgid "End date must be after start date"
-msgstr "End date must be after start date"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:113
-msgid "Please select a repeat day"
-msgstr "Please select a repeat day"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:10
-#, php-format
-msgid "Use %s Authentication:"
-msgstr "Use %s Authentication:"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:16
-msgid "Use Custom Authentication:"
-msgstr "Use Custom Authentication:"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:25
-msgid "Custom Username"
-msgstr "Custom Username"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:37
-msgid "Custom Password"
-msgstr "Custom Password"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:77
-msgid "Username field cannot be empty."
-msgstr "Username field cannot be empty."
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:82
-msgid "Password field cannot be empty."
-msgstr "Password field cannot be empty."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
-msgid "Enabled:"
-msgstr "Enabled:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
-msgid "Mobile:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
-msgid "Stream Type:"
-msgstr "Stream Type:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
-msgid "Service Type:"
-msgstr "Service Type:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
-msgid "Channels:"
-msgstr "Channels:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "1 - Mono"
-msgstr "1 - Mono"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "2 - Stereo"
-msgstr "2 - Stereo"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
-msgid "Server"
-msgstr "Server"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
-msgid "Port"
-msgstr "Port"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
-msgid "Only numbers are allowed."
-msgstr "Only numbers are allowed."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
-msgid "URL"
-msgstr "URL"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
-msgid "Mount Point"
-msgstr "Mount Point"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
-msgid "Admin User"
-msgstr "Admin User"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
-msgid "Admin Password"
-msgstr "Admin Password"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
-#: airtime_mvc/application/controllers/LocaleController.php:173
-msgid "Getting information from the server..."
-msgstr "Getting information from the server..."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
-msgid "Server cannot be empty."
-msgstr "Server cannot be empty."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
-msgid "Port cannot be empty."
-msgstr "Port cannot be empty."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
-msgid "Mount cannot be empty with Icecast server."
-msgstr "Mount cannot be empty with Icecast server."
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
-msgid "'%value%' is no valid email address in the basic format local-part@hostname"
-msgstr "'%value%' is no valid email address in the basic format local-part@hostname"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
-msgid "'%value%' does not fit the date format '%format%'"
-msgstr "'%value%' does not fit the date format '%format%'"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
-msgid "'%value%' is less than %min% characters long"
-msgstr "'%value%' is less than %min% characters long"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
-msgid "'%value%' is more than %max% characters long"
-msgstr "'%value%' is more than %max% characters long"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
-msgid "'%value%' is not between '%min%' and '%max%', inclusively"
-msgstr "'%value%' is not between '%min%' and '%max%', inclusively"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
-msgid "Passwords do not match"
-msgstr "Passwords do not match"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
-msgid "hours"
-msgstr "hours"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
-msgid "minutes"
-msgstr "minutes"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
-msgid "Randomly"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
-msgid "Newest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
-msgid "Oldest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
-msgid "Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
-msgid "Static"
-msgstr "Static"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
-msgid "Dynamic"
-msgstr "Dynamic"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
-msgid "Allow Repeated Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
-msgid "Sort Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
-msgid "Limit to:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
-msgid "Generate playlist content and save criteria"
-msgstr "Generate playlist content and save criteria"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
-msgid "Generate"
-msgstr "Generate"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
-msgid "Shuffle playlist content"
-msgstr "Shuffle playlist content"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
-msgid "Limit cannot be empty or smaller than 0"
-msgstr "Limit cannot be empty or smaller than 0"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
-msgid "Limit cannot be more than 24 hrs"
-msgstr "Limit cannot be more than 24 hrs"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
-msgid "The value should be an integer"
-msgstr "The value should be an integer"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
-msgid "500 is the max item limit value you can set"
-msgstr "500 is the max item limit value you can set"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
-msgid "You must select Criteria and Modifier"
-msgstr "You must select Criteria and Modifier"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
-msgid "'Length' should be in '00:00:00' format"
-msgstr "'Length' should be in '00:00:00' format"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
-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:594
-msgid "The value has to be numeric"
-msgstr "The value has to be numeric"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
-msgid "The value should be less then 2147483648"
-msgstr "The value should be less then 2147483648"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
-#, php-format
-msgid "The value should be less than %s characters"
-msgstr "The value should be less than %s characters"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
-msgid "Value cannot be empty"
-msgstr "Value cannot be empty"
-
-#: airtime_mvc/application/forms/Login.php:102
-msgid "Type the characters you see in the picture below."
-msgstr "Type the characters you see in the picture below."
-
-#: airtime_mvc/application/forms/StreamSetting.php:26
-msgid "Icecast Vorbis Metadata"
-msgstr "Icecast Vorbis Metadata"
-
-#: airtime_mvc/application/forms/StreamSetting.php:36
-msgid "Stream Label:"
-msgstr "Stream Label:"
-
-#: airtime_mvc/application/forms/StreamSetting.php:37
-msgid "Artist - Title"
-msgstr "Artist - Title"
-
-#: airtime_mvc/application/forms/StreamSetting.php:38
-msgid "Show - Artist - Title"
-msgstr "Show - Artist - Title"
-
-#: airtime_mvc/application/forms/StreamSetting.php:39
-msgid "Station name - Show name"
-msgstr "Station name - Show name"
-
-#: airtime_mvc/application/forms/StreamSetting.php:45
-msgid "Off Air Metadata"
-msgstr "Off Air Metadata"
-
-#: airtime_mvc/application/forms/StreamSetting.php:51
-msgid "Enable Replay Gain"
-msgstr "Enable Replay Gain"
-
-#: airtime_mvc/application/forms/StreamSetting.php:57
-msgid "Replay Gain Modifier"
-msgstr "Replay Gain Modifier"
-
-#: airtime_mvc/application/forms/StreamSetting.php:65
-msgid "Streaming Server:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Airtime Pro Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Custom / 3rd Party Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:95
-msgid "User Type:"
-msgstr "User Type:"
-
-#: airtime_mvc/application/forms/AddUser.php:99
-#: airtime_mvc/application/controllers/LocaleController.php:324
-msgid "Guest"
-msgstr "Guest"
-
-#: airtime_mvc/application/forms/AddUser.php:100
-#: airtime_mvc/application/controllers/LocaleController.php:322
-msgid "DJ"
-msgstr "DJ"
-
-#: airtime_mvc/application/forms/AddUser.php:101
-#: airtime_mvc/application/controllers/LocaleController.php:323
-msgid "Program Manager"
-msgstr "Program Manager"
-
-#: airtime_mvc/application/forms/AddUser.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:321
-msgid "Admin"
-msgstr "Admin"
-
-#: airtime_mvc/application/forms/BillingClient.php:17
-msgid "First Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:26
-msgid "Last Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:35
-msgid "Company Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:44
-msgid "Email Address:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:54
-msgid "Address 1:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:63
-msgid "Address 2:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:80
-msgid "State/Region:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:89
-msgid "Zip Code / Postal Code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:112
-msgid "Phone Number:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:121
-msgid "Please choose a security question:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:126
-msgid "What is the name of your favorite childhood friend?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:127
-msgid "What school did you attend for sixth grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:128
-msgid "In what city did you meet your spouse/significant other?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:129
-msgid "What street did you live on in third grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:130
-msgid "What is the first name of the boy or girl that you first kissed?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:131
-msgid "In what city or town was your first job?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:135
-msgid "Please enter an answer:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:152
-msgid "VAT/Tax ID (EU only)"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:162
-msgid "Subscribe to Sourcefabric newsletter"
-msgstr ""
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
-msgid "Import Folder:"
-msgstr "Import Folder:"
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
-msgid "Watched Folders:"
-msgstr "Watched Folders:"
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
-msgid "Not a valid Directory"
-msgstr "Not a valid Directory"
-
-#: airtime_mvc/application/forms/PasswordRestore.php:14
-msgid "Email"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordRestore.php:36
-msgid "Reset password"
-msgstr "Reset password"
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
-msgid "Plan type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
-msgid "Billing cycle:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
-msgid "Payment method:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
-msgid "PayPal"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
-msgid "Credit Card via 2Checkout"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:213
-#, php-format
-msgid "The year %s must be within the range of 1753 - 9999"
-msgstr "The year %s must be within the range of 1753 - 9999"
-
-#: airtime_mvc/application/common/DateHelper.php:216
-#, php-format
-msgid "%s-%s-%s is not a valid date"
-msgstr "%s-%s-%s is not a valid date"
-
-#: airtime_mvc/application/common/DateHelper.php:240
-#, php-format
-msgid "%s:%s:%s is not a valid time"
-msgstr "%s:%s:%s is not a valid time"
-
-#: airtime_mvc/application/common/UsabilityHints.php:55
-msgid "Upload some tracks below to add them to your library!"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:57
-#, php-format
-msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:63
-msgid "Click the 'New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:65
-#, php-format
-msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:73
-msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:75
-#, php-format
-msgid ""
-"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
-" %sCreate an unlinked show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:80
-msgid "To start broadcasting, click on the current show and select 'Schedule Show'"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:82
-#, php-format
-msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:89
-msgid "Click on the show starting next and select 'Schedule Show'"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:91
-#, php-format
-msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
-msgstr ""
+#: airtime_mvc/application/controllers/ApiController.php:791
+msgid "Bad request. 'mode' parameter is invalid"
+msgstr "Bad request. 'mode' parameter is invalid"
#: airtime_mvc/application/controllers/LocaleController.php:30
#: airtime_mvc/application/layouts/scripts/audio-player.phtml:5
@@ -2910,55 +566,45 @@ msgstr "Adding %s Items"
msgid "You can only add tracks to smart blocks."
msgstr "You can only add tracks to smart blocks."
-#: airtime_mvc/application/controllers/LocaleController.php:50
-#: airtime_mvc/application/controllers/PlaylistController.php:180
-msgid "You can only add tracks, smart blocks, and webstreams to playlists."
-msgstr "You can only add tracks, smart blocks, and webstreams to playlists."
-
#: airtime_mvc/application/controllers/LocaleController.php:53
msgid "Please select a cursor position on timeline."
msgstr "Please select a cursor position on timeline."
#: airtime_mvc/application/controllers/LocaleController.php:54
msgid "You haven't added any tracks"
-msgstr ""
+msgstr "You haven't added any tracks"
#: airtime_mvc/application/controllers/LocaleController.php:55
msgid "You haven't added any playlists"
-msgstr ""
+msgstr "You haven't added any playlists"
#: airtime_mvc/application/controllers/LocaleController.php:56
msgid "You haven't added any smart blocks"
-msgstr ""
+msgstr "You haven't added any smart blocks"
#: airtime_mvc/application/controllers/LocaleController.php:57
msgid "You haven't added any webstreams"
-msgstr ""
+msgstr "You haven't added any webstreams"
#: airtime_mvc/application/controllers/LocaleController.php:58
msgid "Learn about tracks"
-msgstr ""
+msgstr "Learn about tracks"
#: airtime_mvc/application/controllers/LocaleController.php:59
msgid "Learn about playlists"
-msgstr ""
+msgstr "Learn about playlists"
#: airtime_mvc/application/controllers/LocaleController.php:60
msgid "Learn about smart blocks"
-msgstr ""
+msgstr "Learn about smart blocks"
#: airtime_mvc/application/controllers/LocaleController.php:61
msgid "Learn about webstreams"
-msgstr ""
+msgstr "Learn about webstreams"
#: airtime_mvc/application/controllers/LocaleController.php:62
msgid "Click 'New' to create one."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LocaleController.php:66
-#: airtime_mvc/application/controllers/LibraryController.php:123
-msgid "Edit Metadata"
-msgstr "Edit Metadata"
+msgstr "Click 'New' to create one."
#: airtime_mvc/application/controllers/LocaleController.php:67
msgid "Add to selected show"
@@ -2988,27 +634,111 @@ msgstr "Are you sure you want to delete the selected item(s)?"
msgid "Scheduled"
msgstr "Scheduled"
+#: airtime_mvc/application/controllers/LocaleController.php:74
+#: airtime_mvc/application/layouts/scripts/layout.phtml:78
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
+msgid "Tracks"
+msgstr "Tracks"
+
#: airtime_mvc/application/controllers/LocaleController.php:75
#: airtime_mvc/application/layouts/scripts/layout.phtml:60
msgid "Playlist"
-msgstr ""
+msgstr "Playlist"
#: airtime_mvc/application/controllers/LocaleController.php:79
msgid "Bit Rate"
msgstr "Bit Rate"
+#: airtime_mvc/application/controllers/LocaleController.php:80
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
+#: airtime_mvc/application/models/Block.php:1354
+msgid "BPM"
+msgstr "BPM"
+
+#: airtime_mvc/application/controllers/LocaleController.php:84
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
+#: airtime_mvc/application/models/Block.php:1361
+msgid "Encoded By"
+msgstr "Encoded By"
+
+#: airtime_mvc/application/controllers/LocaleController.php:89
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
+#: airtime_mvc/application/models/Block.php:1367
+msgid "Last Modified"
+msgstr "Last Modified"
+
+#: airtime_mvc/application/controllers/LocaleController.php:90
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
+#: airtime_mvc/application/models/Block.php:1368
+msgid "Last Played"
+msgstr "Last Played"
+
+#: airtime_mvc/application/controllers/LocaleController.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
+#: airtime_mvc/application/models/Block.php:1370
+msgid "Mime"
+msgstr "Mime"
+
+#: airtime_mvc/application/controllers/LocaleController.php:94
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
+#: airtime_mvc/application/models/Block.php:1372
+msgid "Owner"
+msgstr "Owner"
+
+#: airtime_mvc/application/controllers/LocaleController.php:95
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
+#: airtime_mvc/application/models/Block.php:1373
+msgid "Replay Gain"
+msgstr "Replay Gain"
+
#: airtime_mvc/application/controllers/LocaleController.php:96
msgid "Sample Rate"
msgstr "Sample Rate"
+#: airtime_mvc/application/controllers/LocaleController.php:97
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
+#: airtime_mvc/application/models/Block.php:1376
+msgid "Track Number"
+msgstr "Track Number"
+
+#: airtime_mvc/application/controllers/LocaleController.php:98
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
+#: airtime_mvc/application/models/Block.php:1377
+msgid "Uploaded"
+msgstr "Uploaded"
+
+#: airtime_mvc/application/controllers/LocaleController.php:99
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
+#: airtime_mvc/application/models/Block.php:1378
+msgid "Website"
+msgstr "Website"
+
#: airtime_mvc/application/controllers/LocaleController.php:101
msgid "Loading..."
msgstr "Loading..."
+#: airtime_mvc/application/controllers/LocaleController.php:102
+#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
+msgid "All"
+msgstr "All"
+
#: airtime_mvc/application/controllers/LocaleController.php:103
msgid "Files"
msgstr "Files"
+#: airtime_mvc/application/controllers/LocaleController.php:104
+#: airtime_mvc/application/layouts/scripts/layout.phtml:80
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
+msgid "Playlists"
+msgstr "Playlists"
+
+#: airtime_mvc/application/controllers/LocaleController.php:105
+#: airtime_mvc/application/layouts/scripts/layout.phtml:82
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
+msgid "Smart Blocks"
+msgstr "Smart Blocks"
+
#: airtime_mvc/application/controllers/LocaleController.php:106
msgid "Web Streams"
msgstr "Web Streams"
@@ -3153,6 +883,74 @@ msgstr "Smart block saved"
msgid "Processing..."
msgstr "Processing..."
+#: airtime_mvc/application/controllers/LocaleController.php:151
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
+#: airtime_mvc/application/models/Block.php:1383
+msgid "Select modifier"
+msgstr "Select modifier"
+
+#: airtime_mvc/application/controllers/LocaleController.php:152
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
+#: airtime_mvc/application/models/Block.php:1384
+msgid "contains"
+msgstr "contains"
+
+#: airtime_mvc/application/controllers/LocaleController.php:153
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
+#: airtime_mvc/application/models/Block.php:1385
+msgid "does not contain"
+msgstr "does not contain"
+
+#: airtime_mvc/application/controllers/LocaleController.php:154
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
+#: airtime_mvc/application/models/Block.php:1386
+#: airtime_mvc/application/models/Block.php:1390
+msgid "is"
+msgstr "is"
+
+#: airtime_mvc/application/controllers/LocaleController.php:155
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
+#: airtime_mvc/application/models/Block.php:1387
+#: airtime_mvc/application/models/Block.php:1391
+msgid "is not"
+msgstr "is not"
+
+#: airtime_mvc/application/controllers/LocaleController.php:156
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
+#: airtime_mvc/application/models/Block.php:1388
+msgid "starts with"
+msgstr "starts with"
+
+#: airtime_mvc/application/controllers/LocaleController.php:157
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
+#: airtime_mvc/application/models/Block.php:1389
+msgid "ends with"
+msgstr "ends with"
+
+#: airtime_mvc/application/controllers/LocaleController.php:158
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
+#: airtime_mvc/application/models/Block.php:1392
+msgid "is greater than"
+msgstr "is greater than"
+
+#: airtime_mvc/application/controllers/LocaleController.php:159
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
+#: airtime_mvc/application/models/Block.php:1393
+msgid "is less than"
+msgstr "is less than"
+
+#: airtime_mvc/application/controllers/LocaleController.php:160
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
+#: airtime_mvc/application/models/Block.php:1394
+msgid "is in the range"
+msgstr "is in the range"
+
#: airtime_mvc/application/controllers/LocaleController.php:162
msgid "Choose Storage Folder"
msgstr "Choose Storage Folder"
@@ -3169,6 +967,11 @@ msgstr ""
"Are you sure you want to change the storage folder?\n"
"This will remove the files from your Airtime library!"
+#: airtime_mvc/application/controllers/LocaleController.php:166
+#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
+msgid "Manage Media Folders"
+msgstr "Manage Media Folders"
+
#: airtime_mvc/application/controllers/LocaleController.php:167
msgid "Are you sure you want to remove the watched folder?"
msgstr "Are you sure you want to remove the watched folder?"
@@ -3190,6 +993,11 @@ msgstr "Connected to the streaming server"
msgid "The stream is disabled"
msgstr "The stream is disabled"
+#: airtime_mvc/application/controllers/LocaleController.php:173
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
+msgid "Getting information from the server..."
+msgstr "Getting information from the server..."
+
#: airtime_mvc/application/controllers/LocaleController.php:174
msgid "Can not connect to the streaming server"
msgstr "Can not connect to the streaming server"
@@ -3226,7 +1034,7 @@ msgstr "If your live streaming client does not ask for a username, this field sh
#: airtime_mvc/application/controllers/LocaleController.php:184
msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!"
-msgstr ""
+msgstr "WARNING: This will restart your stream and may cause a short dropout for your listeners!"
#: airtime_mvc/application/controllers/LocaleController.php:185
msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics."
@@ -3403,19 +1211,89 @@ msgstr "Dec"
#: airtime_mvc/application/controllers/LocaleController.php:245
msgid "Today"
-msgstr ""
+msgstr "Today"
#: airtime_mvc/application/controllers/LocaleController.php:246
msgid "Day"
-msgstr ""
+msgstr "Day"
#: airtime_mvc/application/controllers/LocaleController.php:247
msgid "Week"
-msgstr ""
+msgstr "Week"
#: airtime_mvc/application/controllers/LocaleController.php:248
msgid "Month"
-msgstr ""
+msgstr "Month"
+
+#: airtime_mvc/application/controllers/LocaleController.php:249
+#: airtime_mvc/application/forms/GeneralPreferences.php:158
+msgid "Sunday"
+msgstr "Sunday"
+
+#: airtime_mvc/application/controllers/LocaleController.php:250
+#: airtime_mvc/application/forms/GeneralPreferences.php:159
+msgid "Monday"
+msgstr "Monday"
+
+#: airtime_mvc/application/controllers/LocaleController.php:251
+#: airtime_mvc/application/forms/GeneralPreferences.php:160
+msgid "Tuesday"
+msgstr "Tuesday"
+
+#: airtime_mvc/application/controllers/LocaleController.php:252
+#: airtime_mvc/application/forms/GeneralPreferences.php:161
+msgid "Wednesday"
+msgstr "Wednesday"
+
+#: airtime_mvc/application/controllers/LocaleController.php:253
+#: airtime_mvc/application/forms/GeneralPreferences.php:162
+msgid "Thursday"
+msgstr "Thursday"
+
+#: airtime_mvc/application/controllers/LocaleController.php:254
+#: airtime_mvc/application/forms/GeneralPreferences.php:163
+msgid "Friday"
+msgstr "Friday"
+
+#: airtime_mvc/application/controllers/LocaleController.php:255
+#: airtime_mvc/application/forms/GeneralPreferences.php:164
+msgid "Saturday"
+msgstr "Saturday"
+
+#: airtime_mvc/application/controllers/LocaleController.php:256
+#: airtime_mvc/application/forms/AddShowRepeats.php:35
+msgid "Sun"
+msgstr "Sun"
+
+#: airtime_mvc/application/controllers/LocaleController.php:257
+#: airtime_mvc/application/forms/AddShowRepeats.php:36
+msgid "Mon"
+msgstr "Mon"
+
+#: airtime_mvc/application/controllers/LocaleController.php:258
+#: airtime_mvc/application/forms/AddShowRepeats.php:37
+msgid "Tue"
+msgstr "Tue"
+
+#: airtime_mvc/application/controllers/LocaleController.php:259
+#: airtime_mvc/application/forms/AddShowRepeats.php:38
+msgid "Wed"
+msgstr "Wed"
+
+#: airtime_mvc/application/controllers/LocaleController.php:260
+#: airtime_mvc/application/forms/AddShowRepeats.php:39
+msgid "Thu"
+msgstr "Thu"
+
+#: airtime_mvc/application/controllers/LocaleController.php:261
+#: airtime_mvc/application/forms/AddShowRepeats.php:40
+msgid "Fri"
+msgstr "Fri"
+
+#: airtime_mvc/application/controllers/LocaleController.php:262
+#: airtime_mvc/application/forms/AddShowRepeats.php:41
+msgid "Sat"
+msgstr "Sat"
#: airtime_mvc/application/controllers/LocaleController.php:263
msgid "Shows longer than their scheduled time will be cut off by a following show."
@@ -3426,7 +1304,7 @@ msgid "Cancel Current Show?"
msgstr "Cancel Current Show?"
#: airtime_mvc/application/controllers/LocaleController.php:265
-#: airtime_mvc/application/controllers/LocaleController.php:309
+#: airtime_mvc/application/controllers/LocaleController.php:312
msgid "Stop recording current show?"
msgstr "Stop recording current show?"
@@ -3446,6 +1324,11 @@ msgstr "Remove all content?"
msgid "Delete selected item(s)?"
msgstr "Delete selected item(s)?"
+#: airtime_mvc/application/controllers/LocaleController.php:273
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
+msgid "Start"
+msgstr "Start"
+
#: airtime_mvc/application/controllers/LocaleController.php:274
msgid "End"
msgstr "End"
@@ -3454,579 +1337,466 @@ msgstr "End"
msgid "Duration"
msgstr "Duration"
-#: airtime_mvc/application/controllers/LocaleController.php:283
+#: airtime_mvc/application/controllers/LocaleController.php:276
+msgid "Filtering out "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:277
+msgid " of "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:278
+msgid " records"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/layouts/scripts/layout.phtml:140
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
+#: airtime_mvc/application/models/Block.php:1358
+msgid "Cue In"
+msgstr "Cue In"
+
+#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/layouts/scripts/layout.phtml:147
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
+#: airtime_mvc/application/models/Block.php:1359
+msgid "Cue Out"
+msgstr "Cue Out"
+
+#: airtime_mvc/application/controllers/LocaleController.php:286
#: airtime_mvc/application/layouts/scripts/layout.phtml:167
msgid "Fade In"
msgstr "Fade In"
-#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/controllers/LocaleController.php:287
#: airtime_mvc/application/layouts/scripts/layout.phtml:168
msgid "Fade Out"
msgstr "Fade Out"
-#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/controllers/LocaleController.php:288
msgid "Show Empty"
msgstr "Show Empty"
-#: airtime_mvc/application/controllers/LocaleController.php:286
+#: airtime_mvc/application/controllers/LocaleController.php:289
msgid "Recording From Line In"
msgstr "Recording From Line In"
-#: airtime_mvc/application/controllers/LocaleController.php:287
+#: airtime_mvc/application/controllers/LocaleController.php:290
msgid "Track preview"
msgstr "Track preview"
-#: airtime_mvc/application/controllers/LocaleController.php:291
+#: airtime_mvc/application/controllers/LocaleController.php:294
msgid "Cannot schedule outside a show."
msgstr "Cannot schedule outside a show."
-#: airtime_mvc/application/controllers/LocaleController.php:292
+#: airtime_mvc/application/controllers/LocaleController.php:295
msgid "Moving 1 Item"
msgstr "Moving 1 Item"
-#: airtime_mvc/application/controllers/LocaleController.php:293
+#: airtime_mvc/application/controllers/LocaleController.php:296
#, php-format
msgid "Moving %s Items"
msgstr "Moving %s Items"
-#: airtime_mvc/application/controllers/LocaleController.php:296
+#: airtime_mvc/application/controllers/LocaleController.php:297
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
+#: airtime_mvc/application/forms/Preferences.php:40
+#: airtime_mvc/application/forms/EditHistory.php:131
+#: airtime_mvc/application/forms/AddUser.php:110
+#: airtime_mvc/application/forms/PasswordChange.php:43
+#: airtime_mvc/application/forms/SupportSettings.php:131
+msgid "Save"
+msgstr "Save"
+
+#: airtime_mvc/application/controllers/LocaleController.php:298
+#: airtime_mvc/application/controllers/LocaleController.php:321
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
+#: airtime_mvc/application/forms/EditHistory.php:141
+#: airtime_mvc/application/forms/EditAudioMD.php:186
+msgid "Cancel"
+msgstr "Cancel"
+
+#: airtime_mvc/application/controllers/LocaleController.php:299
msgid "Fade Editor"
msgstr "Fade Editor"
-#: airtime_mvc/application/controllers/LocaleController.php:297
+#: airtime_mvc/application/controllers/LocaleController.php:300
msgid "Cue Editor"
msgstr "Cue Editor"
-#: airtime_mvc/application/controllers/LocaleController.php:298
+#: airtime_mvc/application/controllers/LocaleController.php:301
msgid "Waveform features are available in a browser supporting the Web Audio API"
msgstr "Waveform features are available in a browser supporting the Web Audio API"
-#: airtime_mvc/application/controllers/LocaleController.php:301
+#: airtime_mvc/application/controllers/LocaleController.php:304
msgid "Select all"
msgstr "Select all"
-#: airtime_mvc/application/controllers/LocaleController.php:302
+#: airtime_mvc/application/controllers/LocaleController.php:305
msgid "Select none"
msgstr "Select none"
-#: airtime_mvc/application/controllers/LocaleController.php:303
+#: airtime_mvc/application/controllers/LocaleController.php:306
msgid "Trim overbooked shows"
-msgstr ""
+msgstr "Trim overbooked shows"
-#: airtime_mvc/application/controllers/LocaleController.php:304
+#: airtime_mvc/application/controllers/LocaleController.php:307
msgid "Remove selected scheduled items"
msgstr "Remove selected scheduled items"
-#: airtime_mvc/application/controllers/LocaleController.php:305
+#: airtime_mvc/application/controllers/LocaleController.php:308
msgid "Jump to the current playing track"
msgstr "Jump to the current playing track"
-#: airtime_mvc/application/controllers/LocaleController.php:306
+#: airtime_mvc/application/controllers/LocaleController.php:309
msgid "Cancel current show"
msgstr "Cancel current show"
-#: airtime_mvc/application/controllers/LocaleController.php:311
+#: airtime_mvc/application/controllers/LocaleController.php:314
msgid "Open library to add or remove content"
msgstr "Open library to add or remove content"
-#: airtime_mvc/application/controllers/LocaleController.php:312
+#: airtime_mvc/application/controllers/LocaleController.php:315
msgid "Add / Remove Content"
msgstr "Add / Remove Content"
#: airtime_mvc/application/controllers/LocaleController.php:317
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
+msgid "in use"
+msgstr "in use"
+
+#: airtime_mvc/application/controllers/LocaleController.php:318
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
+msgid "Disk"
+msgstr "Disk"
+
+#: airtime_mvc/application/controllers/LocaleController.php:320
msgid "Look in"
msgstr "Look in"
-#: airtime_mvc/application/controllers/LocaleController.php:319
+#: airtime_mvc/application/controllers/LocaleController.php:322
msgid "Open"
msgstr "Open"
+#: airtime_mvc/application/controllers/LocaleController.php:324
+#: airtime_mvc/application/forms/AddUser.php:102
+msgid "Admin"
+msgstr "Admin"
+
#: airtime_mvc/application/controllers/LocaleController.php:325
+#: airtime_mvc/application/forms/AddUser.php:100
+msgid "DJ"
+msgstr "DJ"
+
+#: airtime_mvc/application/controllers/LocaleController.php:326
+#: airtime_mvc/application/forms/AddUser.php:101
+msgid "Program Manager"
+msgstr "Program Manager"
+
+#: airtime_mvc/application/controllers/LocaleController.php:327
+#: airtime_mvc/application/forms/AddUser.php:99
+msgid "Guest"
+msgstr "Guest"
+
+#: airtime_mvc/application/controllers/LocaleController.php:328
msgid "Guests can do the following:"
msgstr "Guests can do the following:"
-#: airtime_mvc/application/controllers/LocaleController.php:326
+#: airtime_mvc/application/controllers/LocaleController.php:329
msgid "View schedule"
msgstr "View schedule"
-#: airtime_mvc/application/controllers/LocaleController.php:327
+#: airtime_mvc/application/controllers/LocaleController.php:330
msgid "View show content"
msgstr "View show content"
-#: airtime_mvc/application/controllers/LocaleController.php:328
+#: airtime_mvc/application/controllers/LocaleController.php:331
msgid "DJs can do the following:"
msgstr "DJs can do the following:"
-#: airtime_mvc/application/controllers/LocaleController.php:329
+#: airtime_mvc/application/controllers/LocaleController.php:332
msgid "Manage assigned show content"
msgstr "Manage assigned show content"
-#: airtime_mvc/application/controllers/LocaleController.php:330
+#: airtime_mvc/application/controllers/LocaleController.php:333
msgid "Import media files"
msgstr "Import media files"
-#: airtime_mvc/application/controllers/LocaleController.php:331
+#: airtime_mvc/application/controllers/LocaleController.php:334
msgid "Create playlists, smart blocks, and webstreams"
msgstr "Create playlists, smart blocks, and webstreams"
-#: airtime_mvc/application/controllers/LocaleController.php:332
+#: airtime_mvc/application/controllers/LocaleController.php:335
msgid "Manage their own library content"
msgstr "Manage their own library content"
-#: airtime_mvc/application/controllers/LocaleController.php:333
+#: airtime_mvc/application/controllers/LocaleController.php:336
msgid "Progam Managers can do the following:"
msgstr "Progam Managers can do the following:"
-#: airtime_mvc/application/controllers/LocaleController.php:334
+#: airtime_mvc/application/controllers/LocaleController.php:337
msgid "View and manage show content"
msgstr "View and manage show content"
-#: airtime_mvc/application/controllers/LocaleController.php:335
+#: airtime_mvc/application/controllers/LocaleController.php:338
msgid "Schedule shows"
msgstr "Schedule shows"
-#: airtime_mvc/application/controllers/LocaleController.php:336
+#: airtime_mvc/application/controllers/LocaleController.php:339
msgid "Manage all library content"
msgstr "Manage all library content"
-#: airtime_mvc/application/controllers/LocaleController.php:337
+#: airtime_mvc/application/controllers/LocaleController.php:340
msgid "Admins can do the following:"
msgstr "Admins can do the following:"
-#: airtime_mvc/application/controllers/LocaleController.php:338
+#: airtime_mvc/application/controllers/LocaleController.php:341
msgid "Manage preferences"
msgstr "Manage preferences"
-#: airtime_mvc/application/controllers/LocaleController.php:339
+#: airtime_mvc/application/controllers/LocaleController.php:342
msgid "Manage users"
msgstr "Manage users"
-#: airtime_mvc/application/controllers/LocaleController.php:340
+#: airtime_mvc/application/controllers/LocaleController.php:343
msgid "Manage watched folders"
msgstr "Manage watched folders"
-#: airtime_mvc/application/controllers/LocaleController.php:342
+#: airtime_mvc/application/controllers/LocaleController.php:344
+#: airtime_mvc/application/forms/RegisterAirtime.php:116
+#: airtime_mvc/application/forms/SupportSettings.php:98
+msgid "Send support feedback"
+msgstr "Send support feedback"
+
+#: airtime_mvc/application/controllers/LocaleController.php:345
msgid "View system status"
msgstr "View system status"
-#: airtime_mvc/application/controllers/LocaleController.php:343
+#: airtime_mvc/application/controllers/LocaleController.php:346
msgid "Access playout history"
msgstr "Access playout history"
-#: airtime_mvc/application/controllers/LocaleController.php:344
+#: airtime_mvc/application/controllers/LocaleController.php:347
msgid "View listener stats"
msgstr "View listener stats"
-#: airtime_mvc/application/controllers/LocaleController.php:346
+#: airtime_mvc/application/controllers/LocaleController.php:349
msgid "Show / hide columns"
msgstr "Show / hide columns"
-#: airtime_mvc/application/controllers/LocaleController.php:348
+#: airtime_mvc/application/controllers/LocaleController.php:351
msgid "From {from} to {to}"
msgstr "From {from} to {to}"
-#: airtime_mvc/application/controllers/LocaleController.php:349
+#: airtime_mvc/application/controllers/LocaleController.php:352
msgid "kbps"
msgstr "kbps"
-#: airtime_mvc/application/controllers/LocaleController.php:350
+#: airtime_mvc/application/controllers/LocaleController.php:353
msgid "yyyy-mm-dd"
msgstr "yyyy-mm-dd"
-#: airtime_mvc/application/controllers/LocaleController.php:351
+#: airtime_mvc/application/controllers/LocaleController.php:354
msgid "hh:mm:ss.t"
msgstr "hh:mm:ss.t"
-#: airtime_mvc/application/controllers/LocaleController.php:352
+#: airtime_mvc/application/controllers/LocaleController.php:355
msgid "kHz"
msgstr "kHz"
-#: airtime_mvc/application/controllers/LocaleController.php:355
+#: airtime_mvc/application/controllers/LocaleController.php:358
msgid "Su"
msgstr "Su"
-#: airtime_mvc/application/controllers/LocaleController.php:356
+#: airtime_mvc/application/controllers/LocaleController.php:359
msgid "Mo"
msgstr "Mo"
-#: airtime_mvc/application/controllers/LocaleController.php:357
+#: airtime_mvc/application/controllers/LocaleController.php:360
msgid "Tu"
msgstr "Tu"
-#: airtime_mvc/application/controllers/LocaleController.php:358
+#: airtime_mvc/application/controllers/LocaleController.php:361
msgid "We"
msgstr "We"
-#: airtime_mvc/application/controllers/LocaleController.php:359
+#: airtime_mvc/application/controllers/LocaleController.php:362
msgid "Th"
msgstr "Th"
-#: airtime_mvc/application/controllers/LocaleController.php:360
+#: airtime_mvc/application/controllers/LocaleController.php:363
msgid "Fr"
msgstr "Fr"
-#: airtime_mvc/application/controllers/LocaleController.php:361
+#: airtime_mvc/application/controllers/LocaleController.php:364
msgid "Sa"
msgstr "Sa"
-#: airtime_mvc/application/controllers/LocaleController.php:364
+#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
+msgid "Close"
+msgstr "Close"
+
+#: airtime_mvc/application/controllers/LocaleController.php:367
msgid "Hour"
msgstr "Hour"
-#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:368
msgid "Minute"
msgstr "Minute"
-#: airtime_mvc/application/controllers/LocaleController.php:366
+#: airtime_mvc/application/controllers/LocaleController.php:369
msgid "Done"
msgstr "Done"
-#: airtime_mvc/application/controllers/LocaleController.php:369
+#: airtime_mvc/application/controllers/LocaleController.php:372
msgid "Select files"
msgstr "Select files"
-#: airtime_mvc/application/controllers/LocaleController.php:370
-#: airtime_mvc/application/controllers/LocaleController.php:371
+#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:374
msgid "Add files to the upload queue and click the start button."
msgstr "Add files to the upload queue and click the start button."
-#: airtime_mvc/application/controllers/LocaleController.php:372
-#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:376
msgid "Status"
msgstr "Status"
-#: airtime_mvc/application/controllers/LocaleController.php:374
+#: airtime_mvc/application/controllers/LocaleController.php:377
msgid "Add Files"
msgstr "Add Files"
-#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:378
msgid "Stop Upload"
msgstr "Stop Upload"
-#: airtime_mvc/application/controllers/LocaleController.php:376
+#: airtime_mvc/application/controllers/LocaleController.php:379
msgid "Start upload"
msgstr "Start upload"
-#: airtime_mvc/application/controllers/LocaleController.php:377
+#: airtime_mvc/application/controllers/LocaleController.php:380
msgid "Add files"
msgstr "Add files"
-#: airtime_mvc/application/controllers/LocaleController.php:378
+#: airtime_mvc/application/controllers/LocaleController.php:381
#, php-format
msgid "Uploaded %d/%d files"
msgstr "Uploaded %d/%d files"
-#: airtime_mvc/application/controllers/LocaleController.php:379
+#: airtime_mvc/application/controllers/LocaleController.php:382
msgid "N/A"
msgstr "N/A"
-#: airtime_mvc/application/controllers/LocaleController.php:380
+#: airtime_mvc/application/controllers/LocaleController.php:383
msgid "Drag files here."
msgstr "Drag files here."
-#: airtime_mvc/application/controllers/LocaleController.php:381
+#: airtime_mvc/application/controllers/LocaleController.php:384
msgid "File extension error."
msgstr "File extension error."
-#: airtime_mvc/application/controllers/LocaleController.php:382
+#: airtime_mvc/application/controllers/LocaleController.php:385
msgid "File size error."
msgstr "File size error."
-#: airtime_mvc/application/controllers/LocaleController.php:383
+#: airtime_mvc/application/controllers/LocaleController.php:386
msgid "File count error."
msgstr "File count error."
-#: airtime_mvc/application/controllers/LocaleController.php:384
+#: airtime_mvc/application/controllers/LocaleController.php:387
msgid "Init error."
msgstr "Init error."
-#: airtime_mvc/application/controllers/LocaleController.php:385
+#: airtime_mvc/application/controllers/LocaleController.php:388
msgid "HTTP Error."
msgstr "HTTP Error."
-#: airtime_mvc/application/controllers/LocaleController.php:386
+#: airtime_mvc/application/controllers/LocaleController.php:389
msgid "Security error."
msgstr "Security error."
-#: airtime_mvc/application/controllers/LocaleController.php:387
+#: airtime_mvc/application/controllers/LocaleController.php:390
msgid "Generic error."
msgstr "Generic error."
-#: airtime_mvc/application/controllers/LocaleController.php:388
+#: airtime_mvc/application/controllers/LocaleController.php:391
msgid "IO error."
msgstr "IO error."
-#: airtime_mvc/application/controllers/LocaleController.php:389
+#: airtime_mvc/application/controllers/LocaleController.php:392
#, php-format
msgid "File: %s"
msgstr "File: %s"
-#: airtime_mvc/application/controllers/LocaleController.php:391
+#: airtime_mvc/application/controllers/LocaleController.php:394
#, php-format
msgid "%d files queued"
msgstr "%d files queued"
-#: airtime_mvc/application/controllers/LocaleController.php:392
+#: airtime_mvc/application/controllers/LocaleController.php:395
msgid "File: %f, size: %s, max file size: %m"
msgstr "File: %f, size: %s, max file size: %m"
-#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/controllers/LocaleController.php:396
msgid "Upload URL might be wrong or doesn't exist"
msgstr "Upload URL might be wrong or doesn't exist"
-#: airtime_mvc/application/controllers/LocaleController.php:394
+#: airtime_mvc/application/controllers/LocaleController.php:397
msgid "Error: File too large: "
msgstr "Error: File too large: "
-#: airtime_mvc/application/controllers/LocaleController.php:395
+#: airtime_mvc/application/controllers/LocaleController.php:398
msgid "Error: Invalid file extension: "
msgstr "Error: Invalid file extension: "
-#: airtime_mvc/application/controllers/LocaleController.php:398
+#: airtime_mvc/application/controllers/LocaleController.php:400
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
+msgid "Set Default"
+msgstr "Set Default"
+
+#: airtime_mvc/application/controllers/LocaleController.php:401
msgid "Create Entry"
msgstr "Create Entry"
-#: airtime_mvc/application/controllers/LocaleController.php:399
+#: airtime_mvc/application/controllers/LocaleController.php:402
msgid "Edit History Record"
msgstr "Edit History Record"
-#: airtime_mvc/application/controllers/LocaleController.php:402
+#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
+#: airtime_mvc/application/forms/EditHistoryItem.php:57
+msgid "No Show"
+msgstr "No Show"
+
+#: airtime_mvc/application/controllers/LocaleController.php:405
#, php-format
msgid "Copied %s row%s to the clipboard"
msgstr "Copied %s row%s to the clipboard"
-#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/controllers/LocaleController.php:406
#, php-format
msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished."
msgstr "%sPrint view%sPlease use your browser's print function to print this table. Press the Escape key when finished."
-#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/controllers/LocaleController.php:407
msgid "New Show"
-msgstr ""
+msgstr "New Show"
-#: airtime_mvc/application/controllers/LocaleController.php:405
+#: airtime_mvc/application/controllers/LocaleController.php:408
msgid "New Log Entry"
-msgstr ""
-
-#: airtime_mvc/application/controllers/ScheduleController.php:389
-#, php-format
-msgid "Rebroadcast of show %s from %s at %s"
-msgstr "Rebroadcast of show %s from %s at %s"
-
-#: airtime_mvc/application/controllers/ScheduleController.php:712
-#: airtime_mvc/application/controllers/LibraryController.php:131
-msgid "Download"
-msgstr "Download"
-
-#: airtime_mvc/application/controllers/ErrorController.php:78
-msgid "Page not found."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:87
-msgid "The requested action is not supported."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:98
-msgid "You do not have permission to access this resource."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:109
-msgid "An internal application error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ListenerstatController.php:51
-msgid "Please make sure admin user/password is correct on System->Streams page."
-msgstr "Please make sure admin user/password is correct on System->Streams page."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:53
-#, php-format
-msgid "You are viewing an older version of %s"
-msgstr "You are viewing an older version of %s"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:140
-msgid "You cannot add tracks to dynamic blocks."
-msgstr "You cannot add tracks to dynamic blocks."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:147
-#: airtime_mvc/application/controllers/LibraryController.php:31
-#, php-format
-msgid "%s not found"
-msgstr "%s not found"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:161
-#, php-format
-msgid "You don't have permission to delete selected %s(s)."
-msgstr "You don't have permission to delete selected %s(s)."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:168
-#: airtime_mvc/application/controllers/LibraryController.php:40
-msgid "Something went wrong."
-msgstr "Something went wrong."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:174
-msgid "You can only add tracks to smart block."
-msgstr "You can only add tracks to smart block."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:192
-msgid "Untitled Playlist"
-msgstr "Untitled Playlist"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:194
-msgid "Untitled Smart Block"
-msgstr "Untitled Smart Block"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:522
-msgid "Unknown Playlist"
-msgstr "Unknown Playlist"
-
-#: airtime_mvc/application/controllers/LoginController.php:43
-msgid "Please enter your username and password."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:93
-msgid "Wrong username or password provided. Please try again."
-msgstr "Wrong username or password provided. Please try again."
-
-#: airtime_mvc/application/controllers/LoginController.php:167
-msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
-msgstr "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
-
-#: airtime_mvc/application/controllers/LoginController.php:173
-msgid "There was a problem with the username or email address you entered."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:35
-#: airtime_mvc/application/controllers/DashboardController.php:84
-msgid "You don't have permission to disconnect source."
-msgstr "You don't have permission to disconnect source."
-
-#: airtime_mvc/application/controllers/DashboardController.php:37
-#: airtime_mvc/application/controllers/DashboardController.php:86
-msgid "There is no source connected to this input."
-msgstr "There is no source connected to this input."
-
-#: airtime_mvc/application/controllers/DashboardController.php:81
-msgid "You don't have permission to switch source."
-msgstr "You don't have permission to switch source."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:72
-msgid "Preferences updated."
-msgstr "Preferences updated."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:115
-msgid "Support setting updated."
-msgstr "Support setting updated."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:123
-msgid "Support Feedback"
-msgstr "Support Feedback"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:251
-msgid "Stream Setting Updated."
-msgstr "Stream Setting Updated."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:342
-msgid "path should be specified"
-msgstr "path should be specified"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:437
-msgid "Problem with Liquidsoap..."
-msgstr "Problem with Liquidsoap..."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:493
-msgid "Request method not accepted"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:86
-msgid "User added successfully!"
-msgstr "User added successfully!"
-
-#: airtime_mvc/application/controllers/UserController.php:88
-msgid "User updated successfully!"
-msgstr "User updated successfully!"
-
-#: airtime_mvc/application/controllers/UserController.php:187
-msgid "Settings updated successfully!"
-msgstr "Settings updated successfully!"
-
-#: airtime_mvc/application/controllers/WebstreamController.php:28
-#: airtime_mvc/application/controllers/WebstreamController.php:32
-msgid "Untitled Webstream"
-msgstr "Untitled Webstream"
-
-#: airtime_mvc/application/controllers/WebstreamController.php:150
-msgid "Webstream saved."
-msgstr "Webstream saved."
-
-#: airtime_mvc/application/controllers/WebstreamController.php:158
-msgid "Invalid form values."
-msgstr "Invalid form values."
-
-#: airtime_mvc/application/controllers/LibraryController.php:95
-#: airtime_mvc/application/controllers/ShowbuilderController.php:136
-msgid "Preview"
-msgstr "Preview"
-
-#: airtime_mvc/application/controllers/LibraryController.php:115
-#: airtime_mvc/application/controllers/LibraryController.php:177
-#: airtime_mvc/application/controllers/LibraryController.php:200
-msgid "Add to Playlist"
-msgstr "Add to Playlist"
-
-#: airtime_mvc/application/controllers/LibraryController.php:117
-msgid "Add to Smart Block"
-msgstr "Add to Smart Block"
-
-#: airtime_mvc/application/controllers/LibraryController.php:147
-msgid "View track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:148
-msgid "Remove track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:154
-#: airtime_mvc/application/controllers/LibraryController.php:159
-msgid "Upload track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:169
-msgid "Duplicate Playlist"
-msgstr "Duplicate Playlist"
-
-#: airtime_mvc/application/controllers/LibraryController.php:213
-msgid "No action available"
-msgstr "No action available"
-
-#: airtime_mvc/application/controllers/LibraryController.php:233
-msgid "You don't have permission to delete selected items."
-msgstr "You don't have permission to delete selected items."
-
-#: airtime_mvc/application/controllers/LibraryController.php:279
-msgid "Could not delete file because it is scheduled in the future."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:282
-msgid "Could not delete file(s)."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:322
-#, php-format
-msgid "Copy of %s"
-msgstr "Copy of %s"
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
-msgid ""
-"To configure and use the embeddable player you must:
\n"
-" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
-" 2. Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
-msgid ""
-"To use the embeddable weekly schedule widget you must:
\n"
-" Enable the Public Airtime API under System -> Preferences"
-msgstr ""
+msgstr "New Log Entry"
#: airtime_mvc/application/controllers/ShowbuilderController.php:138
msgid "Select cursor"
@@ -4040,50 +1810,100 @@ msgstr "Remove cursor"
msgid "show does not exist"
msgstr "show does not exist"
-#: airtime_mvc/application/controllers/ApiController.php:79
-msgid "You are not allowed to access this resource."
-msgstr "You are not allowed to access this resource."
-
-#: airtime_mvc/application/controllers/ApiController.php:244
-#: airtime_mvc/application/controllers/ApiController.php:317
-#: airtime_mvc/application/controllers/ApiController.php:392
-#: airtime_mvc/application/controllers/ApiController.php:435
-#: airtime_mvc/application/controllers/ApiController.php:474
-#: airtime_mvc/application/controllers/ApiController.php:507
-msgid "You are not allowed to access this resource. "
-msgstr "You are not allowed to access this resource. "
-
-#: airtime_mvc/application/controllers/ApiController.php:698
-#: airtime_mvc/application/controllers/ApiController.php:718
-#: airtime_mvc/application/controllers/ApiController.php:730
+#: airtime_mvc/application/controllers/ScheduleController.php:389
#, php-format
-msgid "File does not exist in %s"
-msgstr "File does not exist in %s"
+msgid "Rebroadcast of show %s from %s at %s"
+msgstr "Rebroadcast of show %s from %s at %s"
-#: airtime_mvc/application/controllers/ApiController.php:781
-msgid "Bad request. no 'mode' parameter passed."
-msgstr "Bad request. no 'mode' parameter passed."
+#: airtime_mvc/application/common/UsabilityHints.php:55
+msgid "Upload some tracks below to add them to your library!"
+msgstr "Upload some tracks below to add them to your library!"
-#: airtime_mvc/application/controllers/ApiController.php:791
-msgid "Bad request. 'mode' parameter is invalid"
-msgstr "Bad request. 'mode' parameter is invalid"
-
-#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#: airtime_mvc/application/common/UsabilityHints.php:57
#, php-format
-msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
+msgstr "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
+
+#: airtime_mvc/application/common/UsabilityHints.php:63
+msgid "Click the 'New Show' button and fill out the required fields."
+msgstr "Please click the 'New Show' button and fill out the required fields."
+
+#: airtime_mvc/application/common/UsabilityHints.php:65
+#, php-format
+msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
+msgstr "It looks like you don't have any shows scheduled yet. %sCreate a show now%s."
+
+#: airtime_mvc/application/common/UsabilityHints.php:73
+msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
+msgstr "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
+
+#: airtime_mvc/application/common/UsabilityHints.php:75
+#, php-format
+msgid ""
+"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
+" %sCreate an unlinked show now%s."
+msgstr "Linked shows need to be filled with tracks before they start. To start broadcasting cancel the current linked show and schedule an unlinked show. %sCreate an unlinked show now%s."
+
+#: airtime_mvc/application/common/UsabilityHints.php:80
+msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'"
msgstr ""
+#: airtime_mvc/application/common/UsabilityHints.php:82
+#, php-format
+msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
+msgstr "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
+
+#: airtime_mvc/application/common/UsabilityHints.php:89
+msgid "Click on the show starting next and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:91
+#, php-format
+msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+msgstr "It looks like the next show is empty. %sAdd tracks to your show now%s."
+
+#: airtime_mvc/application/common/DateHelper.php:213
+#, php-format
+msgid "The year %s must be within the range of 1753 - 9999"
+msgstr "The year %s must be within the range of 1753 - 9999"
+
+#: airtime_mvc/application/common/DateHelper.php:216
+#, php-format
+msgid "%s-%s-%s is not a valid date"
+msgstr "%s-%s-%s is not a valid date"
+
+#: airtime_mvc/application/common/DateHelper.php:240
+#, php-format
+msgid "%s:%s:%s is not a valid time"
+msgstr "%s:%s:%s is not a valid time"
+
+#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
+msgid "Live stream"
+msgstr "Live stream"
+
#: airtime_mvc/application/layouts/scripts/layout.phtml:63
msgid "Smart Block"
-msgstr ""
+msgstr "Smart Block"
#: airtime_mvc/application/layouts/scripts/layout.phtml:66
msgid "Webstream"
-msgstr ""
+msgstr "Webstream"
#: airtime_mvc/application/layouts/scripts/layout.phtml:71
msgid "Upload"
-msgstr ""
+msgstr "Upload"
+
+#: airtime_mvc/application/layouts/scripts/layout.phtml:76
+#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
+msgid "Dashboard"
+msgstr "Dashboard"
+
+#: airtime_mvc/application/layouts/scripts/layout.phtml:84
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
+msgid "Webstreams"
+msgstr "Webstreams"
#: airtime_mvc/application/layouts/scripts/layout.phtml:135
#: airtime_mvc/application/layouts/scripts/layout.phtml:161
@@ -4107,416 +1927,2185 @@ msgstr "Set Cue Out"
msgid "Cursor"
msgstr "Cursor"
-#~ msgid "%1$s copyright © %2$s All rights reserved.%3$sMaintained and distributed under the %4$s by %5$s"
-#~ msgstr "%1$s copyright © %2$s All rights reserved.%3$sMaintained and distributed under the %4$s by %5$s"
+#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#, php-format
+msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgstr "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
+msgid "Drop files here or click to browse your computer."
+msgstr "Drop files here or click to browse your computer."
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
+msgid "Failed"
+msgstr "Failed"
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
+msgid "Pending"
+msgstr "Pending"
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
+msgid "Recent Uploads"
+msgstr "Recent Uploads"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
+msgid "Share"
+msgstr "Share"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
+msgid "Select stream:"
+msgstr "Select stream:"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
+msgid "mute"
+msgstr "mute"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
+msgid "unmute"
+msgstr "unmute"
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
+msgid "About"
+msgstr "About"
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
+#, php-format
+msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
+msgstr "%1$s %2$s, the open radio software for scheduling and remote station management."
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
+#, php-format
+msgid "%1$s %2$s is distributed under the %3$s"
+msgstr "%1$s %2$s is distributed under the %3$s"
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
+#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
+#, php-format
+msgid "Welcome to %s!"
+msgstr "Welcome to %s!"
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
+#, php-format
+msgid "Here's how you can get started using %s to automate your broadcasts: "
+msgstr "Here's how you can get started using %s to automate your broadcasts: "
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
+msgid "Upload audio tracks"
+msgstr "Upload audio tracks"
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
+msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
+msgstr "Click the 'Upload' button in the left corner to upload tracks to your library."
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
+msgid "Schedule a show"
+msgstr "Schedule a show"
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
+msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
+msgstr "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
+msgid "Add tracks to your show"
+msgstr "Add tracks to your show"
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
+msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
+msgstr "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
+msgid "Now you're good to go!"
+msgstr "Now you're good to go!"
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
+#, php-format
+msgid "For more detailed help, read the %suser manual%s."
+msgstr "For more detailed help, read the %suser manual%s."
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
+#: airtime_mvc/application/configs/navigation.php:40
+msgid "Weekly Schedule"
+msgstr "Weekly Schedule"
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
+#: airtime_mvc/application/forms/Player.php:77
+msgid "Preview:"
+msgstr "Preview:"
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
+#: airtime_mvc/application/configs/navigation.php:34
+msgid "Player"
+msgstr "Player"
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:97
+msgid "Playout History"
+msgstr "Playout History"
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
+msgid "Log Sheet"
+msgstr "Log Sheet"
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
+msgid "File Summary"
+msgstr "File Summary"
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
+msgid "Show Summary"
+msgstr "Show Summary"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
+msgid "Expand Static Block"
+msgstr "Expand Static Block"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
+msgid "Expand Dynamic Block"
+msgstr "Expand Dynamic Block"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
+msgid "Choose some search criteria above and click Generate to create this playlist."
+msgstr "Choose some search criteria above and click Generate to create this playlist."
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
+msgid "A track list will be generated when you schedule this smart block into a show."
+msgstr "A track list will be generated when you schedule this smart block into a show."
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
+msgid "Drag tracks here from your library to add them to the playlist"
+msgstr "Drag tracks here from your library to add them to the playlist"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
+msgid "Editing "
+msgstr "Editing "
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:26
+msgid "Name:"
+msgstr "Name:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
+#: airtime_mvc/application/forms/AddShowWhat.php:54
+msgid "Description:"
+msgstr "Description:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
+#: airtime_mvc/application/forms/AddShowWhen.php:89
+msgid "Duration:"
+msgstr "Duration:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
+msgid "Toggle Details"
+msgstr "Toggle Details"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+msgid "Shuffle playlist"
+msgstr "Shuffle playlist"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
+msgid "Shuffle"
+msgstr "Shuffle"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
+msgid "Playlist crossfade"
+msgstr "Playlist crossfade"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+msgid "Empty playlist content"
+msgstr "Empty playlist content"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Clear"
+msgstr "Clear"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+msgid "Fade in: "
+msgstr "Fade in: "
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "Fade out: "
+msgstr "Fade out: "
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+msgid "Save playlist"
+msgstr "Save playlist"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
+msgid "No open playlist"
+msgstr "No open 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 "Show Waveform"
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "(ss.t)"
+msgstr "(ss.t)"
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Remove all content from this smart block"
+msgstr "Remove all content from this smart block"
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
+msgid "No smart block currently open"
+msgstr "No smart block currently open"
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+msgid "Cue In: "
+msgstr "Cue In: "
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "(hh:mm:ss.t)"
+msgstr "(hh:mm:ss.t)"
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "Cue Out: "
+msgstr "Cue Out: "
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
+msgid "Original Length:"
+msgstr "Original Length:"
+
+#: airtime_mvc/application/views/scripts/preference/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:56
+msgid "General"
+msgstr "General"
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
+msgid "Stream Settings"
+msgstr "Stream Settings"
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
+msgid "Global"
+msgstr "Global"
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
+msgid "dB"
+msgstr "dB"
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
+msgid "Output Streams"
+msgstr "Output Streams"
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:3
+#: airtime_mvc/application/forms/Login.php:83
+msgid "Login"
+msgstr "Login"
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:7
+#, php-format
+msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
+msgstr "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
+msgid "Email Sent!"
+msgstr "Email Sent!"
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
+msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
+msgstr "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
+msgid "Back"
+msgstr "Back"
+
+#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
+msgid "Password Reset"
+msgstr "Password Reset"
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
+msgid "New password"
+msgstr "New password"
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
+msgid "Please enter and confirm your new password in the fields below."
+msgstr "Please enter and confirm your new password in the fields below."
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
+msgid "Manage Users"
+msgstr "Manage Users"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
+msgid "New User"
+msgstr "New User"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
+msgid "id"
+msgstr "id"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
+#: airtime_mvc/application/forms/PasswordRestore.php:25
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
+msgid "Username"
+msgstr "Username"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
+msgid "First Name"
+msgstr "First Name"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
+msgid "Last Name"
+msgstr "Last Name"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
+msgid "User Type"
+msgstr "User Type"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
+#, php-format
+msgid "Super Admin details can be changed in your Billing Settings."
+msgstr "Super Admin details can be changed in your Billing Settings."
+
+#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
+msgid "Find Shows"
+msgstr "Find Shows"
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
+msgid "Choose Show Instance"
+msgstr "Choose Show Instance"
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
+msgid "Find"
+msgstr "Find"
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
+#: airtime_mvc/application/configs/navigation.php:61
+msgid "My Profile"
+msgstr "My Profile"
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
+#, php-format
+msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
+msgstr "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
+msgid "Repeat Days:"
+msgstr "Repeat Days:"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
+#: airtime_mvc/application/forms/GeneralPreferences.php:53
+#: airtime_mvc/application/forms/AddShowStyle.php:64
+msgid "Remove"
+msgstr "Remove"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
+msgid "Add"
+msgstr "Add"
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
+msgid "Show Source"
+msgstr "Show Source"
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
+msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
+msgstr "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
+msgid "Register Airtime"
+msgstr "Register Airtime"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
+#, php-format
+msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
+msgstr "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
+#, php-format
+msgid "Click the box below to promote your station on %s."
+msgstr "Click the box below to promote your station on %s."
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
+msgid "(Required)"
+msgstr "(Required)"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
+msgid "(for verification purposes only, will not be published)"
+msgstr "(for verification purposes only, will not be published)"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
+#: airtime_mvc/application/forms/GeneralPreferences.php:43
+msgid "Note: Anything larger than 600x600 will be resized."
+msgstr "Note: Anything larger than 600x600 will be resized."
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
+msgid "Show me what I am sending "
+msgstr "Show me what I am sending "
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
+msgid "Terms and Conditions"
+msgstr "Terms and Conditions"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
+msgid "Choose Days:"
+msgstr "Choose Days:"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
+msgid "Search Criteria:"
+msgstr "Search Criteria:"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
+msgid "New Criteria"
+msgstr "New Criteria"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
+msgid "or"
+msgstr "or"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
+msgid "and"
+msgstr "and"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
+msgid "New Modifier"
+msgstr "New Modifier"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
+msgid " to "
+msgstr " to "
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
+msgid "files meet the criteria"
+msgstr "files meet the criteria"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
+msgid "file meets the criteria"
+msgstr "file meets the criteria"
+
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
+msgid "Filter History"
+msgstr "Filter History"
+
+#: airtime_mvc/application/views/scripts/form/login.phtml:41
+msgid "Forgot your password?"
+msgstr "Forgot your password?"
+
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
+msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
+msgstr "(In order to promote your station, 'Send support feedback' must be enabled)."
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
+msgid "Stream "
+msgstr "Stream "
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
+msgid "Additional Options"
+msgstr "Additional Options"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
+msgid "The following info will be displayed to listeners in their media player:"
+msgstr "The following info will be displayed to listeners in their media player:"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
+msgid "(Your radio station website)"
+msgstr "(Your radio station website)"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
+msgid "Stream URL: "
+msgstr "Stream URL: "
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
+msgid "Choose folder"
+msgstr "Choose folder"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
+msgid "Set"
+msgstr "Set"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
+msgid "Current Import Folder:"
+msgstr "Current Import Folder:"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
+#, php-format
+msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
+msgstr "Rescan watched directory (This is useful if it is a network mount and may be out of sync with %s)"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
+msgid "Remove watched directory"
+msgstr "Remove watched directory"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
+msgid "You are not watching any media folders."
+msgstr "You are not watching any media folders."
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
+msgid "Live Broadcasting"
+msgstr "Live Broadcasting"
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
+msgid "Master Source"
+msgstr "Master Source"
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
+msgid "Use these settings in your broadcasting software to stream live at any time."
+msgstr "Use these settings in your broadcasting software to stream live at any time."
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
+msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
+msgstr "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
+msgid "TuneIn Settings"
+msgstr "TuneIn Settings"
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
+msgid "SoundCloud Settings"
+msgstr "SoundCloud Settings"
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
+msgid "Dangerous Options"
+msgstr "Dangerous Options"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Add this show"
+msgstr "Add this show"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Update show"
+msgstr "Update show"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
+msgid "What"
+msgstr "What"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
+msgid "When"
+msgstr "When"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
+msgid "Live Stream Input"
+msgstr "Live Stream Input"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
+msgid "Who"
+msgstr "Who"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
+msgid "Style"
+msgstr "Style"
+
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
+msgid "Disk Space"
+msgstr "Disk Space"
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:3
+msgid "File import in progress..."
+msgstr "File import in progress..."
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:10
+#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
+msgid "Advanced Search Options"
+msgstr "Advanced Search Options"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
+#: airtime_mvc/application/forms/EditAudioMD.php:24
+#: airtime_mvc/application/forms/Player.php:15
+msgid "Title:"
+msgstr "Title:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
+#: airtime_mvc/application/forms/EditAudioMD.php:34
+msgid "Creator:"
+msgstr "Creator:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
+#: airtime_mvc/application/forms/EditAudioMD.php:44
+msgid "Album:"
+msgstr "Album:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
+msgid "Track:"
+msgstr "Track:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
+msgid "Length:"
+msgstr "Length:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
+msgid "Sample Rate:"
+msgstr "Sample Rate:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
+msgid "Bit Rate:"
+msgstr "Bit Rate:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
+#: airtime_mvc/application/forms/EditAudioMD.php:115
+msgid "Mood:"
+msgstr "Mood:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:45
+#: airtime_mvc/application/forms/EditAudioMD.php:62
+msgid "Genre:"
+msgstr "Genre:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
+#: airtime_mvc/application/forms/EditAudioMD.php:72
+msgid "Year:"
+msgstr "Year:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
+#: airtime_mvc/application/forms/EditAudioMD.php:85
+msgid "Label:"
+msgstr "Label:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
+#: airtime_mvc/application/forms/EditAudioMD.php:125
+msgid "BPM:"
+msgstr "BPM:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
+#: airtime_mvc/application/forms/EditAudioMD.php:95
+msgid "Composer:"
+msgstr "Composer:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
+#: airtime_mvc/application/forms/EditAudioMD.php:105
+msgid "Conductor:"
+msgstr "Conductor:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
+#: airtime_mvc/application/forms/EditAudioMD.php:135
+msgid "Copyright:"
+msgstr "Copyright:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
+msgid "Isrc Number:"
+msgstr "Isrc Number:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
+#: airtime_mvc/application/forms/EditAudioMD.php:155
+msgid "Website:"
+msgstr "Website:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
+#: airtime_mvc/application/forms/EditAudioMD.php:165
+#: airtime_mvc/application/forms/EditUser.php:119
+#: airtime_mvc/application/forms/Login.php:68
+msgid "Language:"
+msgstr "Language:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
+msgid "File Path:"
+msgstr "File Path:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
+msgid "Web Stream"
+msgstr "Web Stream"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
+msgid "Dynamic Smart Block"
+msgstr "Dynamic Smart Block"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
+msgid "Static Smart Block"
+msgstr "Static Smart Block"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
+msgid "Audio Track"
+msgstr "Audio Track"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
+msgid "Playlist Contents: "
+msgstr "Playlist Contents: "
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
+msgid "Static Smart Block Contents: "
+msgstr "Static Smart Block Contents: "
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
+msgid "Dynamic Smart Block Criteria: "
+msgstr "Dynamic Smart Block Criteria: "
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
+msgid "Limit to "
+msgstr "Limit to "
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
+#: airtime_mvc/application/forms/AddShowWhat.php:36
+msgid "URL:"
+msgstr "URL:"
+
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
+msgid "Viewing "
+msgstr "Viewing "
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
+msgid "Listeners"
+msgstr "Listeners"
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
+msgid "Stream Data Collection Status"
+msgstr "Stream Data Collection Status"
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
+msgid "Your trial expires in"
+msgstr "Your trial expires in"
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
+msgid "days"
+msgstr "days"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
+msgid "Previous:"
+msgstr "Previous:"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
+msgid "Next:"
+msgstr "Next:"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
+msgid "Source Streams"
+msgstr "Source Streams"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
+msgid "ON AIR"
+msgstr "ON AIR"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
+msgid "Listen"
+msgstr "Listen"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
+msgid "Logout"
+msgstr "Logout"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
+msgid "Playout History Templates"
+msgstr "Playout History Templates"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
+msgid "Log Sheet Templates"
+msgstr "Log Sheet Templates"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
+msgid "New Log Sheet Template"
+msgstr "New Log Sheet Template"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
+msgid "No Log Sheet Templates"
+msgstr "No Log Sheet Templates"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
+msgid "File Summary Templates"
+msgstr "File Summary Templates"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
+msgid "New File Summary Template"
+msgstr "New File Summary Template"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
+msgid "No File Summary Templates"
+msgstr "No File Summary Templates"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
+msgid "Creating File Summary Template"
+msgstr "Creating File Summary Template"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
+msgid "Creating Log Sheet Template"
+msgstr "Creating Log Sheet Template"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
+msgid "Name"
+msgstr "Name"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
+msgid "Add more elements"
+msgstr "Add more elements"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
+msgid "Add New Field"
+msgstr "Add New Field"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
+msgid "Set Default Template"
+msgstr "Set Default Template"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
+msgid "Description"
+msgstr "Description"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
+msgid "Stream URL:"
+msgstr "Stream URL:"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
+msgid "Default Length:"
+msgstr "Default Length:"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
+msgid "No webstream"
+msgstr "No webstream"
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
+#: airtime_mvc/application/views/scripts/error/error.phtml:6
+msgid "An error has occurred."
+msgstr "An error has occurred."
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
+msgid "Access Denied!"
+msgstr "Access Denied!"
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
+msgid "You do not have permission to access this page!"
+msgstr "You do not have permission to access this page!"
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
+#: airtime_mvc/application/views/scripts/error/error.phtml:14
+#: airtime_mvc/application/configs/navigation.php:143
+msgid "Help"
+msgstr "Help"
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
+msgid "Oops!"
+msgstr "Oops!"
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
+msgid "Something went wrong!"
+msgstr "Something went wrong!"
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
+msgid "Bad Request!"
+msgstr "Bad Request!"
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
+msgid "The requested action is not supported!"
+msgstr "The requested action is not supported!"
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
+msgid "Page not found!"
+msgstr "Page not found!"
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
+msgid "We couldn't find the page you were looking for."
+msgstr "We couldn't find the page you were looking for."
+
+#: airtime_mvc/application/views/scripts/error/error.phtml:12
+msgid "Looks like the page you were looking for doesn't exist!"
+msgstr "Looks like the page you were looking for doesn't exist!"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
+msgid "previous"
+msgstr "previous"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
+msgid "play"
+msgstr "play"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
+msgid "pause"
+msgstr "pause"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
+msgid "next"
+msgstr "next"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
+msgid "stop"
+msgstr "stop"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
+msgid "max volume"
+msgstr "max volume"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
+msgid "Update Required"
+msgstr "Update Required"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
+#, php-format
+msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
+msgstr "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
+msgid "Plan type:"
+msgstr "Plan type:"
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
+msgid "Billing cycle:"
+msgstr "Billing cycle:"
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
+msgid "Payment method:"
+msgstr "Payment method:"
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
+msgid "PayPal"
+msgstr "PayPal"
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
+msgid "Credit Card via 2Checkout"
+msgstr "Credit Card via 2Checkout"
+
+#: airtime_mvc/application/forms/DateRange.php:16
+#: airtime_mvc/application/forms/ShowBuilder.php:18
+msgid "Date Start:"
+msgstr "Date Start:"
+
+#: airtime_mvc/application/forms/DateRange.php:35
+#: airtime_mvc/application/forms/DateRange.php:63
+#: airtime_mvc/application/forms/ShowBuilder.php:37
+#: airtime_mvc/application/forms/ShowBuilder.php:65
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
+msgid "Invalid character entered"
+msgstr "Invalid character entered"
+
+#: airtime_mvc/application/forms/DateRange.php:44
+#: airtime_mvc/application/forms/ShowBuilder.php:46
+#: airtime_mvc/application/forms/AddShowRepeats.php:56
+msgid "Date End:"
+msgstr "Date End:"
+
+#: airtime_mvc/application/forms/ShowBuilder.php:72
+#: airtime_mvc/application/forms/ShowBuilder.php:88
+msgid "Filter by Show"
+msgstr "Filter by Show"
+
+#: airtime_mvc/application/forms/ShowBuilder.php:80
+msgid "All My Shows:"
+msgstr "All My Shows:"
+
+#: airtime_mvc/application/forms/AddShowWho.php:10
+msgid "Search Users:"
+msgstr "Search Users:"
+
+#: airtime_mvc/application/forms/AddShowWho.php:24
+msgid "DJs:"
+msgstr "DJs:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:30
+#: airtime_mvc/application/forms/GeneralPreferences.php:25
+#: airtime_mvc/application/forms/SupportSettings.php:18
+msgid "Station Name"
+msgstr "Station Name"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:39
+#: airtime_mvc/application/forms/SupportSettings.php:31
+msgid "Phone:"
+msgstr "Phone:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:51
+#: airtime_mvc/application/forms/AddUser.php:67
+#: airtime_mvc/application/forms/EditUser.php:83
+#: airtime_mvc/application/forms/SupportSettings.php:43
+msgid "Email:"
+msgstr "Email:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:62
+#: airtime_mvc/application/forms/SupportSettings.php:54
+msgid "Station Web Site:"
+msgstr "Station Web Site:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:73
+#: airtime_mvc/application/forms/SupportSettings.php:65
+msgid "Country:"
+msgstr "Country:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:84
+#: airtime_mvc/application/forms/SupportSettings.php:76
+msgid "City:"
+msgstr "City:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:96
+#: airtime_mvc/application/forms/SupportSettings.php:88
+msgid "Station Description:"
+msgstr "Station Description:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:106
+#: airtime_mvc/application/forms/GeneralPreferences.php:42
+msgid "Station Logo:"
+msgstr "Station Logo:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:126
+#: airtime_mvc/application/forms/SupportSettings.php:108
+#, php-format
+msgid "Promote my station on %s"
+msgstr "Promote my station on %s"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:151
+#: airtime_mvc/application/forms/SupportSettings.php:120
+#, php-format
+msgid "By checking this box, I agree to %s's %sprivacy policy%s."
+msgstr "By checking this box, I agree to %s's %sprivacy policy%s."
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:169
+#: airtime_mvc/application/forms/SupportSettings.php:143
+msgid "You have to agree to privacy policy."
+msgstr "You have to agree to privacy policy."
+
+#: airtime_mvc/application/forms/AddShowRR.php:10
+msgid "Record from Line In?"
+msgstr "Record from Line In?"
+
+#: airtime_mvc/application/forms/AddShowRR.php:16
+msgid "Rebroadcast?"
+msgstr "Rebroadcast?"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
+#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
+msgid "Value is required and can't be empty"
+msgstr "Value is required and can't be empty"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
+msgid "'%value%' is no valid email address in the basic format local-part@hostname"
+msgstr "'%value%' is no valid email address in the basic format local-part@hostname"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
+msgid "'%value%' does not fit the date format '%format%'"
+msgstr "'%value%' does not fit the date format '%format%'"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
+msgid "'%value%' is less than %min% characters long"
+msgstr "'%value%' is less than %min% characters long"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
+msgid "'%value%' is more than %max% characters long"
+msgstr "'%value%' is more than %max% characters long"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
+msgid "'%value%' is not between '%min%' and '%max%', inclusively"
+msgstr "'%value%' is not between '%min%' and '%max%', inclusively"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
+msgid "Passwords do not match"
+msgstr "Passwords do not match"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
+msgid "Day must be specified"
+msgstr "Day must be specified"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
+msgid "Time must be specified"
+msgstr "Time must be specified"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
+msgid "Must wait at least 1 hour to rebroadcast"
+msgstr "Must wait at least 1 hour to rebroadcast"
+
+#: airtime_mvc/application/forms/PasswordRestore.php:14
+msgid "Email"
+msgstr "Email"
+
+#: airtime_mvc/application/forms/PasswordRestore.php:36
+msgid "Reset password"
+msgstr "Reset password"
+
+#: airtime_mvc/application/forms/AddShowWhat.php:30
+msgid "Untitled Show"
+msgstr "Untitled Show"
+
+#: airtime_mvc/application/forms/AddShowWhat.php:69
+msgid "Instance Description:"
+msgstr "Instance Description:"
+
+#: airtime_mvc/application/forms/DangerousPreferences.php:12
+msgid "Delete All Tracks in Library"
+msgstr "Delete All Tracks in Library"
+
+#: airtime_mvc/application/forms/EditAudioMD.php:145
+msgid "ISRC Number:"
+msgstr "ISRC Number:"
+
+#: airtime_mvc/application/forms/EditAudioMD.php:176
+msgid "OK"
+msgstr "OK"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:33
+msgid "Station Description"
+msgstr "Station Description"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:62
+msgid "Default Crossfade Duration (s):"
+msgstr "Default Crossfade Duration (s):"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:68
+#: airtime_mvc/application/forms/GeneralPreferences.php:82
+#: airtime_mvc/application/forms/GeneralPreferences.php:96
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
+msgid "Please enter a time in seconds (eg. 0.5)"
+msgstr "Please enter a time in seconds (e.g. 0.5)"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:76
+msgid "Default Fade In (s):"
+msgstr "Default Fade In (s):"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:90
+msgid "Default Fade Out (s):"
+msgstr "Default Fade Out (s):"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:102
+msgid "Public Airtime API"
+msgstr "Public Airtime API"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:103
+msgid "Required for embeddable schedule widget."
+msgstr "Required for embeddable schedule widget."
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:105
+msgid "Disabled"
+msgstr "Disabled"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:106
+msgid "Enabled"
+msgstr "Enabled"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:109
+msgid ""
+"Enabling this feature will allow Airtime to provide schedule data\n"
+" to external widgets that can be embedded in your website."
+msgstr "Enabling this feature will allow Airtime to provide schedule data to external widgets that can be embedded in your website."
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:120
+msgid "Default Language"
+msgstr "Default Language"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:127
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
+msgid "Station Timezone"
+msgstr "Station Timezone"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:134
+msgid "Week Starts On"
+msgstr "Week Starts On"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:150
+msgid "Display login button on your Radio Page?"
+msgstr "Display login button on your Radio Page?"
+
+#: airtime_mvc/application/forms/AddUser.php:29
+#: airtime_mvc/application/forms/EditUser.php:37
+#: airtime_mvc/application/forms/Login.php:41
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
+msgid "Username:"
+msgstr "Username:"
+
+#: airtime_mvc/application/forms/AddUser.php:38
+#: airtime_mvc/application/forms/EditUser.php:48
+#: airtime_mvc/application/forms/Login.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
+msgid "Password:"
+msgstr "Password:"
+
+#: airtime_mvc/application/forms/AddUser.php:46
+#: airtime_mvc/application/forms/EditUser.php:57
+msgid "Verify Password:"
+msgstr "Verify Password:"
+
+#: airtime_mvc/application/forms/AddUser.php:55
+#: airtime_mvc/application/forms/EditUser.php:67
+msgid "Firstname:"
+msgstr "Firstname:"
+
+#: airtime_mvc/application/forms/AddUser.php:61
+#: airtime_mvc/application/forms/EditUser.php:75
+msgid "Lastname:"
+msgstr "Lastname:"
+
+#: airtime_mvc/application/forms/AddUser.php:76
+#: airtime_mvc/application/forms/EditUser.php:94
+msgid "Mobile Phone:"
+msgstr "Mobile Phone:"
+
+#: airtime_mvc/application/forms/AddUser.php:82
+#: airtime_mvc/application/forms/EditUser.php:102
+msgid "Skype:"
+msgstr "Skype:"
+
+#: airtime_mvc/application/forms/AddUser.php:88
+#: airtime_mvc/application/forms/EditUser.php:110
+msgid "Jabber:"
+msgstr "Jabber:"
+
+#: airtime_mvc/application/forms/AddUser.php:95
+msgid "User Type:"
+msgstr "User Type:"
+
+#: airtime_mvc/application/forms/AddUser.php:120
+#: airtime_mvc/application/forms/EditUser.php:155
+msgid "Login name is not unique."
+msgstr "Login name is not unique."
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
+msgid "Import Folder:"
+msgstr "Import Folder:"
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
+msgid "Watched Folders:"
+msgstr "Watched Folders:"
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
+msgid "Not a valid Directory"
+msgstr "Not a valid Directory"
+
+#: airtime_mvc/application/forms/BillingClient.php:126
+msgid "What is the name of your favorite childhood friend?"
+msgstr "What was the name of your favourite childhood friend?"
+
+#: airtime_mvc/application/forms/BillingClient.php:127
+msgid "What school did you attend for sixth grade?"
+msgstr "Which school did you attend when you were twelve years old?"
+
+#: airtime_mvc/application/forms/BillingClient.php:128
+msgid "In what city did you meet your spouse/significant other?"
+msgstr "In which city, town or village did you meet the love of your life?"
+
+#: airtime_mvc/application/forms/BillingClient.php:129
+msgid "What street did you live on in third grade?"
+msgstr "Which road did you live on when you were in primary school?"
+
+#: airtime_mvc/application/forms/BillingClient.php:130
+msgid "What is the first name of the boy or girl that you first kissed?"
+msgstr "What was the first name of the first boy or girl that you kissed?"
+
+#: airtime_mvc/application/forms/BillingClient.php:131
+msgid "In what city or town was your first job?"
+msgstr "In which city or town did you have your first job?"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
+msgid "Default License:"
+msgstr "Default License:"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
+msgid "All rights are reserved"
+msgstr "All rights are reserved"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
+msgid "The work is in the public domain"
+msgstr "The work is in the public domain"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
+msgid "Creative Commons Attribution"
+msgstr "Creative Commons Attribution"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
+msgid "Creative Commons Attribution Noncommercial"
+msgstr "Creative Commons Attribution Noncommercial"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
+msgid "Creative Commons Attribution No Derivative Works"
+msgstr "Creative Commons Attribution No Derivative Works"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
+msgid "Creative Commons Attribution Share Alike"
+msgstr "Creative Commons Attribution Share Alike"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
+msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
+msgstr "Creative Commons Attribution Noncommercial Non Derivate Works"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
+msgid "Creative Commons Attribution Noncommercial Share Alike"
+msgstr "Creative Commons Attribution Noncommercial Share Alike"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
+msgid "Default Sharing Type:"
+msgstr "Default Sharing Type:"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
+msgid "Public"
+msgstr "Public"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
+msgid "Private"
+msgstr "Private"
+
+#: airtime_mvc/application/forms/EditUser.php:129
+msgid "Interface Timezone:"
+msgstr "Interface Timezone:"
+
+#: airtime_mvc/application/forms/Player.php:14
+msgid "Now Playing"
+msgstr "Now Playing"
+
+#: airtime_mvc/application/forms/Player.php:25
+msgid "Select Stream:"
+msgstr "Select Stream:"
+
+#: airtime_mvc/application/forms/Player.php:28
+msgid "Auto detect the most appropriate stream to use."
+msgstr "Auto-detect the most appropriate stream to use."
+
+#: airtime_mvc/application/forms/Player.php:29
+msgid "Select a stream:"
+msgstr "Select a stream:"
+
+#: airtime_mvc/application/forms/Player.php:41
+msgid " - Mobile friendly"
+msgstr " - Mobile friendly"
+
+#: airtime_mvc/application/forms/Player.php:45
+msgid " - The player does not support Opus streams."
+msgstr " - The player does not support Opus streams."
+
+#: airtime_mvc/application/forms/Player.php:71
+msgid "Embeddable code:"
+msgstr "Embeddable code:"
+
+#: airtime_mvc/application/forms/Player.php:72
+msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
+msgstr "Copy this code and paste it into your website's HTML to embed the player in your site."
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
+#: airtime_mvc/application/models/Block.php:1351
+msgid "Select criteria"
+msgstr "Select criteria"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
+#: airtime_mvc/application/models/Block.php:1353
+msgid "Bit Rate (Kbps)"
+msgstr "Bit Rate (Kbps)"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
+#: airtime_mvc/application/models/Block.php:1374
+msgid "Sample Rate (kHz)"
+msgstr "Sample Rate (kHz)"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
+msgid "hours"
+msgstr "hours"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
+msgid "minutes"
+msgstr "minutes"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
+#: airtime_mvc/application/models/Block.php:333
+msgid "items"
+msgstr "items"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
+msgid "Randomly"
+msgstr "Randomly"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
+msgid "Newest"
+msgstr "Newest"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
+msgid "Oldest"
+msgstr "Oldest"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
+msgid "Type:"
+msgstr "Type:"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
+msgid "Static"
+msgstr "Static"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
+msgid "Dynamic"
+msgstr "Dynamic"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
+msgid "Allow Repeated Tracks:"
+msgstr "Allow Repeated Tracks:"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
+msgid "Sort Tracks:"
+msgstr "Sort Tracks:"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
+msgid "Limit to:"
+msgstr "Limit to:"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
+msgid "Generate playlist content and save criteria"
+msgstr "Generate playlist content and save criteria"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
+msgid "Generate"
+msgstr "Generate"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
+msgid "Shuffle playlist content"
+msgstr "Shuffle playlist content"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
+msgid "Limit cannot be empty or smaller than 0"
+msgstr "Limit cannot be empty or smaller than 0"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
+msgid "Limit cannot be more than 24 hrs"
+msgstr "Limit cannot be more than 24 hrs"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
+msgid "The value should be an integer"
+msgstr "The value should be an integer"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
+msgid "500 is the max item limit value you can set"
+msgstr "500 is the max item limit value you can set"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
+msgid "You must select Criteria and Modifier"
+msgstr "You must select Criteria and Modifier"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
+msgid "'Length' should be in '00:00:00' format"
+msgstr "'Length' should be in '00:00:00' format"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
+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:594
+msgid "The value has to be numeric"
+msgstr "The value has to be numeric"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
+msgid "The value should be less then 2147483648"
+msgstr "The value should be less then 2147483648"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
+#, php-format
+msgid "The value should be less than %s characters"
+msgstr "The value should be less than %s characters"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
+msgid "Value cannot be empty"
+msgstr "Value cannot be empty"
+
+#: airtime_mvc/application/forms/StreamSetting.php:26
+msgid "Icecast Vorbis Metadata"
+msgstr "Icecast Vorbis Metadata"
+
+#: airtime_mvc/application/forms/StreamSetting.php:36
+msgid "Stream Label:"
+msgstr "Stream Label:"
+
+#: airtime_mvc/application/forms/StreamSetting.php:37
+msgid "Artist - Title"
+msgstr "Artist - Title"
+
+#: airtime_mvc/application/forms/StreamSetting.php:38
+msgid "Show - Artist - Title"
+msgstr "Show - Artist - Title"
+
+#: airtime_mvc/application/forms/StreamSetting.php:39
+msgid "Station name - Show name"
+msgstr "Station name - Show name"
+
+#: airtime_mvc/application/forms/StreamSetting.php:45
+msgid "Off Air Metadata"
+msgstr "Off Air Metadata"
+
+#: airtime_mvc/application/forms/StreamSetting.php:51
+msgid "Enable Replay Gain"
+msgstr "Enable Replay Gain"
+
+#: airtime_mvc/application/forms/StreamSetting.php:57
+msgid "Replay Gain Modifier"
+msgstr "Replay Gain Modifier"
+
+#: airtime_mvc/application/forms/StreamSetting.php:65
+msgid "Streaming Server:"
+msgstr "Streaming Server:"
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Airtime Pro Streaming"
+msgstr "Airtime Pro Streaming"
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Custom / 3rd Party Streaming"
+msgstr "Custom / 3rd Party Streaming"
+
+#: airtime_mvc/application/forms/PasswordChange.php:17
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
+msgid "Password"
+msgstr "Password"
-#~ msgid "Show:"
-#~ msgstr "Show:"
+#: airtime_mvc/application/forms/PasswordChange.php:28
+msgid "Confirm new password"
+msgstr "Confirm new password"
-#~ msgid "enter a time in seconds 0{.0}"
-#~ msgstr "enter a time in seconds 0{.0}"
+#: airtime_mvc/application/forms/PasswordChange.php:36
+msgid "Password confirmation does not match your password."
+msgstr "Password confirmation does not match your password."
-#~ msgid "Allow Remote Websites To Access \"Schedule\" Info?%s (Enable this to make front-end widgets work.)"
-#~ msgstr "Allow Remote Websites To Access \"Schedule\" Info?%s (Enable this to make front-end widgets work.)"
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
+msgid "Station Language"
+msgstr "Station Language"
-#~ msgid "Default Interface Language"
-#~ msgstr "Default Interface Language"
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
+msgid "Enabled:"
+msgstr "Enabled:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
+msgid "Mobile:"
+msgstr "Mobile:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
+msgid "Stream Type:"
+msgstr "Stream Type:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
+msgid "Service Type:"
+msgstr "Service Type:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
+msgid "Channels:"
+msgstr "Channels:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "1 - Mono"
+msgstr "1 - Mono"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "2 - Stereo"
+msgstr "2 - Stereo"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
+msgid "Server"
+msgstr "Server"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
+msgid "Port"
+msgstr "Port"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
+msgid "Only numbers are allowed."
+msgstr "Only numbers are allowed."
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
+msgid "URL"
+msgstr "URL"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
+msgid "Mount Point"
+msgstr "Mount Point"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
+msgid "Admin User"
+msgstr "Admin User"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
+msgid "Admin Password"
+msgstr "Admin Password"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
+msgid "Server cannot be empty."
+msgstr "Server cannot be empty."
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
+msgid "Port cannot be empty."
+msgstr "Port cannot be empty."
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
+msgid "Mount cannot be empty with Icecast server."
+msgstr "Mount cannot be empty with Icecast server."
+
+#: airtime_mvc/application/forms/AddShowWhen.php:16
+msgid "'%value%' does not fit the time format 'HH:mm'"
+msgstr "'%value%' does not fit the time format 'HH:mm'"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:22
+msgid "Start Time:"
+msgstr "Start Time:"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:37
+msgid "In the Future:"
+msgstr "In the Future:"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:64
+msgid "End Time:"
+msgstr "End Time:"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:98
+msgid "Timezone:"
+msgstr "Timezone:"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:107
+msgid "Repeats?"
+msgstr "Repeats?"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:139
+msgid "Cannot create show in the past"
+msgstr "Cannot create show in the past"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:147
+msgid "Cannot modify start date/time of the show that is already started"
+msgstr "Cannot modify start date/time of the show that is already started"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:156
+#: airtime_mvc/application/models/Show.php:282
+msgid "End date/time cannot be in the past"
+msgstr "End date/time cannot be in the past"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:164
+msgid "Cannot have duration < 0m"
+msgstr "Cannot have duration < 0m"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:168
+msgid "Cannot have duration 00h 00m"
+msgstr "Cannot have duration 00h 00m"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:175
+msgid "Cannot have duration greater than 24h"
+msgstr "Cannot have duration greater than 24h"
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:19
+msgid "Push metadata to your station on TuneIn?"
+msgstr "Push metadata to your station on TuneIn?"
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:24
+msgid "Station ID:"
+msgstr "Station ID:"
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:30
+msgid "Partner Key:"
+msgstr "Partner Key:"
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:36
+msgid "Partner Id:"
+msgstr "Partner Id:"
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:77
+#: airtime_mvc/application/forms/TuneInPreferences.php:86
+msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
+msgstr "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:10
+#, php-format
+msgid "Use %s Authentication:"
+msgstr "Use %s Authentication:"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:16
+msgid "Use Custom Authentication:"
+msgstr "Use Custom Authentication:"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:25
+msgid "Custom Username"
+msgstr "Custom Username"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:37
+msgid "Custom Password"
+msgstr "Custom Password"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:48
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
+msgid "Host:"
+msgstr "Host:"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
+msgid "Port:"
+msgstr "Port:"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:60
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
+msgid "Mount:"
+msgstr "Mount:"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:77
+msgid "Username field cannot be empty."
+msgstr "Username field cannot be empty."
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:82
+msgid "Password field cannot be empty."
+msgstr "Password field cannot be empty."
+
+#: airtime_mvc/application/forms/AddShowStyle.php:12
+msgid "Background Colour:"
+msgstr "Background Colour:"
+
+#: airtime_mvc/application/forms/AddShowStyle.php:31
+msgid "Text Colour:"
+msgstr "Text Colour:"
+
+#: airtime_mvc/application/forms/AddShowStyle.php:49
+msgid "Current Logo:"
+msgstr "Current Logo:"
+
+#: airtime_mvc/application/forms/AddShowStyle.php:72
+msgid "Show Logo:"
+msgstr "Show Logo:"
+
+#: airtime_mvc/application/forms/AddShowStyle.php:87
+msgid "Logo Preview:"
+msgstr "Logo Preview:"
+
+#: airtime_mvc/application/forms/Login.php:102
+msgid "Type the characters you see in the picture below."
+msgstr "Type the characters you see in the picture below."
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
+msgid "Auto Switch Off:"
+msgstr "Auto Switch Off:"
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
+msgid "Auto Switch On:"
+msgstr "Auto Switch On:"
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
+msgid "Switch Transition Fade (s):"
+msgstr "Switch Transition Fade (s):"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:10
+msgid "Link:"
+msgstr "Link:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:16
+msgid "Repeat Type:"
+msgstr "Repeat Type:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:19
+msgid "weekly"
+msgstr "weekly"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:20
+msgid "every 2 weeks"
+msgstr "every 2 weeks"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:21
+msgid "every 3 weeks"
+msgstr "every 3 weeks"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:22
+msgid "every 4 weeks"
+msgstr "every 4 weeks"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:23
+msgid "monthly"
+msgstr "monthly"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:32
+msgid "Select Days:"
+msgstr "Select Days:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:47
+msgid "Repeat By:"
+msgstr "Repeat By:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the month"
+msgstr "day of the month"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the week"
+msgstr "day of the week"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:69
+msgid "No End?"
+msgstr "No End?"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:106
+msgid "End date must be after start date"
+msgstr "End date must be after start date"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:113
+msgid "Please select a repeat day"
+msgstr "Please select a repeat day"
+
+#: airtime_mvc/application/configs/navigation.php:12
+msgid "Radio Page"
+msgstr "Radio Page"
+
+#: airtime_mvc/application/configs/navigation.php:19
+msgid "Calendar"
+msgstr "Calendar"
+
+#: airtime_mvc/application/configs/navigation.php:26
+msgid "Widgets"
+msgstr "Widgets"
+
+#: airtime_mvc/application/configs/navigation.php:48
+msgid "Settings"
+msgstr "Settings"
+
+#: airtime_mvc/application/configs/navigation.php:67
+msgid "Users"
+msgstr "Users"
+
+#: airtime_mvc/application/configs/navigation.php:74
+msgid "Streams"
+msgstr "Streams"
+
+#: airtime_mvc/application/configs/navigation.php:82
+msgid "Analytics"
+msgstr "Analytics"
+
+#: airtime_mvc/application/configs/navigation.php:90
+msgid "Listener Stats"
+msgstr "Listener Stats"
+
+#: airtime_mvc/application/configs/navigation.php:104
+msgid "History Templates"
+msgstr "History Templates"
+
+#: airtime_mvc/application/configs/navigation.php:113
+msgid "Billing"
+msgstr "Billing"
+
+#: airtime_mvc/application/configs/navigation.php:120
+msgid "Account Plans"
+msgstr "Account Plans"
+
+#: airtime_mvc/application/configs/navigation.php:127
+msgid "Account Details"
+msgstr "Account Details"
+
+#: airtime_mvc/application/configs/navigation.php:134
+msgid "View Invoices"
+msgstr "View Invoices"
+
+#: airtime_mvc/application/configs/navigation.php:150
+msgid "Getting Started"
+msgstr "Getting Started"
+
+#: airtime_mvc/application/configs/navigation.php:157
+msgid "FAQ"
+msgstr "FAQ"
+
+#: airtime_mvc/application/configs/navigation.php:162
+msgid "User Manual"
+msgstr "User Manual"
+
+#: airtime_mvc/application/configs/navigation.php:167
+msgid "File a Support Ticket"
+msgstr "File a Support Ticket"
+
+#: airtime_mvc/application/models/Block.php:833
+#: airtime_mvc/application/models/Playlist.php:812
+msgid "Cue in and cue out are null."
+msgstr "Cue in and cue out are null."
+
+#: airtime_mvc/application/models/Block.php:868
+#: airtime_mvc/application/models/Block.php:924
+#: airtime_mvc/application/models/Playlist.php:851
+#: airtime_mvc/application/models/Playlist.php:895
+msgid "Can't set cue out to be greater than file length."
+msgstr "Can't set cue out to be greater than file length."
+
+#: airtime_mvc/application/models/Block.php:879
+#: airtime_mvc/application/models/Block.php:900
+#: airtime_mvc/application/models/Playlist.php:843
+#: airtime_mvc/application/models/Playlist.php:868
+msgid "Can't set cue in to be larger than cue out."
+msgstr "Can't set cue in to be larger than cue out."
+
+#: airtime_mvc/application/models/Block.php:935
+#: airtime_mvc/application/models/Playlist.php:887
+msgid "Can't set cue out to be smaller than cue in."
+msgstr "Can't set cue out to be smaller than cue in."
+
+#: airtime_mvc/application/models/Block.php:1366
+msgid "Upload Time"
+msgstr "Upload Time"
+
+#: airtime_mvc/application/models/ShowBuilder.php:212
+#, php-format
+msgid "Rebroadcast of %s from %s"
+msgstr "Rebroadcast of %s from %s"
+
+#: airtime_mvc/application/models/Preference.php:460
+#, php-format
+msgid "Powered by %s"
+msgstr "Powered by %s"
+
+#: airtime_mvc/application/models/Preference.php:588
+msgid "Select Country"
+msgstr "Select Country"
+
+#: airtime_mvc/application/models/MusicDir.php:160
+#, php-format
+msgid "%s is already watched."
+msgstr "%s is already watched."
+
+#: airtime_mvc/application/models/MusicDir.php:164
+#, php-format
+msgid "%s contains nested watched directory: %s"
+msgstr "%s contains nested watched directory: %s"
+
+#: airtime_mvc/application/models/MusicDir.php:168
+#, php-format
+msgid "%s is nested within existing watched directory: %s"
+msgstr "%s is nested within existing watched directory: %s"
+
+#: airtime_mvc/application/models/MusicDir.php:189
+#: airtime_mvc/application/models/MusicDir.php:370
+#, php-format
+msgid "%s is not a valid directory."
+msgstr "%s is not a valid directory."
+
+#: airtime_mvc/application/models/MusicDir.php:232
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list"
+msgstr "%s is already set as the current storage dir or in the watched folders list"
+
+#: airtime_mvc/application/models/MusicDir.php:388
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list."
+msgstr "%s is already set as the current storage dir or in the watched folders list."
+
+#: airtime_mvc/application/models/MusicDir.php:431
+#, php-format
+msgid "%s doesn't exist in the watched list."
+msgstr "%s doesn't exist in the watched list."
+
+#: airtime_mvc/application/models/Auth.php:33
+#, php-format
+msgid ""
+"Hi %s, \n"
+"\n"
+"Please click this link to reset your password: "
+msgstr ""
+"Hi %s, \n"
+"\n"
+"Please click this link to reset your password: "
+
+#: airtime_mvc/application/models/Auth.php:38
+#, php-format
+msgid "%s Password Reset"
+msgstr "%s Password Reset"
+
+#: airtime_mvc/application/models/Show.php:184
+msgid "Shows can have a max length of 24 hours."
+msgstr "Shows can have a max length of 24 hours."
+
+#: airtime_mvc/application/models/Show.php:293
+msgid ""
+"Cannot schedule overlapping shows.\n"
+"Note: Resizing a repeating show affects all of its repeats."
+msgstr ""
+"Cannot schedule overlapping shows.\n"
+"Note: Resizing a repeating show affects all of its repeats."
+
+#: airtime_mvc/application/models/Scheduler.php:73
+msgid "Cannot move items out of linked shows"
+msgstr "Cannot move items out of linked shows"
+
+#: airtime_mvc/application/models/Scheduler.php:119
+msgid "The schedule you're viewing is out of date! (sched mismatch)"
+msgstr "The schedule you're viewing is out of date! (sched mismatch)"
+
+#: airtime_mvc/application/models/Scheduler.php:124
+msgid "The schedule you're viewing is out of date! (instance mismatch)"
+msgstr "The schedule you're viewing is out of date! (instance mismatch)"
+
+#: airtime_mvc/application/models/Scheduler.php:132
+#: airtime_mvc/application/models/Scheduler.php:458
+#: airtime_mvc/application/models/Scheduler.php:490
+msgid "The schedule you're viewing is out of date!"
+msgstr "The schedule you're viewing is out of date!"
+
+#: airtime_mvc/application/models/Scheduler.php:142
+#, php-format
+msgid "You are not allowed to schedule show %s."
+msgstr "You are not allowed to schedule show %s."
+
+#: airtime_mvc/application/models/Scheduler.php:146
+msgid "You cannot add files to recording shows."
+msgstr "You cannot add files to recording shows."
+
+#: airtime_mvc/application/models/Scheduler.php:152
+#, php-format
+msgid "The show %s is over and cannot be scheduled."
+msgstr "The show %s is over and cannot be scheduled."
+
+#: airtime_mvc/application/models/Scheduler.php:159
+#, php-format
+msgid "The show %s has been previously updated!"
+msgstr "The show %s has been previously updated!"
+
+#: airtime_mvc/application/models/Scheduler.php:178
+msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
+msgstr "Content in linked shows must be scheduled before or after any one is broadcasted"
+
+#: airtime_mvc/application/models/Scheduler.php:195
+msgid "Cannot schedule a playlist that contains missing files."
+msgstr "Cannot schedule a playlist that contains missing files."
+
+#: airtime_mvc/application/models/Scheduler.php:216
+#: airtime_mvc/application/models/Scheduler.php:305
+msgid "A selected File does not exist!"
+msgstr "A selected File does not exist!"
+
+#: airtime_mvc/application/models/Schedule.php:206
+msgid "livestream"
+msgstr "livestream"
+
+#: airtime_mvc/application/models/Webstream.php:166
+msgid "Length needs to be greater than 0 minutes"
+msgstr "Length needs to be greater than 0 minutes"
+
+#: airtime_mvc/application/models/Webstream.php:171
+msgid "Length should be of form \"00h 00m\""
+msgstr "Length should be of form \"00h 00m\""
-#~ msgid "Get new password"
-#~ msgstr "Get new password"
+#: airtime_mvc/application/models/Webstream.php:184
+msgid "URL should be of form \"http://domain\""
+msgstr "URL should be of form \"http://domain\""
-#~ msgid "Set smart block type:"
-#~ msgstr "Set smart block type:"
+#: airtime_mvc/application/models/Webstream.php:187
+msgid "URL should be 512 characters or less"
+msgstr "URL should be 512 characters or less"
-#~ msgid "Allow Repeat Tracks:"
-#~ msgstr "Allow Repeat Tracks:"
+#: airtime_mvc/application/models/Webstream.php:193
+msgid "No MIME type found for webstream."
+msgstr "No MIME type found for webstream."
-#~ msgid "Limit to"
-#~ msgstr "Limit to"
+#: airtime_mvc/application/models/Webstream.php:209
+msgid "Webstream name cannot be empty"
+msgstr "Webstream name cannot be empty"
-#~ msgid "Auto Switch Off"
-#~ msgstr "Auto Switch Off"
+#: airtime_mvc/application/models/Webstream.php:278
+msgid "Could not parse XSPF playlist"
+msgstr "Could not parse XSPF playlist"
-#~ msgid "Auto Switch On"
-#~ msgstr "Auto Switch On"
+#: airtime_mvc/application/models/Webstream.php:298
+msgid "Could not parse PLS playlist"
+msgstr "Could not parse PLS playlist"
-#~ msgid "Switch Transition Fade (s)"
-#~ msgstr "Switch Transition Fade (s)"
+#: airtime_mvc/application/models/Webstream.php:318
+msgid "Could not parse M3U playlist"
+msgstr "Could not parse M3U playlist"
-#~ msgid "enter a time in seconds 00{.000000}"
-#~ msgstr "enter a time in seconds 00{.000000}"
+#: airtime_mvc/application/models/Webstream.php:332
+msgid "Invalid webstream - This appears to be a file download."
+msgstr "Invalid webstream - This appears to be a file download."
-#~ msgid "Master Username"
-#~ msgstr "Master Username"
+#: airtime_mvc/application/models/Webstream.php:336
+#, php-format
+msgid "Unrecognized stream type: %s"
+msgstr "Unrecognised stream type: %s"
-#~ msgid "Master Password"
-#~ msgstr "Master Password"
+#: airtime_mvc/public/setup/rabbitmq-setup.php:78
+msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
+msgstr "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
-#~ msgid "Master Source Connection URL"
-#~ msgstr "Master Source Connection URL"
+#~ msgid "Purchase an %s Pro plan!"
+#~ msgstr "Purchase an %s Pro plan!"
-#~ msgid "Show Source Connection URL"
-#~ msgstr "Show Source Connection URL"
+#~ msgid "My Account"
+#~ msgstr "My Account"
-#~ msgid "Master Source Port"
-#~ msgstr "Master Source Port"
+#~ msgid "Upgrade today to get more listeners and storage space!"
+#~ msgstr "Upgrade today to get more listeners and storage space!"
-#~ msgid "Master Source Mount Point"
-#~ msgstr "Master Source Mount Point"
+#~ msgid "View Plans"
+#~ msgstr "View Plans"
-#~ msgid "Show Source Port"
-#~ msgstr "Show Source Port"
+#~ msgid "First Name:"
+#~ msgstr "First Name:"
-#~ msgid "Show Source Mount Point"
-#~ msgstr "Show Source Mount Point"
+#~ msgid "Last Name:"
+#~ msgstr "Last Name:"
-#~ msgid "You cannot use same port as Master DJ port."
-#~ msgstr "You cannot use same port as Master DJ port."
+#~ msgid "Company Name:"
+#~ msgstr "Company Name:"
-#~ msgid "Port %s is not available"
-#~ msgstr "Port %s is not available"
+#~ msgid "Email Address:"
+#~ msgstr "Email Address:"
-#~ msgid "E-mail"
-#~ msgstr "E-mail"
+#~ msgid "Address 1:"
+#~ msgstr "Address 1:"
-#~ msgid "Restore password"
-#~ msgstr "Restore password"
+#~ msgid "Address 2:"
+#~ msgstr "Address 2:"
-#~ msgid "Hardware Audio Output"
-#~ msgstr "Hardware Audio Output"
+#~ msgid "State/Region:"
+#~ msgstr "State/Region:"
-#~ msgid "Output Type"
-#~ msgstr "Output Type"
+#~ msgid "Zip Code / Postal Code:"
+#~ msgstr "Zip Code / Postal Code:"
-#~ msgid "Date/Time Start:"
-#~ msgstr "Date/Time Start:"
+#~ msgid "Phone Number:"
+#~ msgstr "Phone Number:"
-#~ msgid "Date/Time End:"
-#~ msgstr "Date/Time End:"
+#~ msgid "Please choose a security question:"
+#~ msgstr "Please choose a security question:"
-#~ msgid "Automatically Upload Recorded Shows"
-#~ msgstr "Automatically Upload Recorded Shows"
+#~ msgid "Please enter an answer:"
+#~ msgstr "Please enter an answer:"
-#~ msgid "Enable SoundCloud Upload"
-#~ msgstr "Enable SoundCloud Upload"
+#~ msgid "VAT/Tax ID (EU only)"
+#~ msgstr "VAT/Tax ID (EU only)"
-#~ msgid "Automatically Mark Files \"Downloadable\" on SoundCloud"
-#~ msgstr "Automatically Mark Files \"Downloadable\" on SoundCloud"
+#~ msgid "Subscribe to Sourcefabric newsletter"
+#~ msgstr "Subscribe to Sourcefabric newsletter"
-#~ msgid "SoundCloud Email"
-#~ msgstr "SoundCloud Email"
+#~ msgid "To start broadcasting, click on the current show and select 'Schedule Show'"
+#~ msgstr "To start broadcasting, click on the current show and select 'Schedule Show'"
-#~ msgid "SoundCloud Password"
-#~ msgstr "SoundCloud Password"
-
-#~ msgid "SoundCloud Tags: (separate tags with spaces)"
-#~ msgstr "SoundCloud Tags: (separate tags with spaces)"
-
-#~ msgid "Default Genre:"
-#~ msgstr "Default Genre:"
-
-#~ msgid "Default Track Type:"
-#~ msgstr "Default Track Type:"
-
-#~ msgid "Original"
-#~ msgstr "Original"
-
-#~ msgid "Remix"
-#~ msgstr "Remix"
-
-#~ msgid "Live"
-#~ msgstr "Live"
-
-#~ msgid "Recording"
-#~ msgstr "Recording"
-
-#~ msgid "Spoken"
-#~ msgstr "Spoken"
-
-#~ msgid "Podcast"
-#~ msgstr "Podcast"
-
-#~ msgid "Demo"
-#~ msgstr "Demo"
-
-#~ msgid "Work in progress"
-#~ msgstr "Work in progress"
-
-#~ msgid "Stem"
-#~ msgstr "Stem"
-
-#~ msgid "Loop"
-#~ msgstr "Loop"
-
-#~ msgid "Sound Effect"
-#~ msgstr "Sound Effect"
-
-#~ msgid "One Shot Sample"
-#~ msgstr "One Shot Sample"
-
-#~ msgid "Other"
-#~ msgstr "Other"
-
-#~ msgid "Enable System Emails (Password Reset)"
-#~ msgstr "Enable System Emails (Password Reset)"
-
-#~ msgid "Reset Password 'From' Email"
-#~ msgstr "Reset Password 'From' Email"
-
-#~ msgid "Configure Mail Server"
-#~ msgstr "Configure Mail Server"
-
-#~ msgid "Requires Authentication"
-#~ msgstr "Requires Authentication"
-
-#~ msgid "Mail Server"
-#~ msgstr "Mail Server"
-
-#~ msgid "Email Address"
-#~ msgstr "Email Address"
-
-#~ msgid "Please enter your user name and password"
-#~ msgstr "Please enter your user name and password"
-
-#~ msgid "Given email not found."
-#~ msgstr "Given email not found."
-
-#~ msgid "Page not found"
-#~ msgstr "Page not found"
-
-#~ msgid "Application error"
-#~ msgstr "Application error"
-
-#~ msgid "Playlist / Block"
-#~ msgstr "Playlist / Block"
-
-#~ msgid "If you change the username or password values for an enabled stream the playout engine will be rebooted and your listeners will hear silence for 5-10 seconds. Changing the following fields will NOT cause a reboot: Stream Label (Global Settings), and Switch Transition Fade(s), Master Username, and Master Password (Input Stream Settings). If Airtime is recording, and if the change causes a playout engine restart, the recording will be interrupted."
-#~ msgstr "If you change the username or password values for an enabled stream the playout engine will be rebooted and your listeners will hear silence for 5-10 seconds. Changing the following fields will NOT cause a reboot: Stream Label (Global Settings), and Switch Transition Fade(s), Master Username, and Master Password (Input Stream Settings). If Airtime is recording, and if the change causes a playout engine restart, the recording will be interrupted."
-
-#~ msgid "today"
-#~ msgstr "today"
-
-#~ msgid "day"
-#~ msgstr "day"
-
-#~ msgid "week"
-#~ msgstr "week"
-
-#~ msgid "month"
-#~ msgstr "month"
-
-#~ msgid "Remove overbooked tracks"
-#~ msgstr "Remove overbooked tracks"
-
-#~ msgid "Soundcloud"
-#~ msgstr "SoundCloud"
-
-#~ msgid "View on Soundcloud"
-#~ msgstr "View on SoundCloud"
-
-#~ msgid "Re-upload to SoundCloud"
-#~ msgstr "Re-upload to SoundCloud"
-
-#~ msgid "Upload to SoundCloud"
-#~ msgstr "Upload to SoundCloud"
-
-#~ msgid "Could not delete some scheduled files."
-#~ msgstr "Could not delete some scheduled files."
-
-#~ msgid "Add Media"
-#~ msgstr "Add Media"
-
-#~ msgid "Library"
-#~ msgstr "Library"
-
-#~ msgid "System"
-#~ msgstr "System"
-
-#~ msgid "Preferences"
-#~ msgstr "Preferences"
-
-#~ msgid "Media Folders"
-#~ msgstr "Media Folders"
-
-#~ msgid "History"
-#~ msgstr "History"
-
-#~ msgid "Service"
-#~ msgstr "Service"
-
-#~ msgid "Uptime"
-#~ msgstr "Uptime"
-
-#~ msgid "CPU"
-#~ msgstr "CPU"
-
-#~ msgid "Memory"
-#~ msgstr "Memory"
-
-#~ msgid "%s Version"
-#~ msgstr "%s Version"
-
-#~ msgid "Email / Mail Server Settings"
-#~ msgstr "Email / Mail Server Settings"
-
-#~ msgid "Connection URL: "
-#~ msgstr "Connection URL: "
-
-#~ msgid "Input Stream Settings"
-#~ msgstr "Input Stream Settings"
-
-#~ msgid "Master Source Connection URL:"
-#~ msgstr "Master Source Connection URL:"
-
-#~ msgid "Override"
-#~ msgstr "Override"
-
-#~ msgid "RESET"
-#~ msgstr "RESET"
-
-#~ msgid "Show Source Connection URL:"
-#~ msgstr "Show Source Connection URL:"
-
-#~ msgid "Help %1$s improve by letting us know how you are using it. This info will be collected regularly in order to enhance your user experience.%2$sClick 'Yes, help %1$s' and we'll make sure the features you use are constantly improving."
-#~ msgstr "Help %1$s improve by letting us know how you are using it. This info will be collected regularly in order to enhance your user experience.%2$sClick 'Yes, help %1$s' and we'll make sure the features you use are constantly improving."
-
-#~ msgid "Filter By Show:"
-#~ msgstr "Filter By Show:"
-
-#~ msgid "%s's Settings"
-#~ msgstr "%s's Settings"
-
-#~ msgid "Help %s improve by letting %s know how you are using it. This information will be collected regularly in order to enhance your user experience.%sClick the 'Send support feedback' box and we'll make sure the features you use are constantly improving."
-#~ msgstr "Help %s improve by letting %s know how you are using it. This information will be collected regularly in order to enhance your user experience.%sClick the 'Send support feedback' box and we'll make sure the features you use are constantly improving."
-
-#~ msgid "Sourcefabric Privacy Policy"
-#~ msgstr "Sourcefabric Privacy Policy"
-
-#~ msgid "Smart Block Options"
-#~ msgstr "Smart Block Options"
-
-#~ msgid "file meet the criteria"
-#~ msgstr "file meet the criteria"
-
-#~ msgid "New"
-#~ msgstr "New"
-
-#~ msgid "New Playlist"
-#~ msgstr "New Playlist"
-
-#~ msgid "New Smart Block"
-#~ msgstr "New Smart Block"
-
-#~ msgid "New Webstream"
-#~ msgstr "New Webstream"
-
-#~ msgid "View / edit description"
-#~ msgstr "View / edit description"
-
-#~ msgid "Global Settings"
-#~ msgstr "Global Settings"
-
-#~ msgid "Output Stream Settings"
-#~ msgstr "Output Stream Settings"
-
-#~ msgid "Listener Count Over Time"
-#~ msgstr "Listener Count Over Time"
-
-#~ msgid "Begin by adding your files to the library using the 'Add Media' menu button. You can drag and drop your files to this window too."
-#~ msgstr "Begin by adding your files to the library using the 'Add Media' menu button. You can drag and drop your files to this window too."
-
-#~ msgid "Create a show by going to 'Calendar' in the menu bar, and then clicking the '+ Show' icon. This can be either a one-time or repeating show. Only admins and program managers can add shows."
-#~ msgstr "Create a show by going to 'Calendar' in the menu bar, and then clicking the '+ Show' icon. This can be either a one-time or repeating show. Only admins and program managers can add shows."
-
-#~ msgid "Add media to the show by going to your show in the Schedule calendar, left-clicking on it and selecting 'Add / Remove Content'"
-#~ msgstr "Add media to the show by going to your show in the Schedule calendar, left-clicking on it and selecting 'Add / Remove Content'"
-
-#~ msgid "Select your media from the left pane and drag them to your show in the right pane."
-#~ msgstr "Select your media from the left pane and drag them to your show in the right pane."
-
-#~ msgid "Then you're good to go!"
-#~ msgstr "Then you're ready to broadcast!"
-
-#~ msgid "Please enter your account e-mail address. You will receive a link to create a new password via e-mail."
-#~ msgstr "Please enter your account e-mail address. You will receive a link to create a new password via e-mail."
-
-#~ msgid "Email sent"
-#~ msgstr "Email sent"
-
-#~ msgid "An email has been sent"
-#~ msgstr "An email has been sent"
-
-#~ msgid "Back to login screen"
-#~ msgstr "Back to login screen"
-
-#~ msgid "Scheduled Play"
-#~ msgstr "Scheduled Play"
-
-#~ msgid "Station time"
-#~ msgstr "Station time"
-
-#~ msgid "Purchase your copy of %s"
-#~ msgstr "Purchase your copy of %s"
-
-#~ msgid "Zend Framework Default Application"
-#~ msgstr "Zend Framework Default Application"
-
-#~ msgid "Empty smart block"
-#~ msgstr "Empty smart block"
-
-#~ msgid "Empty playlist"
-#~ msgstr "Empty playlist"
-
-#~ msgid "Empty smart block content"
-#~ msgstr "Empty smart block content"
-
-#~ msgid "No open smart block"
-#~ msgstr "No open smart block"
-
-#~ msgid "Record & Rebroadcast"
-#~ msgstr "Record & Rebroadcast"
-
-#~ msgid "Failed to create 'organize' directory."
-#~ msgstr "Failed to create 'organise' directory."
-
-#~ msgid "The file was not uploaded, there is %s MB of disk space left and the file you are uploading has a size of %s MB."
-#~ msgstr "The file was not uploaded, there is %s MB of disk space left and the file you are uploading has a size of %s MB."
-
-#~ msgid "This file appears to be corrupted and will not be added to media library."
-#~ msgstr "This file appears to be corrupted and will not be added to media library."
-
-#~ msgid "The file was not uploaded, this error can occur if the computer hard drive does not have enough disk space or the stor directory does not have correct write permissions."
-#~ msgstr "The file was not uploaded, this error can occur if the computer hard drive does not have enough disk space or the stor directory does not have correct write permissions."
-
-#~ msgid ""
-#~ "Hi %s, \n"
-#~ "\n"
-#~ "Click this link to reset your password: "
-#~ msgstr ""
-#~ "Hi %s, \n"
-#~ "\n"
-#~ "Click this link to reset your password: "
-
-#~ msgid "Show Content"
-#~ msgstr "Show Content"
-
-#~ msgid "Remove All Content"
-#~ msgstr "Remove All Content"
-
-#~ msgid "Cancel Current Show"
-#~ msgstr "Cancel Current Show"
-
-#~ msgid "Edit This Instance"
-#~ msgstr "Edit This Instance"
-
-#~ msgid "Delete This Instance"
-#~ msgstr "Delete This Instance"
-
-#~ msgid "Delete This Instance and All Following"
-#~ msgstr "Delete This Instance and All Following"
-
-#~ msgid "Please selection an option"
-#~ msgstr "Please select an option"
-
-#~ msgid "No Records"
-#~ msgstr "No Records"
+#~ msgid "Click on the show starting next and select 'Schedule Show'"
+#~ msgstr "Click on the show starting next and select 'Schedule Show'"
diff --git a/airtime_mvc/locale/en_GB/LC_MESSAGES/pro.po b/airtime_mvc/locale/en_GB/LC_MESSAGES/pro.po
index 866ee0acb..f59b52c3d 100644
--- a/airtime_mvc/locale/en_GB/LC_MESSAGES/pro.po
+++ b/airtime_mvc/locale/en_GB/LC_MESSAGES/pro.po
@@ -1,3 +1,139 @@
+#: airtime_mvc/application/controllers/LoginController.php:170
+#, php-format
+msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
+#, php-format
+msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
+#, php-format
+msgid "If you are the primary owner of this station, please reset your password here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
+msgid "Thank you!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
+msgid "Your station has been upgraded successfully."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
+msgid "Return to Airtime"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+#, php-format
+msgid "Purchase an %s plan!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+msgid "My Account"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
+msgid "Upgrade today to get more listeners and storage space!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
+msgid "View Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:257
+msgid "Your Current Plan:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:291
+msgid "Please enter your payment details:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
+msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
+msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:17
+msgid "First Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:26
+msgid "Last Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:35
+msgid "Company Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:44
+msgid "Email Address:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:54
+msgid "Address 1:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:63
+msgid "Address 2:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:70
+msgid "City:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:80
+msgid "State/Region:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:89
+msgid "Zip Code / Postal Code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:102
+msgid "Country:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:112
+msgid "Phone Number:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:121
+msgid "Please choose a security question:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:135
+msgid "Please enter an answer:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:152
+msgid "VAT/Tax ID (EU only)"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:162
+msgid "Subscribe to Sourcefabric newsletter"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:172
+msgid "Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:181
+msgid "Verify Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:193
+msgid "Save"
+msgstr ""
+
#: airtime_mvc/application/models/Auth.php:35
#, php-format
msgid ""
@@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
-msgid "Thank you!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
-msgid "Your station has been upgraded successfully."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
-msgid "Return to Airtime"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
-#, php-format
-msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
-msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
-msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
-#, php-format
-msgid "If you are the primary owner of this station, please reset your password here."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:170
-#, php-format
-msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
-msgstr ""
diff --git a/airtime_mvc/locale/en_US/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/en_US/LC_MESSAGES/airtime.mo
index 20510362a..c545ad3f6 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 946a85cc9..184b75962 100644
--- a/airtime_mvc/locale/en_US/LC_MESSAGES/airtime.po
+++ b/airtime_mvc/locale/en_US/LC_MESSAGES/airtime.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Airtime\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-09-03 10:24-0400\n"
-"PO-Revision-Date: 2014-11-14 09:58+0000\n"
+"POT-Creation-Date: 2015-09-04 11:17-0400\n"
+"PO-Revision-Date: 2015-09-04 08:15+0000\n"
"Last-Translator: Daniel James \n"
"Language-Team: English (United States) (http://www.transifex.com/sourcefabric/airtime/language/en_US/)\n"
"Language: en_US\n"
@@ -19,132 +19,6 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: airtime_mvc/public/setup/rabbitmq-setup.php:78
-msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1117
-#: airtime_mvc/application/services/HistoryService.php:1157
-#: airtime_mvc/application/services/HistoryService.php:1174
-#: airtime_mvc/application/models/Block.php:1375
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
-#: airtime_mvc/application/controllers/LocaleController.php:76
-msgid "Title"
-msgstr "Title"
-
-#: airtime_mvc/application/services/HistoryService.php:1118
-#: airtime_mvc/application/services/HistoryService.php:1158
-#: airtime_mvc/application/services/HistoryService.php:1175
-#: airtime_mvc/application/models/Block.php:1360
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
-#: airtime_mvc/application/controllers/LocaleController.php:77
-msgid "Creator"
-msgstr "Creator"
-
-#: airtime_mvc/application/services/HistoryService.php:1119
-#: airtime_mvc/application/models/Block.php:1352
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
-#: airtime_mvc/application/controllers/LocaleController.php:78
-msgid "Album"
-msgstr "Album"
-
-#: airtime_mvc/application/services/HistoryService.php:1120
-#: airtime_mvc/application/services/HistoryService.php:1177
-#: airtime_mvc/application/models/Block.php:1369
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
-#: airtime_mvc/application/controllers/LocaleController.php:91
-msgid "Length"
-msgstr "Length"
-
-#: airtime_mvc/application/services/HistoryService.php:1121
-#: airtime_mvc/application/models/Block.php:1362
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
-#: airtime_mvc/application/controllers/LocaleController.php:85
-msgid "Genre"
-msgstr "Genre"
-
-#: airtime_mvc/application/services/HistoryService.php:1122
-#: airtime_mvc/application/models/Block.php:1371
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
-#: airtime_mvc/application/controllers/LocaleController.php:93
-msgid "Mood"
-msgstr "Mood"
-
-#: airtime_mvc/application/services/HistoryService.php:1123
-#: airtime_mvc/application/models/Block.php:1364
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
-#: airtime_mvc/application/controllers/LocaleController.php:87
-msgid "Label"
-msgstr "Label"
-
-#: airtime_mvc/application/services/HistoryService.php:1124
-#: airtime_mvc/application/services/HistoryService.php:1178
-#: airtime_mvc/application/models/Block.php:1355
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
-#: airtime_mvc/application/controllers/LocaleController.php:81
-msgid "Composer"
-msgstr "Composer"
-
-#: airtime_mvc/application/services/HistoryService.php:1125
-#: airtime_mvc/application/models/Block.php:1363
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
-#: airtime_mvc/application/controllers/LocaleController.php:86
-msgid "ISRC"
-msgstr "ISRC"
-
-#: airtime_mvc/application/services/HistoryService.php:1126
-#: airtime_mvc/application/services/HistoryService.php:1179
-#: airtime_mvc/application/models/Block.php:1357
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
-#: airtime_mvc/application/controllers/LocaleController.php:83
-msgid "Copyright"
-msgstr "Copyright"
-
-#: airtime_mvc/application/services/HistoryService.php:1127
-#: airtime_mvc/application/models/Block.php:1379
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
-#: airtime_mvc/application/controllers/LocaleController.php:100
-msgid "Year"
-msgstr "Year"
-
-#: airtime_mvc/application/services/HistoryService.php:1128
-msgid "Track"
-msgstr "Track"
-
-#: airtime_mvc/application/services/HistoryService.php:1129
-#: airtime_mvc/application/models/Block.php:1356
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
-#: airtime_mvc/application/controllers/LocaleController.php:82
-msgid "Conductor"
-msgstr "Conductor"
-
-#: airtime_mvc/application/services/HistoryService.php:1130
-#: airtime_mvc/application/models/Block.php:1365
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
-#: airtime_mvc/application/controllers/LocaleController.php:88
-msgid "Language"
-msgstr "Language"
-
-#: airtime_mvc/application/services/HistoryService.php:1155
-#: airtime_mvc/application/forms/EditHistoryItem.php:32
-msgid "Start Time"
-msgstr "Start Time"
-
-#: airtime_mvc/application/services/HistoryService.php:1156
-#: airtime_mvc/application/forms/EditHistoryItem.php:44
-msgid "End Time"
-msgstr "End Time"
-
-#: airtime_mvc/application/services/HistoryService.php:1176
-msgid "Played"
-msgstr "Played"
-
#: airtime_mvc/application/services/CalendarService.php:50
msgid "Record file doesn't exist"
msgstr "Record file doesn't exist"
@@ -240,2604 +114,381 @@ msgstr "Show was deleted because recorded show does not exist!"
msgid "Must wait 1 hour to rebroadcast."
msgstr "Must wait 1 hour to rebroadcast."
-#: airtime_mvc/application/models/Schedule.php:206
-msgid "livestream"
+#: airtime_mvc/application/services/HistoryService.php:1117
+#: airtime_mvc/application/services/HistoryService.php:1157
+#: airtime_mvc/application/services/HistoryService.php:1174
+#: airtime_mvc/application/controllers/LocaleController.php:76
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
+#: airtime_mvc/application/models/Block.php:1375
+msgid "Title"
+msgstr "Title"
+
+#: airtime_mvc/application/services/HistoryService.php:1118
+#: airtime_mvc/application/services/HistoryService.php:1158
+#: airtime_mvc/application/services/HistoryService.php:1175
+#: airtime_mvc/application/controllers/LocaleController.php:77
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
+#: airtime_mvc/application/models/Block.php:1360
+msgid "Creator"
+msgstr "Creator"
+
+#: airtime_mvc/application/services/HistoryService.php:1119
+#: airtime_mvc/application/controllers/LocaleController.php:78
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
+#: airtime_mvc/application/models/Block.php:1352
+msgid "Album"
+msgstr "Album"
+
+#: airtime_mvc/application/services/HistoryService.php:1120
+#: airtime_mvc/application/services/HistoryService.php:1177
+#: airtime_mvc/application/controllers/LocaleController.php:91
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
+#: airtime_mvc/application/models/Block.php:1369
+msgid "Length"
+msgstr "Length"
+
+#: airtime_mvc/application/services/HistoryService.php:1121
+#: airtime_mvc/application/controllers/LocaleController.php:85
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
+#: airtime_mvc/application/models/Block.php:1362
+msgid "Genre"
+msgstr "Genre"
+
+#: airtime_mvc/application/services/HistoryService.php:1122
+#: airtime_mvc/application/controllers/LocaleController.php:93
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
+#: airtime_mvc/application/models/Block.php:1371
+msgid "Mood"
+msgstr "Mood"
+
+#: airtime_mvc/application/services/HistoryService.php:1123
+#: airtime_mvc/application/controllers/LocaleController.php:87
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
+#: airtime_mvc/application/models/Block.php:1364
+msgid "Label"
+msgstr "Label"
+
+#: airtime_mvc/application/services/HistoryService.php:1124
+#: airtime_mvc/application/services/HistoryService.php:1178
+#: airtime_mvc/application/controllers/LocaleController.php:81
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
+#: airtime_mvc/application/models/Block.php:1355
+msgid "Composer"
+msgstr "Composer"
+
+#: airtime_mvc/application/services/HistoryService.php:1125
+#: airtime_mvc/application/controllers/LocaleController.php:86
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
+#: airtime_mvc/application/models/Block.php:1363
+msgid "ISRC"
+msgstr "ISRC"
+
+#: airtime_mvc/application/services/HistoryService.php:1126
+#: airtime_mvc/application/services/HistoryService.php:1179
+#: airtime_mvc/application/controllers/LocaleController.php:83
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
+#: airtime_mvc/application/models/Block.php:1357
+msgid "Copyright"
+msgstr "Copyright"
+
+#: airtime_mvc/application/services/HistoryService.php:1127
+#: airtime_mvc/application/controllers/LocaleController.php:100
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
+#: airtime_mvc/application/models/Block.php:1379
+msgid "Year"
+msgstr "Year"
+
+#: airtime_mvc/application/services/HistoryService.php:1128
+msgid "Track"
+msgstr "Track"
+
+#: airtime_mvc/application/services/HistoryService.php:1129
+#: airtime_mvc/application/controllers/LocaleController.php:82
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
+#: airtime_mvc/application/models/Block.php:1356
+msgid "Conductor"
+msgstr "Conductor"
+
+#: airtime_mvc/application/services/HistoryService.php:1130
+#: airtime_mvc/application/controllers/LocaleController.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
+#: airtime_mvc/application/models/Block.php:1365
+msgid "Language"
+msgstr "Language"
+
+#: airtime_mvc/application/services/HistoryService.php:1155
+#: airtime_mvc/application/forms/EditHistoryItem.php:32
+msgid "Start Time"
+msgstr "Start Time"
+
+#: airtime_mvc/application/services/HistoryService.php:1156
+#: airtime_mvc/application/forms/EditHistoryItem.php:44
+msgid "End Time"
+msgstr "End Time"
+
+#: airtime_mvc/application/services/HistoryService.php:1176
+msgid "Played"
+msgstr "Played"
+
+#: airtime_mvc/application/controllers/LibraryController.php:31
+#: airtime_mvc/application/controllers/PlaylistController.php:147
+#, php-format
+msgid "%s not found"
+msgstr "%s not found"
+
+#: airtime_mvc/application/controllers/LibraryController.php:40
+#: airtime_mvc/application/controllers/PlaylistController.php:168
+msgid "Something went wrong."
+msgstr "Something went wrong."
+
+#: airtime_mvc/application/controllers/LibraryController.php:95
+#: airtime_mvc/application/controllers/ShowbuilderController.php:136
+msgid "Preview"
+msgstr "Preview"
+
+#: airtime_mvc/application/controllers/LibraryController.php:115
+#: airtime_mvc/application/controllers/LibraryController.php:177
+#: airtime_mvc/application/controllers/LibraryController.php:200
+msgid "Add to Playlist"
+msgstr "Add to Playlist"
+
+#: airtime_mvc/application/controllers/LibraryController.php:117
+msgid "Add to Smart Block"
+msgstr "Add to Smart Block"
+
+#: airtime_mvc/application/controllers/LibraryController.php:123
+#: airtime_mvc/application/controllers/LocaleController.php:66
+msgid "Edit Metadata"
+msgstr "Edit Metadata"
+
+#: airtime_mvc/application/controllers/LibraryController.php:131
+#: airtime_mvc/application/controllers/ScheduleController.php:712
+msgid "Download"
+msgstr "Download"
+
+#: airtime_mvc/application/controllers/LibraryController.php:147
+msgid "View track"
msgstr ""
-#: airtime_mvc/application/models/ShowBuilder.php:212
-#, php-format
-msgid "Rebroadcast of %s from %s"
-msgstr "Rebroadcast of %s from %s"
-
-#: airtime_mvc/application/models/Webstream.php:166
-msgid "Length needs to be greater than 0 minutes"
-msgstr "Length needs to be greater than 0 minutes"
-
-#: airtime_mvc/application/models/Webstream.php:171
-msgid "Length should be of form \"00h 00m\""
-msgstr "Length should be of form \"00h 00m\""
-
-#: airtime_mvc/application/models/Webstream.php:184
-msgid "URL should be of form \"http://domain\""
-msgstr "URL should be of form \"http://domain\""
-
-#: airtime_mvc/application/models/Webstream.php:187
-msgid "URL should be 512 characters or less"
-msgstr "URL should be 512 characters or less"
-
-#: airtime_mvc/application/models/Webstream.php:193
-msgid "No MIME type found for webstream."
-msgstr "No MIME type found for webstream."
-
-#: airtime_mvc/application/models/Webstream.php:209
-msgid "Webstream name cannot be empty"
-msgstr "Webstream name cannot be empty"
-
-#: airtime_mvc/application/models/Webstream.php:278
-msgid "Could not parse XSPF playlist"
-msgstr "Could not parse XSPF playlist"
-
-#: airtime_mvc/application/models/Webstream.php:298
-msgid "Could not parse PLS playlist"
-msgstr "Could not parse PLS playlist"
-
-#: airtime_mvc/application/models/Webstream.php:318
-msgid "Could not parse M3U playlist"
-msgstr "Could not parse M3U playlist"
-
-#: airtime_mvc/application/models/Webstream.php:332
-msgid "Invalid webstream - This appears to be a file download."
-msgstr "Invalid webstream - This appears to be a file download."
-
-#: airtime_mvc/application/models/Webstream.php:336
-#, php-format
-msgid "Unrecognized stream type: %s"
-msgstr "Unrecognized stream type: %s"
-
-#: airtime_mvc/application/models/Preference.php:460
-#, php-format
-msgid "Powered by %s"
+#: airtime_mvc/application/controllers/LibraryController.php:148
+msgid "Remove track"
msgstr ""
-#: airtime_mvc/application/models/Preference.php:588
-msgid "Select Country"
-msgstr "Select Country"
+#: airtime_mvc/application/controllers/LibraryController.php:154
+#: airtime_mvc/application/controllers/LibraryController.php:159
+msgid "Upload track"
+msgstr ""
-#: airtime_mvc/application/models/MusicDir.php:160
+#: airtime_mvc/application/controllers/LibraryController.php:169
+msgid "Duplicate Playlist"
+msgstr "Duplicate Playlist"
+
+#: airtime_mvc/application/controllers/LibraryController.php:213
+msgid "No action available"
+msgstr "No action available"
+
+#: airtime_mvc/application/controllers/LibraryController.php:233
+msgid "You don't have permission to delete selected items."
+msgstr "You don't have permission to delete selected items."
+
+#: airtime_mvc/application/controllers/LibraryController.php:279
+msgid "Could not delete file because it is scheduled in the future."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:282
+msgid "Could not delete file(s)."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:322
#, php-format
-msgid "%s is already watched."
-msgstr "%s is already watched."
+msgid "Copy of %s"
+msgstr "Copy of %s"
-#: airtime_mvc/application/models/MusicDir.php:164
-#, php-format
-msgid "%s contains nested watched directory: %s"
-msgstr "%s contains nested watched directory: %s"
+#: airtime_mvc/application/controllers/WebstreamController.php:28
+#: airtime_mvc/application/controllers/WebstreamController.php:32
+msgid "Untitled Webstream"
+msgstr "Untitled Webstream"
-#: airtime_mvc/application/models/MusicDir.php:168
-#, php-format
-msgid "%s is nested within existing watched directory: %s"
-msgstr "%s is nested within existing watched directory: %s"
+#: airtime_mvc/application/controllers/WebstreamController.php:150
+msgid "Webstream saved."
+msgstr "Webstream saved."
-#: airtime_mvc/application/models/MusicDir.php:189
-#: airtime_mvc/application/models/MusicDir.php:370
-#, php-format
-msgid "%s is not a valid directory."
-msgstr "%s is not a valid directory."
+#: airtime_mvc/application/controllers/WebstreamController.php:158
+msgid "Invalid form values."
+msgstr "Invalid form values."
-#: airtime_mvc/application/models/MusicDir.php:232
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list"
-msgstr "%s is already set as the current storage dir or in the watched folders list"
-
-#: airtime_mvc/application/models/MusicDir.php:388
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list."
-msgstr "%s is already set as the current storage dir or in the watched folders list."
-
-#: airtime_mvc/application/models/MusicDir.php:431
-#, php-format
-msgid "%s doesn't exist in the watched list."
-msgstr "%s doesn't exist in the watched list."
-
-#: airtime_mvc/application/models/Show.php:184
-msgid "Shows can have a max length of 24 hours."
-msgstr "Shows can have a max length of 24 hours."
-
-#: airtime_mvc/application/models/Show.php:282
-#: airtime_mvc/application/forms/AddShowWhen.php:156
-msgid "End date/time cannot be in the past"
-msgstr "End date/time cannot be in the past"
-
-#: airtime_mvc/application/models/Show.php:293
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
msgid ""
-"Cannot schedule overlapping shows.\n"
-"Note: Resizing a repeating show affects all of its repeats."
+"To configure and use the embeddable player you must:
\n"
+" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
+" 2. Enable the Public Airtime API under System -> Preferences"
msgstr ""
-"Cannot schedule overlapping shows.\n"
-"Note: Resizing a repeating show affects all of its repeats."
-#: airtime_mvc/application/models/Auth.php:33
-#, php-format
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
msgid ""
-"Hi %s, \n"
-"\n"
-"Please click this link to reset your password: "
+"To use the embeddable weekly schedule widget you must:
\n"
+" Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/models/Auth.php:38
+#: airtime_mvc/application/controllers/ListenerstatController.php:51
+msgid "Please make sure admin user/password is correct on System->Streams page."
+msgstr "Please make sure admin user/password is correct on System->Streams page."
+
+#: airtime_mvc/application/controllers/UserController.php:86
+msgid "User added successfully!"
+msgstr "User added successfully!"
+
+#: airtime_mvc/application/controllers/UserController.php:88
+msgid "User updated successfully!"
+msgstr "User updated successfully!"
+
+#: airtime_mvc/application/controllers/UserController.php:187
+msgid "Settings updated successfully!"
+msgstr "Settings updated successfully!"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:53
#, php-format
-msgid "%s Password Reset"
-msgstr ""
+msgid "You are viewing an older version of %s"
+msgstr "You are viewing an older version of %s"
-#: airtime_mvc/application/models/Block.php:333
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
-msgid "items"
-msgstr "items"
+#: airtime_mvc/application/controllers/PlaylistController.php:140
+msgid "You cannot add tracks to dynamic blocks."
+msgstr "You cannot add tracks to dynamic blocks."
-#: airtime_mvc/application/models/Block.php:833
-#: airtime_mvc/application/models/Playlist.php:812
-msgid "Cue in and cue out are null."
-msgstr "Cue in and cue out are null."
-
-#: airtime_mvc/application/models/Block.php:868
-#: airtime_mvc/application/models/Block.php:924
-#: airtime_mvc/application/models/Playlist.php:851
-#: airtime_mvc/application/models/Playlist.php:895
-msgid "Can't set cue out to be greater than file length."
-msgstr "Can't set cue out to be greater than file length."
-
-#: airtime_mvc/application/models/Block.php:879
-#: airtime_mvc/application/models/Block.php:900
-#: airtime_mvc/application/models/Playlist.php:843
-#: airtime_mvc/application/models/Playlist.php:868
-msgid "Can't set cue in to be larger than cue out."
-msgstr "Can't set cue in to be larger than cue out."
-
-#: airtime_mvc/application/models/Block.php:935
-#: airtime_mvc/application/models/Playlist.php:887
-msgid "Can't set cue out to be smaller than cue in."
-msgstr "Can't set cue out to be smaller than cue in."
-
-#: airtime_mvc/application/models/Block.php:1351
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
-msgid "Select criteria"
-msgstr "Select criteria"
-
-#: airtime_mvc/application/models/Block.php:1353
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
-msgid "Bit Rate (Kbps)"
-msgstr "Bit Rate (Kbps)"
-
-#: airtime_mvc/application/models/Block.php:1354
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
-#: airtime_mvc/application/controllers/LocaleController.php:80
-msgid "BPM"
-msgstr "BPM"
-
-#: airtime_mvc/application/models/Block.php:1358
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
-#: airtime_mvc/application/controllers/LocaleController.php:281
-#: airtime_mvc/application/layouts/scripts/layout.phtml:140
-msgid "Cue In"
-msgstr "Cue In"
-
-#: airtime_mvc/application/models/Block.php:1359
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:282
-#: airtime_mvc/application/layouts/scripts/layout.phtml:147
-msgid "Cue Out"
-msgstr "Cue Out"
-
-#: airtime_mvc/application/models/Block.php:1361
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
-#: airtime_mvc/application/controllers/LocaleController.php:84
-msgid "Encoded By"
-msgstr "Encoded By"
-
-#: airtime_mvc/application/models/Block.php:1366
-msgid "Upload Time"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1367
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
-#: airtime_mvc/application/controllers/LocaleController.php:89
-msgid "Last Modified"
-msgstr "Last Modified"
-
-#: airtime_mvc/application/models/Block.php:1368
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
-#: airtime_mvc/application/controllers/LocaleController.php:90
-msgid "Last Played"
-msgstr "Last Played"
-
-#: airtime_mvc/application/models/Block.php:1370
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
-#: airtime_mvc/application/controllers/LocaleController.php:92
-msgid "Mime"
-msgstr "Mime"
-
-#: airtime_mvc/application/models/Block.php:1372
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
-#: airtime_mvc/application/controllers/LocaleController.php:94
-msgid "Owner"
-msgstr "Owner"
-
-#: airtime_mvc/application/models/Block.php:1373
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
-#: airtime_mvc/application/controllers/LocaleController.php:95
-msgid "Replay Gain"
-msgstr "Replay Gain"
-
-#: airtime_mvc/application/models/Block.php:1374
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
-msgid "Sample Rate (kHz)"
-msgstr "Sample Rate (kHz)"
-
-#: airtime_mvc/application/models/Block.php:1376
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
-#: airtime_mvc/application/controllers/LocaleController.php:97
-msgid "Track Number"
-msgstr "Track Number"
-
-#: airtime_mvc/application/models/Block.php:1377
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
-#: airtime_mvc/application/controllers/LocaleController.php:98
-msgid "Uploaded"
-msgstr "Uploaded"
-
-#: airtime_mvc/application/models/Block.php:1378
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
-#: airtime_mvc/application/controllers/LocaleController.php:99
-msgid "Website"
-msgstr "Website"
-
-#: airtime_mvc/application/models/Block.php:1383
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
-#: airtime_mvc/application/controllers/LocaleController.php:151
-msgid "Select modifier"
-msgstr "Select modifier"
-
-#: airtime_mvc/application/models/Block.php:1384
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
-#: airtime_mvc/application/controllers/LocaleController.php:152
-msgid "contains"
-msgstr "contains"
-
-#: airtime_mvc/application/models/Block.php:1385
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
-#: airtime_mvc/application/controllers/LocaleController.php:153
-msgid "does not contain"
-msgstr "does not contain"
-
-#: airtime_mvc/application/models/Block.php:1386
-#: airtime_mvc/application/models/Block.php:1390
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
-#: airtime_mvc/application/controllers/LocaleController.php:154
-msgid "is"
-msgstr "is"
-
-#: airtime_mvc/application/models/Block.php:1387
-#: airtime_mvc/application/models/Block.php:1391
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
-#: airtime_mvc/application/controllers/LocaleController.php:155
-msgid "is not"
-msgstr "is not"
-
-#: airtime_mvc/application/models/Block.php:1388
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
-#: airtime_mvc/application/controllers/LocaleController.php:156
-msgid "starts with"
-msgstr "starts with"
-
-#: airtime_mvc/application/models/Block.php:1389
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
-#: airtime_mvc/application/controllers/LocaleController.php:157
-msgid "ends with"
-msgstr "ends with"
-
-#: airtime_mvc/application/models/Block.php:1392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
-#: airtime_mvc/application/controllers/LocaleController.php:158
-msgid "is greater than"
-msgstr "is greater than"
-
-#: airtime_mvc/application/models/Block.php:1393
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
-#: airtime_mvc/application/controllers/LocaleController.php:159
-msgid "is less than"
-msgstr "is less than"
-
-#: airtime_mvc/application/models/Block.php:1394
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
-#: airtime_mvc/application/controllers/LocaleController.php:160
-msgid "is in the range"
-msgstr "is in the range"
-
-#: airtime_mvc/application/models/Scheduler.php:73
-msgid "Cannot move items out of linked shows"
-msgstr "Cannot move items out of linked shows"
-
-#: airtime_mvc/application/models/Scheduler.php:119
-msgid "The schedule you're viewing is out of date! (sched mismatch)"
-msgstr "The schedule you're viewing is out of date! (sched mismatch)"
-
-#: airtime_mvc/application/models/Scheduler.php:124
-msgid "The schedule you're viewing is out of date! (instance mismatch)"
-msgstr "The schedule you're viewing is out of date! (instance mismatch)"
-
-#: airtime_mvc/application/models/Scheduler.php:132
-#: airtime_mvc/application/models/Scheduler.php:458
-#: airtime_mvc/application/models/Scheduler.php:490
-msgid "The schedule you're viewing is out of date!"
-msgstr "The schedule you're viewing is out of date!"
-
-#: airtime_mvc/application/models/Scheduler.php:142
+#: airtime_mvc/application/controllers/PlaylistController.php:161
#, php-format
-msgid "You are not allowed to schedule show %s."
-msgstr "You are not allowed to schedule show %s."
+msgid "You don't have permission to delete selected %s(s)."
+msgstr "You don't have permission to delete selected %s(s)."
-#: airtime_mvc/application/models/Scheduler.php:146
-msgid "You cannot add files to recording shows."
-msgstr "You cannot add files to recording shows."
+#: airtime_mvc/application/controllers/PlaylistController.php:174
+msgid "You can only add tracks to smart block."
+msgstr "You can only add tracks to smart block."
-#: airtime_mvc/application/models/Scheduler.php:152
+#: airtime_mvc/application/controllers/PlaylistController.php:180
+#: airtime_mvc/application/controllers/LocaleController.php:50
+msgid "You can only add tracks, smart blocks, and webstreams to playlists."
+msgstr "You can only add tracks, smart blocks, and webstreams to playlists."
+
+#: airtime_mvc/application/controllers/PlaylistController.php:192
+msgid "Untitled Playlist"
+msgstr "Untitled Playlist"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:194
+msgid "Untitled Smart Block"
+msgstr "Untitled Smart Block"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:522
+msgid "Unknown Playlist"
+msgstr "Unknown Playlist"
+
+#: airtime_mvc/application/controllers/ErrorController.php:78
+msgid "Page not found."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:87
+msgid "The requested action is not supported."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:98
+msgid "You do not have permission to access this resource."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:109
+msgid "An internal application error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/controllers/Apiv2Controller.php:77
+#: airtime_mvc/application/controllers/ApiController.php:79
+msgid "You are not allowed to access this resource."
+msgstr "You are not allowed to access this resource."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:72
+msgid "Preferences updated."
+msgstr "Preferences updated."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:115
+msgid "Support setting updated."
+msgstr "Support setting updated."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:123
+msgid "Support Feedback"
+msgstr "Support Feedback"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:251
+msgid "Stream Setting Updated."
+msgstr "Stream Setting Updated."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:342
+msgid "path should be specified"
+msgstr "path should be specified"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:437
+msgid "Problem with Liquidsoap..."
+msgstr "Problem with Liquidsoap..."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:493
+msgid "Request method not accepted"
+msgstr ""
+
+#: airtime_mvc/application/controllers/DashboardController.php:35
+#: airtime_mvc/application/controllers/DashboardController.php:84
+msgid "You don't have permission to disconnect source."
+msgstr "You don't have permission to disconnect source."
+
+#: airtime_mvc/application/controllers/DashboardController.php:37
+#: airtime_mvc/application/controllers/DashboardController.php:86
+msgid "There is no source connected to this input."
+msgstr "There is no source connected to this input."
+
+#: airtime_mvc/application/controllers/DashboardController.php:81
+msgid "You don't have permission to switch source."
+msgstr "You don't have permission to switch source."
+
+#: airtime_mvc/application/controllers/LoginController.php:43
+msgid "Please enter your username and password."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:93
+msgid "Wrong username or password provided. Please try again."
+msgstr "Wrong username or password provided. Please try again."
+
+#: airtime_mvc/application/controllers/LoginController.php:167
+msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
+msgstr "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
+
+#: airtime_mvc/application/controllers/LoginController.php:173
+msgid "There was a problem with the username or email address you entered."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ApiController.php:244
+#: airtime_mvc/application/controllers/ApiController.php:317
+#: airtime_mvc/application/controllers/ApiController.php:392
+#: airtime_mvc/application/controllers/ApiController.php:435
+#: airtime_mvc/application/controllers/ApiController.php:474
+#: airtime_mvc/application/controllers/ApiController.php:507
+msgid "You are not allowed to access this resource. "
+msgstr "You are not allowed to access this resource. "
+
+#: airtime_mvc/application/controllers/ApiController.php:698
+#: airtime_mvc/application/controllers/ApiController.php:718
+#: airtime_mvc/application/controllers/ApiController.php:730
#, php-format
-msgid "The show %s is over and cannot be scheduled."
-msgstr "The show %s is over and cannot be scheduled."
-
-#: airtime_mvc/application/models/Scheduler.php:159
-#, php-format
-msgid "The show %s has been previously updated!"
-msgstr "The show %s has been previously updated!"
-
-#: airtime_mvc/application/models/Scheduler.php:178
-msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
-msgstr "Content in linked shows must be scheduled before or after any one is broadcasted"
-
-#: airtime_mvc/application/models/Scheduler.php:195
-msgid "Cannot schedule a playlist that contains missing files."
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:216
-#: airtime_mvc/application/models/Scheduler.php:305
-msgid "A selected File does not exist!"
-msgstr "A selected File does not exist!"
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
-#: airtime_mvc/application/configs/navigation.php:40
-msgid "Weekly Schedule"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
-#: airtime_mvc/application/forms/Player.php:77
-msgid "Preview:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
-#: airtime_mvc/application/configs/navigation.php:34
-msgid "Player"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
-#: airtime_mvc/application/controllers/LocaleController.php:362
-#: airtime_mvc/application/controllers/LocaleController.php:390
-msgid "Close"
-msgstr "Close"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Add this show"
-msgstr "Add this show"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Update show"
-msgstr "Update show"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
-msgid "What"
-msgstr "What"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
-msgid "When"
-msgstr "When"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
-msgid "Live Stream Input"
-msgstr "Live Stream Input"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
-msgid "Who"
-msgstr "Who"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
-msgid "Style"
-msgstr "Style"
-
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
-#: airtime_mvc/application/controllers/LocaleController.php:273
-msgid "Start"
-msgstr "Start"
-
-#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
-msgid "Password Reset"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
-msgid "Email Sent!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
-msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
-msgid "Back"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
-msgid "New password"
-msgstr "New password"
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
-msgid "Please enter and confirm your new password in the fields below."
-msgstr "Please enter and confirm your new password in the fields below."
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:3
-#: airtime_mvc/application/forms/Login.php:83
-msgid "Login"
-msgstr "Login"
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:7
-#, php-format
-msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:97
-msgid "Playout History"
-msgstr "Playout History"
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
-msgid "Log Sheet"
-msgstr "Log Sheet"
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
-msgid "File Summary"
-msgstr "File Summary"
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
-msgid "Show Summary"
-msgstr "Show Summary"
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
-msgid "Your trial expires in"
-msgstr "Your trial expires in"
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
-msgid "days"
-msgstr "days"
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-#, php-format
-msgid "Purchase an %s Pro plan!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-msgid "My Account"
-msgstr "My Account"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
-msgid "Previous:"
-msgstr "Previous:"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
-msgid "Next:"
-msgstr "Next:"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
-msgid "Source Streams"
-msgstr "Source Streams"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
-msgid "Master Source"
-msgstr "Master Source"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
-msgid "Show Source"
-msgstr "Show Source"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
-msgid "ON AIR"
-msgstr "ON AIR"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
-msgid "Listen"
-msgstr "Listen"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
-msgid "Logout"
-msgstr "Logout"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
-msgid "Drop files here or click to browse your computer."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
-#: airtime_mvc/application/controllers/LocaleController.php:314
-msgid "in use"
-msgstr "in use"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
-#: airtime_mvc/application/controllers/LocaleController.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:401
-msgid "All"
-msgstr "All"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
-msgid "Failed"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
-msgid "Pending"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
-msgid "Recent Uploads"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
-#: airtime_mvc/application/configs/navigation.php:120
-msgid "Account Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
-msgid "Upgrade today to get more listeners and storage space!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
-msgid "View Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
-msgid "About"
-msgstr "About"
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
-#, php-format
-msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
-#, php-format
-msgid "%1$s %2$s is distributed under the %3$s"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
-#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
-msgid "Live stream"
-msgstr "Live stream"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
-msgid "Share"
-msgstr "Share"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
-msgid "Select stream:"
-msgstr "Select stream:"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
-msgid "mute"
-msgstr "mute"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
-msgid "unmute"
-msgstr "unmute"
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
-#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
-#, php-format
-msgid "Welcome to %s!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
-#, php-format
-msgid "Here's how you can get started using %s to automate your broadcasts: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
-msgid "Upload audio tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
-msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
-msgid "Schedule a show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
-msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
-msgid "Add tracks to your show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
-msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
-msgid "Now you're good to go!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
-#, php-format
-msgid "For more detailed help, read the %suser manual%s."
-msgstr "For more detailed help, read the %suser manual%s."
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
-msgid "Listeners"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
-msgid "Stream Data Collection Status"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
-#: airtime_mvc/application/views/scripts/error/error.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
-msgid "An error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
-msgid "Access Denied!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
-msgid "You do not have permission to access this page!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
-#: airtime_mvc/application/views/scripts/error/error.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
-#: airtime_mvc/application/configs/navigation.php:143
-msgid "Help"
-msgstr "Help"
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
-msgid "Page not found!"
-msgstr "Page not found!"
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
-msgid "We couldn't find the page you were looking for."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error.phtml:12
-msgid "Looks like the page you were looking for doesn't exist!"
-msgstr "Looks like the page you were looking for doesn't exist!"
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
-msgid "Oops!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
-msgid "Something went wrong!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
-msgid "Bad Request!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
-msgid "The requested action is not supported!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
-msgid "Viewing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
-msgid "Editing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:3
-msgid "File import in progress..."
-msgstr "File import in progress..."
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:10
-#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
-msgid "Advanced Search Options"
-msgstr "Advanced Search Options"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
-#: airtime_mvc/application/forms/Player.php:15
-#: airtime_mvc/application/forms/EditAudioMD.php:24
-msgid "Title:"
-msgstr "Title:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
-#: airtime_mvc/application/forms/EditAudioMD.php:34
-msgid "Creator:"
-msgstr "Creator:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
-#: airtime_mvc/application/forms/EditAudioMD.php:44
-msgid "Album:"
-msgstr "Album:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
-msgid "Track:"
-msgstr "Track:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
-msgid "Length:"
-msgstr "Length:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
-msgid "Sample Rate:"
-msgstr "Sample Rate:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
-msgid "Bit Rate:"
-msgstr "Bit Rate:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
-#: airtime_mvc/application/forms/EditAudioMD.php:115
-msgid "Mood:"
-msgstr "Mood:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
-#: airtime_mvc/application/forms/EditAudioMD.php:62
-#: airtime_mvc/application/forms/AddShowWhat.php:45
-msgid "Genre:"
-msgstr "Genre:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
-#: airtime_mvc/application/forms/EditAudioMD.php:72
-msgid "Year:"
-msgstr "Year:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
-#: airtime_mvc/application/forms/EditAudioMD.php:85
-msgid "Label:"
-msgstr "Label:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
-#: airtime_mvc/application/forms/EditAudioMD.php:125
-msgid "BPM:"
-msgstr "BPM:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
-#: airtime_mvc/application/forms/EditAudioMD.php:95
-msgid "Composer:"
-msgstr "Composer:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
-#: airtime_mvc/application/forms/EditAudioMD.php:105
-msgid "Conductor:"
-msgstr "Conductor:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
-#: airtime_mvc/application/forms/EditAudioMD.php:135
-msgid "Copyright:"
-msgstr "Copyright:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
-msgid "Isrc Number:"
-msgstr "Isrc Number:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
-#: airtime_mvc/application/forms/EditAudioMD.php:155
-msgid "Website:"
-msgstr "Website:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
-#: airtime_mvc/application/forms/EditUser.php:119
-#: airtime_mvc/application/forms/EditAudioMD.php:165
-#: airtime_mvc/application/forms/Login.php:68
-msgid "Language:"
-msgstr "Language:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
-msgid "File Path:"
-msgstr "File Path:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
-#: airtime_mvc/application/forms/AddShowWhat.php:26
-msgid "Name:"
-msgstr "Name:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
-#: airtime_mvc/application/forms/AddShowWhat.php:54
-msgid "Description:"
-msgstr "Description:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
-msgid "Web Stream"
-msgstr "Web Stream"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
-msgid "Dynamic Smart Block"
-msgstr "Dynamic Smart Block"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
-msgid "Static Smart Block"
-msgstr "Static Smart Block"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
-msgid "Audio Track"
-msgstr "Audio Track"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
-msgid "Playlist Contents: "
-msgstr "Playlist Contents: "
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
-msgid "Static Smart Block Contents: "
-msgstr "Static Smart Block Contents: "
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
-msgid "Dynamic Smart Block Criteria: "
-msgstr "Dynamic Smart Block Criteria: "
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
-msgid "Limit to "
-msgstr "Limit to "
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
-#: airtime_mvc/application/forms/AddShowWhat.php:36
-msgid "URL:"
-msgstr "URL:"
-
-#: airtime_mvc/application/views/scripts/form/login.phtml:41
-msgid "Forgot your password?"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
-#, php-format
-msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
-#, php-format
-msgid "Click the box below to promote your station on %s."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
-msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
-msgstr "(In order to promote your station, 'Send support feedback' must be enabled)."
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
-msgid "(Required)"
-msgstr "(Required)"
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
-msgid "(for verification purposes only, will not be published)"
-msgstr "(for verification purposes only, will not be published)"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
-msgid "Choose folder"
-msgstr "Choose folder"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
-msgid "Set"
-msgstr "Set"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
-msgid "Current Import Folder:"
-msgstr "Current Import Folder:"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
-msgid "Add"
-msgstr "Add"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
-#, php-format
-msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
-msgid "Remove watched directory"
-msgstr "Remove watched directory"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
-msgid "You are not watching any media folders."
-msgstr "You are not watching any media folders."
-
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
-msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
-msgid "Live Broadcasting"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
-msgid "Use these settings in your broadcasting software to stream live at any time."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
-msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
-msgid "Choose Show Instance"
-msgstr "Choose Show Instance"
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
-#: airtime_mvc/application/forms/EditHistoryItem.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:400
-msgid "No Show"
-msgstr "No Show"
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
-msgid "Find"
-msgstr "Find"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
-msgid "Choose Days:"
-msgstr "Choose Days:"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
-#: airtime_mvc/application/forms/AddShowStyle.php:64
-#: airtime_mvc/application/forms/GeneralPreferences.php:53
-msgid "Remove"
-msgstr "Remove"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
-msgid "Stream "
-msgstr "Stream "
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
-msgid "Additional Options"
-msgstr "Additional Options"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
-msgid "The following info will be displayed to listeners in their media player:"
-msgstr "The following info will be displayed to listeners in their media player:"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
-msgid "(Your radio station website)"
-msgstr "(Your radio station website)"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
-msgid "Stream URL: "
-msgstr "Stream URL: "
-
-#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
-msgid "Find Shows"
-msgstr "Find Shows"
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
-msgid "TuneIn Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
-msgid "SoundCloud Settings"
-msgstr "SoundCloud Settings"
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
-msgid "Dangerous Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
-msgid "Search Criteria:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
-msgid "New Criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
-msgid "or"
-msgstr "or"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
-msgid "and"
-msgstr "and"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
-msgid "New Modifier"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
-msgid " to "
-msgstr " to "
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
-msgid "files meet the criteria"
-msgstr "files meet the criteria"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
-msgid "file meets the criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
-msgid "Filter History"
-msgstr "Filter History"
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
-#: airtime_mvc/application/configs/navigation.php:61
-msgid "My Profile"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
-#, php-format
-msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
-#: airtime_mvc/application/forms/Preferences.php:40
-#: airtime_mvc/application/forms/PasswordChange.php:43
-#: airtime_mvc/application/forms/AddUser.php:110
-#: airtime_mvc/application/forms/BillingClient.php:193
-#: airtime_mvc/application/forms/SupportSettings.php:131
-#: airtime_mvc/application/forms/EditHistory.php:131
-#: airtime_mvc/application/controllers/LocaleController.php:294
-msgid "Save"
-msgstr "Save"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
-msgid "Repeat Days:"
-msgstr "Repeat Days:"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
-msgid "Register Airtime"
-msgstr "Register Airtime"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
-#: airtime_mvc/application/forms/GeneralPreferences.php:43
-msgid "Note: Anything larger than 600x600 will be resized."
-msgstr "Note: Anything larger than 600x600 will be resized."
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
-msgid "Show me what I am sending "
-msgstr "Show me what I am sending "
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
-msgid "Terms and Conditions"
-msgstr "Terms and Conditions"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
-msgid "Creating File Summary Template"
-msgstr "Creating File Summary Template"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
-msgid "Creating Log Sheet Template"
-msgstr "Creating Log Sheet Template"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
-msgid "Name"
-msgstr "Name"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
-msgid "Add more elements"
-msgstr "Add more elements"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
-msgid "Add New Field"
-msgstr "Add New Field"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
-msgid "Set Default Template"
-msgstr "Set Default Template"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
-msgid "Playout History Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
-msgid "Log Sheet Templates"
-msgstr "Log Sheet Templates"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
-msgid "New Log Sheet Template"
-msgstr "New Log Sheet Template"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
-msgid "No Log Sheet Templates"
-msgstr "No Log Sheet Templates"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
-#: airtime_mvc/application/controllers/LocaleController.php:397
-msgid "Set Default"
-msgstr "Set Default"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
-msgid "File Summary Templates"
-msgstr "File Summary Templates"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
-msgid "New File Summary Template"
-msgstr "New File Summary Template"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
-msgid "No File Summary Templates"
-msgstr "No File Summary Templates"
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
-msgid "Disk Space"
-msgstr "Disk Space"
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
-#: airtime_mvc/application/controllers/LocaleController.php:315
-msgid "Disk"
-msgstr "Disk"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
-#: airtime_mvc/application/forms/AddShowWhen.php:89
-msgid "Duration:"
-msgstr "Duration:"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
-msgid "Toggle Details"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
-msgid "Playlist crossfade"
-msgstr "Playlist crossfade"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-msgid "Remove all content from this smart block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Clear"
-msgstr "Clear"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "Fade in: "
-msgstr "Fade in: "
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "(ss.t)"
-msgstr "(ss.t)"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-msgid "Fade out: "
-msgstr "Fade out: "
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
-#: airtime_mvc/application/forms/EditAudioMD.php:186
-#: airtime_mvc/application/forms/EditHistory.php:141
-#: airtime_mvc/application/controllers/LocaleController.php:295
-#: airtime_mvc/application/controllers/LocaleController.php:318
-msgid "Cancel"
-msgstr "Cancel"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
-msgid "No smart block currently open"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
-msgid "Show Waveform"
-msgstr "Show Waveform"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-msgid "Cue In: "
-msgstr "Cue In: "
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "(hh:mm:ss.t)"
-msgstr "(hh:mm:ss.t)"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "Cue Out: "
-msgstr "Cue Out: "
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
-msgid "Original Length:"
-msgstr "Original Length:"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
-msgid "Expand Static Block"
-msgstr "Expand Static Block"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
-msgid "Expand Dynamic Block"
-msgstr "Expand Dynamic Block"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
-msgid "Choose some search criteria above and click Generate to create this playlist."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
-msgid "A track list will be generated when you schedule this smart block into a show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
-msgid "Drag tracks here from your library to add them to the playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-msgid "Shuffle playlist"
-msgstr "Shuffle playlist"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
-msgid "Shuffle"
-msgstr "Shuffle"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Empty playlist content"
-msgstr "Empty playlist content"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-msgid "Save playlist"
-msgstr "Save playlist"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
-msgid "No open playlist"
-msgstr "No open playlist"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
-msgid "previous"
-msgstr "previous"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
-msgid "play"
-msgstr "play"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
-msgid "pause"
-msgstr "pause"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
-msgid "next"
-msgstr "next"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
-msgid "stop"
-msgstr "stop"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
-msgid "max volume"
-msgstr "max volume"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
-msgid "Update Required"
-msgstr "Update Required"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
-#, php-format
-msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
-msgstr "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
-msgid "Stream Settings"
-msgstr "Stream Settings"
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
-msgid "Global"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
-msgid "dB"
-msgstr "dB"
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
-msgid "Output Streams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
-#: airtime_mvc/application/controllers/LocaleController.php:166
-msgid "Manage Media Folders"
-msgstr "Manage Media Folders"
-
-#: airtime_mvc/application/views/scripts/preference/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:56
-msgid "General"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
-msgid "Description"
-msgstr "Description"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
-msgid "Stream URL:"
-msgstr "Stream URL:"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
-msgid "Default Length:"
-msgstr "Default Length:"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
-msgid "No webstream"
-msgstr "No webstream"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
-msgid "Manage Users"
-msgstr "Manage Users"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
-msgid "New User"
-msgstr "New User"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
-msgid "id"
-msgstr "id"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
-#: airtime_mvc/application/forms/PasswordRestore.php:25
-msgid "Username"
-msgstr "Username"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
-msgid "First Name"
-msgstr "First Name"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
-msgid "Last Name"
-msgstr "Last Name"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
-msgid "User Type"
-msgstr "User Type"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
-#, php-format
-msgid "Super Admin details can be changed in your Billing Settings."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
-#: airtime_mvc/application/controllers/LocaleController.php:74
-#: airtime_mvc/application/layouts/scripts/layout.phtml:78
-msgid "Tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
-#: airtime_mvc/application/controllers/LocaleController.php:104
-#: airtime_mvc/application/layouts/scripts/layout.phtml:80
-msgid "Playlists"
-msgstr "Playlists"
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
-#: airtime_mvc/application/controllers/LocaleController.php:105
-#: airtime_mvc/application/layouts/scripts/layout.phtml:82
-msgid "Smart Blocks"
-msgstr "Smart Blocks"
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
-#: airtime_mvc/application/layouts/scripts/layout.phtml:84
-msgid "Webstreams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
-#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
-#: airtime_mvc/application/layouts/scripts/layout.phtml:76
-msgid "Dashboard"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:12
-msgid "Radio Page"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:19
-msgid "Calendar"
-msgstr "Calendar"
-
-#: airtime_mvc/application/configs/navigation.php:26
-msgid "Widgets"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:48
-msgid "Settings"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:67
-msgid "Users"
-msgstr "Users"
-
-#: airtime_mvc/application/configs/navigation.php:74
-msgid "Streams"
-msgstr "Streams"
-
-#: airtime_mvc/application/configs/navigation.php:82
-msgid "Analytics"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:90
-msgid "Listener Stats"
-msgstr "Listener Stats"
-
-#: airtime_mvc/application/configs/navigation.php:104
-msgid "History Templates"
-msgstr "History Templates"
-
-#: airtime_mvc/application/configs/navigation.php:113
-msgid "Billing"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:127
-msgid "Account Details"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:134
-msgid "View Invoices"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:150
-msgid "Getting Started"
-msgstr "Getting Started"
-
-#: airtime_mvc/application/configs/navigation.php:157
-msgid "FAQ"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:162
-msgid "User Manual"
-msgstr "User Manual"
-
-#: airtime_mvc/application/configs/navigation.php:167
-msgid "File a Support Ticket"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:12
-msgid "Background Colour:"
-msgstr "Background Color:"
-
-#: airtime_mvc/application/forms/AddShowStyle.php:31
-msgid "Text Colour:"
-msgstr "Text Color:"
-
-#: airtime_mvc/application/forms/AddShowStyle.php:49
-msgid "Current Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:72
-msgid "Show Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:87
-msgid "Logo Preview:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:19
-msgid "Push metadata to your station on TuneIn?"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:24
-msgid "Station ID:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:30
-msgid "Partner Key:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:36
-msgid "Partner Id:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:77
-#: airtime_mvc/application/forms/TuneInPreferences.php:86
-msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:14
-msgid "Now Playing"
-msgstr "Now Playing"
-
-#: airtime_mvc/application/forms/Player.php:25
-msgid "Select Stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:28
-msgid "Auto detect the most appropriate stream to use."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:29
-msgid "Select a stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:41
-msgid " - Mobile friendly"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:45
-msgid " - The player does not support Opus streams."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:71
-msgid "Embeddable code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:72
-msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:37
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
-#: airtime_mvc/application/forms/Login.php:41
-#: airtime_mvc/application/forms/AddUser.php:29
-msgid "Username:"
-msgstr "Username:"
-
-#: airtime_mvc/application/forms/EditUser.php:48
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
-#: airtime_mvc/application/forms/Login.php:54
-#: airtime_mvc/application/forms/AddUser.php:38
-#: airtime_mvc/application/forms/BillingClient.php:172
-msgid "Password:"
-msgstr "Password:"
-
-#: airtime_mvc/application/forms/EditUser.php:57
-#: airtime_mvc/application/forms/AddUser.php:46
-#: airtime_mvc/application/forms/BillingClient.php:181
-msgid "Verify Password:"
-msgstr "Verify Password:"
-
-#: airtime_mvc/application/forms/EditUser.php:67
-#: airtime_mvc/application/forms/AddUser.php:55
-msgid "Firstname:"
-msgstr "Firstname:"
-
-#: airtime_mvc/application/forms/EditUser.php:75
-#: airtime_mvc/application/forms/AddUser.php:61
-msgid "Lastname:"
-msgstr "Lastname:"
-
-#: airtime_mvc/application/forms/EditUser.php:83
-#: airtime_mvc/application/forms/RegisterAirtime.php:51
-#: airtime_mvc/application/forms/AddUser.php:67
-#: airtime_mvc/application/forms/SupportSettings.php:43
-msgid "Email:"
-msgstr "Email:"
-
-#: airtime_mvc/application/forms/EditUser.php:94
-#: airtime_mvc/application/forms/AddUser.php:76
-msgid "Mobile Phone:"
-msgstr "Mobile Phone:"
-
-#: airtime_mvc/application/forms/EditUser.php:102
-#: airtime_mvc/application/forms/AddUser.php:82
-msgid "Skype:"
-msgstr "Skype:"
-
-#: airtime_mvc/application/forms/EditUser.php:110
-#: airtime_mvc/application/forms/AddUser.php:88
-msgid "Jabber:"
-msgstr "Jabber:"
-
-#: airtime_mvc/application/forms/EditUser.php:129
-msgid "Interface Timezone:"
-msgstr "Interface Timezone:"
-
-#: airtime_mvc/application/forms/EditUser.php:155
-#: airtime_mvc/application/forms/AddUser.php:120
-msgid "Login name is not unique."
-msgstr "Login name is not unique."
-
-#: airtime_mvc/application/forms/AddShowRR.php:10
-msgid "Record from Line In?"
-msgstr "Record from Line In?"
-
-#: airtime_mvc/application/forms/AddShowRR.php:16
-msgid "Rebroadcast?"
-msgstr "Rebroadcast?"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:16
-msgid "'%value%' does not fit the time format 'HH:mm'"
-msgstr "'%value%' does not fit the time format 'HH:mm'"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:22
-msgid "Start Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:37
-msgid "In the Future:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:64
-msgid "End Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:98
-msgid "Timezone:"
-msgstr "Timezone:"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:107
-msgid "Repeats?"
-msgstr "Repeats?"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:139
-msgid "Cannot create show in the past"
-msgstr "Cannot create show in the past"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:147
-msgid "Cannot modify start date/time of the show that is already started"
-msgstr "Cannot modify start date/time of the show that is already started"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:164
-msgid "Cannot have duration < 0m"
-msgstr "Cannot have duration < 0m"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:168
-msgid "Cannot have duration 00h 00m"
-msgstr "Cannot have duration 00h 00m"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:175
-msgid "Cannot have duration greater than 24h"
-msgstr "Cannot have duration greater than 24h"
-
-#: airtime_mvc/application/forms/AddShowWho.php:10
-msgid "Search Users:"
-msgstr "Search Users:"
-
-#: airtime_mvc/application/forms/AddShowWho.php:24
-msgid "DJs:"
-msgstr "DJs:"
-
-#: airtime_mvc/application/forms/PasswordChange.php:17
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
-msgid "Password"
-msgstr "Password"
-
-#: airtime_mvc/application/forms/PasswordChange.php:28
-msgid "Confirm new password"
-msgstr "Confirm new password"
-
-#: airtime_mvc/application/forms/PasswordChange.php:36
-msgid "Password confirmation does not match your password."
-msgstr "Password confirmation does not match your password."
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
-msgid "Station Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
-#: airtime_mvc/application/forms/GeneralPreferences.php:127
-msgid "Station Timezone"
-msgstr "Station Timezone"
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
-msgid "Auto Switch Off:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
-msgid "Auto Switch On:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
-msgid "Switch Transition Fade (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
-#: airtime_mvc/application/forms/GeneralPreferences.php:68
-#: airtime_mvc/application/forms/GeneralPreferences.php:82
-#: airtime_mvc/application/forms/GeneralPreferences.php:96
-msgid "Please enter a time in seconds (eg. 0.5)"
+msgid "File does not exist in %s"
msgstr ""
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
-#: airtime_mvc/application/forms/AddShowLiveStream.php:48
-msgid "Host:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
-#: airtime_mvc/application/forms/AddShowLiveStream.php:54
-msgid "Port:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
-#: airtime_mvc/application/forms/AddShowLiveStream.php:60
-msgid "Mount:"
-msgstr ""
-
-#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
-msgid "Value is required and can't be empty"
-msgstr "Value is required and can't be empty"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:25
-#: airtime_mvc/application/forms/RegisterAirtime.php:30
-#: airtime_mvc/application/forms/SupportSettings.php:18
-msgid "Station Name"
-msgstr "Station Name"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:33
-msgid "Station Description"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:42
-#: airtime_mvc/application/forms/RegisterAirtime.php:106
-msgid "Station Logo:"
-msgstr "Station Logo:"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:62
-msgid "Default Crossfade Duration (s):"
-msgstr "Default Crossfade Duration (s):"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:76
-msgid "Default Fade In (s):"
-msgstr "Default Fade In (s):"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:90
-msgid "Default Fade Out (s):"
-msgstr "Default Fade Out (s):"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:102
-msgid "Public Airtime API"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:103
-msgid "Required for embeddable schedule widget."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:105
-msgid "Disabled"
-msgstr "Disabled"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:106
-msgid "Enabled"
-msgstr "Enabled"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:109
-msgid ""
-"Enabling this feature will allow Airtime to provide schedule data\n"
-" to external widgets that can be embedded in your website."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:120
-msgid "Default Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:134
-msgid "Week Starts On"
-msgstr "Week Starts On"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:150
-msgid "Display login button on your Radio Page?"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:158
-#: airtime_mvc/application/controllers/LocaleController.php:249
-msgid "Sunday"
-msgstr "Sunday"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:159
-#: airtime_mvc/application/controllers/LocaleController.php:250
-msgid "Monday"
-msgstr "Monday"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:160
-#: airtime_mvc/application/controllers/LocaleController.php:251
-msgid "Tuesday"
-msgstr "Tuesday"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:161
-#: airtime_mvc/application/controllers/LocaleController.php:252
-msgid "Wednesday"
-msgstr "Wednesday"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:162
-#: airtime_mvc/application/controllers/LocaleController.php:253
-msgid "Thursday"
-msgstr "Thursday"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:163
-#: airtime_mvc/application/controllers/LocaleController.php:254
-msgid "Friday"
-msgstr "Friday"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:164
-#: airtime_mvc/application/controllers/LocaleController.php:255
-msgid "Saturday"
-msgstr "Saturday"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
-msgid "Default License:"
-msgstr "Default License:"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
-msgid "All rights are reserved"
-msgstr "All rights are reserved"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
-msgid "The work is in the public domain"
-msgstr "The work is in the public domain"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
-msgid "Creative Commons Attribution"
-msgstr "Creative Commons Attribution"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
-msgid "Creative Commons Attribution Noncommercial"
-msgstr "Creative Commons Attribution Noncommercial"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
-msgid "Creative Commons Attribution No Derivative Works"
-msgstr "Creative Commons Attribution No Derivative Works"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
-msgid "Creative Commons Attribution Share Alike"
-msgstr "Creative Commons Attribution Share Alike"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
-msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
-msgstr "Creative Commons Attribution Noncommercial Non Derivate Works"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
-msgid "Creative Commons Attribution Noncommercial Share Alike"
-msgstr "Creative Commons Attribution Noncommercial Share Alike"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
-msgid "Default Sharing Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
-msgid "Public"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
-msgid "Private"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:18
-#: airtime_mvc/application/forms/DateRange.php:16
-msgid "Date Start:"
-msgstr "Date Start:"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:37
-#: airtime_mvc/application/forms/ShowBuilder.php:65
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
-#: airtime_mvc/application/forms/DateRange.php:35
-#: airtime_mvc/application/forms/DateRange.php:63
-msgid "Invalid character entered"
-msgstr "Invalid character entered"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:46
-#: airtime_mvc/application/forms/AddShowRepeats.php:56
-#: airtime_mvc/application/forms/DateRange.php:44
-msgid "Date End:"
-msgstr "Date End:"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:72
-#: airtime_mvc/application/forms/ShowBuilder.php:88
-msgid "Filter by Show"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:80
-msgid "All My Shows:"
-msgstr "All My Shows:"
-
-#: airtime_mvc/application/forms/EditAudioMD.php:145
-msgid "ISRC Number:"
-msgstr "ISRC Number:"
-
-#: airtime_mvc/application/forms/EditAudioMD.php:176
-msgid "OK"
-msgstr "OK"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
-msgid "Day must be specified"
-msgstr "Day must be specified"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
-msgid "Time must be specified"
-msgstr "Time must be specified"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
-msgid "Must wait at least 1 hour to rebroadcast"
-msgstr "Must wait at least 1 hour to rebroadcast"
-
-#: airtime_mvc/application/forms/AddShowWhat.php:30
-msgid "Untitled Show"
-msgstr "Untitled Show"
-
-#: airtime_mvc/application/forms/AddShowWhat.php:69
-msgid "Instance Description:"
-msgstr ""
-
-#: airtime_mvc/application/forms/DangerousPreferences.php:12
-msgid "Delete All Tracks in Library"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:39
-#: airtime_mvc/application/forms/SupportSettings.php:31
-msgid "Phone:"
-msgstr "Phone:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:62
-#: airtime_mvc/application/forms/SupportSettings.php:54
-msgid "Station Web Site:"
-msgstr "Station Web Site:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:73
-#: airtime_mvc/application/forms/BillingClient.php:102
-#: airtime_mvc/application/forms/SupportSettings.php:65
-msgid "Country:"
-msgstr "Country:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:84
-#: airtime_mvc/application/forms/BillingClient.php:70
-#: airtime_mvc/application/forms/SupportSettings.php:76
-msgid "City:"
-msgstr "City:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:96
-#: airtime_mvc/application/forms/SupportSettings.php:88
-msgid "Station Description:"
-msgstr "Station Description:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:116
-#: airtime_mvc/application/forms/SupportSettings.php:98
-#: airtime_mvc/application/controllers/LocaleController.php:341
-msgid "Send support feedback"
-msgstr "Send support feedback"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:126
-#: airtime_mvc/application/forms/SupportSettings.php:108
-#, php-format
-msgid "Promote my station on %s"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:151
-#: airtime_mvc/application/forms/SupportSettings.php:120
-#, php-format
-msgid "By checking this box, I agree to %s's %sprivacy policy%s."
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:169
-#: airtime_mvc/application/forms/SupportSettings.php:143
-msgid "You have to agree to privacy policy."
-msgstr "You have to agree to privacy policy."
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:10
-msgid "Link:"
-msgstr "Link:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:16
-msgid "Repeat Type:"
-msgstr "Repeat Type:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:19
-msgid "weekly"
-msgstr "weekly"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:20
-msgid "every 2 weeks"
-msgstr "every 2 weeks"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:21
-msgid "every 3 weeks"
-msgstr "every 3 weeks"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:22
-msgid "every 4 weeks"
-msgstr "every 4 weeks"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:23
-msgid "monthly"
-msgstr "monthly"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:32
-msgid "Select Days:"
-msgstr "Select Days:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:35
-#: airtime_mvc/application/controllers/LocaleController.php:256
-msgid "Sun"
-msgstr "Sun"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:36
-#: airtime_mvc/application/controllers/LocaleController.php:257
-msgid "Mon"
-msgstr "Mon"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:37
-#: airtime_mvc/application/controllers/LocaleController.php:258
-msgid "Tue"
-msgstr "Tue"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:38
-#: airtime_mvc/application/controllers/LocaleController.php:259
-msgid "Wed"
-msgstr "Wed"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:39
-#: airtime_mvc/application/controllers/LocaleController.php:260
-msgid "Thu"
-msgstr "Thu"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:40
-#: airtime_mvc/application/controllers/LocaleController.php:261
-msgid "Fri"
-msgstr "Fri"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:41
-#: airtime_mvc/application/controllers/LocaleController.php:262
-msgid "Sat"
-msgstr "Sat"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:47
-msgid "Repeat By:"
-msgstr "Repeat By:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the month"
-msgstr "day of the month"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the week"
-msgstr "day of the week"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:69
-msgid "No End?"
-msgstr "No End?"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:106
-msgid "End date must be after start date"
-msgstr "End date must be after start date"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:113
-msgid "Please select a repeat day"
-msgstr "Please select a repeat day"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:10
-#, php-format
-msgid "Use %s Authentication:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:16
-msgid "Use Custom Authentication:"
-msgstr "Use Custom Authentication:"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:25
-msgid "Custom Username"
-msgstr "Custom Username"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:37
-msgid "Custom Password"
-msgstr "Custom Password"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:77
-msgid "Username field cannot be empty."
-msgstr "Username field cannot be empty."
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:82
-msgid "Password field cannot be empty."
-msgstr "Password field cannot be empty."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
-msgid "Enabled:"
-msgstr "Enabled:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
-msgid "Mobile:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
-msgid "Stream Type:"
-msgstr "Stream Type:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
-msgid "Service Type:"
-msgstr "Service Type:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
-msgid "Channels:"
-msgstr "Channels:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "1 - Mono"
-msgstr "1 - Mono"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "2 - Stereo"
-msgstr "2 - Stereo"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
-msgid "Server"
-msgstr "Server"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
-msgid "Port"
-msgstr "Port"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
-msgid "Only numbers are allowed."
-msgstr "Only numbers are allowed."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
-msgid "URL"
-msgstr "URL"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
-msgid "Mount Point"
-msgstr "Mount Point"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
-msgid "Admin User"
-msgstr "Admin User"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
-msgid "Admin Password"
-msgstr "Admin Password"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
-#: airtime_mvc/application/controllers/LocaleController.php:173
-msgid "Getting information from the server..."
-msgstr "Getting information from the server..."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
-msgid "Server cannot be empty."
-msgstr "Server cannot be empty."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
-msgid "Port cannot be empty."
-msgstr "Port cannot be empty."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
-msgid "Mount cannot be empty with Icecast server."
-msgstr "Mount cannot be empty with Icecast server."
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
-msgid "'%value%' is no valid email address in the basic format local-part@hostname"
-msgstr "'%value%' is no valid email address in the basic format local-part@hostname"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
-msgid "'%value%' does not fit the date format '%format%'"
-msgstr "'%value%' does not fit the date format '%format%'"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
-msgid "'%value%' is less than %min% characters long"
-msgstr "'%value%' is less than %min% characters long"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
-msgid "'%value%' is more than %max% characters long"
-msgstr "'%value%' is more than %max% characters long"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
-msgid "'%value%' is not between '%min%' and '%max%', inclusively"
-msgstr "'%value%' is not between '%min%' and '%max%', inclusively"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
-msgid "Passwords do not match"
-msgstr "Passwords do not match"
+#: airtime_mvc/application/controllers/ApiController.php:781
+msgid "Bad request. no 'mode' parameter passed."
+msgstr "Bad request. no 'mode' parameter passed."
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
-msgid "hours"
-msgstr "hours"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
-msgid "minutes"
-msgstr "minutes"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
-msgid "Randomly"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
-msgid "Newest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
-msgid "Oldest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
-msgid "Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
-msgid "Static"
-msgstr "Static"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
-msgid "Dynamic"
-msgstr "Dynamic"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
-msgid "Allow Repeated Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
-msgid "Sort Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
-msgid "Limit to:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
-msgid "Generate playlist content and save criteria"
-msgstr "Generate playlist content and save criteria"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
-msgid "Generate"
-msgstr "Generate"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
-msgid "Shuffle playlist content"
-msgstr "Shuffle playlist content"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
-msgid "Limit cannot be empty or smaller than 0"
-msgstr "Limit cannot be empty or smaller than 0"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
-msgid "Limit cannot be more than 24 hrs"
-msgstr "Limit cannot be more than 24 hrs"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
-msgid "The value should be an integer"
-msgstr "The value should be an integer"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
-msgid "500 is the max item limit value you can set"
-msgstr "500 is the max item limit value you can set"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
-msgid "You must select Criteria and Modifier"
-msgstr "You must select Criteria and Modifier"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
-msgid "'Length' should be in '00:00:00' format"
-msgstr "'Length' should be in '00:00:00' format"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
-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:594
-msgid "The value has to be numeric"
-msgstr "The value has to be numeric"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
-msgid "The value should be less then 2147483648"
-msgstr "The value should be less then 2147483648"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
-#, php-format
-msgid "The value should be less than %s characters"
-msgstr "The value should be less than %s characters"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
-msgid "Value cannot be empty"
-msgstr "Value cannot be empty"
-
-#: airtime_mvc/application/forms/Login.php:102
-msgid "Type the characters you see in the picture below."
-msgstr "Type the characters you see in the picture below."
-
-#: airtime_mvc/application/forms/StreamSetting.php:26
-msgid "Icecast Vorbis Metadata"
-msgstr "Icecast Vorbis Metadata"
-
-#: airtime_mvc/application/forms/StreamSetting.php:36
-msgid "Stream Label:"
-msgstr "Stream Label:"
-
-#: airtime_mvc/application/forms/StreamSetting.php:37
-msgid "Artist - Title"
-msgstr "Artist - Title"
-
-#: airtime_mvc/application/forms/StreamSetting.php:38
-msgid "Show - Artist - Title"
-msgstr "Show - Artist - Title"
-
-#: airtime_mvc/application/forms/StreamSetting.php:39
-msgid "Station name - Show name"
-msgstr "Station name - Show name"
-
-#: airtime_mvc/application/forms/StreamSetting.php:45
-msgid "Off Air Metadata"
-msgstr "Off Air Metadata"
-
-#: airtime_mvc/application/forms/StreamSetting.php:51
-msgid "Enable Replay Gain"
-msgstr "Enable Replay Gain"
-
-#: airtime_mvc/application/forms/StreamSetting.php:57
-msgid "Replay Gain Modifier"
-msgstr "Replay Gain Modifier"
-
-#: airtime_mvc/application/forms/StreamSetting.php:65
-msgid "Streaming Server:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Airtime Pro Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Custom / 3rd Party Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:95
-msgid "User Type:"
-msgstr "User Type:"
-
-#: airtime_mvc/application/forms/AddUser.php:99
-#: airtime_mvc/application/controllers/LocaleController.php:324
-msgid "Guest"
-msgstr "Guest"
-
-#: airtime_mvc/application/forms/AddUser.php:100
-#: airtime_mvc/application/controllers/LocaleController.php:322
-msgid "DJ"
-msgstr "DJ"
-
-#: airtime_mvc/application/forms/AddUser.php:101
-#: airtime_mvc/application/controllers/LocaleController.php:323
-msgid "Program Manager"
-msgstr "Program Manager"
-
-#: airtime_mvc/application/forms/AddUser.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:321
-msgid "Admin"
-msgstr "Admin"
-
-#: airtime_mvc/application/forms/BillingClient.php:17
-msgid "First Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:26
-msgid "Last Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:35
-msgid "Company Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:44
-msgid "Email Address:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:54
-msgid "Address 1:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:63
-msgid "Address 2:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:80
-msgid "State/Region:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:89
-msgid "Zip Code / Postal Code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:112
-msgid "Phone Number:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:121
-msgid "Please choose a security question:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:126
-msgid "What is the name of your favorite childhood friend?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:127
-msgid "What school did you attend for sixth grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:128
-msgid "In what city did you meet your spouse/significant other?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:129
-msgid "What street did you live on in third grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:130
-msgid "What is the first name of the boy or girl that you first kissed?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:131
-msgid "In what city or town was your first job?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:135
-msgid "Please enter an answer:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:152
-msgid "VAT/Tax ID (EU only)"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:162
-msgid "Subscribe to Sourcefabric newsletter"
-msgstr ""
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
-msgid "Import Folder:"
-msgstr "Import Folder:"
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
-msgid "Watched Folders:"
-msgstr "Watched Folders:"
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
-msgid "Not a valid Directory"
-msgstr "Not a valid Directory"
-
-#: airtime_mvc/application/forms/PasswordRestore.php:14
-msgid "Email"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordRestore.php:36
-msgid "Reset password"
-msgstr "Reset password"
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
-msgid "Plan type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
-msgid "Billing cycle:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
-msgid "Payment method:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
-msgid "PayPal"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
-msgid "Credit Card via 2Checkout"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:213
-#, php-format
-msgid "The year %s must be within the range of 1753 - 9999"
-msgstr "The year %s must be within the range of 1753 - 9999"
-
-#: airtime_mvc/application/common/DateHelper.php:216
-#, php-format
-msgid "%s-%s-%s is not a valid date"
-msgstr "%s-%s-%s is not a valid date"
-
-#: airtime_mvc/application/common/DateHelper.php:240
-#, php-format
-msgid "%s:%s:%s is not a valid time"
-msgstr "%s:%s:%s is not a valid time"
-
-#: airtime_mvc/application/common/UsabilityHints.php:55
-msgid "Upload some tracks below to add them to your library!"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:57
-#, php-format
-msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:63
-msgid "Click the 'New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:65
-#, php-format
-msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:73
-msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:75
-#, php-format
-msgid ""
-"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
-" %sCreate an unlinked show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:80
-msgid "To start broadcasting, click on the current show and select 'Schedule Show'"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:82
-#, php-format
-msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:89
-msgid "Click on the show starting next and select 'Schedule Show'"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:91
-#, php-format
-msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
-msgstr ""
+#: airtime_mvc/application/controllers/ApiController.php:791
+msgid "Bad request. 'mode' parameter is invalid"
+msgstr "Bad request. 'mode' parameter is invalid"
#: airtime_mvc/application/controllers/LocaleController.php:30
#: airtime_mvc/application/layouts/scripts/audio-player.phtml:5
@@ -2909,11 +560,6 @@ msgstr "Adding %s Items"
msgid "You can only add tracks to smart blocks."
msgstr "You can only add tracks to smart blocks."
-#: airtime_mvc/application/controllers/LocaleController.php:50
-#: airtime_mvc/application/controllers/PlaylistController.php:180
-msgid "You can only add tracks, smart blocks, and webstreams to playlists."
-msgstr "You can only add tracks, smart blocks, and webstreams to playlists."
-
#: airtime_mvc/application/controllers/LocaleController.php:53
msgid "Please select a cursor position on timeline."
msgstr "Please select a cursor position on timeline."
@@ -2954,11 +600,6 @@ msgstr ""
msgid "Click 'New' to create one."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:66
-#: airtime_mvc/application/controllers/LibraryController.php:123
-msgid "Edit Metadata"
-msgstr "Edit Metadata"
-
#: airtime_mvc/application/controllers/LocaleController.php:67
msgid "Add to selected show"
msgstr "Add to selected show"
@@ -2987,6 +628,12 @@ msgstr "Are you sure you want to delete the selected item(s)?"
msgid "Scheduled"
msgstr "Scheduled"
+#: airtime_mvc/application/controllers/LocaleController.php:74
+#: airtime_mvc/application/layouts/scripts/layout.phtml:78
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
+msgid "Tracks"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:75
#: airtime_mvc/application/layouts/scripts/layout.phtml:60
msgid "Playlist"
@@ -2996,18 +643,96 @@ msgstr ""
msgid "Bit Rate"
msgstr "Bit Rate"
+#: airtime_mvc/application/controllers/LocaleController.php:80
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
+#: airtime_mvc/application/models/Block.php:1354
+msgid "BPM"
+msgstr "BPM"
+
+#: airtime_mvc/application/controllers/LocaleController.php:84
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
+#: airtime_mvc/application/models/Block.php:1361
+msgid "Encoded By"
+msgstr "Encoded By"
+
+#: airtime_mvc/application/controllers/LocaleController.php:89
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
+#: airtime_mvc/application/models/Block.php:1367
+msgid "Last Modified"
+msgstr "Last Modified"
+
+#: airtime_mvc/application/controllers/LocaleController.php:90
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
+#: airtime_mvc/application/models/Block.php:1368
+msgid "Last Played"
+msgstr "Last Played"
+
+#: airtime_mvc/application/controllers/LocaleController.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
+#: airtime_mvc/application/models/Block.php:1370
+msgid "Mime"
+msgstr "Mime"
+
+#: airtime_mvc/application/controllers/LocaleController.php:94
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
+#: airtime_mvc/application/models/Block.php:1372
+msgid "Owner"
+msgstr "Owner"
+
+#: airtime_mvc/application/controllers/LocaleController.php:95
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
+#: airtime_mvc/application/models/Block.php:1373
+msgid "Replay Gain"
+msgstr "Replay Gain"
+
#: airtime_mvc/application/controllers/LocaleController.php:96
msgid "Sample Rate"
msgstr "Sample Rate"
+#: airtime_mvc/application/controllers/LocaleController.php:97
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
+#: airtime_mvc/application/models/Block.php:1376
+msgid "Track Number"
+msgstr "Track Number"
+
+#: airtime_mvc/application/controllers/LocaleController.php:98
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
+#: airtime_mvc/application/models/Block.php:1377
+msgid "Uploaded"
+msgstr "Uploaded"
+
+#: airtime_mvc/application/controllers/LocaleController.php:99
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
+#: airtime_mvc/application/models/Block.php:1378
+msgid "Website"
+msgstr "Website"
+
#: airtime_mvc/application/controllers/LocaleController.php:101
msgid "Loading..."
msgstr "Loading..."
+#: airtime_mvc/application/controllers/LocaleController.php:102
+#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
+msgid "All"
+msgstr "All"
+
#: airtime_mvc/application/controllers/LocaleController.php:103
msgid "Files"
msgstr "Files"
+#: airtime_mvc/application/controllers/LocaleController.php:104
+#: airtime_mvc/application/layouts/scripts/layout.phtml:80
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
+msgid "Playlists"
+msgstr "Playlists"
+
+#: airtime_mvc/application/controllers/LocaleController.php:105
+#: airtime_mvc/application/layouts/scripts/layout.phtml:82
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
+msgid "Smart Blocks"
+msgstr "Smart Blocks"
+
#: airtime_mvc/application/controllers/LocaleController.php:106
msgid "Web Streams"
msgstr "Web Streams"
@@ -3152,6 +877,74 @@ msgstr "Smart block saved"
msgid "Processing..."
msgstr "Processing..."
+#: airtime_mvc/application/controllers/LocaleController.php:151
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
+#: airtime_mvc/application/models/Block.php:1383
+msgid "Select modifier"
+msgstr "Select modifier"
+
+#: airtime_mvc/application/controllers/LocaleController.php:152
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
+#: airtime_mvc/application/models/Block.php:1384
+msgid "contains"
+msgstr "contains"
+
+#: airtime_mvc/application/controllers/LocaleController.php:153
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
+#: airtime_mvc/application/models/Block.php:1385
+msgid "does not contain"
+msgstr "does not contain"
+
+#: airtime_mvc/application/controllers/LocaleController.php:154
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
+#: airtime_mvc/application/models/Block.php:1386
+#: airtime_mvc/application/models/Block.php:1390
+msgid "is"
+msgstr "is"
+
+#: airtime_mvc/application/controllers/LocaleController.php:155
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
+#: airtime_mvc/application/models/Block.php:1387
+#: airtime_mvc/application/models/Block.php:1391
+msgid "is not"
+msgstr "is not"
+
+#: airtime_mvc/application/controllers/LocaleController.php:156
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
+#: airtime_mvc/application/models/Block.php:1388
+msgid "starts with"
+msgstr "starts with"
+
+#: airtime_mvc/application/controllers/LocaleController.php:157
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
+#: airtime_mvc/application/models/Block.php:1389
+msgid "ends with"
+msgstr "ends with"
+
+#: airtime_mvc/application/controllers/LocaleController.php:158
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
+#: airtime_mvc/application/models/Block.php:1392
+msgid "is greater than"
+msgstr "is greater than"
+
+#: airtime_mvc/application/controllers/LocaleController.php:159
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
+#: airtime_mvc/application/models/Block.php:1393
+msgid "is less than"
+msgstr "is less than"
+
+#: airtime_mvc/application/controllers/LocaleController.php:160
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
+#: airtime_mvc/application/models/Block.php:1394
+msgid "is in the range"
+msgstr "is in the range"
+
#: airtime_mvc/application/controllers/LocaleController.php:162
msgid "Choose Storage Folder"
msgstr "Choose Storage Folder"
@@ -3168,6 +961,11 @@ msgstr ""
"Are you sure you want to change the storage folder?\n"
"This will remove the files from your Airtime library!"
+#: airtime_mvc/application/controllers/LocaleController.php:166
+#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
+msgid "Manage Media Folders"
+msgstr "Manage Media Folders"
+
#: airtime_mvc/application/controllers/LocaleController.php:167
msgid "Are you sure you want to remove the watched folder?"
msgstr "Are you sure you want to remove the watched folder?"
@@ -3189,6 +987,11 @@ msgstr "Connected to the streaming server"
msgid "The stream is disabled"
msgstr "The stream is disabled"
+#: airtime_mvc/application/controllers/LocaleController.php:173
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
+msgid "Getting information from the server..."
+msgstr "Getting information from the server..."
+
#: airtime_mvc/application/controllers/LocaleController.php:174
msgid "Can not connect to the streaming server"
msgstr "Can not connect to the streaming server"
@@ -3416,6 +1219,76 @@ msgstr ""
msgid "Month"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:249
+#: airtime_mvc/application/forms/GeneralPreferences.php:158
+msgid "Sunday"
+msgstr "Sunday"
+
+#: airtime_mvc/application/controllers/LocaleController.php:250
+#: airtime_mvc/application/forms/GeneralPreferences.php:159
+msgid "Monday"
+msgstr "Monday"
+
+#: airtime_mvc/application/controllers/LocaleController.php:251
+#: airtime_mvc/application/forms/GeneralPreferences.php:160
+msgid "Tuesday"
+msgstr "Tuesday"
+
+#: airtime_mvc/application/controllers/LocaleController.php:252
+#: airtime_mvc/application/forms/GeneralPreferences.php:161
+msgid "Wednesday"
+msgstr "Wednesday"
+
+#: airtime_mvc/application/controllers/LocaleController.php:253
+#: airtime_mvc/application/forms/GeneralPreferences.php:162
+msgid "Thursday"
+msgstr "Thursday"
+
+#: airtime_mvc/application/controllers/LocaleController.php:254
+#: airtime_mvc/application/forms/GeneralPreferences.php:163
+msgid "Friday"
+msgstr "Friday"
+
+#: airtime_mvc/application/controllers/LocaleController.php:255
+#: airtime_mvc/application/forms/GeneralPreferences.php:164
+msgid "Saturday"
+msgstr "Saturday"
+
+#: airtime_mvc/application/controllers/LocaleController.php:256
+#: airtime_mvc/application/forms/AddShowRepeats.php:35
+msgid "Sun"
+msgstr "Sun"
+
+#: airtime_mvc/application/controllers/LocaleController.php:257
+#: airtime_mvc/application/forms/AddShowRepeats.php:36
+msgid "Mon"
+msgstr "Mon"
+
+#: airtime_mvc/application/controllers/LocaleController.php:258
+#: airtime_mvc/application/forms/AddShowRepeats.php:37
+msgid "Tue"
+msgstr "Tue"
+
+#: airtime_mvc/application/controllers/LocaleController.php:259
+#: airtime_mvc/application/forms/AddShowRepeats.php:38
+msgid "Wed"
+msgstr "Wed"
+
+#: airtime_mvc/application/controllers/LocaleController.php:260
+#: airtime_mvc/application/forms/AddShowRepeats.php:39
+msgid "Thu"
+msgstr "Thu"
+
+#: airtime_mvc/application/controllers/LocaleController.php:261
+#: airtime_mvc/application/forms/AddShowRepeats.php:40
+msgid "Fri"
+msgstr "Fri"
+
+#: airtime_mvc/application/controllers/LocaleController.php:262
+#: airtime_mvc/application/forms/AddShowRepeats.php:41
+msgid "Sat"
+msgstr "Sat"
+
#: airtime_mvc/application/controllers/LocaleController.php:263
msgid "Shows longer than their scheduled time will be cut off by a following show."
msgstr "Shows longer than their scheduled time will be cut off by a following show."
@@ -3425,7 +1298,7 @@ msgid "Cancel Current Show?"
msgstr "Cancel Current Show?"
#: airtime_mvc/application/controllers/LocaleController.php:265
-#: airtime_mvc/application/controllers/LocaleController.php:309
+#: airtime_mvc/application/controllers/LocaleController.php:312
msgid "Stop recording current show?"
msgstr "Stop recording current show?"
@@ -3445,6 +1318,11 @@ msgstr "Remove all content?"
msgid "Delete selected item(s)?"
msgstr "Delete selected item(s)?"
+#: airtime_mvc/application/controllers/LocaleController.php:273
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
+msgid "Start"
+msgstr "Start"
+
#: airtime_mvc/application/controllers/LocaleController.php:274
msgid "End"
msgstr "End"
@@ -3453,580 +1331,467 @@ msgstr "End"
msgid "Duration"
msgstr "Duration"
-#: airtime_mvc/application/controllers/LocaleController.php:283
+#: airtime_mvc/application/controllers/LocaleController.php:276
+msgid "Filtering out "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:277
+msgid " of "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:278
+msgid " records"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/layouts/scripts/layout.phtml:140
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
+#: airtime_mvc/application/models/Block.php:1358
+msgid "Cue In"
+msgstr "Cue In"
+
+#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/layouts/scripts/layout.phtml:147
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
+#: airtime_mvc/application/models/Block.php:1359
+msgid "Cue Out"
+msgstr "Cue Out"
+
+#: airtime_mvc/application/controllers/LocaleController.php:286
#: airtime_mvc/application/layouts/scripts/layout.phtml:167
msgid "Fade In"
msgstr "Fade In"
-#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/controllers/LocaleController.php:287
#: airtime_mvc/application/layouts/scripts/layout.phtml:168
msgid "Fade Out"
msgstr "Fade Out"
-#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/controllers/LocaleController.php:288
msgid "Show Empty"
msgstr "Show Empty"
-#: airtime_mvc/application/controllers/LocaleController.php:286
+#: airtime_mvc/application/controllers/LocaleController.php:289
msgid "Recording From Line In"
msgstr "Recording From Line In"
-#: airtime_mvc/application/controllers/LocaleController.php:287
+#: airtime_mvc/application/controllers/LocaleController.php:290
msgid "Track preview"
msgstr "Track preview"
-#: airtime_mvc/application/controllers/LocaleController.php:291
+#: airtime_mvc/application/controllers/LocaleController.php:294
msgid "Cannot schedule outside a show."
msgstr "Cannot schedule outside a show."
-#: airtime_mvc/application/controllers/LocaleController.php:292
+#: airtime_mvc/application/controllers/LocaleController.php:295
msgid "Moving 1 Item"
msgstr "Moving 1 Item"
-#: airtime_mvc/application/controllers/LocaleController.php:293
+#: airtime_mvc/application/controllers/LocaleController.php:296
#, php-format
msgid "Moving %s Items"
msgstr "Moving %s Items"
-#: airtime_mvc/application/controllers/LocaleController.php:296
+#: airtime_mvc/application/controllers/LocaleController.php:297
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
+#: airtime_mvc/application/forms/Preferences.php:40
+#: airtime_mvc/application/forms/EditHistory.php:131
+#: airtime_mvc/application/forms/AddUser.php:110
+#: airtime_mvc/application/forms/PasswordChange.php:43
+#: airtime_mvc/application/forms/SupportSettings.php:131
+msgid "Save"
+msgstr "Save"
+
+#: airtime_mvc/application/controllers/LocaleController.php:298
+#: airtime_mvc/application/controllers/LocaleController.php:321
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
+#: airtime_mvc/application/forms/EditHistory.php:141
+#: airtime_mvc/application/forms/EditAudioMD.php:186
+msgid "Cancel"
+msgstr "Cancel"
+
+#: airtime_mvc/application/controllers/LocaleController.php:299
msgid "Fade Editor"
msgstr "Fade Editor"
-#: airtime_mvc/application/controllers/LocaleController.php:297
+#: airtime_mvc/application/controllers/LocaleController.php:300
msgid "Cue Editor"
msgstr "Cue Editor"
-#: airtime_mvc/application/controllers/LocaleController.php:298
+#: airtime_mvc/application/controllers/LocaleController.php:301
msgid "Waveform features are available in a browser supporting the Web Audio API"
msgstr "Waveform features are available in a browser supporting the Web Audio API"
-#: airtime_mvc/application/controllers/LocaleController.php:301
+#: airtime_mvc/application/controllers/LocaleController.php:304
msgid "Select all"
msgstr "Select all"
-#: airtime_mvc/application/controllers/LocaleController.php:302
+#: airtime_mvc/application/controllers/LocaleController.php:305
msgid "Select none"
msgstr "Select none"
-#: airtime_mvc/application/controllers/LocaleController.php:303
+#: airtime_mvc/application/controllers/LocaleController.php:306
msgid "Trim overbooked shows"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:304
+#: airtime_mvc/application/controllers/LocaleController.php:307
msgid "Remove selected scheduled items"
msgstr "Remove selected scheduled items"
-#: airtime_mvc/application/controllers/LocaleController.php:305
+#: airtime_mvc/application/controllers/LocaleController.php:308
msgid "Jump to the current playing track"
msgstr "Jump to the current playing track"
-#: airtime_mvc/application/controllers/LocaleController.php:306
+#: airtime_mvc/application/controllers/LocaleController.php:309
msgid "Cancel current show"
msgstr "Cancel current show"
-#: airtime_mvc/application/controllers/LocaleController.php:311
+#: airtime_mvc/application/controllers/LocaleController.php:314
msgid "Open library to add or remove content"
msgstr "Open library to add or remove content"
-#: airtime_mvc/application/controllers/LocaleController.php:312
+#: airtime_mvc/application/controllers/LocaleController.php:315
msgid "Add / Remove Content"
msgstr "Add / Remove Content"
#: airtime_mvc/application/controllers/LocaleController.php:317
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
+msgid "in use"
+msgstr "in use"
+
+#: airtime_mvc/application/controllers/LocaleController.php:318
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
+msgid "Disk"
+msgstr "Disk"
+
+#: airtime_mvc/application/controllers/LocaleController.php:320
msgid "Look in"
msgstr "Look in"
-#: airtime_mvc/application/controllers/LocaleController.php:319
+#: airtime_mvc/application/controllers/LocaleController.php:322
msgid "Open"
msgstr "Open"
+#: airtime_mvc/application/controllers/LocaleController.php:324
+#: airtime_mvc/application/forms/AddUser.php:102
+msgid "Admin"
+msgstr "Admin"
+
#: airtime_mvc/application/controllers/LocaleController.php:325
+#: airtime_mvc/application/forms/AddUser.php:100
+msgid "DJ"
+msgstr "DJ"
+
+#: airtime_mvc/application/controllers/LocaleController.php:326
+#: airtime_mvc/application/forms/AddUser.php:101
+msgid "Program Manager"
+msgstr "Program Manager"
+
+#: airtime_mvc/application/controllers/LocaleController.php:327
+#: airtime_mvc/application/forms/AddUser.php:99
+msgid "Guest"
+msgstr "Guest"
+
+#: airtime_mvc/application/controllers/LocaleController.php:328
msgid "Guests can do the following:"
msgstr "Guests can do the following:"
-#: airtime_mvc/application/controllers/LocaleController.php:326
+#: airtime_mvc/application/controllers/LocaleController.php:329
msgid "View schedule"
msgstr "View schedule"
-#: airtime_mvc/application/controllers/LocaleController.php:327
+#: airtime_mvc/application/controllers/LocaleController.php:330
msgid "View show content"
msgstr "View show content"
-#: airtime_mvc/application/controllers/LocaleController.php:328
+#: airtime_mvc/application/controllers/LocaleController.php:331
msgid "DJs can do the following:"
msgstr "DJs can do the following:"
-#: airtime_mvc/application/controllers/LocaleController.php:329
+#: airtime_mvc/application/controllers/LocaleController.php:332
msgid "Manage assigned show content"
msgstr "Manage assigned show content"
-#: airtime_mvc/application/controllers/LocaleController.php:330
+#: airtime_mvc/application/controllers/LocaleController.php:333
msgid "Import media files"
msgstr "Import media files"
-#: airtime_mvc/application/controllers/LocaleController.php:331
+#: airtime_mvc/application/controllers/LocaleController.php:334
msgid "Create playlists, smart blocks, and webstreams"
msgstr "Create playlists, smart blocks, and webstreams"
-#: airtime_mvc/application/controllers/LocaleController.php:332
+#: airtime_mvc/application/controllers/LocaleController.php:335
msgid "Manage their own library content"
msgstr "Manage their own library content"
-#: airtime_mvc/application/controllers/LocaleController.php:333
+#: airtime_mvc/application/controllers/LocaleController.php:336
msgid "Progam Managers can do the following:"
msgstr "Progam Managers can do the following:"
-#: airtime_mvc/application/controllers/LocaleController.php:334
+#: airtime_mvc/application/controllers/LocaleController.php:337
msgid "View and manage show content"
msgstr "View and manage show content"
-#: airtime_mvc/application/controllers/LocaleController.php:335
+#: airtime_mvc/application/controllers/LocaleController.php:338
msgid "Schedule shows"
msgstr "Schedule shows"
-#: airtime_mvc/application/controllers/LocaleController.php:336
+#: airtime_mvc/application/controllers/LocaleController.php:339
msgid "Manage all library content"
msgstr "Manage all library content"
-#: airtime_mvc/application/controllers/LocaleController.php:337
+#: airtime_mvc/application/controllers/LocaleController.php:340
msgid "Admins can do the following:"
msgstr "Admins can do the following:"
-#: airtime_mvc/application/controllers/LocaleController.php:338
+#: airtime_mvc/application/controllers/LocaleController.php:341
msgid "Manage preferences"
msgstr "Manage preferences"
-#: airtime_mvc/application/controllers/LocaleController.php:339
+#: airtime_mvc/application/controllers/LocaleController.php:342
msgid "Manage users"
msgstr "Manage users"
-#: airtime_mvc/application/controllers/LocaleController.php:340
+#: airtime_mvc/application/controllers/LocaleController.php:343
msgid "Manage watched folders"
msgstr "Manage watched folders"
-#: airtime_mvc/application/controllers/LocaleController.php:342
+#: airtime_mvc/application/controllers/LocaleController.php:344
+#: airtime_mvc/application/forms/RegisterAirtime.php:116
+#: airtime_mvc/application/forms/SupportSettings.php:98
+msgid "Send support feedback"
+msgstr "Send support feedback"
+
+#: airtime_mvc/application/controllers/LocaleController.php:345
msgid "View system status"
msgstr "View system status"
-#: airtime_mvc/application/controllers/LocaleController.php:343
+#: airtime_mvc/application/controllers/LocaleController.php:346
msgid "Access playout history"
msgstr "Access playout history"
-#: airtime_mvc/application/controllers/LocaleController.php:344
+#: airtime_mvc/application/controllers/LocaleController.php:347
msgid "View listener stats"
msgstr "View listener stats"
-#: airtime_mvc/application/controllers/LocaleController.php:346
+#: airtime_mvc/application/controllers/LocaleController.php:349
msgid "Show / hide columns"
msgstr "Show / hide columns"
-#: airtime_mvc/application/controllers/LocaleController.php:348
+#: airtime_mvc/application/controllers/LocaleController.php:351
msgid "From {from} to {to}"
msgstr "From {from} to {to}"
-#: airtime_mvc/application/controllers/LocaleController.php:349
+#: airtime_mvc/application/controllers/LocaleController.php:352
msgid "kbps"
msgstr "kbps"
-#: airtime_mvc/application/controllers/LocaleController.php:350
+#: airtime_mvc/application/controllers/LocaleController.php:353
msgid "yyyy-mm-dd"
msgstr "yyyy-mm-dd"
-#: airtime_mvc/application/controllers/LocaleController.php:351
+#: airtime_mvc/application/controllers/LocaleController.php:354
msgid "hh:mm:ss.t"
msgstr "hh:mm:ss.t"
-#: airtime_mvc/application/controllers/LocaleController.php:352
+#: airtime_mvc/application/controllers/LocaleController.php:355
msgid "kHz"
msgstr "kHz"
-#: airtime_mvc/application/controllers/LocaleController.php:355
+#: airtime_mvc/application/controllers/LocaleController.php:358
msgid "Su"
msgstr "Su"
-#: airtime_mvc/application/controllers/LocaleController.php:356
+#: airtime_mvc/application/controllers/LocaleController.php:359
msgid "Mo"
msgstr "Mo"
-#: airtime_mvc/application/controllers/LocaleController.php:357
+#: airtime_mvc/application/controllers/LocaleController.php:360
msgid "Tu"
msgstr "Tu"
-#: airtime_mvc/application/controllers/LocaleController.php:358
+#: airtime_mvc/application/controllers/LocaleController.php:361
msgid "We"
msgstr "We"
-#: airtime_mvc/application/controllers/LocaleController.php:359
+#: airtime_mvc/application/controllers/LocaleController.php:362
msgid "Th"
msgstr "Th"
-#: airtime_mvc/application/controllers/LocaleController.php:360
+#: airtime_mvc/application/controllers/LocaleController.php:363
msgid "Fr"
msgstr "Fr"
-#: airtime_mvc/application/controllers/LocaleController.php:361
+#: airtime_mvc/application/controllers/LocaleController.php:364
msgid "Sa"
msgstr "Sa"
-#: airtime_mvc/application/controllers/LocaleController.php:364
+#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
+msgid "Close"
+msgstr "Close"
+
+#: airtime_mvc/application/controllers/LocaleController.php:367
msgid "Hour"
msgstr "Hour"
-#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:368
msgid "Minute"
msgstr "Minute"
-#: airtime_mvc/application/controllers/LocaleController.php:366
+#: airtime_mvc/application/controllers/LocaleController.php:369
msgid "Done"
msgstr "Done"
-#: airtime_mvc/application/controllers/LocaleController.php:369
+#: airtime_mvc/application/controllers/LocaleController.php:372
msgid "Select files"
msgstr "Select files"
-#: airtime_mvc/application/controllers/LocaleController.php:370
-#: airtime_mvc/application/controllers/LocaleController.php:371
+#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:374
msgid "Add files to the upload queue and click the start button."
msgstr "Add files to the upload queue and click the start button."
-#: airtime_mvc/application/controllers/LocaleController.php:372
-#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:376
msgid "Status"
msgstr "Status"
-#: airtime_mvc/application/controllers/LocaleController.php:374
+#: airtime_mvc/application/controllers/LocaleController.php:377
msgid "Add Files"
msgstr "Add Files"
-#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:378
msgid "Stop Upload"
msgstr "Stop Upload"
-#: airtime_mvc/application/controllers/LocaleController.php:376
+#: airtime_mvc/application/controllers/LocaleController.php:379
msgid "Start upload"
msgstr "Start upload"
-#: airtime_mvc/application/controllers/LocaleController.php:377
+#: airtime_mvc/application/controllers/LocaleController.php:380
msgid "Add files"
msgstr "Add files"
-#: airtime_mvc/application/controllers/LocaleController.php:378
+#: airtime_mvc/application/controllers/LocaleController.php:381
#, php-format
msgid "Uploaded %d/%d files"
msgstr "Uploaded %d/%d files"
-#: airtime_mvc/application/controllers/LocaleController.php:379
+#: airtime_mvc/application/controllers/LocaleController.php:382
msgid "N/A"
msgstr "N/A"
-#: airtime_mvc/application/controllers/LocaleController.php:380
+#: airtime_mvc/application/controllers/LocaleController.php:383
msgid "Drag files here."
msgstr "Drag files here."
-#: airtime_mvc/application/controllers/LocaleController.php:381
+#: airtime_mvc/application/controllers/LocaleController.php:384
msgid "File extension error."
msgstr "File extension error."
-#: airtime_mvc/application/controllers/LocaleController.php:382
+#: airtime_mvc/application/controllers/LocaleController.php:385
msgid "File size error."
msgstr "File size error."
-#: airtime_mvc/application/controllers/LocaleController.php:383
+#: airtime_mvc/application/controllers/LocaleController.php:386
msgid "File count error."
msgstr "File count error."
-#: airtime_mvc/application/controllers/LocaleController.php:384
+#: airtime_mvc/application/controllers/LocaleController.php:387
msgid "Init error."
msgstr "Init error."
-#: airtime_mvc/application/controllers/LocaleController.php:385
+#: airtime_mvc/application/controllers/LocaleController.php:388
msgid "HTTP Error."
msgstr "HTTP Error."
-#: airtime_mvc/application/controllers/LocaleController.php:386
+#: airtime_mvc/application/controllers/LocaleController.php:389
msgid "Security error."
msgstr "Security error."
-#: airtime_mvc/application/controllers/LocaleController.php:387
+#: airtime_mvc/application/controllers/LocaleController.php:390
msgid "Generic error."
msgstr "Generic error."
-#: airtime_mvc/application/controllers/LocaleController.php:388
+#: airtime_mvc/application/controllers/LocaleController.php:391
msgid "IO error."
msgstr "IO error."
-#: airtime_mvc/application/controllers/LocaleController.php:389
+#: airtime_mvc/application/controllers/LocaleController.php:392
#, php-format
msgid "File: %s"
msgstr "File: %s"
-#: airtime_mvc/application/controllers/LocaleController.php:391
+#: airtime_mvc/application/controllers/LocaleController.php:394
#, php-format
msgid "%d files queued"
msgstr "%d files queued"
-#: airtime_mvc/application/controllers/LocaleController.php:392
+#: airtime_mvc/application/controllers/LocaleController.php:395
msgid "File: %f, size: %s, max file size: %m"
msgstr "File: %f, size: %s, max file size: %m"
-#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/controllers/LocaleController.php:396
msgid "Upload URL might be wrong or doesn't exist"
msgstr "Upload URL might be wrong or doesn't exist"
-#: airtime_mvc/application/controllers/LocaleController.php:394
+#: airtime_mvc/application/controllers/LocaleController.php:397
msgid "Error: File too large: "
msgstr "Error: File too large: "
-#: airtime_mvc/application/controllers/LocaleController.php:395
+#: airtime_mvc/application/controllers/LocaleController.php:398
msgid "Error: Invalid file extension: "
msgstr "Error: Invalid file extension: "
-#: airtime_mvc/application/controllers/LocaleController.php:398
+#: airtime_mvc/application/controllers/LocaleController.php:400
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
+msgid "Set Default"
+msgstr "Set Default"
+
+#: airtime_mvc/application/controllers/LocaleController.php:401
msgid "Create Entry"
msgstr "Create Entry"
-#: airtime_mvc/application/controllers/LocaleController.php:399
+#: airtime_mvc/application/controllers/LocaleController.php:402
msgid "Edit History Record"
msgstr "Edit History Record"
-#: airtime_mvc/application/controllers/LocaleController.php:402
+#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
+#: airtime_mvc/application/forms/EditHistoryItem.php:57
+msgid "No Show"
+msgstr "No Show"
+
+#: airtime_mvc/application/controllers/LocaleController.php:405
#, php-format
msgid "Copied %s row%s to the clipboard"
msgstr "Copied %s row%s to the clipboard"
-#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/controllers/LocaleController.php:406
#, php-format
msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished."
msgstr "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished."
-#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/controllers/LocaleController.php:407
msgid "New Show"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:405
+#: airtime_mvc/application/controllers/LocaleController.php:408
msgid "New Log Entry"
msgstr ""
-#: airtime_mvc/application/controllers/ScheduleController.php:389
-#, php-format
-msgid "Rebroadcast of show %s from %s at %s"
-msgstr "Rebroadcast of show %s from %s at %s"
-
-#: airtime_mvc/application/controllers/ScheduleController.php:712
-#: airtime_mvc/application/controllers/LibraryController.php:131
-msgid "Download"
-msgstr "Download"
-
-#: airtime_mvc/application/controllers/ErrorController.php:78
-msgid "Page not found."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:87
-msgid "The requested action is not supported."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:98
-msgid "You do not have permission to access this resource."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:109
-msgid "An internal application error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ListenerstatController.php:51
-msgid "Please make sure admin user/password is correct on System->Streams page."
-msgstr "Please make sure admin user/password is correct on System->Streams page."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:53
-#, php-format
-msgid "You are viewing an older version of %s"
-msgstr "You are viewing an older version of %s"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:140
-msgid "You cannot add tracks to dynamic blocks."
-msgstr "You cannot add tracks to dynamic blocks."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:147
-#: airtime_mvc/application/controllers/LibraryController.php:31
-#, php-format
-msgid "%s not found"
-msgstr "%s not found"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:161
-#, php-format
-msgid "You don't have permission to delete selected %s(s)."
-msgstr "You don't have permission to delete selected %s(s)."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:168
-#: airtime_mvc/application/controllers/LibraryController.php:40
-msgid "Something went wrong."
-msgstr "Something went wrong."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:174
-msgid "You can only add tracks to smart block."
-msgstr "You can only add tracks to smart block."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:192
-msgid "Untitled Playlist"
-msgstr "Untitled Playlist"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:194
-msgid "Untitled Smart Block"
-msgstr "Untitled Smart Block"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:522
-msgid "Unknown Playlist"
-msgstr "Unknown Playlist"
-
-#: airtime_mvc/application/controllers/LoginController.php:43
-msgid "Please enter your username and password."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:93
-msgid "Wrong username or password provided. Please try again."
-msgstr "Wrong username or password provided. Please try again."
-
-#: airtime_mvc/application/controllers/LoginController.php:167
-msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
-msgstr "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
-
-#: airtime_mvc/application/controllers/LoginController.php:173
-msgid "There was a problem with the username or email address you entered."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:35
-#: airtime_mvc/application/controllers/DashboardController.php:84
-msgid "You don't have permission to disconnect source."
-msgstr "You don't have permission to disconnect source."
-
-#: airtime_mvc/application/controllers/DashboardController.php:37
-#: airtime_mvc/application/controllers/DashboardController.php:86
-msgid "There is no source connected to this input."
-msgstr "There is no source connected to this input."
-
-#: airtime_mvc/application/controllers/DashboardController.php:81
-msgid "You don't have permission to switch source."
-msgstr "You don't have permission to switch source."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:72
-msgid "Preferences updated."
-msgstr "Preferences updated."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:115
-msgid "Support setting updated."
-msgstr "Support setting updated."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:123
-msgid "Support Feedback"
-msgstr "Support Feedback"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:251
-msgid "Stream Setting Updated."
-msgstr "Stream Setting Updated."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:342
-msgid "path should be specified"
-msgstr "path should be specified"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:437
-msgid "Problem with Liquidsoap..."
-msgstr "Problem with Liquidsoap..."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:493
-msgid "Request method not accepted"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:86
-msgid "User added successfully!"
-msgstr "User added successfully!"
-
-#: airtime_mvc/application/controllers/UserController.php:88
-msgid "User updated successfully!"
-msgstr "User updated successfully!"
-
-#: airtime_mvc/application/controllers/UserController.php:187
-msgid "Settings updated successfully!"
-msgstr "Settings updated successfully!"
-
-#: airtime_mvc/application/controllers/WebstreamController.php:28
-#: airtime_mvc/application/controllers/WebstreamController.php:32
-msgid "Untitled Webstream"
-msgstr "Untitled Webstream"
-
-#: airtime_mvc/application/controllers/WebstreamController.php:150
-msgid "Webstream saved."
-msgstr "Webstream saved."
-
-#: airtime_mvc/application/controllers/WebstreamController.php:158
-msgid "Invalid form values."
-msgstr "Invalid form values."
-
-#: airtime_mvc/application/controllers/LibraryController.php:95
-#: airtime_mvc/application/controllers/ShowbuilderController.php:136
-msgid "Preview"
-msgstr "Preview"
-
-#: airtime_mvc/application/controllers/LibraryController.php:115
-#: airtime_mvc/application/controllers/LibraryController.php:177
-#: airtime_mvc/application/controllers/LibraryController.php:200
-msgid "Add to Playlist"
-msgstr "Add to Playlist"
-
-#: airtime_mvc/application/controllers/LibraryController.php:117
-msgid "Add to Smart Block"
-msgstr "Add to Smart Block"
-
-#: airtime_mvc/application/controllers/LibraryController.php:147
-msgid "View track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:148
-msgid "Remove track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:154
-#: airtime_mvc/application/controllers/LibraryController.php:159
-msgid "Upload track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:169
-msgid "Duplicate Playlist"
-msgstr "Duplicate Playlist"
-
-#: airtime_mvc/application/controllers/LibraryController.php:213
-msgid "No action available"
-msgstr "No action available"
-
-#: airtime_mvc/application/controllers/LibraryController.php:233
-msgid "You don't have permission to delete selected items."
-msgstr "You don't have permission to delete selected items."
-
-#: airtime_mvc/application/controllers/LibraryController.php:279
-msgid "Could not delete file because it is scheduled in the future."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:282
-msgid "Could not delete file(s)."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:322
-#, php-format
-msgid "Copy of %s"
-msgstr "Copy of %s"
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
-msgid ""
-"To configure and use the embeddable player you must:
\n"
-" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
-" 2. Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
-msgid ""
-"To use the embeddable weekly schedule widget you must:
\n"
-" Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
#: airtime_mvc/application/controllers/ShowbuilderController.php:138
msgid "Select cursor"
msgstr "Select cursor"
@@ -4039,39 +1804,78 @@ msgstr "Remove cursor"
msgid "show does not exist"
msgstr "show does not exist"
-#: airtime_mvc/application/controllers/ApiController.php:79
-msgid "You are not allowed to access this resource."
-msgstr "You are not allowed to access this resource."
-
-#: airtime_mvc/application/controllers/ApiController.php:244
-#: airtime_mvc/application/controllers/ApiController.php:317
-#: airtime_mvc/application/controllers/ApiController.php:392
-#: airtime_mvc/application/controllers/ApiController.php:435
-#: airtime_mvc/application/controllers/ApiController.php:474
-#: airtime_mvc/application/controllers/ApiController.php:507
-msgid "You are not allowed to access this resource. "
-msgstr "You are not allowed to access this resource. "
-
-#: airtime_mvc/application/controllers/ApiController.php:698
-#: airtime_mvc/application/controllers/ApiController.php:718
-#: airtime_mvc/application/controllers/ApiController.php:730
+#: airtime_mvc/application/controllers/ScheduleController.php:389
#, php-format
-msgid "File does not exist in %s"
+msgid "Rebroadcast of show %s from %s at %s"
+msgstr "Rebroadcast of show %s from %s at %s"
+
+#: airtime_mvc/application/common/UsabilityHints.php:55
+msgid "Upload some tracks below to add them to your library!"
msgstr ""
-#: airtime_mvc/application/controllers/ApiController.php:781
-msgid "Bad request. no 'mode' parameter passed."
-msgstr "Bad request. no 'mode' parameter passed."
-
-#: airtime_mvc/application/controllers/ApiController.php:791
-msgid "Bad request. 'mode' parameter is invalid"
-msgstr "Bad request. 'mode' parameter is invalid"
-
-#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#: airtime_mvc/application/common/UsabilityHints.php:57
#, php-format
-msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
msgstr ""
+#: airtime_mvc/application/common/UsabilityHints.php:63
+msgid "Click the 'New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:65
+#, php-format
+msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:73
+msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:75
+#, php-format
+msgid ""
+"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
+" %sCreate an unlinked show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:80
+msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:82
+#, php-format
+msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:89
+msgid "Click on the show starting next and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:91
+#, php-format
+msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/DateHelper.php:213
+#, php-format
+msgid "The year %s must be within the range of 1753 - 9999"
+msgstr "The year %s must be within the range of 1753 - 9999"
+
+#: airtime_mvc/application/common/DateHelper.php:216
+#, php-format
+msgid "%s-%s-%s is not a valid date"
+msgstr "%s-%s-%s is not a valid date"
+
+#: airtime_mvc/application/common/DateHelper.php:240
+#, php-format
+msgid "%s:%s:%s is not a valid time"
+msgstr "%s:%s:%s is not a valid time"
+
+#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
+msgid "Live stream"
+msgstr "Live stream"
+
#: airtime_mvc/application/layouts/scripts/layout.phtml:63
msgid "Smart Block"
msgstr ""
@@ -4084,6 +1888,17 @@ msgstr ""
msgid "Upload"
msgstr ""
+#: airtime_mvc/application/layouts/scripts/layout.phtml:76
+#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
+msgid "Dashboard"
+msgstr ""
+
+#: airtime_mvc/application/layouts/scripts/layout.phtml:84
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
+msgid "Webstreams"
+msgstr ""
+
#: airtime_mvc/application/layouts/scripts/layout.phtml:135
#: airtime_mvc/application/layouts/scripts/layout.phtml:161
msgid "Play"
@@ -4106,401 +1921,2128 @@ msgstr "Set Cue Out"
msgid "Cursor"
msgstr "Cursor"
-#~ msgid "Show:"
-#~ msgstr "Show:"
+#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#, php-format
+msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
+msgid "Drop files here or click to browse your computer."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
+msgid "Failed"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
+msgid "Pending"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
+msgid "Recent Uploads"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
+msgid "Share"
+msgstr "Share"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
+msgid "Select stream:"
+msgstr "Select stream:"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
+msgid "mute"
+msgstr "mute"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
+msgid "unmute"
+msgstr "unmute"
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
+msgid "About"
+msgstr "About"
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
+#, php-format
+msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
+#, php-format
+msgid "%1$s %2$s is distributed under the %3$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
+#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
+#, php-format
+msgid "Welcome to %s!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
+#, php-format
+msgid "Here's how you can get started using %s to automate your broadcasts: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
+msgid "Upload audio tracks"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
+msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
+msgid "Schedule a show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
+msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
+msgid "Add tracks to your show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
+msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
+msgid "Now you're good to go!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
+#, php-format
+msgid "For more detailed help, read the %suser manual%s."
+msgstr "For more detailed help, read the %suser manual%s."
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
+#: airtime_mvc/application/configs/navigation.php:40
+msgid "Weekly Schedule"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
+#: airtime_mvc/application/forms/Player.php:77
+msgid "Preview:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
+#: airtime_mvc/application/configs/navigation.php:34
+msgid "Player"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:97
+msgid "Playout History"
+msgstr "Playout History"
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
+msgid "Log Sheet"
+msgstr "Log Sheet"
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
+msgid "File Summary"
+msgstr "File Summary"
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
+msgid "Show Summary"
+msgstr "Show Summary"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
+msgid "Expand Static Block"
+msgstr "Expand Static Block"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
+msgid "Expand Dynamic Block"
+msgstr "Expand Dynamic Block"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
+msgid "Choose some search criteria above and click Generate to create this playlist."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
+msgid "A track list will be generated when you schedule this smart block into a show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
+msgid "Drag tracks here from your library to add them to the playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
+msgid "Editing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:26
+msgid "Name:"
+msgstr "Name:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
+#: airtime_mvc/application/forms/AddShowWhat.php:54
+msgid "Description:"
+msgstr "Description:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
+#: airtime_mvc/application/forms/AddShowWhen.php:89
+msgid "Duration:"
+msgstr "Duration:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
+msgid "Toggle Details"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+msgid "Shuffle playlist"
+msgstr "Shuffle playlist"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
+msgid "Shuffle"
+msgstr "Shuffle"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
+msgid "Playlist crossfade"
+msgstr "Playlist crossfade"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+msgid "Empty playlist content"
+msgstr "Empty playlist content"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Clear"
+msgstr "Clear"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+msgid "Fade in: "
+msgstr "Fade in: "
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "Fade out: "
+msgstr "Fade out: "
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+msgid "Save playlist"
+msgstr "Save playlist"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
+msgid "No open playlist"
+msgstr "No open 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 "Show Waveform"
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "(ss.t)"
+msgstr "(ss.t)"
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Remove all content from this smart block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
+msgid "No smart block currently open"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+msgid "Cue In: "
+msgstr "Cue In: "
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "(hh:mm:ss.t)"
+msgstr "(hh:mm:ss.t)"
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "Cue Out: "
+msgstr "Cue Out: "
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
+msgid "Original Length:"
+msgstr "Original Length:"
+
+#: airtime_mvc/application/views/scripts/preference/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:56
+msgid "General"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
+msgid "Stream Settings"
+msgstr "Stream Settings"
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
+msgid "Global"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
+msgid "dB"
+msgstr "dB"
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
+msgid "Output Streams"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:3
+#: airtime_mvc/application/forms/Login.php:83
+msgid "Login"
+msgstr "Login"
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:7
+#, php-format
+msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
+msgid "Email Sent!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
+msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
+msgid "Back"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
+msgid "Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
+msgid "New password"
+msgstr "New password"
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
+msgid "Please enter and confirm your new password in the fields below."
+msgstr "Please enter and confirm your new password in the fields below."
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
+msgid "Manage Users"
+msgstr "Manage Users"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
+msgid "New User"
+msgstr "New User"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
+msgid "id"
+msgstr "id"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
+#: airtime_mvc/application/forms/PasswordRestore.php:25
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
+msgid "Username"
+msgstr "Username"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
+msgid "First Name"
+msgstr "First Name"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
+msgid "Last Name"
+msgstr "Last Name"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
+msgid "User Type"
+msgstr "User Type"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
+#, php-format
+msgid "Super Admin details can be changed in your Billing Settings."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
+msgid "Find Shows"
+msgstr "Find Shows"
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
+msgid "Choose Show Instance"
+msgstr "Choose Show Instance"
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
+msgid "Find"
+msgstr "Find"
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
+#: airtime_mvc/application/configs/navigation.php:61
+msgid "My Profile"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
+#, php-format
+msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
+msgid "Repeat Days:"
+msgstr "Repeat Days:"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
+#: airtime_mvc/application/forms/GeneralPreferences.php:53
+#: airtime_mvc/application/forms/AddShowStyle.php:64
+msgid "Remove"
+msgstr "Remove"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
+msgid "Add"
+msgstr "Add"
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
+msgid "Show Source"
+msgstr "Show Source"
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
+msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
+msgid "Register Airtime"
+msgstr "Register Airtime"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
+#, php-format
+msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
+#, php-format
+msgid "Click the box below to promote your station on %s."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
+msgid "(Required)"
+msgstr "(Required)"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
+msgid "(for verification purposes only, will not be published)"
+msgstr "(for verification purposes only, will not be published)"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
+#: airtime_mvc/application/forms/GeneralPreferences.php:43
+msgid "Note: Anything larger than 600x600 will be resized."
+msgstr "Note: Anything larger than 600x600 will be resized."
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
+msgid "Show me what I am sending "
+msgstr "Show me what I am sending "
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
+msgid "Terms and Conditions"
+msgstr "Terms and Conditions"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
+msgid "Choose Days:"
+msgstr "Choose Days:"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
+msgid "Search Criteria:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
+msgid "New Criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
+msgid "or"
+msgstr "or"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
+msgid "and"
+msgstr "and"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
+msgid "New Modifier"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
+msgid " to "
+msgstr " to "
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
+msgid "files meet the criteria"
+msgstr "files meet the criteria"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
+msgid "file meets the criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
+msgid "Filter History"
+msgstr "Filter History"
+
+#: airtime_mvc/application/views/scripts/form/login.phtml:41
+msgid "Forgot your password?"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
+msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
+msgstr "(In order to promote your station, 'Send support feedback' must be enabled)."
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
+msgid "Stream "
+msgstr "Stream "
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
+msgid "Additional Options"
+msgstr "Additional Options"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
+msgid "The following info will be displayed to listeners in their media player:"
+msgstr "The following info will be displayed to listeners in their media player:"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
+msgid "(Your radio station website)"
+msgstr "(Your radio station website)"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
+msgid "Stream URL: "
+msgstr "Stream URL: "
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
+msgid "Choose folder"
+msgstr "Choose folder"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
+msgid "Set"
+msgstr "Set"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
+msgid "Current Import Folder:"
+msgstr "Current Import Folder:"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
+#, php-format
+msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
+msgid "Remove watched directory"
+msgstr "Remove watched directory"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
+msgid "You are not watching any media folders."
+msgstr "You are not watching any media folders."
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
+msgid "Live Broadcasting"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
+msgid "Master Source"
+msgstr "Master Source"
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
+msgid "Use these settings in your broadcasting software to stream live at any time."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
+msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
+msgid "TuneIn Settings"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
+msgid "SoundCloud Settings"
+msgstr "SoundCloud Settings"
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
+msgid "Dangerous Options"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Add this show"
+msgstr "Add this show"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Update show"
+msgstr "Update show"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
+msgid "What"
+msgstr "What"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
+msgid "When"
+msgstr "When"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
+msgid "Live Stream Input"
+msgstr "Live Stream Input"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
+msgid "Who"
+msgstr "Who"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
+msgid "Style"
+msgstr "Style"
+
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
+msgid "Disk Space"
+msgstr "Disk Space"
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:3
+msgid "File import in progress..."
+msgstr "File import in progress..."
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:10
+#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
+msgid "Advanced Search Options"
+msgstr "Advanced Search Options"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
+#: airtime_mvc/application/forms/EditAudioMD.php:24
+#: airtime_mvc/application/forms/Player.php:15
+msgid "Title:"
+msgstr "Title:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
+#: airtime_mvc/application/forms/EditAudioMD.php:34
+msgid "Creator:"
+msgstr "Creator:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
+#: airtime_mvc/application/forms/EditAudioMD.php:44
+msgid "Album:"
+msgstr "Album:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
+msgid "Track:"
+msgstr "Track:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
+msgid "Length:"
+msgstr "Length:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
+msgid "Sample Rate:"
+msgstr "Sample Rate:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
+msgid "Bit Rate:"
+msgstr "Bit Rate:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
+#: airtime_mvc/application/forms/EditAudioMD.php:115
+msgid "Mood:"
+msgstr "Mood:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:45
+#: airtime_mvc/application/forms/EditAudioMD.php:62
+msgid "Genre:"
+msgstr "Genre:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
+#: airtime_mvc/application/forms/EditAudioMD.php:72
+msgid "Year:"
+msgstr "Year:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
+#: airtime_mvc/application/forms/EditAudioMD.php:85
+msgid "Label:"
+msgstr "Label:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
+#: airtime_mvc/application/forms/EditAudioMD.php:125
+msgid "BPM:"
+msgstr "BPM:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
+#: airtime_mvc/application/forms/EditAudioMD.php:95
+msgid "Composer:"
+msgstr "Composer:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
+#: airtime_mvc/application/forms/EditAudioMD.php:105
+msgid "Conductor:"
+msgstr "Conductor:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
+#: airtime_mvc/application/forms/EditAudioMD.php:135
+msgid "Copyright:"
+msgstr "Copyright:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
+msgid "Isrc Number:"
+msgstr "Isrc Number:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
+#: airtime_mvc/application/forms/EditAudioMD.php:155
+msgid "Website:"
+msgstr "Website:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
+#: airtime_mvc/application/forms/EditAudioMD.php:165
+#: airtime_mvc/application/forms/EditUser.php:119
+#: airtime_mvc/application/forms/Login.php:68
+msgid "Language:"
+msgstr "Language:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
+msgid "File Path:"
+msgstr "File Path:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
+msgid "Web Stream"
+msgstr "Web Stream"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
+msgid "Dynamic Smart Block"
+msgstr "Dynamic Smart Block"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
+msgid "Static Smart Block"
+msgstr "Static Smart Block"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
+msgid "Audio Track"
+msgstr "Audio Track"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
+msgid "Playlist Contents: "
+msgstr "Playlist Contents: "
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
+msgid "Static Smart Block Contents: "
+msgstr "Static Smart Block Contents: "
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
+msgid "Dynamic Smart Block Criteria: "
+msgstr "Dynamic Smart Block Criteria: "
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
+msgid "Limit to "
+msgstr "Limit to "
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
+#: airtime_mvc/application/forms/AddShowWhat.php:36
+msgid "URL:"
+msgstr "URL:"
+
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
+msgid "Viewing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
+msgid "Listeners"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
+msgid "Stream Data Collection Status"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
+msgid "Your trial expires in"
+msgstr "Your trial expires in"
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
+msgid "days"
+msgstr "days"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
+msgid "Previous:"
+msgstr "Previous:"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
+msgid "Next:"
+msgstr "Next:"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
+msgid "Source Streams"
+msgstr "Source Streams"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
+msgid "ON AIR"
+msgstr "ON AIR"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
+msgid "Listen"
+msgstr "Listen"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
+msgid "Logout"
+msgstr "Logout"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
+msgid "Playout History Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
+msgid "Log Sheet Templates"
+msgstr "Log Sheet Templates"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
+msgid "New Log Sheet Template"
+msgstr "New Log Sheet Template"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
+msgid "No Log Sheet Templates"
+msgstr "No Log Sheet Templates"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
+msgid "File Summary Templates"
+msgstr "File Summary Templates"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
+msgid "New File Summary Template"
+msgstr "New File Summary Template"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
+msgid "No File Summary Templates"
+msgstr "No File Summary Templates"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
+msgid "Creating File Summary Template"
+msgstr "Creating File Summary Template"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
+msgid "Creating Log Sheet Template"
+msgstr "Creating Log Sheet Template"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
+msgid "Name"
+msgstr "Name"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
+msgid "Add more elements"
+msgstr "Add more elements"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
+msgid "Add New Field"
+msgstr "Add New Field"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
+msgid "Set Default Template"
+msgstr "Set Default Template"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
+msgid "Description"
+msgstr "Description"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
+msgid "Stream URL:"
+msgstr "Stream URL:"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
+msgid "Default Length:"
+msgstr "Default Length:"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
+msgid "No webstream"
+msgstr "No webstream"
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
+#: airtime_mvc/application/views/scripts/error/error.phtml:6
+msgid "An error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
+msgid "Access Denied!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
+msgid "You do not have permission to access this page!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
+#: airtime_mvc/application/views/scripts/error/error.phtml:14
+#: airtime_mvc/application/configs/navigation.php:143
+msgid "Help"
+msgstr "Help"
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
+msgid "Oops!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
+msgid "Something went wrong!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
+msgid "Bad Request!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
+msgid "The requested action is not supported!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
+msgid "Page not found!"
+msgstr "Page not found!"
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
+msgid "We couldn't find the page you were looking for."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error.phtml:12
+msgid "Looks like the page you were looking for doesn't exist!"
+msgstr "Looks like the page you were looking for doesn't exist!"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
+msgid "previous"
+msgstr "previous"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
+msgid "play"
+msgstr "play"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
+msgid "pause"
+msgstr "pause"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
+msgid "next"
+msgstr "next"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
+msgid "stop"
+msgstr "stop"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
+msgid "max volume"
+msgstr "max volume"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
+msgid "Update Required"
+msgstr "Update Required"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
+#, php-format
+msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
+msgstr "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
+msgid "Plan type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
+msgid "Billing cycle:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
+msgid "Payment method:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
+msgid "PayPal"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
+msgid "Credit Card via 2Checkout"
+msgstr ""
+
+#: airtime_mvc/application/forms/DateRange.php:16
+#: airtime_mvc/application/forms/ShowBuilder.php:18
+msgid "Date Start:"
+msgstr "Date Start:"
+
+#: airtime_mvc/application/forms/DateRange.php:35
+#: airtime_mvc/application/forms/DateRange.php:63
+#: airtime_mvc/application/forms/ShowBuilder.php:37
+#: airtime_mvc/application/forms/ShowBuilder.php:65
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
+msgid "Invalid character entered"
+msgstr "Invalid character entered"
+
+#: airtime_mvc/application/forms/DateRange.php:44
+#: airtime_mvc/application/forms/ShowBuilder.php:46
+#: airtime_mvc/application/forms/AddShowRepeats.php:56
+msgid "Date End:"
+msgstr "Date End:"
+
+#: airtime_mvc/application/forms/ShowBuilder.php:72
+#: airtime_mvc/application/forms/ShowBuilder.php:88
+msgid "Filter by Show"
+msgstr ""
+
+#: airtime_mvc/application/forms/ShowBuilder.php:80
+msgid "All My Shows:"
+msgstr "All My Shows:"
+
+#: airtime_mvc/application/forms/AddShowWho.php:10
+msgid "Search Users:"
+msgstr "Search Users:"
+
+#: airtime_mvc/application/forms/AddShowWho.php:24
+msgid "DJs:"
+msgstr "DJs:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:30
+#: airtime_mvc/application/forms/GeneralPreferences.php:25
+#: airtime_mvc/application/forms/SupportSettings.php:18
+msgid "Station Name"
+msgstr "Station Name"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:39
+#: airtime_mvc/application/forms/SupportSettings.php:31
+msgid "Phone:"
+msgstr "Phone:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:51
+#: airtime_mvc/application/forms/AddUser.php:67
+#: airtime_mvc/application/forms/EditUser.php:83
+#: airtime_mvc/application/forms/SupportSettings.php:43
+msgid "Email:"
+msgstr "Email:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:62
+#: airtime_mvc/application/forms/SupportSettings.php:54
+msgid "Station Web Site:"
+msgstr "Station Web Site:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:73
+#: airtime_mvc/application/forms/SupportSettings.php:65
+msgid "Country:"
+msgstr "Country:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:84
+#: airtime_mvc/application/forms/SupportSettings.php:76
+msgid "City:"
+msgstr "City:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:96
+#: airtime_mvc/application/forms/SupportSettings.php:88
+msgid "Station Description:"
+msgstr "Station Description:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:106
+#: airtime_mvc/application/forms/GeneralPreferences.php:42
+msgid "Station Logo:"
+msgstr "Station Logo:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:126
+#: airtime_mvc/application/forms/SupportSettings.php:108
+#, php-format
+msgid "Promote my station on %s"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:151
+#: airtime_mvc/application/forms/SupportSettings.php:120
+#, php-format
+msgid "By checking this box, I agree to %s's %sprivacy policy%s."
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:169
+#: airtime_mvc/application/forms/SupportSettings.php:143
+msgid "You have to agree to privacy policy."
+msgstr "You have to agree to privacy policy."
+
+#: airtime_mvc/application/forms/AddShowRR.php:10
+msgid "Record from Line In?"
+msgstr "Record from Line In?"
+
+#: airtime_mvc/application/forms/AddShowRR.php:16
+msgid "Rebroadcast?"
+msgstr "Rebroadcast?"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
+#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
+msgid "Value is required and can't be empty"
+msgstr "Value is required and can't be empty"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
+msgid "'%value%' is no valid email address in the basic format local-part@hostname"
+msgstr "'%value%' is no valid email address in the basic format local-part@hostname"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
+msgid "'%value%' does not fit the date format '%format%'"
+msgstr "'%value%' does not fit the date format '%format%'"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
+msgid "'%value%' is less than %min% characters long"
+msgstr "'%value%' is less than %min% characters long"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
+msgid "'%value%' is more than %max% characters long"
+msgstr "'%value%' is more than %max% characters long"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
+msgid "'%value%' is not between '%min%' and '%max%', inclusively"
+msgstr "'%value%' is not between '%min%' and '%max%', inclusively"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
+msgid "Passwords do not match"
+msgstr "Passwords do not match"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
+msgid "Day must be specified"
+msgstr "Day must be specified"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
+msgid "Time must be specified"
+msgstr "Time must be specified"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
+msgid "Must wait at least 1 hour to rebroadcast"
+msgstr "Must wait at least 1 hour to rebroadcast"
+
+#: airtime_mvc/application/forms/PasswordRestore.php:14
+msgid "Email"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordRestore.php:36
+msgid "Reset password"
+msgstr "Reset password"
+
+#: airtime_mvc/application/forms/AddShowWhat.php:30
+msgid "Untitled Show"
+msgstr "Untitled Show"
+
+#: airtime_mvc/application/forms/AddShowWhat.php:69
+msgid "Instance Description:"
+msgstr ""
+
+#: airtime_mvc/application/forms/DangerousPreferences.php:12
+msgid "Delete All Tracks in Library"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditAudioMD.php:145
+msgid "ISRC Number:"
+msgstr "ISRC Number:"
+
+#: airtime_mvc/application/forms/EditAudioMD.php:176
+msgid "OK"
+msgstr "OK"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:33
+msgid "Station Description"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:62
+msgid "Default Crossfade Duration (s):"
+msgstr "Default Crossfade Duration (s):"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:68
+#: airtime_mvc/application/forms/GeneralPreferences.php:82
+#: airtime_mvc/application/forms/GeneralPreferences.php:96
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
+msgid "Please enter a time in seconds (eg. 0.5)"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:76
+msgid "Default Fade In (s):"
+msgstr "Default Fade In (s):"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:90
+msgid "Default Fade Out (s):"
+msgstr "Default Fade Out (s):"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:102
+msgid "Public Airtime API"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:103
+msgid "Required for embeddable schedule widget."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:105
+msgid "Disabled"
+msgstr "Disabled"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:106
+msgid "Enabled"
+msgstr "Enabled"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:109
+msgid ""
+"Enabling this feature will allow Airtime to provide schedule data\n"
+" to external widgets that can be embedded in your website."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:120
+msgid "Default Language"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:127
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
+msgid "Station Timezone"
+msgstr "Station Timezone"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:134
+msgid "Week Starts On"
+msgstr "Week Starts On"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:150
+msgid "Display login button on your Radio Page?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:29
+#: airtime_mvc/application/forms/EditUser.php:37
+#: airtime_mvc/application/forms/Login.php:41
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
+msgid "Username:"
+msgstr "Username:"
+
+#: airtime_mvc/application/forms/AddUser.php:38
+#: airtime_mvc/application/forms/EditUser.php:48
+#: airtime_mvc/application/forms/Login.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
+msgid "Password:"
+msgstr "Password:"
+
+#: airtime_mvc/application/forms/AddUser.php:46
+#: airtime_mvc/application/forms/EditUser.php:57
+msgid "Verify Password:"
+msgstr "Verify Password:"
+
+#: airtime_mvc/application/forms/AddUser.php:55
+#: airtime_mvc/application/forms/EditUser.php:67
+msgid "Firstname:"
+msgstr "Firstname:"
+
+#: airtime_mvc/application/forms/AddUser.php:61
+#: airtime_mvc/application/forms/EditUser.php:75
+msgid "Lastname:"
+msgstr "Lastname:"
+
+#: airtime_mvc/application/forms/AddUser.php:76
+#: airtime_mvc/application/forms/EditUser.php:94
+msgid "Mobile Phone:"
+msgstr "Mobile Phone:"
+
+#: airtime_mvc/application/forms/AddUser.php:82
+#: airtime_mvc/application/forms/EditUser.php:102
+msgid "Skype:"
+msgstr "Skype:"
+
+#: airtime_mvc/application/forms/AddUser.php:88
+#: airtime_mvc/application/forms/EditUser.php:110
+msgid "Jabber:"
+msgstr "Jabber:"
+
+#: airtime_mvc/application/forms/AddUser.php:95
+msgid "User Type:"
+msgstr "User Type:"
+
+#: airtime_mvc/application/forms/AddUser.php:120
+#: airtime_mvc/application/forms/EditUser.php:155
+msgid "Login name is not unique."
+msgstr "Login name is not unique."
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
+msgid "Import Folder:"
+msgstr "Import Folder:"
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
+msgid "Watched Folders:"
+msgstr "Watched Folders:"
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
+msgid "Not a valid Directory"
+msgstr "Not a valid Directory"
+
+#: airtime_mvc/application/forms/BillingClient.php:126
+msgid "What is the name of your favorite childhood friend?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:127
+msgid "What school did you attend for sixth grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:128
+msgid "In what city did you meet your spouse/significant other?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:129
+msgid "What street did you live on in third grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:130
+msgid "What is the first name of the boy or girl that you first kissed?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:131
+msgid "In what city or town was your first job?"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
+msgid "Default License:"
+msgstr "Default License:"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
+msgid "All rights are reserved"
+msgstr "All rights are reserved"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
+msgid "The work is in the public domain"
+msgstr "The work is in the public domain"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
+msgid "Creative Commons Attribution"
+msgstr "Creative Commons Attribution"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
+msgid "Creative Commons Attribution Noncommercial"
+msgstr "Creative Commons Attribution Noncommercial"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
+msgid "Creative Commons Attribution No Derivative Works"
+msgstr "Creative Commons Attribution No Derivative Works"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
+msgid "Creative Commons Attribution Share Alike"
+msgstr "Creative Commons Attribution Share Alike"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
+msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
+msgstr "Creative Commons Attribution Noncommercial Non Derivate Works"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
+msgid "Creative Commons Attribution Noncommercial Share Alike"
+msgstr "Creative Commons Attribution Noncommercial Share Alike"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
+msgid "Default Sharing Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
+msgid "Public"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
+msgid "Private"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditUser.php:129
+msgid "Interface Timezone:"
+msgstr "Interface Timezone:"
+
+#: airtime_mvc/application/forms/Player.php:14
+msgid "Now Playing"
+msgstr "Now Playing"
+
+#: airtime_mvc/application/forms/Player.php:25
+msgid "Select Stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:28
+msgid "Auto detect the most appropriate stream to use."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:29
+msgid "Select a stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:41
+msgid " - Mobile friendly"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:45
+msgid " - The player does not support Opus streams."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:71
+msgid "Embeddable code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:72
+msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
+#: airtime_mvc/application/models/Block.php:1351
+msgid "Select criteria"
+msgstr "Select criteria"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
+#: airtime_mvc/application/models/Block.php:1353
+msgid "Bit Rate (Kbps)"
+msgstr "Bit Rate (Kbps)"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
+#: airtime_mvc/application/models/Block.php:1374
+msgid "Sample Rate (kHz)"
+msgstr "Sample Rate (kHz)"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
+msgid "hours"
+msgstr "hours"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
+msgid "minutes"
+msgstr "minutes"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
+#: airtime_mvc/application/models/Block.php:333
+msgid "items"
+msgstr "items"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
+msgid "Randomly"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
+msgid "Newest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
+msgid "Oldest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
+msgid "Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
+msgid "Static"
+msgstr "Static"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
+msgid "Dynamic"
+msgstr "Dynamic"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
+msgid "Allow Repeated Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
+msgid "Sort Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
+msgid "Limit to:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
+msgid "Generate playlist content and save criteria"
+msgstr "Generate playlist content and save criteria"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
+msgid "Generate"
+msgstr "Generate"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
+msgid "Shuffle playlist content"
+msgstr "Shuffle playlist content"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
+msgid "Limit cannot be empty or smaller than 0"
+msgstr "Limit cannot be empty or smaller than 0"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
+msgid "Limit cannot be more than 24 hrs"
+msgstr "Limit cannot be more than 24 hrs"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
+msgid "The value should be an integer"
+msgstr "The value should be an integer"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
+msgid "500 is the max item limit value you can set"
+msgstr "500 is the max item limit value you can set"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
+msgid "You must select Criteria and Modifier"
+msgstr "You must select Criteria and Modifier"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
+msgid "'Length' should be in '00:00:00' format"
+msgstr "'Length' should be in '00:00:00' format"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
+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:594
+msgid "The value has to be numeric"
+msgstr "The value has to be numeric"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
+msgid "The value should be less then 2147483648"
+msgstr "The value should be less then 2147483648"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
+#, php-format
+msgid "The value should be less than %s characters"
+msgstr "The value should be less than %s characters"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
+msgid "Value cannot be empty"
+msgstr "Value cannot be empty"
+
+#: airtime_mvc/application/forms/StreamSetting.php:26
+msgid "Icecast Vorbis Metadata"
+msgstr "Icecast Vorbis Metadata"
+
+#: airtime_mvc/application/forms/StreamSetting.php:36
+msgid "Stream Label:"
+msgstr "Stream Label:"
+
+#: airtime_mvc/application/forms/StreamSetting.php:37
+msgid "Artist - Title"
+msgstr "Artist - Title"
+
+#: airtime_mvc/application/forms/StreamSetting.php:38
+msgid "Show - Artist - Title"
+msgstr "Show - Artist - Title"
+
+#: airtime_mvc/application/forms/StreamSetting.php:39
+msgid "Station name - Show name"
+msgstr "Station name - Show name"
+
+#: airtime_mvc/application/forms/StreamSetting.php:45
+msgid "Off Air Metadata"
+msgstr "Off Air Metadata"
+
+#: airtime_mvc/application/forms/StreamSetting.php:51
+msgid "Enable Replay Gain"
+msgstr "Enable Replay Gain"
+
+#: airtime_mvc/application/forms/StreamSetting.php:57
+msgid "Replay Gain Modifier"
+msgstr "Replay Gain Modifier"
+
+#: airtime_mvc/application/forms/StreamSetting.php:65
+msgid "Streaming Server:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Airtime Pro Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Custom / 3rd Party Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordChange.php:17
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
+msgid "Password"
+msgstr "Password"
-#~ msgid "enter a time in seconds 0{.0}"
-#~ msgstr "enter a time in seconds 0{.0}"
+#: airtime_mvc/application/forms/PasswordChange.php:28
+msgid "Confirm new password"
+msgstr "Confirm new password"
-#~ msgid "Allow Remote Websites To Access \"Schedule\" Info?%s (Enable this to make front-end widgets work.)"
-#~ msgstr "Allow Remote Websites To Access \"Schedule\" Info?%s (Enable this to make front-end widgets work.)"
+#: airtime_mvc/application/forms/PasswordChange.php:36
+msgid "Password confirmation does not match your password."
+msgstr "Password confirmation does not match your password."
-#~ msgid "Default Interface Language"
-#~ msgstr "Default Interface Language"
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
+msgid "Station Language"
+msgstr ""
-#~ msgid "Get new password"
-#~ msgstr "Get new password"
-
-#~ msgid "Set smart block type:"
-#~ msgstr "Set smart block type:"
-
-#~ msgid "Allow Repeat Tracks:"
-#~ msgstr "Allow Repeat Tracks:"
-
-#~ msgid "Limit to"
-#~ msgstr "Limit to"
-
-#~ msgid "Auto Switch Off"
-#~ msgstr "Auto Switch Off"
-
-#~ msgid "Auto Switch On"
-#~ msgstr "Auto Switch On"
-
-#~ msgid "Switch Transition Fade (s)"
-#~ msgstr "Switch Transition Fade (s)"
-
-#~ msgid "enter a time in seconds 00{.000000}"
-#~ msgstr "enter a time in seconds 00{.000000}"
-
-#~ msgid "Master Username"
-#~ msgstr "Master Username"
-
-#~ msgid "Master Password"
-#~ msgstr "Master Password"
-
-#~ msgid "Master Source Connection URL"
-#~ msgstr "Master Source Connection URL"
-
-#~ msgid "Show Source Connection URL"
-#~ msgstr "Show Source Connection URL"
-
-#~ msgid "Master Source Port"
-#~ msgstr "Master Source Port"
-
-#~ msgid "Master Source Mount Point"
-#~ msgstr "Master Source Mount Point"
-
-#~ msgid "Show Source Port"
-#~ msgstr "Show Source Port"
-
-#~ msgid "Show Source Mount Point"
-#~ msgstr "Show Source Mount Point"
-
-#~ msgid "You cannot use same port as Master DJ port."
-#~ msgstr "You cannot use same port as Master DJ port."
-
-#~ msgid "Port %s is not available"
-#~ msgstr "Port %s is not available"
-
-#~ msgid "E-mail"
-#~ msgstr "E-mail"
-
-#~ msgid "Restore password"
-#~ msgstr "Restore password"
-
-#~ msgid "Hardware Audio Output"
-#~ msgstr "Hardware Audio Output"
-
-#~ msgid "Output Type"
-#~ msgstr "Output Type"
-
-#~ msgid "Date/Time Start:"
-#~ msgstr "Date/Time Start:"
-
-#~ msgid "Date/Time End:"
-#~ msgstr "Date/Time End:"
-
-#~ msgid "Automatically Upload Recorded Shows"
-#~ msgstr "Automatically Upload Recorded Shows"
-
-#~ msgid "Enable SoundCloud Upload"
-#~ msgstr "Enable SoundCloud Upload"
-
-#~ msgid "Automatically Mark Files \"Downloadable\" on SoundCloud"
-#~ msgstr "Automatically Mark Files \"Downloadable\" on SoundCloud"
-
-#~ msgid "SoundCloud Email"
-#~ msgstr "SoundCloud Email"
-
-#~ msgid "SoundCloud Password"
-#~ msgstr "SoundCloud Password"
-
-#~ msgid "SoundCloud Tags: (separate tags with spaces)"
-#~ msgstr "SoundCloud Tags: (separate tags with spaces)"
-
-#~ msgid "Default Genre:"
-#~ msgstr "Default Genre:"
-
-#~ msgid "Default Track Type:"
-#~ msgstr "Default Track Type:"
-
-#~ msgid "Original"
-#~ msgstr "Original"
-
-#~ msgid "Remix"
-#~ msgstr "Remix"
-
-#~ msgid "Live"
-#~ msgstr "Live"
-
-#~ msgid "Recording"
-#~ msgstr "Recording"
-
-#~ msgid "Spoken"
-#~ msgstr "Spoken"
-
-#~ msgid "Podcast"
-#~ msgstr "Podcast"
-
-#~ msgid "Demo"
-#~ msgstr "Demo"
-
-#~ msgid "Work in progress"
-#~ msgstr "Work in progress"
-
-#~ msgid "Stem"
-#~ msgstr "Stem"
-
-#~ msgid "Loop"
-#~ msgstr "Loop"
-
-#~ msgid "Sound Effect"
-#~ msgstr "Sound Effect"
-
-#~ msgid "One Shot Sample"
-#~ msgstr "One Shot Sample"
-
-#~ msgid "Other"
-#~ msgstr "Other"
-
-#~ msgid "Enable System Emails (Password Reset)"
-#~ msgstr "Enable System Emails (Password Reset)"
-
-#~ msgid "Reset Password 'From' Email"
-#~ msgstr "Reset Password 'From' Email"
-
-#~ msgid "Configure Mail Server"
-#~ msgstr "Configure Mail Server"
-
-#~ msgid "Requires Authentication"
-#~ msgstr "Requires Authentication"
-
-#~ msgid "Mail Server"
-#~ msgstr "Mail Server"
-
-#~ msgid "Email Address"
-#~ msgstr "Email Address"
-
-#~ msgid "Please enter your user name and password"
-#~ msgstr "Please enter your user name and password"
-
-#~ msgid "Given email not found."
-#~ msgstr "Given email not found."
-
-#~ msgid "Page not found"
-#~ msgstr "Page not found"
-
-#~ msgid "Application error"
-#~ msgstr "Application error"
-
-#~ msgid "Playlist / Block"
-#~ msgstr "Playlist / Block"
-
-#~ msgid "If you change the username or password values for an enabled stream the playout engine will be rebooted and your listeners will hear silence for 5-10 seconds. Changing the following fields will NOT cause a reboot: Stream Label (Global Settings), and Switch Transition Fade(s), Master Username, and Master Password (Input Stream Settings). If Airtime is recording, and if the change causes a playout engine restart, the recording will be interrupted."
-#~ msgstr "If you change the username or password values for an enabled stream the playout engine will be rebooted and your listeners will hear silence for 5-10 seconds. Changing the following fields will NOT cause a reboot: Stream Label (Global Settings), and Switch Transition Fade(s), Master Username, and Master Password (Input Stream Settings). If Airtime is recording, and if the change causes a playout engine restart, the recording will be interrupted."
-
-#~ msgid "today"
-#~ msgstr "today"
-
-#~ msgid "day"
-#~ msgstr "day"
-
-#~ msgid "week"
-#~ msgstr "week"
-
-#~ msgid "month"
-#~ msgstr "month"
-
-#~ msgid "Remove overbooked tracks"
-#~ msgstr "Remove overbooked tracks"
-
-#~ msgid "Soundcloud"
-#~ msgstr "Soundcloud"
-
-#~ msgid "View on Soundcloud"
-#~ msgstr "View on SoundCloud"
-
-#~ msgid "Re-upload to SoundCloud"
-#~ msgstr "Re-upload to SoundCloud"
-
-#~ msgid "Upload to SoundCloud"
-#~ msgstr "Upload to SoundCloud"
-
-#~ msgid "Could not delete some scheduled files."
-#~ msgstr "Could not delete some scheduled files."
-
-#~ msgid "Add Media"
-#~ msgstr "Add Media"
-
-#~ msgid "Library"
-#~ msgstr "Library"
-
-#~ msgid "System"
-#~ msgstr "System"
-
-#~ msgid "Preferences"
-#~ msgstr "Preferences"
-
-#~ msgid "Media Folders"
-#~ msgstr "Media Folders"
-
-#~ msgid "History"
-#~ msgstr "History"
-
-#~ msgid "Service"
-#~ msgstr "Service"
-
-#~ msgid "Uptime"
-#~ msgstr "Uptime"
-
-#~ msgid "CPU"
-#~ msgstr "CPU"
-
-#~ msgid "Memory"
-#~ msgstr "Memory"
-
-#~ msgid "Email / Mail Server Settings"
-#~ msgstr "Email / Mail Server Settings"
-
-#~ msgid "Connection URL: "
-#~ msgstr "Connection URL: "
-
-#~ msgid "Input Stream Settings"
-#~ msgstr "Input Stream Settings"
-
-#~ msgid "Master Source Connection URL:"
-#~ msgstr "Master Source Connection URL:"
-
-#~ msgid "Override"
-#~ msgstr "Override"
-
-#~ msgid "RESET"
-#~ msgstr "RESET"
-
-#~ msgid "Show Source Connection URL:"
-#~ msgstr "Show Source Connection URL:"
-
-#~ msgid "Filter By Show:"
-#~ msgstr "Filter By Show:"
-
-#~ msgid "%s's Settings"
-#~ msgstr "%s's Settings"
-
-#~ msgid "Sourcefabric Privacy Policy"
-#~ msgstr "Sourcefabric Privacy Policy"
-
-#~ msgid "Smart Block Options"
-#~ msgstr "Smart Block Options"
-
-#~ msgid "file meet the criteria"
-#~ msgstr "file meet the criteria"
-
-#~ msgid "New"
-#~ msgstr "New"
-
-#~ msgid "New Playlist"
-#~ msgstr "New Playlist"
-
-#~ msgid "New Smart Block"
-#~ msgstr "New Smart Block"
-
-#~ msgid "New Webstream"
-#~ msgstr "New Webstream"
-
-#~ msgid "View / edit description"
-#~ msgstr "View / edit description"
-
-#~ msgid "Global Settings"
-#~ msgstr "Global Settings"
-
-#~ msgid "Output Stream Settings"
-#~ msgstr "Output Stream Settings"
-
-#~ msgid "Listener Count Over Time"
-#~ msgstr "Listener Count Over Time"
-
-#~ msgid "Begin by adding your files to the library using the 'Add Media' menu button. You can drag and drop your files to this window too."
-#~ msgstr "Begin by adding your files to the library using the 'Add Media' menu button. You can drag and drop your files to this window too."
-
-#~ msgid "Create a show by going to 'Calendar' in the menu bar, and then clicking the '+ Show' icon. This can be either a one-time or repeating show. Only admins and program managers can add shows."
-#~ msgstr "Create a show by going to 'Calendar' in the menu bar, and then clicking the '+ Show' icon. This can be either a one-time or repeating show. Only admins and program managers can add shows."
-
-#~ msgid "Add media to the show by going to your show in the Schedule calendar, left-clicking on it and selecting 'Add / Remove Content'"
-#~ msgstr "Add media to the show by going to your show in the Schedule calendar, left-clicking on it and selecting 'Add / Remove Content'"
-
-#~ msgid "Select your media from the left pane and drag them to your show in the right pane."
-#~ msgstr "Select your media from the left pane and drag them to your show in the right pane."
-
-#~ msgid "Then you're good to go!"
-#~ msgstr "Then you're good to go!"
-
-#~ msgid "Please enter your account e-mail address. You will receive a link to create a new password via e-mail."
-#~ msgstr "Please enter your account e-mail address. You will receive a link to create a new password via e-mail."
-
-#~ msgid "Email sent"
-#~ msgstr "Email sent"
-
-#~ msgid "An email has been sent"
-#~ msgstr "An email has been sent"
-
-#~ msgid "Back to login screen"
-#~ msgstr "Back to login screen"
-
-#~ msgid "Scheduled Play"
-#~ msgstr "Scheduled Play"
-
-#~ msgid "Station time"
-#~ msgstr "Station time"
-
-#~ msgid "Zend Framework Default Application"
-#~ msgstr "Zend Framework Default Application"
-
-#~ msgid "Empty smart block"
-#~ msgstr "Empty smart block"
-
-#~ msgid "Empty playlist"
-#~ msgstr "Empty playlist"
-
-#~ msgid "Empty smart block content"
-#~ msgstr "Empty smart block content"
-
-#~ msgid "No open smart block"
-#~ msgstr "No open smart block"
-
-#~ msgid "Record & Rebroadcast"
-#~ msgstr "Record & Rebroadcast"
-
-#~ msgid "Failed to create 'organize' directory."
-#~ msgstr "Failed to create 'organize' directory."
-
-#~ msgid "The file was not uploaded, there is %s MB of disk space left and the file you are uploading has a size of %s MB."
-#~ msgstr "The file was not uploaded, there is %s MB of disk space left and the file you are uploading has a size of %s MB."
-
-#~ msgid "This file appears to be corrupted and will not be added to media library."
-#~ msgstr "This file appears to be corrupted and will not be added to media library."
-
-#~ msgid "The file was not uploaded, this error can occur if the computer hard drive does not have enough disk space or the stor directory does not have correct write permissions."
-#~ msgstr "The file was not uploaded, this error can occur if the computer hard drive does not have enough disk space or the stor directory does not have correct write permissions."
-
-#~ msgid ""
-#~ "Hi %s, \n"
-#~ "\n"
-#~ "Click this link to reset your password: "
-#~ msgstr ""
-#~ "Hi %s, \n"
-#~ "\n"
-#~ "Click this link to reset your password: "
-
-#~ msgid "Show Content"
-#~ msgstr "Show Content"
-
-#~ msgid "Remove All Content"
-#~ msgstr "Remove All Content"
-
-#~ msgid "Cancel Current Show"
-#~ msgstr "Cancel Current Show"
-
-#~ msgid "Edit This Instance"
-#~ msgstr "Edit This Instance"
-
-#~ msgid "Delete This Instance"
-#~ msgstr "Delete This Instance"
-
-#~ msgid "Delete This Instance and All Following"
-#~ msgstr "Delete This Instance and All Following"
-
-#~ msgid "Please selection an option"
-#~ msgstr "Please select an option"
-
-#~ msgid "No Records"
-#~ msgstr "No Records"
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
+msgid "Enabled:"
+msgstr "Enabled:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
+msgid "Mobile:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
+msgid "Stream Type:"
+msgstr "Stream Type:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
+msgid "Service Type:"
+msgstr "Service Type:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
+msgid "Channels:"
+msgstr "Channels:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "1 - Mono"
+msgstr "1 - Mono"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "2 - Stereo"
+msgstr "2 - Stereo"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
+msgid "Server"
+msgstr "Server"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
+msgid "Port"
+msgstr "Port"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
+msgid "Only numbers are allowed."
+msgstr "Only numbers are allowed."
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
+msgid "URL"
+msgstr "URL"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
+msgid "Mount Point"
+msgstr "Mount Point"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
+msgid "Admin User"
+msgstr "Admin User"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
+msgid "Admin Password"
+msgstr "Admin Password"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
+msgid "Server cannot be empty."
+msgstr "Server cannot be empty."
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
+msgid "Port cannot be empty."
+msgstr "Port cannot be empty."
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
+msgid "Mount cannot be empty with Icecast server."
+msgstr "Mount cannot be empty with Icecast server."
+
+#: airtime_mvc/application/forms/AddShowWhen.php:16
+msgid "'%value%' does not fit the time format 'HH:mm'"
+msgstr "'%value%' does not fit the time format 'HH:mm'"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:22
+msgid "Start Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:37
+msgid "In the Future:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:64
+msgid "End Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:98
+msgid "Timezone:"
+msgstr "Timezone:"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:107
+msgid "Repeats?"
+msgstr "Repeats?"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:139
+msgid "Cannot create show in the past"
+msgstr "Cannot create show in the past"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:147
+msgid "Cannot modify start date/time of the show that is already started"
+msgstr "Cannot modify start date/time of the show that is already started"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:156
+#: airtime_mvc/application/models/Show.php:282
+msgid "End date/time cannot be in the past"
+msgstr "End date/time cannot be in the past"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:164
+msgid "Cannot have duration < 0m"
+msgstr "Cannot have duration < 0m"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:168
+msgid "Cannot have duration 00h 00m"
+msgstr "Cannot have duration 00h 00m"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:175
+msgid "Cannot have duration greater than 24h"
+msgstr "Cannot have duration greater than 24h"
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:19
+msgid "Push metadata to your station on TuneIn?"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:24
+msgid "Station ID:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:30
+msgid "Partner Key:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:36
+msgid "Partner Id:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:77
+#: airtime_mvc/application/forms/TuneInPreferences.php:86
+msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:10
+#, php-format
+msgid "Use %s Authentication:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:16
+msgid "Use Custom Authentication:"
+msgstr "Use Custom Authentication:"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:25
+msgid "Custom Username"
+msgstr "Custom Username"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:37
+msgid "Custom Password"
+msgstr "Custom Password"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:48
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
+msgid "Host:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
+msgid "Port:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:60
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
+msgid "Mount:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:77
+msgid "Username field cannot be empty."
+msgstr "Username field cannot be empty."
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:82
+msgid "Password field cannot be empty."
+msgstr "Password field cannot be empty."
+
+#: airtime_mvc/application/forms/AddShowStyle.php:12
+msgid "Background Colour:"
+msgstr "Background Color:"
+
+#: airtime_mvc/application/forms/AddShowStyle.php:31
+msgid "Text Colour:"
+msgstr "Text Color:"
+
+#: airtime_mvc/application/forms/AddShowStyle.php:49
+msgid "Current Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:72
+msgid "Show Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:87
+msgid "Logo Preview:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Login.php:102
+msgid "Type the characters you see in the picture below."
+msgstr "Type the characters you see in the picture below."
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
+msgid "Auto Switch Off:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
+msgid "Auto Switch On:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
+msgid "Switch Transition Fade (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:10
+msgid "Link:"
+msgstr "Link:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:16
+msgid "Repeat Type:"
+msgstr "Repeat Type:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:19
+msgid "weekly"
+msgstr "weekly"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:20
+msgid "every 2 weeks"
+msgstr "every 2 weeks"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:21
+msgid "every 3 weeks"
+msgstr "every 3 weeks"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:22
+msgid "every 4 weeks"
+msgstr "every 4 weeks"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:23
+msgid "monthly"
+msgstr "monthly"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:32
+msgid "Select Days:"
+msgstr "Select Days:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:47
+msgid "Repeat By:"
+msgstr "Repeat By:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the month"
+msgstr "day of the month"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the week"
+msgstr "day of the week"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:69
+msgid "No End?"
+msgstr "No End?"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:106
+msgid "End date must be after start date"
+msgstr "End date must be after start date"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:113
+msgid "Please select a repeat day"
+msgstr "Please select a repeat day"
+
+#: airtime_mvc/application/configs/navigation.php:12
+msgid "Radio Page"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:19
+msgid "Calendar"
+msgstr "Calendar"
+
+#: airtime_mvc/application/configs/navigation.php:26
+msgid "Widgets"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:48
+msgid "Settings"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:67
+msgid "Users"
+msgstr "Users"
+
+#: airtime_mvc/application/configs/navigation.php:74
+msgid "Streams"
+msgstr "Streams"
+
+#: airtime_mvc/application/configs/navigation.php:82
+msgid "Analytics"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:90
+msgid "Listener Stats"
+msgstr "Listener Stats"
+
+#: airtime_mvc/application/configs/navigation.php:104
+msgid "History Templates"
+msgstr "History Templates"
+
+#: airtime_mvc/application/configs/navigation.php:113
+msgid "Billing"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:120
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:127
+msgid "Account Details"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:134
+msgid "View Invoices"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:150
+msgid "Getting Started"
+msgstr "Getting Started"
+
+#: airtime_mvc/application/configs/navigation.php:157
+msgid "FAQ"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:162
+msgid "User Manual"
+msgstr "User Manual"
+
+#: airtime_mvc/application/configs/navigation.php:167
+msgid "File a Support Ticket"
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:833
+#: airtime_mvc/application/models/Playlist.php:812
+msgid "Cue in and cue out are null."
+msgstr "Cue in and cue out are null."
+
+#: airtime_mvc/application/models/Block.php:868
+#: airtime_mvc/application/models/Block.php:924
+#: airtime_mvc/application/models/Playlist.php:851
+#: airtime_mvc/application/models/Playlist.php:895
+msgid "Can't set cue out to be greater than file length."
+msgstr "Can't set cue out to be greater than file length."
+
+#: airtime_mvc/application/models/Block.php:879
+#: airtime_mvc/application/models/Block.php:900
+#: airtime_mvc/application/models/Playlist.php:843
+#: airtime_mvc/application/models/Playlist.php:868
+msgid "Can't set cue in to be larger than cue out."
+msgstr "Can't set cue in to be larger than cue out."
+
+#: airtime_mvc/application/models/Block.php:935
+#: airtime_mvc/application/models/Playlist.php:887
+msgid "Can't set cue out to be smaller than cue in."
+msgstr "Can't set cue out to be smaller than cue in."
+
+#: airtime_mvc/application/models/Block.php:1366
+msgid "Upload Time"
+msgstr ""
+
+#: airtime_mvc/application/models/ShowBuilder.php:212
+#, php-format
+msgid "Rebroadcast of %s from %s"
+msgstr "Rebroadcast of %s from %s"
+
+#: airtime_mvc/application/models/Preference.php:460
+#, php-format
+msgid "Powered by %s"
+msgstr ""
+
+#: airtime_mvc/application/models/Preference.php:588
+msgid "Select Country"
+msgstr "Select Country"
+
+#: airtime_mvc/application/models/MusicDir.php:160
+#, php-format
+msgid "%s is already watched."
+msgstr "%s is already watched."
+
+#: airtime_mvc/application/models/MusicDir.php:164
+#, php-format
+msgid "%s contains nested watched directory: %s"
+msgstr "%s contains nested watched directory: %s"
+
+#: airtime_mvc/application/models/MusicDir.php:168
+#, php-format
+msgid "%s is nested within existing watched directory: %s"
+msgstr "%s is nested within existing watched directory: %s"
+
+#: airtime_mvc/application/models/MusicDir.php:189
+#: airtime_mvc/application/models/MusicDir.php:370
+#, php-format
+msgid "%s is not a valid directory."
+msgstr "%s is not a valid directory."
+
+#: airtime_mvc/application/models/MusicDir.php:232
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list"
+msgstr "%s is already set as the current storage dir or in the watched folders list"
+
+#: airtime_mvc/application/models/MusicDir.php:388
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list."
+msgstr "%s is already set as the current storage dir or in the watched folders list."
+
+#: airtime_mvc/application/models/MusicDir.php:431
+#, php-format
+msgid "%s doesn't exist in the watched list."
+msgstr "%s doesn't exist in the watched list."
+
+#: airtime_mvc/application/models/Auth.php:33
+#, php-format
+msgid ""
+"Hi %s, \n"
+"\n"
+"Please click this link to reset your password: "
+msgstr ""
+
+#: airtime_mvc/application/models/Auth.php:38
+#, php-format
+msgid "%s Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/models/Show.php:184
+msgid "Shows can have a max length of 24 hours."
+msgstr "Shows can have a max length of 24 hours."
+
+#: airtime_mvc/application/models/Show.php:293
+msgid ""
+"Cannot schedule overlapping shows.\n"
+"Note: Resizing a repeating show affects all of its repeats."
+msgstr ""
+"Cannot schedule overlapping shows.\n"
+"Note: Resizing a repeating show affects all of its repeats."
+
+#: airtime_mvc/application/models/Scheduler.php:73
+msgid "Cannot move items out of linked shows"
+msgstr "Cannot move items out of linked shows"
+
+#: airtime_mvc/application/models/Scheduler.php:119
+msgid "The schedule you're viewing is out of date! (sched mismatch)"
+msgstr "The schedule you're viewing is out of date! (sched mismatch)"
+
+#: airtime_mvc/application/models/Scheduler.php:124
+msgid "The schedule you're viewing is out of date! (instance mismatch)"
+msgstr "The schedule you're viewing is out of date! (instance mismatch)"
+
+#: airtime_mvc/application/models/Scheduler.php:132
+#: airtime_mvc/application/models/Scheduler.php:458
+#: airtime_mvc/application/models/Scheduler.php:490
+msgid "The schedule you're viewing is out of date!"
+msgstr "The schedule you're viewing is out of date!"
+
+#: airtime_mvc/application/models/Scheduler.php:142
+#, php-format
+msgid "You are not allowed to schedule show %s."
+msgstr "You are not allowed to schedule show %s."
+
+#: airtime_mvc/application/models/Scheduler.php:146
+msgid "You cannot add files to recording shows."
+msgstr "You cannot add files to recording shows."
+
+#: airtime_mvc/application/models/Scheduler.php:152
+#, php-format
+msgid "The show %s is over and cannot be scheduled."
+msgstr "The show %s is over and cannot be scheduled."
+
+#: airtime_mvc/application/models/Scheduler.php:159
+#, php-format
+msgid "The show %s has been previously updated!"
+msgstr "The show %s has been previously updated!"
+
+#: airtime_mvc/application/models/Scheduler.php:178
+msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
+msgstr "Content in linked shows must be scheduled before or after any one is broadcasted"
+
+#: airtime_mvc/application/models/Scheduler.php:195
+msgid "Cannot schedule a playlist that contains missing files."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:216
+#: airtime_mvc/application/models/Scheduler.php:305
+msgid "A selected File does not exist!"
+msgstr "A selected File does not exist!"
+
+#: airtime_mvc/application/models/Schedule.php:206
+msgid "livestream"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:166
+msgid "Length needs to be greater than 0 minutes"
+msgstr "Length needs to be greater than 0 minutes"
+
+#: airtime_mvc/application/models/Webstream.php:171
+msgid "Length should be of form \"00h 00m\""
+msgstr "Length should be of form \"00h 00m\""
+
+#: airtime_mvc/application/models/Webstream.php:184
+msgid "URL should be of form \"http://domain\""
+msgstr "URL should be of form \"http://domain\""
+
+#: airtime_mvc/application/models/Webstream.php:187
+msgid "URL should be 512 characters or less"
+msgstr "URL should be 512 characters or less"
+
+#: airtime_mvc/application/models/Webstream.php:193
+msgid "No MIME type found for webstream."
+msgstr "No MIME type found for webstream."
+
+#: airtime_mvc/application/models/Webstream.php:209
+msgid "Webstream name cannot be empty"
+msgstr "Webstream name cannot be empty"
+
+#: airtime_mvc/application/models/Webstream.php:278
+msgid "Could not parse XSPF playlist"
+msgstr "Could not parse XSPF playlist"
+
+#: airtime_mvc/application/models/Webstream.php:298
+msgid "Could not parse PLS playlist"
+msgstr "Could not parse PLS playlist"
+
+#: airtime_mvc/application/models/Webstream.php:318
+msgid "Could not parse M3U playlist"
+msgstr "Could not parse M3U playlist"
+
+#: airtime_mvc/application/models/Webstream.php:332
+msgid "Invalid webstream - This appears to be a file download."
+msgstr "Invalid webstream - This appears to be a file download."
+
+#: airtime_mvc/application/models/Webstream.php:336
+#, php-format
+msgid "Unrecognized stream type: %s"
+msgstr "Unrecognized stream type: %s"
+
+#: airtime_mvc/public/setup/rabbitmq-setup.php:78
+msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
+msgstr ""
+
+#~ msgid "My Account"
+#~ msgstr "My Account"
diff --git a/airtime_mvc/locale/en_US/LC_MESSAGES/pro.po b/airtime_mvc/locale/en_US/LC_MESSAGES/pro.po
index 866ee0acb..f59b52c3d 100644
--- a/airtime_mvc/locale/en_US/LC_MESSAGES/pro.po
+++ b/airtime_mvc/locale/en_US/LC_MESSAGES/pro.po
@@ -1,3 +1,139 @@
+#: airtime_mvc/application/controllers/LoginController.php:170
+#, php-format
+msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
+#, php-format
+msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
+#, php-format
+msgid "If you are the primary owner of this station, please reset your password here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
+msgid "Thank you!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
+msgid "Your station has been upgraded successfully."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
+msgid "Return to Airtime"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+#, php-format
+msgid "Purchase an %s plan!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+msgid "My Account"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
+msgid "Upgrade today to get more listeners and storage space!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
+msgid "View Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:257
+msgid "Your Current Plan:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:291
+msgid "Please enter your payment details:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
+msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
+msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:17
+msgid "First Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:26
+msgid "Last Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:35
+msgid "Company Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:44
+msgid "Email Address:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:54
+msgid "Address 1:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:63
+msgid "Address 2:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:70
+msgid "City:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:80
+msgid "State/Region:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:89
+msgid "Zip Code / Postal Code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:102
+msgid "Country:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:112
+msgid "Phone Number:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:121
+msgid "Please choose a security question:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:135
+msgid "Please enter an answer:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:152
+msgid "VAT/Tax ID (EU only)"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:162
+msgid "Subscribe to Sourcefabric newsletter"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:172
+msgid "Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:181
+msgid "Verify Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:193
+msgid "Save"
+msgstr ""
+
#: airtime_mvc/application/models/Auth.php:35
#, php-format
msgid ""
@@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
-msgid "Thank you!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
-msgid "Your station has been upgraded successfully."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
-msgid "Return to Airtime"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
-#, php-format
-msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
-msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
-msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
-#, php-format
-msgid "If you are the primary owner of this station, please reset your password here."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:170
-#, php-format
-msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
-msgstr ""
diff --git a/airtime_mvc/locale/es_ES/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/es_ES/LC_MESSAGES/airtime.mo
index ae6a6dce3..d16f2ab15 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 3197f703d..7a245825b 100644
--- a/airtime_mvc/locale/es_ES/LC_MESSAGES/airtime.po
+++ b/airtime_mvc/locale/es_ES/LC_MESSAGES/airtime.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Airtime\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-09-03 10:24-0400\n"
-"PO-Revision-Date: 2014-11-14 09:58+0000\n"
+"POT-Creation-Date: 2015-09-04 11:17-0400\n"
+"PO-Revision-Date: 2015-09-04 08:15+0000\n"
"Last-Translator: Daniel James \n"
"Language-Team: Spanish (Spain) (http://www.transifex.com/sourcefabric/airtime/language/es_ES/)\n"
"Language: es_ES\n"
@@ -19,132 +19,6 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: airtime_mvc/public/setup/rabbitmq-setup.php:78
-msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1117
-#: airtime_mvc/application/services/HistoryService.php:1157
-#: airtime_mvc/application/services/HistoryService.php:1174
-#: airtime_mvc/application/models/Block.php:1375
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
-#: airtime_mvc/application/controllers/LocaleController.php:76
-msgid "Title"
-msgstr "Título"
-
-#: airtime_mvc/application/services/HistoryService.php:1118
-#: airtime_mvc/application/services/HistoryService.php:1158
-#: airtime_mvc/application/services/HistoryService.php:1175
-#: airtime_mvc/application/models/Block.php:1360
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
-#: airtime_mvc/application/controllers/LocaleController.php:77
-msgid "Creator"
-msgstr "Creador"
-
-#: airtime_mvc/application/services/HistoryService.php:1119
-#: airtime_mvc/application/models/Block.php:1352
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
-#: airtime_mvc/application/controllers/LocaleController.php:78
-msgid "Album"
-msgstr "Álbum"
-
-#: airtime_mvc/application/services/HistoryService.php:1120
-#: airtime_mvc/application/services/HistoryService.php:1177
-#: airtime_mvc/application/models/Block.php:1369
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
-#: airtime_mvc/application/controllers/LocaleController.php:91
-msgid "Length"
-msgstr "Duración"
-
-#: airtime_mvc/application/services/HistoryService.php:1121
-#: airtime_mvc/application/models/Block.php:1362
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
-#: airtime_mvc/application/controllers/LocaleController.php:85
-msgid "Genre"
-msgstr "Género"
-
-#: airtime_mvc/application/services/HistoryService.php:1122
-#: airtime_mvc/application/models/Block.php:1371
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
-#: airtime_mvc/application/controllers/LocaleController.php:93
-msgid "Mood"
-msgstr "Estilo (mood)"
-
-#: airtime_mvc/application/services/HistoryService.php:1123
-#: airtime_mvc/application/models/Block.php:1364
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
-#: airtime_mvc/application/controllers/LocaleController.php:87
-msgid "Label"
-msgstr "Sello"
-
-#: airtime_mvc/application/services/HistoryService.php:1124
-#: airtime_mvc/application/services/HistoryService.php:1178
-#: airtime_mvc/application/models/Block.php:1355
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
-#: airtime_mvc/application/controllers/LocaleController.php:81
-msgid "Composer"
-msgstr "Compositor"
-
-#: airtime_mvc/application/services/HistoryService.php:1125
-#: airtime_mvc/application/models/Block.php:1363
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
-#: airtime_mvc/application/controllers/LocaleController.php:86
-msgid "ISRC"
-msgstr "ISRC"
-
-#: airtime_mvc/application/services/HistoryService.php:1126
-#: airtime_mvc/application/services/HistoryService.php:1179
-#: airtime_mvc/application/models/Block.php:1357
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
-#: airtime_mvc/application/controllers/LocaleController.php:83
-msgid "Copyright"
-msgstr "Derechos de autor"
-
-#: airtime_mvc/application/services/HistoryService.php:1127
-#: airtime_mvc/application/models/Block.php:1379
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
-#: airtime_mvc/application/controllers/LocaleController.php:100
-msgid "Year"
-msgstr "Año"
-
-#: airtime_mvc/application/services/HistoryService.php:1128
-msgid "Track"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1129
-#: airtime_mvc/application/models/Block.php:1356
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
-#: airtime_mvc/application/controllers/LocaleController.php:82
-msgid "Conductor"
-msgstr "Director"
-
-#: airtime_mvc/application/services/HistoryService.php:1130
-#: airtime_mvc/application/models/Block.php:1365
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
-#: airtime_mvc/application/controllers/LocaleController.php:88
-msgid "Language"
-msgstr "Idioma"
-
-#: airtime_mvc/application/services/HistoryService.php:1155
-#: airtime_mvc/application/forms/EditHistoryItem.php:32
-msgid "Start Time"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1156
-#: airtime_mvc/application/forms/EditHistoryItem.php:44
-msgid "End Time"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1176
-msgid "Played"
-msgstr "Reproducido"
-
#: airtime_mvc/application/services/CalendarService.php:50
msgid "Record file doesn't exist"
msgstr ""
@@ -240,2604 +114,381 @@ msgstr "El show se eliminó porque el show grabado no existe!"
msgid "Must wait 1 hour to rebroadcast."
msgstr "Debe esperar 1 hora para retransmitir."
-#: airtime_mvc/application/models/Schedule.php:206
-msgid "livestream"
+#: airtime_mvc/application/services/HistoryService.php:1117
+#: airtime_mvc/application/services/HistoryService.php:1157
+#: airtime_mvc/application/services/HistoryService.php:1174
+#: airtime_mvc/application/controllers/LocaleController.php:76
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
+#: airtime_mvc/application/models/Block.php:1375
+msgid "Title"
+msgstr "Título"
+
+#: airtime_mvc/application/services/HistoryService.php:1118
+#: airtime_mvc/application/services/HistoryService.php:1158
+#: airtime_mvc/application/services/HistoryService.php:1175
+#: airtime_mvc/application/controllers/LocaleController.php:77
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
+#: airtime_mvc/application/models/Block.php:1360
+msgid "Creator"
+msgstr "Creador"
+
+#: airtime_mvc/application/services/HistoryService.php:1119
+#: airtime_mvc/application/controllers/LocaleController.php:78
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
+#: airtime_mvc/application/models/Block.php:1352
+msgid "Album"
+msgstr "Álbum"
+
+#: airtime_mvc/application/services/HistoryService.php:1120
+#: airtime_mvc/application/services/HistoryService.php:1177
+#: airtime_mvc/application/controllers/LocaleController.php:91
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
+#: airtime_mvc/application/models/Block.php:1369
+msgid "Length"
+msgstr "Duración"
+
+#: airtime_mvc/application/services/HistoryService.php:1121
+#: airtime_mvc/application/controllers/LocaleController.php:85
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
+#: airtime_mvc/application/models/Block.php:1362
+msgid "Genre"
+msgstr "Género"
+
+#: airtime_mvc/application/services/HistoryService.php:1122
+#: airtime_mvc/application/controllers/LocaleController.php:93
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
+#: airtime_mvc/application/models/Block.php:1371
+msgid "Mood"
+msgstr "Estilo (mood)"
+
+#: airtime_mvc/application/services/HistoryService.php:1123
+#: airtime_mvc/application/controllers/LocaleController.php:87
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
+#: airtime_mvc/application/models/Block.php:1364
+msgid "Label"
+msgstr "Sello"
+
+#: airtime_mvc/application/services/HistoryService.php:1124
+#: airtime_mvc/application/services/HistoryService.php:1178
+#: airtime_mvc/application/controllers/LocaleController.php:81
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
+#: airtime_mvc/application/models/Block.php:1355
+msgid "Composer"
+msgstr "Compositor"
+
+#: airtime_mvc/application/services/HistoryService.php:1125
+#: airtime_mvc/application/controllers/LocaleController.php:86
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
+#: airtime_mvc/application/models/Block.php:1363
+msgid "ISRC"
+msgstr "ISRC"
+
+#: airtime_mvc/application/services/HistoryService.php:1126
+#: airtime_mvc/application/services/HistoryService.php:1179
+#: airtime_mvc/application/controllers/LocaleController.php:83
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
+#: airtime_mvc/application/models/Block.php:1357
+msgid "Copyright"
+msgstr "Derechos de autor"
+
+#: airtime_mvc/application/services/HistoryService.php:1127
+#: airtime_mvc/application/controllers/LocaleController.php:100
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
+#: airtime_mvc/application/models/Block.php:1379
+msgid "Year"
+msgstr "Año"
+
+#: airtime_mvc/application/services/HistoryService.php:1128
+msgid "Track"
msgstr ""
-#: airtime_mvc/application/models/ShowBuilder.php:212
-#, php-format
-msgid "Rebroadcast of %s from %s"
-msgstr "Retransmisión de %s desde %s"
+#: airtime_mvc/application/services/HistoryService.php:1129
+#: airtime_mvc/application/controllers/LocaleController.php:82
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
+#: airtime_mvc/application/models/Block.php:1356
+msgid "Conductor"
+msgstr "Director"
-#: airtime_mvc/application/models/Webstream.php:166
-msgid "Length needs to be greater than 0 minutes"
-msgstr "La duración debe ser mayor de 0 minutos"
+#: airtime_mvc/application/services/HistoryService.php:1130
+#: airtime_mvc/application/controllers/LocaleController.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
+#: airtime_mvc/application/models/Block.php:1365
+msgid "Language"
+msgstr "Idioma"
-#: airtime_mvc/application/models/Webstream.php:171
-msgid "Length should be of form \"00h 00m\""
-msgstr "La duración debe estar en el formato \"00h 00m\""
-
-#: airtime_mvc/application/models/Webstream.php:184
-msgid "URL should be of form \"http://domain\""
-msgstr "El URL debe estar en el formato \"http://domain\""
-
-#: airtime_mvc/application/models/Webstream.php:187
-msgid "URL should be 512 characters or less"
-msgstr "El URL debe ser de 512 caracteres o menos"
-
-#: airtime_mvc/application/models/Webstream.php:193
-msgid "No MIME type found for webstream."
-msgstr "No se encontró ningún tipo MIME para el webstream."
-
-#: airtime_mvc/application/models/Webstream.php:209
-msgid "Webstream name cannot be empty"
-msgstr "El nombre del webstream no puede estar vacío"
-
-#: airtime_mvc/application/models/Webstream.php:278
-msgid "Could not parse XSPF playlist"
-msgstr "No se pudo procesar el XSPF de la lista de reproducción"
-
-#: airtime_mvc/application/models/Webstream.php:298
-msgid "Could not parse PLS playlist"
-msgstr "No se pudo procesar el XSPF de la lista de reproducción"
-
-#: airtime_mvc/application/models/Webstream.php:318
-msgid "Could not parse M3U playlist"
-msgstr "No se pudo procesar el M3U de la lista de reproducción"
-
-#: airtime_mvc/application/models/Webstream.php:332
-msgid "Invalid webstream - This appears to be a file download."
-msgstr "Webstream inválido - Esto parece ser una descarga de archivo."
-
-#: airtime_mvc/application/models/Webstream.php:336
-#, php-format
-msgid "Unrecognized stream type: %s"
-msgstr "Tipo de stream no reconocido: %s"
-
-#: airtime_mvc/application/models/Preference.php:460
-#, php-format
-msgid "Powered by %s"
+#: airtime_mvc/application/services/HistoryService.php:1155
+#: airtime_mvc/application/forms/EditHistoryItem.php:32
+msgid "Start Time"
msgstr ""
-#: airtime_mvc/application/models/Preference.php:588
-msgid "Select Country"
-msgstr "Seleccionar país"
+#: airtime_mvc/application/services/HistoryService.php:1156
+#: airtime_mvc/application/forms/EditHistoryItem.php:44
+msgid "End Time"
+msgstr ""
-#: airtime_mvc/application/models/MusicDir.php:160
+#: airtime_mvc/application/services/HistoryService.php:1176
+msgid "Played"
+msgstr "Reproducido"
+
+#: airtime_mvc/application/controllers/LibraryController.php:31
+#: airtime_mvc/application/controllers/PlaylistController.php:147
#, php-format
-msgid "%s is already watched."
-msgstr "%s ya está siendo monitoreado."
+msgid "%s not found"
+msgstr "No se encontró %s"
-#: airtime_mvc/application/models/MusicDir.php:164
+#: airtime_mvc/application/controllers/LibraryController.php:40
+#: airtime_mvc/application/controllers/PlaylistController.php:168
+msgid "Something went wrong."
+msgstr "Algo falló."
+
+#: airtime_mvc/application/controllers/LibraryController.php:95
+#: airtime_mvc/application/controllers/ShowbuilderController.php:136
+msgid "Preview"
+msgstr "Previsualizar"
+
+#: airtime_mvc/application/controllers/LibraryController.php:115
+#: airtime_mvc/application/controllers/LibraryController.php:177
+#: airtime_mvc/application/controllers/LibraryController.php:200
+msgid "Add to Playlist"
+msgstr "Agregar a lista de reproducción."
+
+#: airtime_mvc/application/controllers/LibraryController.php:117
+msgid "Add to Smart Block"
+msgstr "Agregar un bloque inteligente"
+
+#: airtime_mvc/application/controllers/LibraryController.php:123
+#: airtime_mvc/application/controllers/LocaleController.php:66
+msgid "Edit Metadata"
+msgstr "Editar metadata"
+
+#: airtime_mvc/application/controllers/LibraryController.php:131
+#: airtime_mvc/application/controllers/ScheduleController.php:712
+msgid "Download"
+msgstr "Descargar"
+
+#: airtime_mvc/application/controllers/LibraryController.php:147
+msgid "View track"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:148
+msgid "Remove track"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:154
+#: airtime_mvc/application/controllers/LibraryController.php:159
+msgid "Upload track"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:169
+msgid "Duplicate Playlist"
+msgstr "Lista de reproducción duplicada"
+
+#: airtime_mvc/application/controllers/LibraryController.php:213
+msgid "No action available"
+msgstr "No una acción disponible"
+
+#: airtime_mvc/application/controllers/LibraryController.php:233
+msgid "You don't have permission to delete selected items."
+msgstr "No tienes permiso para eliminar los ítems seleccionados."
+
+#: airtime_mvc/application/controllers/LibraryController.php:279
+msgid "Could not delete file because it is scheduled in the future."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:282
+msgid "Could not delete file(s)."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:322
#, php-format
-msgid "%s contains nested watched directory: %s"
-msgstr "%s contiene un directorio anidado monitoreado: %s"
+msgid "Copy of %s"
+msgstr "Copia de %s"
-#: airtime_mvc/application/models/MusicDir.php:168
-#, php-format
-msgid "%s is nested within existing watched directory: %s"
-msgstr "%s está anidado dentro de un directorio monitoreado existente: %s"
+#: airtime_mvc/application/controllers/WebstreamController.php:28
+#: airtime_mvc/application/controllers/WebstreamController.php:32
+msgid "Untitled Webstream"
+msgstr "Webstream si nombre"
-#: airtime_mvc/application/models/MusicDir.php:189
-#: airtime_mvc/application/models/MusicDir.php:370
-#, php-format
-msgid "%s is not a valid directory."
-msgstr "%s no es un directorio válido."
+#: airtime_mvc/application/controllers/WebstreamController.php:150
+msgid "Webstream saved."
+msgstr "Se almacenó el webstream"
-#: airtime_mvc/application/models/MusicDir.php:232
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list"
-msgstr "%s ya está asignado como el directorio actual de almacenamiento o en la lista de carpetas monitoreadas."
+#: airtime_mvc/application/controllers/WebstreamController.php:158
+msgid "Invalid form values."
+msgstr "Los valores en el formulario son inválidos."
-#: airtime_mvc/application/models/MusicDir.php:388
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list."
-msgstr "%s ya está asignado como el directorio actual de almacenamiento o en la lista de carpetas monitoreadas."
-
-#: airtime_mvc/application/models/MusicDir.php:431
-#, php-format
-msgid "%s doesn't exist in the watched list."
-msgstr "%s no existe en la lista de monitoreo."
-
-#: airtime_mvc/application/models/Show.php:184
-msgid "Shows can have a max length of 24 hours."
-msgstr "Los shows pueden tener una duración máxima de 24 horas."
-
-#: airtime_mvc/application/models/Show.php:282
-#: airtime_mvc/application/forms/AddShowWhen.php:156
-msgid "End date/time cannot be in the past"
-msgstr "La fecha/hora de finalización no puede estar en el pasado."
-
-#: airtime_mvc/application/models/Show.php:293
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
msgid ""
-"Cannot schedule overlapping shows.\n"
-"Note: Resizing a repeating show affects all of its repeats."
+"To configure and use the embeddable player you must:
\n"
+" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
+" 2. Enable the Public Airtime API under System -> Preferences"
msgstr ""
-"No se pueden programar shows traslapados.\n"
-"Nota: Cambiar el tamaño de un show periódico afecta todas sus repeticiones."
-#: airtime_mvc/application/models/Auth.php:33
-#, php-format
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
msgid ""
-"Hi %s, \n"
-"\n"
-"Please click this link to reset your password: "
+"To use the embeddable weekly schedule widget you must:
\n"
+" Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/models/Auth.php:38
+#: airtime_mvc/application/controllers/ListenerstatController.php:51
+msgid "Please make sure admin user/password is correct on System->Streams page."
+msgstr "Verifica que la contraseña del usuario admin. esté correcta en Sistema->página de streams."
+
+#: airtime_mvc/application/controllers/UserController.php:86
+msgid "User added successfully!"
+msgstr "Se agregó exitosamente el usuario."
+
+#: airtime_mvc/application/controllers/UserController.php:88
+msgid "User updated successfully!"
+msgstr "Se actualizó exitosamente el usuario."
+
+#: airtime_mvc/application/controllers/UserController.php:187
+msgid "Settings updated successfully!"
+msgstr "¡Configuraciones actualizadas con éxito!"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:53
#, php-format
-msgid "%s Password Reset"
-msgstr ""
+msgid "You are viewing an older version of %s"
+msgstr "Estas viendo una versión antigua de %s"
-#: airtime_mvc/application/models/Block.php:333
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
-msgid "items"
-msgstr "items"
+#: airtime_mvc/application/controllers/PlaylistController.php:140
+msgid "You cannot add tracks to dynamic blocks."
+msgstr "No puedes añadir pistas a los bloques dinámicos."
-#: airtime_mvc/application/models/Block.php:833
-#: airtime_mvc/application/models/Playlist.php:812
-msgid "Cue in and cue out are null."
-msgstr "Cue in y cue out son nulos."
-
-#: airtime_mvc/application/models/Block.php:868
-#: airtime_mvc/application/models/Block.php:924
-#: airtime_mvc/application/models/Playlist.php:851
-#: airtime_mvc/application/models/Playlist.php:895
-msgid "Can't set cue out to be greater than file length."
-msgstr "No se puede asignar un cue out mayor que la duración del archivo."
-
-#: airtime_mvc/application/models/Block.php:879
-#: airtime_mvc/application/models/Block.php:900
-#: airtime_mvc/application/models/Playlist.php:843
-#: airtime_mvc/application/models/Playlist.php:868
-msgid "Can't set cue in to be larger than cue out."
-msgstr "No se puede asignar un cue in mayor al cue out."
-
-#: airtime_mvc/application/models/Block.php:935
-#: airtime_mvc/application/models/Playlist.php:887
-msgid "Can't set cue out to be smaller than cue in."
-msgstr "No se puede asignar un cue out menor que el cue in."
-
-#: airtime_mvc/application/models/Block.php:1351
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
-msgid "Select criteria"
-msgstr "Seleccionar criterio"
-
-#: airtime_mvc/application/models/Block.php:1353
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
-msgid "Bit Rate (Kbps)"
-msgstr "Tasa de bits (Kbps)"
-
-#: airtime_mvc/application/models/Block.php:1354
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
-#: airtime_mvc/application/controllers/LocaleController.php:80
-msgid "BPM"
-msgstr "BPM"
-
-#: airtime_mvc/application/models/Block.php:1358
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
-#: airtime_mvc/application/controllers/LocaleController.php:281
-#: airtime_mvc/application/layouts/scripts/layout.phtml:140
-msgid "Cue In"
-msgstr "Cue in"
-
-#: airtime_mvc/application/models/Block.php:1359
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:282
-#: airtime_mvc/application/layouts/scripts/layout.phtml:147
-msgid "Cue Out"
-msgstr "Cue out"
-
-#: airtime_mvc/application/models/Block.php:1361
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
-#: airtime_mvc/application/controllers/LocaleController.php:84
-msgid "Encoded By"
-msgstr "Codificado por"
-
-#: airtime_mvc/application/models/Block.php:1366
-msgid "Upload Time"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1367
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
-#: airtime_mvc/application/controllers/LocaleController.php:89
-msgid "Last Modified"
-msgstr "Último modificado"
-
-#: airtime_mvc/application/models/Block.php:1368
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
-#: airtime_mvc/application/controllers/LocaleController.php:90
-msgid "Last Played"
-msgstr "Último reproducido"
-
-#: airtime_mvc/application/models/Block.php:1370
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
-#: airtime_mvc/application/controllers/LocaleController.php:92
-msgid "Mime"
-msgstr "Mime"
-
-#: airtime_mvc/application/models/Block.php:1372
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
-#: airtime_mvc/application/controllers/LocaleController.php:94
-msgid "Owner"
-msgstr "Propietario"
-
-#: airtime_mvc/application/models/Block.php:1373
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
-#: airtime_mvc/application/controllers/LocaleController.php:95
-msgid "Replay Gain"
-msgstr "Ganancia en la repetición"
-
-#: airtime_mvc/application/models/Block.php:1374
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
-msgid "Sample Rate (kHz)"
-msgstr "Tasa de muestreo (kHz)"
-
-#: airtime_mvc/application/models/Block.php:1376
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
-#: airtime_mvc/application/controllers/LocaleController.php:97
-msgid "Track Number"
-msgstr "Número de registro"
-
-#: airtime_mvc/application/models/Block.php:1377
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
-#: airtime_mvc/application/controllers/LocaleController.php:98
-msgid "Uploaded"
-msgstr "Cargado"
-
-#: airtime_mvc/application/models/Block.php:1378
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
-#: airtime_mvc/application/controllers/LocaleController.php:99
-msgid "Website"
-msgstr "Sitio web"
-
-#: airtime_mvc/application/models/Block.php:1383
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
-#: airtime_mvc/application/controllers/LocaleController.php:151
-msgid "Select modifier"
-msgstr "Elige un modificador"
-
-#: airtime_mvc/application/models/Block.php:1384
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
-#: airtime_mvc/application/controllers/LocaleController.php:152
-msgid "contains"
-msgstr "contiene"
-
-#: airtime_mvc/application/models/Block.php:1385
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
-#: airtime_mvc/application/controllers/LocaleController.php:153
-msgid "does not contain"
-msgstr "no contiene"
-
-#: airtime_mvc/application/models/Block.php:1386
-#: airtime_mvc/application/models/Block.php:1390
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
-#: airtime_mvc/application/controllers/LocaleController.php:154
-msgid "is"
-msgstr "es"
-
-#: airtime_mvc/application/models/Block.php:1387
-#: airtime_mvc/application/models/Block.php:1391
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
-#: airtime_mvc/application/controllers/LocaleController.php:155
-msgid "is not"
-msgstr "no es"
-
-#: airtime_mvc/application/models/Block.php:1388
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
-#: airtime_mvc/application/controllers/LocaleController.php:156
-msgid "starts with"
-msgstr "empieza con"
-
-#: airtime_mvc/application/models/Block.php:1389
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
-#: airtime_mvc/application/controllers/LocaleController.php:157
-msgid "ends with"
-msgstr "termina con"
-
-#: airtime_mvc/application/models/Block.php:1392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
-#: airtime_mvc/application/controllers/LocaleController.php:158
-msgid "is greater than"
-msgstr "es mayor que"
-
-#: airtime_mvc/application/models/Block.php:1393
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
-#: airtime_mvc/application/controllers/LocaleController.php:159
-msgid "is less than"
-msgstr "es menor que"
-
-#: airtime_mvc/application/models/Block.php:1394
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
-#: airtime_mvc/application/controllers/LocaleController.php:160
-msgid "is in the range"
-msgstr "está en el rango de"
-
-#: airtime_mvc/application/models/Scheduler.php:73
-msgid "Cannot move items out of linked shows"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:119
-msgid "The schedule you're viewing is out of date! (sched mismatch)"
-msgstr "¡El calendario que tienes a la vista no está actualizado! (sched mismatch)"
-
-#: airtime_mvc/application/models/Scheduler.php:124
-msgid "The schedule you're viewing is out of date! (instance mismatch)"
-msgstr "¡La programación que estás viendo está desactualizada! (desfase de instancia)"
-
-#: airtime_mvc/application/models/Scheduler.php:132
-#: airtime_mvc/application/models/Scheduler.php:458
-#: airtime_mvc/application/models/Scheduler.php:490
-msgid "The schedule you're viewing is out of date!"
-msgstr "¡La programación que estás viendo está desactualizada!"
-
-#: airtime_mvc/application/models/Scheduler.php:142
+#: airtime_mvc/application/controllers/PlaylistController.php:161
#, php-format
-msgid "You are not allowed to schedule show %s."
-msgstr "No tienes permiso para programar el show %s."
+msgid "You don't have permission to delete selected %s(s)."
+msgstr "No tienes permiso para eliminar los %s(s) seleccionados."
-#: airtime_mvc/application/models/Scheduler.php:146
-msgid "You cannot add files to recording shows."
-msgstr "No puedes agregar pistas a shows en grabación."
+#: airtime_mvc/application/controllers/PlaylistController.php:174
+msgid "You can only add tracks to smart block."
+msgstr "Solo puedes añadir pistas a los bloques inteligentes."
-#: airtime_mvc/application/models/Scheduler.php:152
+#: airtime_mvc/application/controllers/PlaylistController.php:180
+#: airtime_mvc/application/controllers/LocaleController.php:50
+msgid "You can only add tracks, smart blocks, and webstreams to playlists."
+msgstr "solo puedes añadir pistas, bloques inteligentes y webstreams a listas de reproducción."
+
+#: airtime_mvc/application/controllers/PlaylistController.php:192
+msgid "Untitled Playlist"
+msgstr "Lista de reproducción sin nombre"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:194
+msgid "Untitled Smart Block"
+msgstr "Bloque inteligente sin nombre"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:522
+msgid "Unknown Playlist"
+msgstr "Lista de reproducción desconocida"
+
+#: airtime_mvc/application/controllers/ErrorController.php:78
+msgid "Page not found."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:87
+msgid "The requested action is not supported."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:98
+msgid "You do not have permission to access this resource."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:109
+msgid "An internal application error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/controllers/Apiv2Controller.php:77
+#: airtime_mvc/application/controllers/ApiController.php:79
+msgid "You are not allowed to access this resource."
+msgstr "No tienes permiso para acceder a esta fuente."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:72
+msgid "Preferences updated."
+msgstr "Se actualizaron las preferencias."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:115
+msgid "Support setting updated."
+msgstr "Se actualizaron las configuraciones de soporte."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:123
+msgid "Support Feedback"
+msgstr "Tu estación en nuestro catálogo"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:251
+msgid "Stream Setting Updated."
+msgstr "Se actualizaron las configuraciones del stream."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:342
+msgid "path should be specified"
+msgstr "se debe especificar la ruta"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:437
+msgid "Problem with Liquidsoap..."
+msgstr "Hay un problema con Liquidsoap..."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:493
+msgid "Request method not accepted"
+msgstr ""
+
+#: airtime_mvc/application/controllers/DashboardController.php:35
+#: airtime_mvc/application/controllers/DashboardController.php:84
+msgid "You don't have permission to disconnect source."
+msgstr "No tienes permiso para desconectar la fuente."
+
+#: airtime_mvc/application/controllers/DashboardController.php:37
+#: airtime_mvc/application/controllers/DashboardController.php:86
+msgid "There is no source connected to this input."
+msgstr "No hay fuente conectada a esta entrada."
+
+#: airtime_mvc/application/controllers/DashboardController.php:81
+msgid "You don't have permission to switch source."
+msgstr "No tienes permiso para prender/apagar la fuente."
+
+#: airtime_mvc/application/controllers/LoginController.php:43
+msgid "Please enter your username and password."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:93
+msgid "Wrong username or password provided. Please try again."
+msgstr "El usuario o la contraseña son incorrectos. Por favor intenta de nuevo."
+
+#: airtime_mvc/application/controllers/LoginController.php:167
+msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
+msgstr "No fue posible enviar el correo electrónico. Revisa tu configuración de correo y asegúrate de que sea correcta."
+
+#: airtime_mvc/application/controllers/LoginController.php:173
+msgid "There was a problem with the username or email address you entered."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ApiController.php:244
+#: airtime_mvc/application/controllers/ApiController.php:317
+#: airtime_mvc/application/controllers/ApiController.php:392
+#: airtime_mvc/application/controllers/ApiController.php:435
+#: airtime_mvc/application/controllers/ApiController.php:474
+#: airtime_mvc/application/controllers/ApiController.php:507
+msgid "You are not allowed to access this resource. "
+msgstr "No tienes permiso para acceder a esta fuente."
+
+#: airtime_mvc/application/controllers/ApiController.php:698
+#: airtime_mvc/application/controllers/ApiController.php:718
+#: airtime_mvc/application/controllers/ApiController.php:730
#, php-format
-msgid "The show %s is over and cannot be scheduled."
-msgstr "El show %s terminó y no puede ser programado."
-
-#: airtime_mvc/application/models/Scheduler.php:159
-#, php-format
-msgid "The show %s has been previously updated!"
-msgstr "¡El show %s ha sido actualizado previamente!"
-
-#: airtime_mvc/application/models/Scheduler.php:178
-msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:195
-msgid "Cannot schedule a playlist that contains missing files."
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:216
-#: airtime_mvc/application/models/Scheduler.php:305
-msgid "A selected File does not exist!"
-msgstr "¡Un Archivo seleccionado no existe!"
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
-#: airtime_mvc/application/configs/navigation.php:40
-msgid "Weekly Schedule"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
-#: airtime_mvc/application/forms/Player.php:77
-msgid "Preview:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
-#: airtime_mvc/application/configs/navigation.php:34
-msgid "Player"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
-#: airtime_mvc/application/controllers/LocaleController.php:362
-#: airtime_mvc/application/controllers/LocaleController.php:390
-msgid "Close"
-msgstr "Cerrar"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Add this show"
-msgstr "Añadir este show"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Update show"
-msgstr "Actualizar show"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
-msgid "What"
-msgstr "Que"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
-msgid "When"
-msgstr "Cuando"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
-msgid "Live Stream Input"
-msgstr "Entrada de stream en vivo"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
-msgid "Who"
-msgstr "Quien"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
-msgid "Style"
-msgstr "Estilo"
-
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
-#: airtime_mvc/application/controllers/LocaleController.php:273
-msgid "Start"
-msgstr "Inicio"
-
-#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
-msgid "Password Reset"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
-msgid "Email Sent!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
-msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
-msgid "Back"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
-msgid "New password"
-msgstr "Nueva contraseña"
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
-msgid "Please enter and confirm your new password in the fields below."
-msgstr "Por favor ingrese y confirme una nueva cotnraseña en los campos que aparecen a continuación."
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:3
-#: airtime_mvc/application/forms/Login.php:83
-msgid "Login"
-msgstr "Ingreso"
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:7
-#, php-format
-msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:97
-msgid "Playout History"
-msgstr "Historial de reproducción"
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
-msgid "Log Sheet"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
-msgid "File Summary"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
-msgid "Show Summary"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
-msgid "Your trial expires in"
-msgstr "Tu prueba expira el"
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
-msgid "days"
-msgstr "días"
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-#, php-format
-msgid "Purchase an %s Pro plan!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-msgid "My Account"
-msgstr "Mi cuenta"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
-msgid "Previous:"
-msgstr "Previamente:"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
-msgid "Next:"
-msgstr "Próximamente:"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
-msgid "Source Streams"
-msgstr "Streams fuente"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
-msgid "Master Source"
-msgstr "Fuente maestra "
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
-msgid "Show Source"
-msgstr "Fuente del show"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
-msgid "ON AIR"
-msgstr "AL AIRE"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
-msgid "Listen"
-msgstr "Escuchar"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
-msgid "Logout"
-msgstr "Salir"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
-msgid "Drop files here or click to browse your computer."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
-#: airtime_mvc/application/controllers/LocaleController.php:314
-msgid "in use"
-msgstr "en uso"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
-#: airtime_mvc/application/controllers/LocaleController.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:401
-msgid "All"
-msgstr "Todo"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
-msgid "Failed"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
-msgid "Pending"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
-msgid "Recent Uploads"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
-#: airtime_mvc/application/configs/navigation.php:120
-msgid "Account Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
-msgid "Upgrade today to get more listeners and storage space!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
-msgid "View Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
-msgid "About"
-msgstr "Sobre nosotros"
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
-#, php-format
-msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
-#, php-format
-msgid "%1$s %2$s is distributed under the %3$s"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
-#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
-msgid "Live stream"
-msgstr "Stream en vivo"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
-msgid "Share"
-msgstr "Compartir"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
-msgid "Select stream:"
-msgstr "Seleccionar stream:"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
-msgid "mute"
-msgstr "silenciar"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
-msgid "unmute"
-msgstr "desactivar silencio"
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
-#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
-#, php-format
-msgid "Welcome to %s!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
-#, php-format
-msgid "Here's how you can get started using %s to automate your broadcasts: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
-msgid "Upload audio tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
-msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
-msgid "Schedule a show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
-msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
-msgid "Add tracks to your show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
-msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
-msgid "Now you're good to go!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
-#, php-format
-msgid "For more detailed help, read the %suser manual%s."
-msgstr "Para una ayuda más detallada, lee el manual%s del %susuario."
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
-msgid "Listeners"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
-msgid "Stream Data Collection Status"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
-#: airtime_mvc/application/views/scripts/error/error.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
-msgid "An error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
-msgid "Access Denied!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
-msgid "You do not have permission to access this page!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
-#: airtime_mvc/application/views/scripts/error/error.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
-#: airtime_mvc/application/configs/navigation.php:143
-msgid "Help"
-msgstr "Ayuda"
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
-msgid "Page not found!"
-msgstr "¡Página no encontrada!"
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
-msgid "We couldn't find the page you were looking for."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error.phtml:12
-msgid "Looks like the page you were looking for doesn't exist!"
-msgstr "¡Parece que la página que buscas no existe!"
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
-msgid "Oops!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
-msgid "Something went wrong!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
-msgid "Bad Request!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
-msgid "The requested action is not supported!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
-msgid "Viewing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
-msgid "Editing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:3
-msgid "File import in progress..."
-msgstr "Importación del archivo en progreso..."
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:10
-#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
-msgid "Advanced Search Options"
-msgstr "Opciones de búsqueda avanzada"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
-#: airtime_mvc/application/forms/Player.php:15
-#: airtime_mvc/application/forms/EditAudioMD.php:24
-msgid "Title:"
-msgstr "Título:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
-#: airtime_mvc/application/forms/EditAudioMD.php:34
-msgid "Creator:"
-msgstr "Creador:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
-#: airtime_mvc/application/forms/EditAudioMD.php:44
-msgid "Album:"
-msgstr "Álbum:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
-msgid "Track:"
-msgstr "Pista:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
-msgid "Length:"
-msgstr "Duración:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
-msgid "Sample Rate:"
-msgstr "Tasa de muestreo:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
-msgid "Bit Rate:"
-msgstr "Tasa de bits:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
-#: airtime_mvc/application/forms/EditAudioMD.php:115
-msgid "Mood:"
-msgstr "Estilo (mood):"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
-#: airtime_mvc/application/forms/EditAudioMD.php:62
-#: airtime_mvc/application/forms/AddShowWhat.php:45
-msgid "Genre:"
-msgstr "Género:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
-#: airtime_mvc/application/forms/EditAudioMD.php:72
-msgid "Year:"
-msgstr "Año:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
-#: airtime_mvc/application/forms/EditAudioMD.php:85
-msgid "Label:"
-msgstr "Sello:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
-#: airtime_mvc/application/forms/EditAudioMD.php:125
-msgid "BPM:"
-msgstr "BPM:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
-#: airtime_mvc/application/forms/EditAudioMD.php:95
-msgid "Composer:"
-msgstr "Compositor:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
-#: airtime_mvc/application/forms/EditAudioMD.php:105
-msgid "Conductor:"
-msgstr "Conductor:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
-#: airtime_mvc/application/forms/EditAudioMD.php:135
-msgid "Copyright:"
-msgstr "Derechos de autor:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
-msgid "Isrc Number:"
-msgstr "Número ISRC"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
-#: airtime_mvc/application/forms/EditAudioMD.php:155
-msgid "Website:"
-msgstr "Sitio web:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
-#: airtime_mvc/application/forms/EditUser.php:119
-#: airtime_mvc/application/forms/EditAudioMD.php:165
-#: airtime_mvc/application/forms/Login.php:68
-msgid "Language:"
-msgstr "Idioma:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
-msgid "File Path:"
-msgstr "Ruta del archivo:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
-#: airtime_mvc/application/forms/AddShowWhat.php:26
-msgid "Name:"
-msgstr "Nombre:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
-#: airtime_mvc/application/forms/AddShowWhat.php:54
-msgid "Description:"
-msgstr "Descripción:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
-msgid "Web Stream"
-msgstr "Stream web"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
-msgid "Dynamic Smart Block"
-msgstr "Bloque inteligente dinámico"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
-msgid "Static Smart Block"
-msgstr "Bloque inteligente estático"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
-msgid "Audio Track"
-msgstr "Pista de audio"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
-msgid "Playlist Contents: "
-msgstr "Contenido de la lista de reproducción:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
-msgid "Static Smart Block Contents: "
-msgstr "Contenido del bloque inteligente estático:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
-msgid "Dynamic Smart Block Criteria: "
-msgstr "Criterios del bloque inteligente dinámico:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
-msgid "Limit to "
-msgstr "Límite hasta"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
-#: airtime_mvc/application/forms/AddShowWhat.php:36
-msgid "URL:"
-msgstr "URL:"
-
-#: airtime_mvc/application/views/scripts/form/login.phtml:41
-msgid "Forgot your password?"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
-#, php-format
-msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
-#, php-format
-msgid "Click the box below to promote your station on %s."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
-msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
-msgstr "(Para poder promocionar tu estación, 'Send support feedback' (Enviar retroalimentación de soporte) debe estar activado)."
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
-msgid "(Required)"
-msgstr "(Requerido)"
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
-msgid "(for verification purposes only, will not be published)"
-msgstr "(únicamente para fines de verificación, no será publicado)"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
-msgid "Choose folder"
-msgstr "Elija la carpeta"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
-msgid "Set"
-msgstr "Fijar"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
-msgid "Current Import Folder:"
-msgstr "Carpeta actual de importación:"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
-msgid "Add"
-msgstr "Añadir"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
-#, php-format
-msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
-msgid "Remove watched directory"
-msgstr "Remover el directorio monitoreado"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
-msgid "You are not watching any media folders."
-msgstr "No está monitoreando ninguna carpeta de medios."
-
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
-msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
-msgid "Live Broadcasting"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
-msgid "Use these settings in your broadcasting software to stream live at any time."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
-msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
-msgid "Choose Show Instance"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
-#: airtime_mvc/application/forms/EditHistoryItem.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:400
-msgid "No Show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
-msgid "Find"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
-msgid "Choose Days:"
-msgstr "Elige los días:"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
-#: airtime_mvc/application/forms/AddShowStyle.php:64
-#: airtime_mvc/application/forms/GeneralPreferences.php:53
-msgid "Remove"
-msgstr "Elimina"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
-msgid "Stream "
-msgstr "Stream"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
-msgid "Additional Options"
-msgstr "Optiones adicionales"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
-msgid "The following info will be displayed to listeners in their media player:"
-msgstr "La siguiente información se desplegará a los oyentes en sus reproductores:"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
-msgid "(Your radio station website)"
-msgstr "(El sitio web de tu estación)"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
-msgid "Stream URL: "
-msgstr "URL del stream:"
-
-#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
-msgid "Find Shows"
-msgstr "Encontrar shows"
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
-msgid "TuneIn Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
-msgid "SoundCloud Settings"
-msgstr "Configuración de SoundCloud"
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
-msgid "Dangerous Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
-msgid "Search Criteria:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
-msgid "New Criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
-msgid "or"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
-msgid "and"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
-msgid "New Modifier"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
-msgid " to "
-msgstr "para"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
-msgid "files meet the criteria"
-msgstr "los archivos si cumplen con los criterios"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
-msgid "file meets the criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
-msgid "Filter History"
-msgstr "Filtrar historial"
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
-#: airtime_mvc/application/configs/navigation.php:61
-msgid "My Profile"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
-#, php-format
-msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
-#: airtime_mvc/application/forms/Preferences.php:40
-#: airtime_mvc/application/forms/PasswordChange.php:43
-#: airtime_mvc/application/forms/AddUser.php:110
-#: airtime_mvc/application/forms/BillingClient.php:193
-#: airtime_mvc/application/forms/SupportSettings.php:131
-#: airtime_mvc/application/forms/EditHistory.php:131
-#: airtime_mvc/application/controllers/LocaleController.php:294
-msgid "Save"
-msgstr "Guardar"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
-msgid "Repeat Days:"
-msgstr "Días en que se repite:"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
-msgid "Register Airtime"
-msgstr "Registrar Airtime"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
-#: airtime_mvc/application/forms/GeneralPreferences.php:43
-msgid "Note: Anything larger than 600x600 will be resized."
-msgstr "Nota: cualquier cosa mayor a 600x600 será redimensionada."
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
-msgid "Show me what I am sending "
-msgstr "Muéstrame lo que estoy enviando"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
-msgid "Terms and Conditions"
-msgstr "Términos y condiciones"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
-msgid "Creating File Summary Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
-msgid "Creating Log Sheet Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
-msgid "Name"
-msgstr "Nombre"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
-msgid "Add more elements"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
-msgid "Add New Field"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
-msgid "Set Default Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
-msgid "Playout History Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
-msgid "Log Sheet Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
-msgid "New Log Sheet Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
-msgid "No Log Sheet Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
-#: airtime_mvc/application/controllers/LocaleController.php:397
-msgid "Set Default"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
-msgid "File Summary Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
-msgid "New File Summary Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
-msgid "No File Summary Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
-msgid "Disk Space"
-msgstr "Espacio en disco"
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
-#: airtime_mvc/application/controllers/LocaleController.php:315
-msgid "Disk"
-msgstr "Disco"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
-#: airtime_mvc/application/forms/AddShowWhen.php:89
-msgid "Duration:"
-msgstr "Duración:"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
-msgid "Toggle Details"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
-msgid "Playlist crossfade"
-msgstr "Transición (crossfade) de la lista de reproducción"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-msgid "Remove all content from this smart block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Clear"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "Fade in: "
-msgstr "Fade in:"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "(ss.t)"
-msgstr "(ss.t)"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-msgid "Fade out: "
-msgstr "Fade out:"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
-#: airtime_mvc/application/forms/EditAudioMD.php:186
-#: airtime_mvc/application/forms/EditHistory.php:141
-#: airtime_mvc/application/controllers/LocaleController.php:295
-#: airtime_mvc/application/controllers/LocaleController.php:318
-msgid "Cancel"
-msgstr "Cancelar"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
-msgid "No smart block currently open"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
-msgid "Show Waveform"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-msgid "Cue In: "
-msgstr "Cue in:"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "(hh:mm:ss.t)"
-msgstr "(hh:mm:ss.t)"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "Cue Out: "
-msgstr "Cue out:"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
-msgid "Original Length:"
-msgstr "Duración original:"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
-msgid "Expand Static Block"
-msgstr "Expandir bloque estático"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
-msgid "Expand Dynamic Block"
-msgstr "Expandir bloque dinámico"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
-msgid "Choose some search criteria above and click Generate to create this playlist."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
-msgid "A track list will be generated when you schedule this smart block into a show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
-msgid "Drag tracks here from your library to add them to the playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-msgid "Shuffle playlist"
-msgstr "Lista de reproducción aleatoria"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
-msgid "Shuffle"
-msgstr "Reproducción aleatoria"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Empty playlist content"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-msgid "Save playlist"
-msgstr "Almacenar lista de reproducción"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
-msgid "No open playlist"
-msgstr "No hay listas de reproducción abiertas"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
-msgid "previous"
-msgstr "previo"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
-msgid "play"
-msgstr "reproducir"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
-msgid "pause"
-msgstr "pausa"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
-msgid "next"
-msgstr "próximo"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
-msgid "stop"
-msgstr "parar"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
-msgid "max volume"
-msgstr "volumen máximo"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
-msgid "Update Required"
-msgstr "Se requiere actualizar"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
-#, php-format
-msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
-msgstr "Para reproducir estas pistas necesitarás actualizar tu navegador a una versión más reciente o atualizar tus plugin%s de %sFlash"
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
-msgid "Stream Settings"
-msgstr "Configuración de stream"
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
-msgid "Global"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
-msgid "dB"
-msgstr "dB"
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
-msgid "Output Streams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
-#: airtime_mvc/application/controllers/LocaleController.php:166
-msgid "Manage Media Folders"
-msgstr "Administrar las Carpetas de Medios"
-
-#: airtime_mvc/application/views/scripts/preference/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:56
-msgid "General"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
-msgid "Description"
-msgstr "Descripción"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
-msgid "Stream URL:"
-msgstr "URL del stream:"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
-msgid "Default Length:"
-msgstr "Duración por defecto:"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
-msgid "No webstream"
-msgstr "No existe un webstream"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
-msgid "Manage Users"
-msgstr "Administrar usuarios"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
-msgid "New User"
-msgstr "Nuevo usuario"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
-msgid "id"
-msgstr "id"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
-#: airtime_mvc/application/forms/PasswordRestore.php:25
-msgid "Username"
-msgstr "Usuario"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
-msgid "First Name"
-msgstr "Nombre"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
-msgid "Last Name"
-msgstr "Apellido"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
-msgid "User Type"
-msgstr "Tipo de usuario"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
-#, php-format
-msgid "Super Admin details can be changed in your Billing Settings."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
-#: airtime_mvc/application/controllers/LocaleController.php:74
-#: airtime_mvc/application/layouts/scripts/layout.phtml:78
-msgid "Tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
-#: airtime_mvc/application/controllers/LocaleController.php:104
-#: airtime_mvc/application/layouts/scripts/layout.phtml:80
-msgid "Playlists"
-msgstr "Listas de reproducción"
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
-#: airtime_mvc/application/controllers/LocaleController.php:105
-#: airtime_mvc/application/layouts/scripts/layout.phtml:82
-msgid "Smart Blocks"
-msgstr "Bloques inteligentes"
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
-#: airtime_mvc/application/layouts/scripts/layout.phtml:84
-msgid "Webstreams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
-#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
-#: airtime_mvc/application/layouts/scripts/layout.phtml:76
-msgid "Dashboard"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:12
-msgid "Radio Page"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:19
-msgid "Calendar"
-msgstr "Calendario"
-
-#: airtime_mvc/application/configs/navigation.php:26
-msgid "Widgets"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:48
-msgid "Settings"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:67
-msgid "Users"
-msgstr "Usuarios"
-
-#: airtime_mvc/application/configs/navigation.php:74
-msgid "Streams"
-msgstr "Streams"
-
-#: airtime_mvc/application/configs/navigation.php:82
-msgid "Analytics"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:90
-msgid "Listener Stats"
-msgstr "Estadísticas de oyentes"
-
-#: airtime_mvc/application/configs/navigation.php:104
-msgid "History Templates"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:113
-msgid "Billing"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:127
-msgid "Account Details"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:134
-msgid "View Invoices"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:150
-msgid "Getting Started"
-msgstr "Cómo iniciar"
-
-#: airtime_mvc/application/configs/navigation.php:157
-msgid "FAQ"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:162
-msgid "User Manual"
-msgstr "Manual para el usuario"
-
-#: airtime_mvc/application/configs/navigation.php:167
-msgid "File a Support Ticket"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:12
-msgid "Background Colour:"
-msgstr "Color de fondo:"
-
-#: airtime_mvc/application/forms/AddShowStyle.php:31
-msgid "Text Colour:"
-msgstr "Color del texto:"
-
-#: airtime_mvc/application/forms/AddShowStyle.php:49
-msgid "Current Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:72
-msgid "Show Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:87
-msgid "Logo Preview:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:19
-msgid "Push metadata to your station on TuneIn?"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:24
-msgid "Station ID:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:30
-msgid "Partner Key:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:36
-msgid "Partner Id:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:77
-#: airtime_mvc/application/forms/TuneInPreferences.php:86
-msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:14
-msgid "Now Playing"
-msgstr "Reproduciéndose ahora"
-
-#: airtime_mvc/application/forms/Player.php:25
-msgid "Select Stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:28
-msgid "Auto detect the most appropriate stream to use."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:29
-msgid "Select a stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:41
-msgid " - Mobile friendly"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:45
-msgid " - The player does not support Opus streams."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:71
-msgid "Embeddable code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:72
-msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:37
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
-#: airtime_mvc/application/forms/Login.php:41
-#: airtime_mvc/application/forms/AddUser.php:29
-msgid "Username:"
-msgstr "Usuario:"
-
-#: airtime_mvc/application/forms/EditUser.php:48
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
-#: airtime_mvc/application/forms/Login.php:54
-#: airtime_mvc/application/forms/AddUser.php:38
-#: airtime_mvc/application/forms/BillingClient.php:172
-msgid "Password:"
-msgstr "Contraseña:"
-
-#: airtime_mvc/application/forms/EditUser.php:57
-#: airtime_mvc/application/forms/AddUser.php:46
-#: airtime_mvc/application/forms/BillingClient.php:181
-msgid "Verify Password:"
-msgstr "Verificar contraseña:"
-
-#: airtime_mvc/application/forms/EditUser.php:67
-#: airtime_mvc/application/forms/AddUser.php:55
-msgid "Firstname:"
-msgstr "Nombre:"
-
-#: airtime_mvc/application/forms/EditUser.php:75
-#: airtime_mvc/application/forms/AddUser.php:61
-msgid "Lastname:"
-msgstr "Apellido:"
-
-#: airtime_mvc/application/forms/EditUser.php:83
-#: airtime_mvc/application/forms/RegisterAirtime.php:51
-#: airtime_mvc/application/forms/AddUser.php:67
-#: airtime_mvc/application/forms/SupportSettings.php:43
-msgid "Email:"
-msgstr "Correo electrónico"
-
-#: airtime_mvc/application/forms/EditUser.php:94
-#: airtime_mvc/application/forms/AddUser.php:76
-msgid "Mobile Phone:"
-msgstr "Celular:"
-
-#: airtime_mvc/application/forms/EditUser.php:102
-#: airtime_mvc/application/forms/AddUser.php:82
-msgid "Skype:"
-msgstr "Skype:"
-
-#: airtime_mvc/application/forms/EditUser.php:110
-#: airtime_mvc/application/forms/AddUser.php:88
-msgid "Jabber:"
-msgstr "Jabber:"
-
-#: airtime_mvc/application/forms/EditUser.php:129
-msgid "Interface Timezone:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:155
-#: airtime_mvc/application/forms/AddUser.php:120
-msgid "Login name is not unique."
-msgstr "Tu usuario no es único."
-
-#: airtime_mvc/application/forms/AddShowRR.php:10
-msgid "Record from Line In?"
-msgstr "¿Grabar desde la entrada (line in)?"
-
-#: airtime_mvc/application/forms/AddShowRR.php:16
-msgid "Rebroadcast?"
-msgstr "¿Reprogramar?"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:16
-msgid "'%value%' does not fit the time format 'HH:mm'"
-msgstr "'%value%' no concuerda con el formato de tiempo 'HH:mm'"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:22
-msgid "Start Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:37
-msgid "In the Future:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:64
-msgid "End Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:98
-msgid "Timezone:"
-msgstr "Huso horario:"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:107
-msgid "Repeats?"
-msgstr "¿Se repite?"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:139
-msgid "Cannot create show in the past"
-msgstr "No puedes crear un show en el pasado"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:147
-msgid "Cannot modify start date/time of the show that is already started"
-msgstr "No puedes modificar la hora/fecha de inicio de un show que ya empezó"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:164
-msgid "Cannot have duration < 0m"
-msgstr "No puede tener una duración < 0m"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:168
-msgid "Cannot have duration 00h 00m"
-msgstr "No puede tener una duración 00h 00m"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:175
-msgid "Cannot have duration greater than 24h"
-msgstr "No puede tener una duración mayor a 24 horas"
-
-#: airtime_mvc/application/forms/AddShowWho.php:10
-msgid "Search Users:"
-msgstr "Búsqueda de usuarios:"
-
-#: airtime_mvc/application/forms/AddShowWho.php:24
-msgid "DJs:"
-msgstr "DJs:"
-
-#: airtime_mvc/application/forms/PasswordChange.php:17
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
-msgid "Password"
-msgstr "Contraseña"
-
-#: airtime_mvc/application/forms/PasswordChange.php:28
-msgid "Confirm new password"
-msgstr "Confirma nueva contraseña"
-
-#: airtime_mvc/application/forms/PasswordChange.php:36
-msgid "Password confirmation does not match your password."
-msgstr "La confirmación de la contraseña no concuerda con tu contraseña."
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
-msgid "Station Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
-#: airtime_mvc/application/forms/GeneralPreferences.php:127
-msgid "Station Timezone"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
-msgid "Auto Switch Off:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
-msgid "Auto Switch On:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
-msgid "Switch Transition Fade (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
-#: airtime_mvc/application/forms/GeneralPreferences.php:68
-#: airtime_mvc/application/forms/GeneralPreferences.php:82
-#: airtime_mvc/application/forms/GeneralPreferences.php:96
-msgid "Please enter a time in seconds (eg. 0.5)"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
-#: airtime_mvc/application/forms/AddShowLiveStream.php:48
-msgid "Host:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
-#: airtime_mvc/application/forms/AddShowLiveStream.php:54
-msgid "Port:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
-#: airtime_mvc/application/forms/AddShowLiveStream.php:60
-msgid "Mount:"
-msgstr ""
-
-#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
-msgid "Value is required and can't be empty"
-msgstr "El valor es necesario y no puede estar vacío"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:25
-#: airtime_mvc/application/forms/RegisterAirtime.php:30
-#: airtime_mvc/application/forms/SupportSettings.php:18
-msgid "Station Name"
-msgstr "Nombre de la estación"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:33
-msgid "Station Description"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:42
-#: airtime_mvc/application/forms/RegisterAirtime.php:106
-msgid "Station Logo:"
-msgstr "Logo de la estación:"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:62
-msgid "Default Crossfade Duration (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:76
-msgid "Default Fade In (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:90
-msgid "Default Fade Out (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:102
-msgid "Public Airtime API"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:103
-msgid "Required for embeddable schedule widget."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:105
-msgid "Disabled"
-msgstr "Desactivado"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:106
-msgid "Enabled"
-msgstr "Activado"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:109
-msgid ""
-"Enabling this feature will allow Airtime to provide schedule data\n"
-" to external widgets that can be embedded in your website."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:120
-msgid "Default Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:134
-msgid "Week Starts On"
-msgstr "La semana empieza el"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:150
-msgid "Display login button on your Radio Page?"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:158
-#: airtime_mvc/application/controllers/LocaleController.php:249
-msgid "Sunday"
-msgstr "domingo"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:159
-#: airtime_mvc/application/controllers/LocaleController.php:250
-msgid "Monday"
-msgstr "lunes"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:160
-#: airtime_mvc/application/controllers/LocaleController.php:251
-msgid "Tuesday"
-msgstr "martes"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:161
-#: airtime_mvc/application/controllers/LocaleController.php:252
-msgid "Wednesday"
-msgstr "miércoles"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:162
-#: airtime_mvc/application/controllers/LocaleController.php:253
-msgid "Thursday"
-msgstr "jueves"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:163
-#: airtime_mvc/application/controllers/LocaleController.php:254
-msgid "Friday"
-msgstr "Viernes"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:164
-#: airtime_mvc/application/controllers/LocaleController.php:255
-msgid "Saturday"
-msgstr "Sábado"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
-msgid "Default License:"
-msgstr "Licencia por defecto:"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
-msgid "All rights are reserved"
-msgstr "Todos los derechos reservados"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
-msgid "The work is in the public domain"
-msgstr "El trabajo es de dominio público"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
-msgid "Creative Commons Attribution"
-msgstr "Atribución Creative Commons"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
-msgid "Creative Commons Attribution Noncommercial"
-msgstr "Atribución-NoComercial Creative Commons"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
-msgid "Creative Commons Attribution No Derivative Works"
-msgstr "Atribución-sinDerivadas Creative Commons"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
-msgid "Creative Commons Attribution Share Alike"
-msgstr "Atribución-CompartirIgual Creative Commons"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
-msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
-msgstr "Atribución-NoComercial-SinDerivadas Creative Commons"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
-msgid "Creative Commons Attribution Noncommercial Share Alike"
-msgstr "Atribución-NoComercial-CompartirIgual Creative Commons"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
-msgid "Default Sharing Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
-msgid "Public"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
-msgid "Private"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:18
-#: airtime_mvc/application/forms/DateRange.php:16
-msgid "Date Start:"
-msgstr "Fecha de Inicio:"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:37
-#: airtime_mvc/application/forms/ShowBuilder.php:65
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
-#: airtime_mvc/application/forms/DateRange.php:35
-#: airtime_mvc/application/forms/DateRange.php:63
-msgid "Invalid character entered"
-msgstr "Se introdujo un caracter inválido"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:46
-#: airtime_mvc/application/forms/AddShowRepeats.php:56
-#: airtime_mvc/application/forms/DateRange.php:44
-msgid "Date End:"
-msgstr "Fecha de Finalización:"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:72
-#: airtime_mvc/application/forms/ShowBuilder.php:88
-msgid "Filter by Show"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:80
-msgid "All My Shows:"
-msgstr "Todos mis shows:"
-
-#: airtime_mvc/application/forms/EditAudioMD.php:145
-msgid "ISRC Number:"
-msgstr "Número ISRC:"
-
-#: airtime_mvc/application/forms/EditAudioMD.php:176
-msgid "OK"
-msgstr "OK"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
-msgid "Day must be specified"
-msgstr "Se debe especificar un día"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
-msgid "Time must be specified"
-msgstr "Se debe especificar una hora"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
-msgid "Must wait at least 1 hour to rebroadcast"
-msgstr "Debes esperar al menos 1 hora para reprogramar"
-
-#: airtime_mvc/application/forms/AddShowWhat.php:30
-msgid "Untitled Show"
-msgstr "Show sin nombre"
-
-#: airtime_mvc/application/forms/AddShowWhat.php:69
-msgid "Instance Description:"
-msgstr ""
-
-#: airtime_mvc/application/forms/DangerousPreferences.php:12
-msgid "Delete All Tracks in Library"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:39
-#: airtime_mvc/application/forms/SupportSettings.php:31
-msgid "Phone:"
-msgstr "Teléfono:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:62
-#: airtime_mvc/application/forms/SupportSettings.php:54
-msgid "Station Web Site:"
-msgstr "Sitio web de la estación:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:73
-#: airtime_mvc/application/forms/BillingClient.php:102
-#: airtime_mvc/application/forms/SupportSettings.php:65
-msgid "Country:"
-msgstr "País:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:84
-#: airtime_mvc/application/forms/BillingClient.php:70
-#: airtime_mvc/application/forms/SupportSettings.php:76
-msgid "City:"
-msgstr "Ciudad:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:96
-#: airtime_mvc/application/forms/SupportSettings.php:88
-msgid "Station Description:"
-msgstr "Descripción de la estación:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:116
-#: airtime_mvc/application/forms/SupportSettings.php:98
-#: airtime_mvc/application/controllers/LocaleController.php:341
-msgid "Send support feedback"
-msgstr "Enviar retroalimentación respecto al soporte técnico"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:126
-#: airtime_mvc/application/forms/SupportSettings.php:108
-#, php-format
-msgid "Promote my station on %s"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:151
-#: airtime_mvc/application/forms/SupportSettings.php:120
-#, php-format
-msgid "By checking this box, I agree to %s's %sprivacy policy%s."
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:169
-#: airtime_mvc/application/forms/SupportSettings.php:143
-msgid "You have to agree to privacy policy."
-msgstr "Debes aceptar las políticas de privacidad."
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:10
-msgid "Link:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:16
-msgid "Repeat Type:"
-msgstr "Repetir tipo:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:19
-msgid "weekly"
-msgstr "semanal"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:20
-msgid "every 2 weeks"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:21
-msgid "every 3 weeks"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:22
-msgid "every 4 weeks"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:23
-msgid "monthly"
-msgstr "mensual"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:32
-msgid "Select Days:"
-msgstr "Seleccione días:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:35
-#: airtime_mvc/application/controllers/LocaleController.php:256
-msgid "Sun"
-msgstr "Dom"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:36
-#: airtime_mvc/application/controllers/LocaleController.php:257
-msgid "Mon"
-msgstr "Lun"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:37
-#: airtime_mvc/application/controllers/LocaleController.php:258
-msgid "Tue"
-msgstr "Mar"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:38
-#: airtime_mvc/application/controllers/LocaleController.php:259
-msgid "Wed"
-msgstr "Miér"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:39
-#: airtime_mvc/application/controllers/LocaleController.php:260
-msgid "Thu"
-msgstr "Jue"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:40
-#: airtime_mvc/application/controllers/LocaleController.php:261
-msgid "Fri"
-msgstr "Vier"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:41
-#: airtime_mvc/application/controllers/LocaleController.php:262
-msgid "Sat"
-msgstr "Sab"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:47
-msgid "Repeat By:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the month"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the week"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:69
-msgid "No End?"
-msgstr "¿Sin fin?"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:106
-msgid "End date must be after start date"
-msgstr "La fecha de finalización debe ser posterior a la inicio"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:113
-msgid "Please select a repeat day"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:10
-#, php-format
-msgid "Use %s Authentication:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:16
-msgid "Use Custom Authentication:"
-msgstr "Use la autenticación personalizada:"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:25
-msgid "Custom Username"
-msgstr "Usuario personalizado"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:37
-msgid "Custom Password"
-msgstr "Contraseña personalizada"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:77
-msgid "Username field cannot be empty."
-msgstr "El campo de usuario no puede estar vacío."
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:82
-msgid "Password field cannot be empty."
-msgstr "El campo de contraseña no puede estar vacío."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
-msgid "Enabled:"
-msgstr "Activado:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
-msgid "Mobile:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
-msgid "Stream Type:"
-msgstr "Tipo de stream:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
-msgid "Service Type:"
-msgstr "Tipo de servicio:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
-msgid "Channels:"
-msgstr "Canales:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "1 - Mono"
-msgstr "1 - Mono"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "2 - Stereo"
-msgstr "2 - Estéreo"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
-msgid "Server"
-msgstr "Servidor"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
-msgid "Port"
-msgstr "Puerto"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
-msgid "Only numbers are allowed."
-msgstr "Solo se permiten números."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
-msgid "URL"
-msgstr "URL"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
-msgid "Mount Point"
-msgstr "Punto de instalación"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
-msgid "Admin User"
-msgstr "Usuario administrativo"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
-msgid "Admin Password"
-msgstr "Contraseña administrativa"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
-#: airtime_mvc/application/controllers/LocaleController.php:173
-msgid "Getting information from the server..."
-msgstr "Obteniendo información desde el servidor..."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
-msgid "Server cannot be empty."
-msgstr "El servidor no puede estar vacío."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
-msgid "Port cannot be empty."
-msgstr "El puerto no puede estar vacío."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
-msgid "Mount cannot be empty with Icecast server."
-msgstr "La instalación no puede estar vacía con el servidor Icecast."
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
-msgid "'%value%' is no valid email address in the basic format local-part@hostname"
-msgstr "'%value%' no es una dirección de correo electrónico válida en el formato básico local-part@hostname"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
-msgid "'%value%' does not fit the date format '%format%'"
-msgstr "'%value%' no se ajusta al formato de fecha '%format%'"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
-msgid "'%value%' is less than %min% characters long"
-msgstr "'%value%' tiene menos de %min% caracteres"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
-msgid "'%value%' is more than %max% characters long"
-msgstr "'%value%' tiene más de %max% caracteres"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
-msgid "'%value%' is not between '%min%' and '%max%', inclusively"
-msgstr "'%value%' no está entre '%min%' y '%max%', inclusive"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
-msgid "Passwords do not match"
-msgstr "Las contraseñas no coinciden"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
-msgid "hours"
-msgstr "horas"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
-msgid "minutes"
-msgstr "minutos"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
-msgid "Randomly"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
-msgid "Newest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
-msgid "Oldest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
-msgid "Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
-msgid "Static"
-msgstr "Estático"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
-msgid "Dynamic"
-msgstr "Dinámico"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
-msgid "Allow Repeated Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
-msgid "Sort Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
-msgid "Limit to:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
-msgid "Generate playlist content and save criteria"
-msgstr "Generar contenido para la lista de reproducción y guardar criterios"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
-msgid "Generate"
-msgstr "Generar"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
-msgid "Shuffle playlist content"
-msgstr "Reproducir de forma aleatoria los contenidos de la lista de reproducción"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
-msgid "Limit cannot be empty or smaller than 0"
-msgstr "El límite no puede estar vacío o ser menor que 0"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
-msgid "Limit cannot be more than 24 hrs"
-msgstr "El límite no puede ser mayor a 24 horas"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
-msgid "The value should be an integer"
-msgstr "El valor debe ser un número entero"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
-msgid "500 is the max item limit value you can set"
-msgstr "500 es el valor máximo de ítems que se pueden configurar"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
-msgid "You must select Criteria and Modifier"
-msgstr "Debes elegir Criterios y Modificador"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
-msgid "'Length' should be in '00:00:00' format"
-msgstr "'Length' (la duración) debe establecerse e un formato de '00:00:00' "
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
-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:594
-msgid "The value has to be numeric"
-msgstr "El valor debe ser numérico"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
-msgid "The value should be less then 2147483648"
-msgstr "El valor debe ser menor a 2147483648"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
-#, php-format
-msgid "The value should be less than %s characters"
-msgstr "El valor debe ser menor que los caracteres %s"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
-msgid "Value cannot be empty"
-msgstr "El valor no se puede vaciar"
-
-#: airtime_mvc/application/forms/Login.php:102
-msgid "Type the characters you see in the picture below."
-msgstr "Digita los caracteres que ves en la gráfica que aparece a continuación."
-
-#: airtime_mvc/application/forms/StreamSetting.php:26
-msgid "Icecast Vorbis Metadata"
-msgstr "Metadata Icecast Vorbis"
-
-#: airtime_mvc/application/forms/StreamSetting.php:36
-msgid "Stream Label:"
-msgstr "Sello del stream:"
-
-#: airtime_mvc/application/forms/StreamSetting.php:37
-msgid "Artist - Title"
-msgstr "Artísta - Título"
-
-#: airtime_mvc/application/forms/StreamSetting.php:38
-msgid "Show - Artist - Title"
-msgstr "Show - Artista - Título"
-
-#: airtime_mvc/application/forms/StreamSetting.php:39
-msgid "Station name - Show name"
-msgstr "Nombre de la estación - nombre del show"
-
-#: airtime_mvc/application/forms/StreamSetting.php:45
-msgid "Off Air Metadata"
-msgstr "Metadata fuera del aire"
-
-#: airtime_mvc/application/forms/StreamSetting.php:51
-msgid "Enable Replay Gain"
-msgstr "Activar ajuste del volumen"
-
-#: airtime_mvc/application/forms/StreamSetting.php:57
-msgid "Replay Gain Modifier"
-msgstr "Modificar ajuste de volumen"
-
-#: airtime_mvc/application/forms/StreamSetting.php:65
-msgid "Streaming Server:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Airtime Pro Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Custom / 3rd Party Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:95
-msgid "User Type:"
-msgstr "Tipo de usuario:"
-
-#: airtime_mvc/application/forms/AddUser.php:99
-#: airtime_mvc/application/controllers/LocaleController.php:324
-msgid "Guest"
-msgstr "Invitado"
-
-#: airtime_mvc/application/forms/AddUser.php:100
-#: airtime_mvc/application/controllers/LocaleController.php:322
-msgid "DJ"
-msgstr "DJ"
-
-#: airtime_mvc/application/forms/AddUser.php:101
-#: airtime_mvc/application/controllers/LocaleController.php:323
-msgid "Program Manager"
-msgstr "Administrador de programa"
-
-#: airtime_mvc/application/forms/AddUser.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:321
-msgid "Admin"
-msgstr "Admin"
-
-#: airtime_mvc/application/forms/BillingClient.php:17
-msgid "First Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:26
-msgid "Last Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:35
-msgid "Company Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:44
-msgid "Email Address:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:54
-msgid "Address 1:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:63
-msgid "Address 2:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:80
-msgid "State/Region:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:89
-msgid "Zip Code / Postal Code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:112
-msgid "Phone Number:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:121
-msgid "Please choose a security question:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:126
-msgid "What is the name of your favorite childhood friend?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:127
-msgid "What school did you attend for sixth grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:128
-msgid "In what city did you meet your spouse/significant other?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:129
-msgid "What street did you live on in third grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:130
-msgid "What is the first name of the boy or girl that you first kissed?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:131
-msgid "In what city or town was your first job?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:135
-msgid "Please enter an answer:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:152
-msgid "VAT/Tax ID (EU only)"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:162
-msgid "Subscribe to Sourcefabric newsletter"
-msgstr ""
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
-msgid "Import Folder:"
-msgstr "Carpeta de importación:"
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
-msgid "Watched Folders:"
-msgstr "Carpetas monitoreadas:"
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
-msgid "Not a valid Directory"
-msgstr "No es un directorio válido"
-
-#: airtime_mvc/application/forms/PasswordRestore.php:14
-msgid "Email"
+msgid "File does not exist in %s"
msgstr ""
-#: airtime_mvc/application/forms/PasswordRestore.php:36
-msgid "Reset password"
-msgstr "Restablecer contraseña"
+#: airtime_mvc/application/controllers/ApiController.php:781
+msgid "Bad request. no 'mode' parameter passed."
+msgstr "Solicitud errónea. Ningún parámetro 'mode' pasó."
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
-msgid "Plan type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
-msgid "Billing cycle:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
-msgid "Payment method:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
-msgid "PayPal"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
-msgid "Credit Card via 2Checkout"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:213
-#, php-format
-msgid "The year %s must be within the range of 1753 - 9999"
-msgstr "El año %s debe estar dentro del rango de 1753-9999"
-
-#: airtime_mvc/application/common/DateHelper.php:216
-#, php-format
-msgid "%s-%s-%s is not a valid date"
-msgstr "%s-%s-%s no es una fecha válida"
-
-#: airtime_mvc/application/common/DateHelper.php:240
-#, php-format
-msgid "%s:%s:%s is not a valid time"
-msgstr "%s:%s:%s no es una hora válida"
-
-#: airtime_mvc/application/common/UsabilityHints.php:55
-msgid "Upload some tracks below to add them to your library!"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:57
-#, php-format
-msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:63
-msgid "Click the 'New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:65
-#, php-format
-msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:73
-msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:75
-#, php-format
-msgid ""
-"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
-" %sCreate an unlinked show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:80
-msgid "To start broadcasting, click on the current show and select 'Schedule Show'"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:82
-#, php-format
-msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:89
-msgid "Click on the show starting next and select 'Schedule Show'"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:91
-#, php-format
-msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
-msgstr ""
+#: airtime_mvc/application/controllers/ApiController.php:791
+msgid "Bad request. 'mode' parameter is invalid"
+msgstr "Solicitud errónea. El parámetro 'mode' es inválido"
#: airtime_mvc/application/controllers/LocaleController.php:30
#: airtime_mvc/application/layouts/scripts/audio-player.phtml:5
@@ -2909,11 +560,6 @@ msgstr "Añadiendo %s ítems"
msgid "You can only add tracks to smart blocks."
msgstr "Solo puedes añadir pistas a bloques inteligentes"
-#: airtime_mvc/application/controllers/LocaleController.php:50
-#: airtime_mvc/application/controllers/PlaylistController.php:180
-msgid "You can only add tracks, smart blocks, and webstreams to playlists."
-msgstr "solo puedes añadir pistas, bloques inteligentes y webstreams a listas de reproducción."
-
#: airtime_mvc/application/controllers/LocaleController.php:53
msgid "Please select a cursor position on timeline."
msgstr "Indica tu selección en la lista de reproducción actual."
@@ -2954,11 +600,6 @@ msgstr ""
msgid "Click 'New' to create one."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:66
-#: airtime_mvc/application/controllers/LibraryController.php:123
-msgid "Edit Metadata"
-msgstr "Editar metadata"
-
#: airtime_mvc/application/controllers/LocaleController.php:67
msgid "Add to selected show"
msgstr "Añadir al show seleccionado"
@@ -2987,6 +628,12 @@ msgstr "¿De verdad quieres eliminar los ítems seleccionados?"
msgid "Scheduled"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:74
+#: airtime_mvc/application/layouts/scripts/layout.phtml:78
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
+msgid "Tracks"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:75
#: airtime_mvc/application/layouts/scripts/layout.phtml:60
msgid "Playlist"
@@ -2996,18 +643,96 @@ msgstr ""
msgid "Bit Rate"
msgstr "Tasa de bits"
+#: airtime_mvc/application/controllers/LocaleController.php:80
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
+#: airtime_mvc/application/models/Block.php:1354
+msgid "BPM"
+msgstr "BPM"
+
+#: airtime_mvc/application/controllers/LocaleController.php:84
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
+#: airtime_mvc/application/models/Block.php:1361
+msgid "Encoded By"
+msgstr "Codificado por"
+
+#: airtime_mvc/application/controllers/LocaleController.php:89
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
+#: airtime_mvc/application/models/Block.php:1367
+msgid "Last Modified"
+msgstr "Último modificado"
+
+#: airtime_mvc/application/controllers/LocaleController.php:90
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
+#: airtime_mvc/application/models/Block.php:1368
+msgid "Last Played"
+msgstr "Último reproducido"
+
+#: airtime_mvc/application/controllers/LocaleController.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
+#: airtime_mvc/application/models/Block.php:1370
+msgid "Mime"
+msgstr "Mime"
+
+#: airtime_mvc/application/controllers/LocaleController.php:94
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
+#: airtime_mvc/application/models/Block.php:1372
+msgid "Owner"
+msgstr "Propietario"
+
+#: airtime_mvc/application/controllers/LocaleController.php:95
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
+#: airtime_mvc/application/models/Block.php:1373
+msgid "Replay Gain"
+msgstr "Ganancia en la repetición"
+
#: airtime_mvc/application/controllers/LocaleController.php:96
msgid "Sample Rate"
msgstr "Tasa de muestreo"
+#: airtime_mvc/application/controllers/LocaleController.php:97
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
+#: airtime_mvc/application/models/Block.php:1376
+msgid "Track Number"
+msgstr "Número de registro"
+
+#: airtime_mvc/application/controllers/LocaleController.php:98
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
+#: airtime_mvc/application/models/Block.php:1377
+msgid "Uploaded"
+msgstr "Cargado"
+
+#: airtime_mvc/application/controllers/LocaleController.php:99
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
+#: airtime_mvc/application/models/Block.php:1378
+msgid "Website"
+msgstr "Sitio web"
+
#: airtime_mvc/application/controllers/LocaleController.php:101
msgid "Loading..."
msgstr "Cargando..."
+#: airtime_mvc/application/controllers/LocaleController.php:102
+#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
+msgid "All"
+msgstr "Todo"
+
#: airtime_mvc/application/controllers/LocaleController.php:103
msgid "Files"
msgstr "Archivos"
+#: airtime_mvc/application/controllers/LocaleController.php:104
+#: airtime_mvc/application/layouts/scripts/layout.phtml:80
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
+msgid "Playlists"
+msgstr "Listas de reproducción"
+
+#: airtime_mvc/application/controllers/LocaleController.php:105
+#: airtime_mvc/application/layouts/scripts/layout.phtml:82
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
+msgid "Smart Blocks"
+msgstr "Bloques inteligentes"
+
#: airtime_mvc/application/controllers/LocaleController.php:106
msgid "Web Streams"
msgstr "Web streams"
@@ -3152,6 +877,74 @@ msgstr "Se guardó el bloque inteligente"
msgid "Processing..."
msgstr "Procesando..."
+#: airtime_mvc/application/controllers/LocaleController.php:151
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
+#: airtime_mvc/application/models/Block.php:1383
+msgid "Select modifier"
+msgstr "Elige un modificador"
+
+#: airtime_mvc/application/controllers/LocaleController.php:152
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
+#: airtime_mvc/application/models/Block.php:1384
+msgid "contains"
+msgstr "contiene"
+
+#: airtime_mvc/application/controllers/LocaleController.php:153
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
+#: airtime_mvc/application/models/Block.php:1385
+msgid "does not contain"
+msgstr "no contiene"
+
+#: airtime_mvc/application/controllers/LocaleController.php:154
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
+#: airtime_mvc/application/models/Block.php:1386
+#: airtime_mvc/application/models/Block.php:1390
+msgid "is"
+msgstr "es"
+
+#: airtime_mvc/application/controllers/LocaleController.php:155
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
+#: airtime_mvc/application/models/Block.php:1387
+#: airtime_mvc/application/models/Block.php:1391
+msgid "is not"
+msgstr "no es"
+
+#: airtime_mvc/application/controllers/LocaleController.php:156
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
+#: airtime_mvc/application/models/Block.php:1388
+msgid "starts with"
+msgstr "empieza con"
+
+#: airtime_mvc/application/controllers/LocaleController.php:157
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
+#: airtime_mvc/application/models/Block.php:1389
+msgid "ends with"
+msgstr "termina con"
+
+#: airtime_mvc/application/controllers/LocaleController.php:158
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
+#: airtime_mvc/application/models/Block.php:1392
+msgid "is greater than"
+msgstr "es mayor que"
+
+#: airtime_mvc/application/controllers/LocaleController.php:159
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
+#: airtime_mvc/application/models/Block.php:1393
+msgid "is less than"
+msgstr "es menor que"
+
+#: airtime_mvc/application/controllers/LocaleController.php:160
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
+#: airtime_mvc/application/models/Block.php:1394
+msgid "is in the range"
+msgstr "está en el rango de"
+
#: airtime_mvc/application/controllers/LocaleController.php:162
msgid "Choose Storage Folder"
msgstr "Elegir carpeta de almacenamiento"
@@ -3168,6 +961,11 @@ msgstr ""
"¿Estás seguro de querer cambiar la carpeta de almacenamiento?\n"
" ¡Esto eliminará los archivos de tu biblioteca de Airtime!"
+#: airtime_mvc/application/controllers/LocaleController.php:166
+#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
+msgid "Manage Media Folders"
+msgstr "Administrar las Carpetas de Medios"
+
#: airtime_mvc/application/controllers/LocaleController.php:167
msgid "Are you sure you want to remove the watched folder?"
msgstr "¿Estás seguro de que quieres quitar la carpeta monitoreada?"
@@ -3189,6 +987,11 @@ msgstr "Conectado al servidor de streaming"
msgid "The stream is disabled"
msgstr "Se desactivó el stream"
+#: airtime_mvc/application/controllers/LocaleController.php:173
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
+msgid "Getting information from the server..."
+msgstr "Obteniendo información desde el servidor..."
+
#: airtime_mvc/application/controllers/LocaleController.php:174
msgid "Can not connect to the streaming server"
msgstr "No es posible conectar el servidor de streaming"
@@ -3416,6 +1219,76 @@ msgstr ""
msgid "Month"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:249
+#: airtime_mvc/application/forms/GeneralPreferences.php:158
+msgid "Sunday"
+msgstr "domingo"
+
+#: airtime_mvc/application/controllers/LocaleController.php:250
+#: airtime_mvc/application/forms/GeneralPreferences.php:159
+msgid "Monday"
+msgstr "lunes"
+
+#: airtime_mvc/application/controllers/LocaleController.php:251
+#: airtime_mvc/application/forms/GeneralPreferences.php:160
+msgid "Tuesday"
+msgstr "martes"
+
+#: airtime_mvc/application/controllers/LocaleController.php:252
+#: airtime_mvc/application/forms/GeneralPreferences.php:161
+msgid "Wednesday"
+msgstr "miércoles"
+
+#: airtime_mvc/application/controllers/LocaleController.php:253
+#: airtime_mvc/application/forms/GeneralPreferences.php:162
+msgid "Thursday"
+msgstr "jueves"
+
+#: airtime_mvc/application/controllers/LocaleController.php:254
+#: airtime_mvc/application/forms/GeneralPreferences.php:163
+msgid "Friday"
+msgstr "Viernes"
+
+#: airtime_mvc/application/controllers/LocaleController.php:255
+#: airtime_mvc/application/forms/GeneralPreferences.php:164
+msgid "Saturday"
+msgstr "Sábado"
+
+#: airtime_mvc/application/controllers/LocaleController.php:256
+#: airtime_mvc/application/forms/AddShowRepeats.php:35
+msgid "Sun"
+msgstr "Dom"
+
+#: airtime_mvc/application/controllers/LocaleController.php:257
+#: airtime_mvc/application/forms/AddShowRepeats.php:36
+msgid "Mon"
+msgstr "Lun"
+
+#: airtime_mvc/application/controllers/LocaleController.php:258
+#: airtime_mvc/application/forms/AddShowRepeats.php:37
+msgid "Tue"
+msgstr "Mar"
+
+#: airtime_mvc/application/controllers/LocaleController.php:259
+#: airtime_mvc/application/forms/AddShowRepeats.php:38
+msgid "Wed"
+msgstr "Miér"
+
+#: airtime_mvc/application/controllers/LocaleController.php:260
+#: airtime_mvc/application/forms/AddShowRepeats.php:39
+msgid "Thu"
+msgstr "Jue"
+
+#: airtime_mvc/application/controllers/LocaleController.php:261
+#: airtime_mvc/application/forms/AddShowRepeats.php:40
+msgid "Fri"
+msgstr "Vier"
+
+#: airtime_mvc/application/controllers/LocaleController.php:262
+#: airtime_mvc/application/forms/AddShowRepeats.php:41
+msgid "Sat"
+msgstr "Sab"
+
#: airtime_mvc/application/controllers/LocaleController.php:263
msgid "Shows longer than their scheduled time will be cut off by a following show."
msgstr "Los shows que sean más largos que su segmento programado serán cortados por el show que continúe."
@@ -3425,7 +1298,7 @@ msgid "Cancel Current Show?"
msgstr "¿Deseas cancelar el show actual?"
#: airtime_mvc/application/controllers/LocaleController.php:265
-#: airtime_mvc/application/controllers/LocaleController.php:309
+#: airtime_mvc/application/controllers/LocaleController.php:312
msgid "Stop recording current show?"
msgstr "¿Deseas detener la grabación del show actual?"
@@ -3445,6 +1318,11 @@ msgstr "¿Eliminar todo el contenido?"
msgid "Delete selected item(s)?"
msgstr "¿Eliminar los ítems seleccionados?"
+#: airtime_mvc/application/controllers/LocaleController.php:273
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
+msgid "Start"
+msgstr "Inicio"
+
#: airtime_mvc/application/controllers/LocaleController.php:274
msgid "End"
msgstr "Final"
@@ -3453,580 +1331,467 @@ msgstr "Final"
msgid "Duration"
msgstr "Duración"
-#: airtime_mvc/application/controllers/LocaleController.php:283
+#: airtime_mvc/application/controllers/LocaleController.php:276
+msgid "Filtering out "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:277
+msgid " of "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:278
+msgid " records"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/layouts/scripts/layout.phtml:140
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
+#: airtime_mvc/application/models/Block.php:1358
+msgid "Cue In"
+msgstr "Cue in"
+
+#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/layouts/scripts/layout.phtml:147
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
+#: airtime_mvc/application/models/Block.php:1359
+msgid "Cue Out"
+msgstr "Cue out"
+
+#: airtime_mvc/application/controllers/LocaleController.php:286
#: airtime_mvc/application/layouts/scripts/layout.phtml:167
msgid "Fade In"
msgstr "Fade In"
-#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/controllers/LocaleController.php:287
#: airtime_mvc/application/layouts/scripts/layout.phtml:168
msgid "Fade Out"
msgstr "Fade out"
-#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/controllers/LocaleController.php:288
msgid "Show Empty"
msgstr "Show vacío"
-#: airtime_mvc/application/controllers/LocaleController.php:286
+#: airtime_mvc/application/controllers/LocaleController.php:289
msgid "Recording From Line In"
msgstr "Grabando desde la entrada"
-#: airtime_mvc/application/controllers/LocaleController.php:287
+#: airtime_mvc/application/controllers/LocaleController.php:290
msgid "Track preview"
msgstr "Previsualización de la pista"
-#: airtime_mvc/application/controllers/LocaleController.php:291
+#: airtime_mvc/application/controllers/LocaleController.php:294
msgid "Cannot schedule outside a show."
msgstr "No es posible programar un show externo."
-#: airtime_mvc/application/controllers/LocaleController.php:292
+#: airtime_mvc/application/controllers/LocaleController.php:295
msgid "Moving 1 Item"
msgstr "Moviendo 1 ítem"
-#: airtime_mvc/application/controllers/LocaleController.php:293
+#: airtime_mvc/application/controllers/LocaleController.php:296
#, php-format
msgid "Moving %s Items"
msgstr "Moviendo %s ítems."
-#: airtime_mvc/application/controllers/LocaleController.php:296
+#: airtime_mvc/application/controllers/LocaleController.php:297
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
+#: airtime_mvc/application/forms/Preferences.php:40
+#: airtime_mvc/application/forms/EditHistory.php:131
+#: airtime_mvc/application/forms/AddUser.php:110
+#: airtime_mvc/application/forms/PasswordChange.php:43
+#: airtime_mvc/application/forms/SupportSettings.php:131
+msgid "Save"
+msgstr "Guardar"
+
+#: airtime_mvc/application/controllers/LocaleController.php:298
+#: airtime_mvc/application/controllers/LocaleController.php:321
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
+#: airtime_mvc/application/forms/EditHistory.php:141
+#: airtime_mvc/application/forms/EditAudioMD.php:186
+msgid "Cancel"
+msgstr "Cancelar"
+
+#: airtime_mvc/application/controllers/LocaleController.php:299
msgid "Fade Editor"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:297
+#: airtime_mvc/application/controllers/LocaleController.php:300
msgid "Cue Editor"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:298
+#: airtime_mvc/application/controllers/LocaleController.php:301
msgid "Waveform features are available in a browser supporting the Web Audio API"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:301
+#: airtime_mvc/application/controllers/LocaleController.php:304
msgid "Select all"
msgstr "Seleccionar todos"
-#: airtime_mvc/application/controllers/LocaleController.php:302
+#: airtime_mvc/application/controllers/LocaleController.php:305
msgid "Select none"
msgstr "Seleccionar uno"
-#: airtime_mvc/application/controllers/LocaleController.php:303
+#: airtime_mvc/application/controllers/LocaleController.php:306
msgid "Trim overbooked shows"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:304
+#: airtime_mvc/application/controllers/LocaleController.php:307
msgid "Remove selected scheduled items"
msgstr "Eliminar los ítems programados seleccionados"
-#: airtime_mvc/application/controllers/LocaleController.php:305
+#: airtime_mvc/application/controllers/LocaleController.php:308
msgid "Jump to the current playing track"
msgstr "Saltar a la pista en reproducción actual"
-#: airtime_mvc/application/controllers/LocaleController.php:306
+#: airtime_mvc/application/controllers/LocaleController.php:309
msgid "Cancel current show"
msgstr "Cancelar el show actual"
-#: airtime_mvc/application/controllers/LocaleController.php:311
+#: airtime_mvc/application/controllers/LocaleController.php:314
msgid "Open library to add or remove content"
msgstr "Abrir biblioteca para agregar o eliminar contenido"
-#: airtime_mvc/application/controllers/LocaleController.php:312
+#: airtime_mvc/application/controllers/LocaleController.php:315
msgid "Add / Remove Content"
msgstr "Agregar / eliminar contenido"
#: airtime_mvc/application/controllers/LocaleController.php:317
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
+msgid "in use"
+msgstr "en uso"
+
+#: airtime_mvc/application/controllers/LocaleController.php:318
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
+msgid "Disk"
+msgstr "Disco"
+
+#: airtime_mvc/application/controllers/LocaleController.php:320
msgid "Look in"
msgstr "Buscar en"
-#: airtime_mvc/application/controllers/LocaleController.php:319
+#: airtime_mvc/application/controllers/LocaleController.php:322
msgid "Open"
msgstr "Abrir"
+#: airtime_mvc/application/controllers/LocaleController.php:324
+#: airtime_mvc/application/forms/AddUser.php:102
+msgid "Admin"
+msgstr "Admin"
+
#: airtime_mvc/application/controllers/LocaleController.php:325
+#: airtime_mvc/application/forms/AddUser.php:100
+msgid "DJ"
+msgstr "DJ"
+
+#: airtime_mvc/application/controllers/LocaleController.php:326
+#: airtime_mvc/application/forms/AddUser.php:101
+msgid "Program Manager"
+msgstr "Administrador de programa"
+
+#: airtime_mvc/application/controllers/LocaleController.php:327
+#: airtime_mvc/application/forms/AddUser.php:99
+msgid "Guest"
+msgstr "Invitado"
+
+#: airtime_mvc/application/controllers/LocaleController.php:328
msgid "Guests can do the following:"
msgstr "Los invitados pueden hacer lo siguiente:"
-#: airtime_mvc/application/controllers/LocaleController.php:326
+#: airtime_mvc/application/controllers/LocaleController.php:329
msgid "View schedule"
msgstr "Ver programación"
-#: airtime_mvc/application/controllers/LocaleController.php:327
+#: airtime_mvc/application/controllers/LocaleController.php:330
msgid "View show content"
msgstr "Ver contenido del show"
-#: airtime_mvc/application/controllers/LocaleController.php:328
+#: airtime_mvc/application/controllers/LocaleController.php:331
msgid "DJs can do the following:"
msgstr "Los DJ pueden hacer lo siguiente:"
-#: airtime_mvc/application/controllers/LocaleController.php:329
+#: airtime_mvc/application/controllers/LocaleController.php:332
msgid "Manage assigned show content"
msgstr "Administrar el contenido del show asignado"
-#: airtime_mvc/application/controllers/LocaleController.php:330
+#: airtime_mvc/application/controllers/LocaleController.php:333
msgid "Import media files"
msgstr "Importar archivos de medios"
-#: airtime_mvc/application/controllers/LocaleController.php:331
+#: airtime_mvc/application/controllers/LocaleController.php:334
msgid "Create playlists, smart blocks, and webstreams"
msgstr "Crear listas de reproducción, bloques inteligentes y webstreams"
-#: airtime_mvc/application/controllers/LocaleController.php:332
+#: airtime_mvc/application/controllers/LocaleController.php:335
msgid "Manage their own library content"
msgstr "Administrar su propia biblioteca de contenido"
-#: airtime_mvc/application/controllers/LocaleController.php:333
+#: airtime_mvc/application/controllers/LocaleController.php:336
msgid "Progam Managers can do the following:"
msgstr "Los encargados de programa pueden hacer lo siguiente:"
-#: airtime_mvc/application/controllers/LocaleController.php:334
+#: airtime_mvc/application/controllers/LocaleController.php:337
msgid "View and manage show content"
msgstr "Ver y administrar contenido del show"
-#: airtime_mvc/application/controllers/LocaleController.php:335
+#: airtime_mvc/application/controllers/LocaleController.php:338
msgid "Schedule shows"
msgstr "Programar shows"
-#: airtime_mvc/application/controllers/LocaleController.php:336
+#: airtime_mvc/application/controllers/LocaleController.php:339
msgid "Manage all library content"
msgstr "Administrar el contenido de toda la biblioteca"
-#: airtime_mvc/application/controllers/LocaleController.php:337
+#: airtime_mvc/application/controllers/LocaleController.php:340
msgid "Admins can do the following:"
msgstr "Los administradores pueden:"
-#: airtime_mvc/application/controllers/LocaleController.php:338
+#: airtime_mvc/application/controllers/LocaleController.php:341
msgid "Manage preferences"
msgstr "Administrar preferencias"
-#: airtime_mvc/application/controllers/LocaleController.php:339
+#: airtime_mvc/application/controllers/LocaleController.php:342
msgid "Manage users"
msgstr "Administrar usuarios"
-#: airtime_mvc/application/controllers/LocaleController.php:340
+#: airtime_mvc/application/controllers/LocaleController.php:343
msgid "Manage watched folders"
msgstr "Administrar folders monitoreados"
-#: airtime_mvc/application/controllers/LocaleController.php:342
+#: airtime_mvc/application/controllers/LocaleController.php:344
+#: airtime_mvc/application/forms/RegisterAirtime.php:116
+#: airtime_mvc/application/forms/SupportSettings.php:98
+msgid "Send support feedback"
+msgstr "Enviar retroalimentación respecto al soporte técnico"
+
+#: airtime_mvc/application/controllers/LocaleController.php:345
msgid "View system status"
msgstr "Ver el estatus del sistema"
-#: airtime_mvc/application/controllers/LocaleController.php:343
+#: airtime_mvc/application/controllers/LocaleController.php:346
msgid "Access playout history"
msgstr "Acceder al historial de reproducción"
-#: airtime_mvc/application/controllers/LocaleController.php:344
+#: airtime_mvc/application/controllers/LocaleController.php:347
msgid "View listener stats"
msgstr "Ver las estadísticas de los oyentes"
-#: airtime_mvc/application/controllers/LocaleController.php:346
+#: airtime_mvc/application/controllers/LocaleController.php:349
msgid "Show / hide columns"
msgstr "Mostrar / ocultar columnas"
-#: airtime_mvc/application/controllers/LocaleController.php:348
+#: airtime_mvc/application/controllers/LocaleController.php:351
msgid "From {from} to {to}"
msgstr "De {from} para {to}"
-#: airtime_mvc/application/controllers/LocaleController.php:349
+#: airtime_mvc/application/controllers/LocaleController.php:352
msgid "kbps"
msgstr "kbps"
-#: airtime_mvc/application/controllers/LocaleController.php:350
+#: airtime_mvc/application/controllers/LocaleController.php:353
msgid "yyyy-mm-dd"
msgstr "yyyy-mm-dd"
-#: airtime_mvc/application/controllers/LocaleController.php:351
+#: airtime_mvc/application/controllers/LocaleController.php:354
msgid "hh:mm:ss.t"
msgstr "hh:mm:ss.t"
-#: airtime_mvc/application/controllers/LocaleController.php:352
+#: airtime_mvc/application/controllers/LocaleController.php:355
msgid "kHz"
msgstr "kHz"
-#: airtime_mvc/application/controllers/LocaleController.php:355
+#: airtime_mvc/application/controllers/LocaleController.php:358
msgid "Su"
msgstr "Dom"
-#: airtime_mvc/application/controllers/LocaleController.php:356
+#: airtime_mvc/application/controllers/LocaleController.php:359
msgid "Mo"
msgstr "Lun"
-#: airtime_mvc/application/controllers/LocaleController.php:357
+#: airtime_mvc/application/controllers/LocaleController.php:360
msgid "Tu"
msgstr "Mar"
-#: airtime_mvc/application/controllers/LocaleController.php:358
+#: airtime_mvc/application/controllers/LocaleController.php:361
msgid "We"
msgstr "Miér"
-#: airtime_mvc/application/controllers/LocaleController.php:359
+#: airtime_mvc/application/controllers/LocaleController.php:362
msgid "Th"
msgstr "Jue"
-#: airtime_mvc/application/controllers/LocaleController.php:360
+#: airtime_mvc/application/controllers/LocaleController.php:363
msgid "Fr"
msgstr "Vier"
-#: airtime_mvc/application/controllers/LocaleController.php:361
+#: airtime_mvc/application/controllers/LocaleController.php:364
msgid "Sa"
msgstr "Sáb"
-#: airtime_mvc/application/controllers/LocaleController.php:364
+#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
+msgid "Close"
+msgstr "Cerrar"
+
+#: airtime_mvc/application/controllers/LocaleController.php:367
msgid "Hour"
msgstr "Hora"
-#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:368
msgid "Minute"
msgstr "Minuto"
-#: airtime_mvc/application/controllers/LocaleController.php:366
+#: airtime_mvc/application/controllers/LocaleController.php:369
msgid "Done"
msgstr "Hecho"
-#: airtime_mvc/application/controllers/LocaleController.php:369
+#: airtime_mvc/application/controllers/LocaleController.php:372
msgid "Select files"
msgstr "Seleccione los archivos"
-#: airtime_mvc/application/controllers/LocaleController.php:370
-#: airtime_mvc/application/controllers/LocaleController.php:371
+#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:374
msgid "Add files to the upload queue and click the start button."
msgstr "Añade los archivos a la cola de carga y haz clic en el botón de iniciar."
-#: airtime_mvc/application/controllers/LocaleController.php:372
-#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:376
msgid "Status"
msgstr "Estatus"
-#: airtime_mvc/application/controllers/LocaleController.php:374
+#: airtime_mvc/application/controllers/LocaleController.php:377
msgid "Add Files"
msgstr "Añadir archivos"
-#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:378
msgid "Stop Upload"
msgstr "Detener carga"
-#: airtime_mvc/application/controllers/LocaleController.php:376
+#: airtime_mvc/application/controllers/LocaleController.php:379
msgid "Start upload"
msgstr "Iniciar carga"
-#: airtime_mvc/application/controllers/LocaleController.php:377
+#: airtime_mvc/application/controllers/LocaleController.php:380
msgid "Add files"
msgstr "Añadir archivos"
-#: airtime_mvc/application/controllers/LocaleController.php:378
+#: airtime_mvc/application/controllers/LocaleController.php:381
#, php-format
msgid "Uploaded %d/%d files"
msgstr "Archivos %d/%d cargados"
-#: airtime_mvc/application/controllers/LocaleController.php:379
+#: airtime_mvc/application/controllers/LocaleController.php:382
msgid "N/A"
msgstr "No disponible"
-#: airtime_mvc/application/controllers/LocaleController.php:380
+#: airtime_mvc/application/controllers/LocaleController.php:383
msgid "Drag files here."
msgstr "Arrastra los archivos a esta área."
-#: airtime_mvc/application/controllers/LocaleController.php:381
+#: airtime_mvc/application/controllers/LocaleController.php:384
msgid "File extension error."
msgstr "Error de extensión del archivo."
-#: airtime_mvc/application/controllers/LocaleController.php:382
+#: airtime_mvc/application/controllers/LocaleController.php:385
msgid "File size error."
msgstr "Error de tamaño del archivo."
-#: airtime_mvc/application/controllers/LocaleController.php:383
+#: airtime_mvc/application/controllers/LocaleController.php:386
msgid "File count error."
msgstr "Error de cuenta del archivo."
-#: airtime_mvc/application/controllers/LocaleController.php:384
+#: airtime_mvc/application/controllers/LocaleController.php:387
msgid "Init error."
msgstr "Error de inicialización."
-#: airtime_mvc/application/controllers/LocaleController.php:385
+#: airtime_mvc/application/controllers/LocaleController.php:388
msgid "HTTP Error."
msgstr "Error de HTTP."
-#: airtime_mvc/application/controllers/LocaleController.php:386
+#: airtime_mvc/application/controllers/LocaleController.php:389
msgid "Security error."
msgstr "Error de seguridad."
-#: airtime_mvc/application/controllers/LocaleController.php:387
+#: airtime_mvc/application/controllers/LocaleController.php:390
msgid "Generic error."
msgstr "Error genérico."
-#: airtime_mvc/application/controllers/LocaleController.php:388
+#: airtime_mvc/application/controllers/LocaleController.php:391
msgid "IO error."
msgstr "Error IO."
-#: airtime_mvc/application/controllers/LocaleController.php:389
+#: airtime_mvc/application/controllers/LocaleController.php:392
#, php-format
msgid "File: %s"
msgstr "Archivo: %s"
-#: airtime_mvc/application/controllers/LocaleController.php:391
+#: airtime_mvc/application/controllers/LocaleController.php:394
#, php-format
msgid "%d files queued"
msgstr "%d archivos en cola"
-#: airtime_mvc/application/controllers/LocaleController.php:392
+#: airtime_mvc/application/controllers/LocaleController.php:395
msgid "File: %f, size: %s, max file size: %m"
msgstr "Archivo: %f, tamaño: %s, tamaño máximo del archivo: %m"
-#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/controllers/LocaleController.php:396
msgid "Upload URL might be wrong or doesn't exist"
msgstr "Puede que el URL de carga no esté funcionando o no exista"
-#: airtime_mvc/application/controllers/LocaleController.php:394
+#: airtime_mvc/application/controllers/LocaleController.php:397
msgid "Error: File too large: "
msgstr "Error: el archivo es demasiado grande:"
-#: airtime_mvc/application/controllers/LocaleController.php:395
+#: airtime_mvc/application/controllers/LocaleController.php:398
msgid "Error: Invalid file extension: "
msgstr "Error: extensión de archivo inválida:"
-#: airtime_mvc/application/controllers/LocaleController.php:398
+#: airtime_mvc/application/controllers/LocaleController.php:400
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
+msgid "Set Default"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:401
msgid "Create Entry"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:399
+#: airtime_mvc/application/controllers/LocaleController.php:402
msgid "Edit History Record"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:402
+#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
+#: airtime_mvc/application/forms/EditHistoryItem.php:57
+msgid "No Show"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:405
#, php-format
msgid "Copied %s row%s to the clipboard"
msgstr "Se copiaron %s celda%s al portapapeles"
-#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/controllers/LocaleController.php:406
#, php-format
msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished."
msgstr "Vista%s de %simpresión Por favor usa tu navegador para imprimir esta tabla. Presiona escape cuando termines."
-#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/controllers/LocaleController.php:407
msgid "New Show"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:405
+#: airtime_mvc/application/controllers/LocaleController.php:408
msgid "New Log Entry"
msgstr ""
-#: airtime_mvc/application/controllers/ScheduleController.php:389
-#, php-format
-msgid "Rebroadcast of show %s from %s at %s"
-msgstr "Retransmitir el show %s de %s a %s "
-
-#: airtime_mvc/application/controllers/ScheduleController.php:712
-#: airtime_mvc/application/controllers/LibraryController.php:131
-msgid "Download"
-msgstr "Descargar"
-
-#: airtime_mvc/application/controllers/ErrorController.php:78
-msgid "Page not found."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:87
-msgid "The requested action is not supported."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:98
-msgid "You do not have permission to access this resource."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:109
-msgid "An internal application error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ListenerstatController.php:51
-msgid "Please make sure admin user/password is correct on System->Streams page."
-msgstr "Verifica que la contraseña del usuario admin. esté correcta en Sistema->página de streams."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:53
-#, php-format
-msgid "You are viewing an older version of %s"
-msgstr "Estas viendo una versión antigua de %s"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:140
-msgid "You cannot add tracks to dynamic blocks."
-msgstr "No puedes añadir pistas a los bloques dinámicos."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:147
-#: airtime_mvc/application/controllers/LibraryController.php:31
-#, php-format
-msgid "%s not found"
-msgstr "No se encontró %s"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:161
-#, php-format
-msgid "You don't have permission to delete selected %s(s)."
-msgstr "No tienes permiso para eliminar los %s(s) seleccionados."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:168
-#: airtime_mvc/application/controllers/LibraryController.php:40
-msgid "Something went wrong."
-msgstr "Algo falló."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:174
-msgid "You can only add tracks to smart block."
-msgstr "Solo puedes añadir pistas a los bloques inteligentes."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:192
-msgid "Untitled Playlist"
-msgstr "Lista de reproducción sin nombre"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:194
-msgid "Untitled Smart Block"
-msgstr "Bloque inteligente sin nombre"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:522
-msgid "Unknown Playlist"
-msgstr "Lista de reproducción desconocida"
-
-#: airtime_mvc/application/controllers/LoginController.php:43
-msgid "Please enter your username and password."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:93
-msgid "Wrong username or password provided. Please try again."
-msgstr "El usuario o la contraseña son incorrectos. Por favor intenta de nuevo."
-
-#: airtime_mvc/application/controllers/LoginController.php:167
-msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
-msgstr "No fue posible enviar el correo electrónico. Revisa tu configuración de correo y asegúrate de que sea correcta."
-
-#: airtime_mvc/application/controllers/LoginController.php:173
-msgid "There was a problem with the username or email address you entered."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:35
-#: airtime_mvc/application/controllers/DashboardController.php:84
-msgid "You don't have permission to disconnect source."
-msgstr "No tienes permiso para desconectar la fuente."
-
-#: airtime_mvc/application/controllers/DashboardController.php:37
-#: airtime_mvc/application/controllers/DashboardController.php:86
-msgid "There is no source connected to this input."
-msgstr "No hay fuente conectada a esta entrada."
-
-#: airtime_mvc/application/controllers/DashboardController.php:81
-msgid "You don't have permission to switch source."
-msgstr "No tienes permiso para prender/apagar la fuente."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:72
-msgid "Preferences updated."
-msgstr "Se actualizaron las preferencias."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:115
-msgid "Support setting updated."
-msgstr "Se actualizaron las configuraciones de soporte."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:123
-msgid "Support Feedback"
-msgstr "Tu estación en nuestro catálogo"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:251
-msgid "Stream Setting Updated."
-msgstr "Se actualizaron las configuraciones del stream."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:342
-msgid "path should be specified"
-msgstr "se debe especificar la ruta"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:437
-msgid "Problem with Liquidsoap..."
-msgstr "Hay un problema con Liquidsoap..."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:493
-msgid "Request method not accepted"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:86
-msgid "User added successfully!"
-msgstr "Se agregó exitosamente el usuario."
-
-#: airtime_mvc/application/controllers/UserController.php:88
-msgid "User updated successfully!"
-msgstr "Se actualizó exitosamente el usuario."
-
-#: airtime_mvc/application/controllers/UserController.php:187
-msgid "Settings updated successfully!"
-msgstr "¡Configuraciones actualizadas con éxito!"
-
-#: airtime_mvc/application/controllers/WebstreamController.php:28
-#: airtime_mvc/application/controllers/WebstreamController.php:32
-msgid "Untitled Webstream"
-msgstr "Webstream si nombre"
-
-#: airtime_mvc/application/controllers/WebstreamController.php:150
-msgid "Webstream saved."
-msgstr "Se almacenó el webstream"
-
-#: airtime_mvc/application/controllers/WebstreamController.php:158
-msgid "Invalid form values."
-msgstr "Los valores en el formulario son inválidos."
-
-#: airtime_mvc/application/controllers/LibraryController.php:95
-#: airtime_mvc/application/controllers/ShowbuilderController.php:136
-msgid "Preview"
-msgstr "Previsualizar"
-
-#: airtime_mvc/application/controllers/LibraryController.php:115
-#: airtime_mvc/application/controllers/LibraryController.php:177
-#: airtime_mvc/application/controllers/LibraryController.php:200
-msgid "Add to Playlist"
-msgstr "Agregar a lista de reproducción."
-
-#: airtime_mvc/application/controllers/LibraryController.php:117
-msgid "Add to Smart Block"
-msgstr "Agregar un bloque inteligente"
-
-#: airtime_mvc/application/controllers/LibraryController.php:147
-msgid "View track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:148
-msgid "Remove track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:154
-#: airtime_mvc/application/controllers/LibraryController.php:159
-msgid "Upload track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:169
-msgid "Duplicate Playlist"
-msgstr "Lista de reproducción duplicada"
-
-#: airtime_mvc/application/controllers/LibraryController.php:213
-msgid "No action available"
-msgstr "No una acción disponible"
-
-#: airtime_mvc/application/controllers/LibraryController.php:233
-msgid "You don't have permission to delete selected items."
-msgstr "No tienes permiso para eliminar los ítems seleccionados."
-
-#: airtime_mvc/application/controllers/LibraryController.php:279
-msgid "Could not delete file because it is scheduled in the future."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:282
-msgid "Could not delete file(s)."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:322
-#, php-format
-msgid "Copy of %s"
-msgstr "Copia de %s"
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
-msgid ""
-"To configure and use the embeddable player you must:
\n"
-" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
-" 2. Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
-msgid ""
-"To use the embeddable weekly schedule widget you must:
\n"
-" Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
#: airtime_mvc/application/controllers/ShowbuilderController.php:138
msgid "Select cursor"
msgstr "Elegir cursor"
@@ -4039,39 +1804,78 @@ msgstr "Eliminar cursor"
msgid "show does not exist"
msgstr "El show no existe"
-#: airtime_mvc/application/controllers/ApiController.php:79
-msgid "You are not allowed to access this resource."
-msgstr "No tienes permiso para acceder a esta fuente."
-
-#: airtime_mvc/application/controllers/ApiController.php:244
-#: airtime_mvc/application/controllers/ApiController.php:317
-#: airtime_mvc/application/controllers/ApiController.php:392
-#: airtime_mvc/application/controllers/ApiController.php:435
-#: airtime_mvc/application/controllers/ApiController.php:474
-#: airtime_mvc/application/controllers/ApiController.php:507
-msgid "You are not allowed to access this resource. "
-msgstr "No tienes permiso para acceder a esta fuente."
-
-#: airtime_mvc/application/controllers/ApiController.php:698
-#: airtime_mvc/application/controllers/ApiController.php:718
-#: airtime_mvc/application/controllers/ApiController.php:730
+#: airtime_mvc/application/controllers/ScheduleController.php:389
#, php-format
-msgid "File does not exist in %s"
+msgid "Rebroadcast of show %s from %s at %s"
+msgstr "Retransmitir el show %s de %s a %s "
+
+#: airtime_mvc/application/common/UsabilityHints.php:55
+msgid "Upload some tracks below to add them to your library!"
msgstr ""
-#: airtime_mvc/application/controllers/ApiController.php:781
-msgid "Bad request. no 'mode' parameter passed."
-msgstr "Solicitud errónea. Ningún parámetro 'mode' pasó."
-
-#: airtime_mvc/application/controllers/ApiController.php:791
-msgid "Bad request. 'mode' parameter is invalid"
-msgstr "Solicitud errónea. El parámetro 'mode' es inválido"
-
-#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#: airtime_mvc/application/common/UsabilityHints.php:57
#, php-format
-msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
msgstr ""
+#: airtime_mvc/application/common/UsabilityHints.php:63
+msgid "Click the 'New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:65
+#, php-format
+msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:73
+msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:75
+#, php-format
+msgid ""
+"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
+" %sCreate an unlinked show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:80
+msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:82
+#, php-format
+msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:89
+msgid "Click on the show starting next and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:91
+#, php-format
+msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/DateHelper.php:213
+#, php-format
+msgid "The year %s must be within the range of 1753 - 9999"
+msgstr "El año %s debe estar dentro del rango de 1753-9999"
+
+#: airtime_mvc/application/common/DateHelper.php:216
+#, php-format
+msgid "%s-%s-%s is not a valid date"
+msgstr "%s-%s-%s no es una fecha válida"
+
+#: airtime_mvc/application/common/DateHelper.php:240
+#, php-format
+msgid "%s:%s:%s is not a valid time"
+msgstr "%s:%s:%s no es una hora válida"
+
+#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
+msgid "Live stream"
+msgstr "Stream en vivo"
+
#: airtime_mvc/application/layouts/scripts/layout.phtml:63
msgid "Smart Block"
msgstr ""
@@ -4084,6 +1888,17 @@ msgstr ""
msgid "Upload"
msgstr ""
+#: airtime_mvc/application/layouts/scripts/layout.phtml:76
+#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
+msgid "Dashboard"
+msgstr ""
+
+#: airtime_mvc/application/layouts/scripts/layout.phtml:84
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
+msgid "Webstreams"
+msgstr ""
+
#: airtime_mvc/application/layouts/scripts/layout.phtml:135
#: airtime_mvc/application/layouts/scripts/layout.phtml:161
msgid "Play"
@@ -4106,389 +1921,2128 @@ msgstr ""
msgid "Cursor"
msgstr ""
-#~ msgid "Show:"
-#~ msgstr "Show:"
+#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#, php-format
+msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
+msgid "Drop files here or click to browse your computer."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
+msgid "Failed"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
+msgid "Pending"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
+msgid "Recent Uploads"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
+msgid "Share"
+msgstr "Compartir"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
+msgid "Select stream:"
+msgstr "Seleccionar stream:"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
+msgid "mute"
+msgstr "silenciar"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
+msgid "unmute"
+msgstr "desactivar silencio"
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
+msgid "About"
+msgstr "Sobre nosotros"
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
+#, php-format
+msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
+#, php-format
+msgid "%1$s %2$s is distributed under the %3$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
+#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
+#, php-format
+msgid "Welcome to %s!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
+#, php-format
+msgid "Here's how you can get started using %s to automate your broadcasts: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
+msgid "Upload audio tracks"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
+msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
+msgid "Schedule a show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
+msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
+msgid "Add tracks to your show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
+msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
+msgid "Now you're good to go!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
+#, php-format
+msgid "For more detailed help, read the %suser manual%s."
+msgstr "Para una ayuda más detallada, lee el manual%s del %susuario."
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
+#: airtime_mvc/application/configs/navigation.php:40
+msgid "Weekly Schedule"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
+#: airtime_mvc/application/forms/Player.php:77
+msgid "Preview:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
+#: airtime_mvc/application/configs/navigation.php:34
+msgid "Player"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:97
+msgid "Playout History"
+msgstr "Historial de reproducción"
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
+msgid "Log Sheet"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
+msgid "File Summary"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
+msgid "Show Summary"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
+msgid "Expand Static Block"
+msgstr "Expandir bloque estático"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
+msgid "Expand Dynamic Block"
+msgstr "Expandir bloque dinámico"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
+msgid "Choose some search criteria above and click Generate to create this playlist."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
+msgid "A track list will be generated when you schedule this smart block into a show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
+msgid "Drag tracks here from your library to add them to the playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
+msgid "Editing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:26
+msgid "Name:"
+msgstr "Nombre:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
+#: airtime_mvc/application/forms/AddShowWhat.php:54
+msgid "Description:"
+msgstr "Descripción:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
+#: airtime_mvc/application/forms/AddShowWhen.php:89
+msgid "Duration:"
+msgstr "Duración:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
+msgid "Toggle Details"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+msgid "Shuffle playlist"
+msgstr "Lista de reproducción aleatoria"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
+msgid "Shuffle"
+msgstr "Reproducción aleatoria"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
+msgid "Playlist crossfade"
+msgstr "Transición (crossfade) de la lista de reproducción"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+msgid "Empty playlist content"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Clear"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+msgid "Fade in: "
+msgstr "Fade in:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "Fade out: "
+msgstr "Fade out:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+msgid "Save playlist"
+msgstr "Almacenar lista de reproducción"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
+msgid "No open playlist"
+msgstr "No hay listas de reproducción abiertas"
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
+msgid "Show Waveform"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "(ss.t)"
+msgstr "(ss.t)"
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Remove all content from this smart block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
+msgid "No smart block currently open"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+msgid "Cue In: "
+msgstr "Cue in:"
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "(hh:mm:ss.t)"
+msgstr "(hh:mm:ss.t)"
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "Cue Out: "
+msgstr "Cue out:"
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
+msgid "Original Length:"
+msgstr "Duración original:"
+
+#: airtime_mvc/application/views/scripts/preference/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:56
+msgid "General"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
+msgid "Stream Settings"
+msgstr "Configuración de stream"
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
+msgid "Global"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
+msgid "dB"
+msgstr "dB"
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
+msgid "Output Streams"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:3
+#: airtime_mvc/application/forms/Login.php:83
+msgid "Login"
+msgstr "Ingreso"
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:7
+#, php-format
+msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
+msgid "Email Sent!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
+msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
+msgid "Back"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
+msgid "Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
+msgid "New password"
+msgstr "Nueva contraseña"
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
+msgid "Please enter and confirm your new password in the fields below."
+msgstr "Por favor ingrese y confirme una nueva cotnraseña en los campos que aparecen a continuación."
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
+msgid "Manage Users"
+msgstr "Administrar usuarios"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
+msgid "New User"
+msgstr "Nuevo usuario"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
+msgid "id"
+msgstr "id"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
+#: airtime_mvc/application/forms/PasswordRestore.php:25
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
+msgid "Username"
+msgstr "Usuario"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
+msgid "First Name"
+msgstr "Nombre"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
+msgid "Last Name"
+msgstr "Apellido"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
+msgid "User Type"
+msgstr "Tipo de usuario"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
+#, php-format
+msgid "Super Admin details can be changed in your Billing Settings."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
+msgid "Find Shows"
+msgstr "Encontrar shows"
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
+msgid "Choose Show Instance"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
+msgid "Find"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
+#: airtime_mvc/application/configs/navigation.php:61
+msgid "My Profile"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
+#, php-format
+msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
+msgid "Repeat Days:"
+msgstr "Días en que se repite:"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
+#: airtime_mvc/application/forms/GeneralPreferences.php:53
+#: airtime_mvc/application/forms/AddShowStyle.php:64
+msgid "Remove"
+msgstr "Elimina"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
+msgid "Add"
+msgstr "Añadir"
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
+msgid "Show Source"
+msgstr "Fuente del show"
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
+msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
+msgid "Register Airtime"
+msgstr "Registrar Airtime"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
+#, php-format
+msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
+#, php-format
+msgid "Click the box below to promote your station on %s."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
+msgid "(Required)"
+msgstr "(Requerido)"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
+msgid "(for verification purposes only, will not be published)"
+msgstr "(únicamente para fines de verificación, no será publicado)"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
+#: airtime_mvc/application/forms/GeneralPreferences.php:43
+msgid "Note: Anything larger than 600x600 will be resized."
+msgstr "Nota: cualquier cosa mayor a 600x600 será redimensionada."
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
+msgid "Show me what I am sending "
+msgstr "Muéstrame lo que estoy enviando"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
+msgid "Terms and Conditions"
+msgstr "Términos y condiciones"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
+msgid "Choose Days:"
+msgstr "Elige los días:"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
+msgid "Search Criteria:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
+msgid "New Criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
+msgid "or"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
+msgid "and"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
+msgid "New Modifier"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
+msgid " to "
+msgstr "para"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
+msgid "files meet the criteria"
+msgstr "los archivos si cumplen con los criterios"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
+msgid "file meets the criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
+msgid "Filter History"
+msgstr "Filtrar historial"
+
+#: airtime_mvc/application/views/scripts/form/login.phtml:41
+msgid "Forgot your password?"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
+msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
+msgstr "(Para poder promocionar tu estación, 'Send support feedback' (Enviar retroalimentación de soporte) debe estar activado)."
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
+msgid "Stream "
+msgstr "Stream"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
+msgid "Additional Options"
+msgstr "Optiones adicionales"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
+msgid "The following info will be displayed to listeners in their media player:"
+msgstr "La siguiente información se desplegará a los oyentes en sus reproductores:"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
+msgid "(Your radio station website)"
+msgstr "(El sitio web de tu estación)"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
+msgid "Stream URL: "
+msgstr "URL del stream:"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
+msgid "Choose folder"
+msgstr "Elija la carpeta"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
+msgid "Set"
+msgstr "Fijar"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
+msgid "Current Import Folder:"
+msgstr "Carpeta actual de importación:"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
+#, php-format
+msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
+msgid "Remove watched directory"
+msgstr "Remover el directorio monitoreado"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
+msgid "You are not watching any media folders."
+msgstr "No está monitoreando ninguna carpeta de medios."
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
+msgid "Live Broadcasting"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
+msgid "Master Source"
+msgstr "Fuente maestra "
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
+msgid "Use these settings in your broadcasting software to stream live at any time."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
+msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
+msgid "TuneIn Settings"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
+msgid "SoundCloud Settings"
+msgstr "Configuración de SoundCloud"
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
+msgid "Dangerous Options"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Add this show"
+msgstr "Añadir este show"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Update show"
+msgstr "Actualizar show"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
+msgid "What"
+msgstr "Que"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
+msgid "When"
+msgstr "Cuando"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
+msgid "Live Stream Input"
+msgstr "Entrada de stream en vivo"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
+msgid "Who"
+msgstr "Quien"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
+msgid "Style"
+msgstr "Estilo"
+
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
+msgid "Disk Space"
+msgstr "Espacio en disco"
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:3
+msgid "File import in progress..."
+msgstr "Importación del archivo en progreso..."
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:10
+#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
+msgid "Advanced Search Options"
+msgstr "Opciones de búsqueda avanzada"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
+#: airtime_mvc/application/forms/EditAudioMD.php:24
+#: airtime_mvc/application/forms/Player.php:15
+msgid "Title:"
+msgstr "Título:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
+#: airtime_mvc/application/forms/EditAudioMD.php:34
+msgid "Creator:"
+msgstr "Creador:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
+#: airtime_mvc/application/forms/EditAudioMD.php:44
+msgid "Album:"
+msgstr "Álbum:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
+msgid "Track:"
+msgstr "Pista:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
+msgid "Length:"
+msgstr "Duración:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
+msgid "Sample Rate:"
+msgstr "Tasa de muestreo:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
+msgid "Bit Rate:"
+msgstr "Tasa de bits:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
+#: airtime_mvc/application/forms/EditAudioMD.php:115
+msgid "Mood:"
+msgstr "Estilo (mood):"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:45
+#: airtime_mvc/application/forms/EditAudioMD.php:62
+msgid "Genre:"
+msgstr "Género:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
+#: airtime_mvc/application/forms/EditAudioMD.php:72
+msgid "Year:"
+msgstr "Año:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
+#: airtime_mvc/application/forms/EditAudioMD.php:85
+msgid "Label:"
+msgstr "Sello:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
+#: airtime_mvc/application/forms/EditAudioMD.php:125
+msgid "BPM:"
+msgstr "BPM:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
+#: airtime_mvc/application/forms/EditAudioMD.php:95
+msgid "Composer:"
+msgstr "Compositor:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
+#: airtime_mvc/application/forms/EditAudioMD.php:105
+msgid "Conductor:"
+msgstr "Conductor:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
+#: airtime_mvc/application/forms/EditAudioMD.php:135
+msgid "Copyright:"
+msgstr "Derechos de autor:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
+msgid "Isrc Number:"
+msgstr "Número ISRC"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
+#: airtime_mvc/application/forms/EditAudioMD.php:155
+msgid "Website:"
+msgstr "Sitio web:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
+#: airtime_mvc/application/forms/EditAudioMD.php:165
+#: airtime_mvc/application/forms/EditUser.php:119
+#: airtime_mvc/application/forms/Login.php:68
+msgid "Language:"
+msgstr "Idioma:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
+msgid "File Path:"
+msgstr "Ruta del archivo:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
+msgid "Web Stream"
+msgstr "Stream web"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
+msgid "Dynamic Smart Block"
+msgstr "Bloque inteligente dinámico"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
+msgid "Static Smart Block"
+msgstr "Bloque inteligente estático"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
+msgid "Audio Track"
+msgstr "Pista de audio"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
+msgid "Playlist Contents: "
+msgstr "Contenido de la lista de reproducción:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
+msgid "Static Smart Block Contents: "
+msgstr "Contenido del bloque inteligente estático:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
+msgid "Dynamic Smart Block Criteria: "
+msgstr "Criterios del bloque inteligente dinámico:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
+msgid "Limit to "
+msgstr "Límite hasta"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
+#: airtime_mvc/application/forms/AddShowWhat.php:36
+msgid "URL:"
+msgstr "URL:"
+
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
+msgid "Viewing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
+msgid "Listeners"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
+msgid "Stream Data Collection Status"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
+msgid "Your trial expires in"
+msgstr "Tu prueba expira el"
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
+msgid "days"
+msgstr "días"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
+msgid "Previous:"
+msgstr "Previamente:"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
+msgid "Next:"
+msgstr "Próximamente:"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
+msgid "Source Streams"
+msgstr "Streams fuente"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
+msgid "ON AIR"
+msgstr "AL AIRE"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
+msgid "Listen"
+msgstr "Escuchar"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
+msgid "Logout"
+msgstr "Salir"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
+msgid "Playout History Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
+msgid "Log Sheet Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
+msgid "New Log Sheet Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
+msgid "No Log Sheet Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
+msgid "File Summary Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
+msgid "New File Summary Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
+msgid "No File Summary Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
+msgid "Creating File Summary Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
+msgid "Creating Log Sheet Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
+msgid "Name"
+msgstr "Nombre"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
+msgid "Add more elements"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
+msgid "Add New Field"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
+msgid "Set Default Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
+msgid "Description"
+msgstr "Descripción"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
+msgid "Stream URL:"
+msgstr "URL del stream:"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
+msgid "Default Length:"
+msgstr "Duración por defecto:"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
+msgid "No webstream"
+msgstr "No existe un webstream"
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
+#: airtime_mvc/application/views/scripts/error/error.phtml:6
+msgid "An error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
+msgid "Access Denied!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
+msgid "You do not have permission to access this page!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
+#: airtime_mvc/application/views/scripts/error/error.phtml:14
+#: airtime_mvc/application/configs/navigation.php:143
+msgid "Help"
+msgstr "Ayuda"
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
+msgid "Oops!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
+msgid "Something went wrong!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
+msgid "Bad Request!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
+msgid "The requested action is not supported!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
+msgid "Page not found!"
+msgstr "¡Página no encontrada!"
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
+msgid "We couldn't find the page you were looking for."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error.phtml:12
+msgid "Looks like the page you were looking for doesn't exist!"
+msgstr "¡Parece que la página que buscas no existe!"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
+msgid "previous"
+msgstr "previo"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
+msgid "play"
+msgstr "reproducir"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
+msgid "pause"
+msgstr "pausa"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
+msgid "next"
+msgstr "próximo"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
+msgid "stop"
+msgstr "parar"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
+msgid "max volume"
+msgstr "volumen máximo"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
+msgid "Update Required"
+msgstr "Se requiere actualizar"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
+#, php-format
+msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
+msgstr "Para reproducir estas pistas necesitarás actualizar tu navegador a una versión más reciente o atualizar tus plugin%s de %sFlash"
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
+msgid "Plan type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
+msgid "Billing cycle:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
+msgid "Payment method:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
+msgid "PayPal"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
+msgid "Credit Card via 2Checkout"
+msgstr ""
+
+#: airtime_mvc/application/forms/DateRange.php:16
+#: airtime_mvc/application/forms/ShowBuilder.php:18
+msgid "Date Start:"
+msgstr "Fecha de Inicio:"
+
+#: airtime_mvc/application/forms/DateRange.php:35
+#: airtime_mvc/application/forms/DateRange.php:63
+#: airtime_mvc/application/forms/ShowBuilder.php:37
+#: airtime_mvc/application/forms/ShowBuilder.php:65
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
+msgid "Invalid character entered"
+msgstr "Se introdujo un caracter inválido"
+
+#: airtime_mvc/application/forms/DateRange.php:44
+#: airtime_mvc/application/forms/ShowBuilder.php:46
+#: airtime_mvc/application/forms/AddShowRepeats.php:56
+msgid "Date End:"
+msgstr "Fecha de Finalización:"
+
+#: airtime_mvc/application/forms/ShowBuilder.php:72
+#: airtime_mvc/application/forms/ShowBuilder.php:88
+msgid "Filter by Show"
+msgstr ""
+
+#: airtime_mvc/application/forms/ShowBuilder.php:80
+msgid "All My Shows:"
+msgstr "Todos mis shows:"
+
+#: airtime_mvc/application/forms/AddShowWho.php:10
+msgid "Search Users:"
+msgstr "Búsqueda de usuarios:"
+
+#: airtime_mvc/application/forms/AddShowWho.php:24
+msgid "DJs:"
+msgstr "DJs:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:30
+#: airtime_mvc/application/forms/GeneralPreferences.php:25
+#: airtime_mvc/application/forms/SupportSettings.php:18
+msgid "Station Name"
+msgstr "Nombre de la estación"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:39
+#: airtime_mvc/application/forms/SupportSettings.php:31
+msgid "Phone:"
+msgstr "Teléfono:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:51
+#: airtime_mvc/application/forms/AddUser.php:67
+#: airtime_mvc/application/forms/EditUser.php:83
+#: airtime_mvc/application/forms/SupportSettings.php:43
+msgid "Email:"
+msgstr "Correo electrónico"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:62
+#: airtime_mvc/application/forms/SupportSettings.php:54
+msgid "Station Web Site:"
+msgstr "Sitio web de la estación:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:73
+#: airtime_mvc/application/forms/SupportSettings.php:65
+msgid "Country:"
+msgstr "País:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:84
+#: airtime_mvc/application/forms/SupportSettings.php:76
+msgid "City:"
+msgstr "Ciudad:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:96
+#: airtime_mvc/application/forms/SupportSettings.php:88
+msgid "Station Description:"
+msgstr "Descripción de la estación:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:106
+#: airtime_mvc/application/forms/GeneralPreferences.php:42
+msgid "Station Logo:"
+msgstr "Logo de la estación:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:126
+#: airtime_mvc/application/forms/SupportSettings.php:108
+#, php-format
+msgid "Promote my station on %s"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:151
+#: airtime_mvc/application/forms/SupportSettings.php:120
+#, php-format
+msgid "By checking this box, I agree to %s's %sprivacy policy%s."
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:169
+#: airtime_mvc/application/forms/SupportSettings.php:143
+msgid "You have to agree to privacy policy."
+msgstr "Debes aceptar las políticas de privacidad."
+
+#: airtime_mvc/application/forms/AddShowRR.php:10
+msgid "Record from Line In?"
+msgstr "¿Grabar desde la entrada (line in)?"
+
+#: airtime_mvc/application/forms/AddShowRR.php:16
+msgid "Rebroadcast?"
+msgstr "¿Reprogramar?"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
+#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
+msgid "Value is required and can't be empty"
+msgstr "El valor es necesario y no puede estar vacío"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
+msgid "'%value%' is no valid email address in the basic format local-part@hostname"
+msgstr "'%value%' no es una dirección de correo electrónico válida en el formato básico local-part@hostname"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
+msgid "'%value%' does not fit the date format '%format%'"
+msgstr "'%value%' no se ajusta al formato de fecha '%format%'"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
+msgid "'%value%' is less than %min% characters long"
+msgstr "'%value%' tiene menos de %min% caracteres"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
+msgid "'%value%' is more than %max% characters long"
+msgstr "'%value%' tiene más de %max% caracteres"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
+msgid "'%value%' is not between '%min%' and '%max%', inclusively"
+msgstr "'%value%' no está entre '%min%' y '%max%', inclusive"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
+msgid "Passwords do not match"
+msgstr "Las contraseñas no coinciden"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
+msgid "Day must be specified"
+msgstr "Se debe especificar un día"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
+msgid "Time must be specified"
+msgstr "Se debe especificar una hora"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
+msgid "Must wait at least 1 hour to rebroadcast"
+msgstr "Debes esperar al menos 1 hora para reprogramar"
+
+#: airtime_mvc/application/forms/PasswordRestore.php:14
+msgid "Email"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordRestore.php:36
+msgid "Reset password"
+msgstr "Restablecer contraseña"
+
+#: airtime_mvc/application/forms/AddShowWhat.php:30
+msgid "Untitled Show"
+msgstr "Show sin nombre"
+
+#: airtime_mvc/application/forms/AddShowWhat.php:69
+msgid "Instance Description:"
+msgstr ""
+
+#: airtime_mvc/application/forms/DangerousPreferences.php:12
+msgid "Delete All Tracks in Library"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditAudioMD.php:145
+msgid "ISRC Number:"
+msgstr "Número ISRC:"
+
+#: airtime_mvc/application/forms/EditAudioMD.php:176
+msgid "OK"
+msgstr "OK"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:33
+msgid "Station Description"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:62
+msgid "Default Crossfade Duration (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:68
+#: airtime_mvc/application/forms/GeneralPreferences.php:82
+#: airtime_mvc/application/forms/GeneralPreferences.php:96
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
+msgid "Please enter a time in seconds (eg. 0.5)"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:76
+msgid "Default Fade In (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:90
+msgid "Default Fade Out (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:102
+msgid "Public Airtime API"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:103
+msgid "Required for embeddable schedule widget."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:105
+msgid "Disabled"
+msgstr "Desactivado"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:106
+msgid "Enabled"
+msgstr "Activado"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:109
+msgid ""
+"Enabling this feature will allow Airtime to provide schedule data\n"
+" to external widgets that can be embedded in your website."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:120
+msgid "Default Language"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:127
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
+msgid "Station Timezone"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:134
+msgid "Week Starts On"
+msgstr "La semana empieza el"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:150
+msgid "Display login button on your Radio Page?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:29
+#: airtime_mvc/application/forms/EditUser.php:37
+#: airtime_mvc/application/forms/Login.php:41
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
+msgid "Username:"
+msgstr "Usuario:"
+
+#: airtime_mvc/application/forms/AddUser.php:38
+#: airtime_mvc/application/forms/EditUser.php:48
+#: airtime_mvc/application/forms/Login.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
+msgid "Password:"
+msgstr "Contraseña:"
+
+#: airtime_mvc/application/forms/AddUser.php:46
+#: airtime_mvc/application/forms/EditUser.php:57
+msgid "Verify Password:"
+msgstr "Verificar contraseña:"
+
+#: airtime_mvc/application/forms/AddUser.php:55
+#: airtime_mvc/application/forms/EditUser.php:67
+msgid "Firstname:"
+msgstr "Nombre:"
+
+#: airtime_mvc/application/forms/AddUser.php:61
+#: airtime_mvc/application/forms/EditUser.php:75
+msgid "Lastname:"
+msgstr "Apellido:"
+
+#: airtime_mvc/application/forms/AddUser.php:76
+#: airtime_mvc/application/forms/EditUser.php:94
+msgid "Mobile Phone:"
+msgstr "Celular:"
+
+#: airtime_mvc/application/forms/AddUser.php:82
+#: airtime_mvc/application/forms/EditUser.php:102
+msgid "Skype:"
+msgstr "Skype:"
+
+#: airtime_mvc/application/forms/AddUser.php:88
+#: airtime_mvc/application/forms/EditUser.php:110
+msgid "Jabber:"
+msgstr "Jabber:"
+
+#: airtime_mvc/application/forms/AddUser.php:95
+msgid "User Type:"
+msgstr "Tipo de usuario:"
+
+#: airtime_mvc/application/forms/AddUser.php:120
+#: airtime_mvc/application/forms/EditUser.php:155
+msgid "Login name is not unique."
+msgstr "Tu usuario no es único."
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
+msgid "Import Folder:"
+msgstr "Carpeta de importación:"
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
+msgid "Watched Folders:"
+msgstr "Carpetas monitoreadas:"
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
+msgid "Not a valid Directory"
+msgstr "No es un directorio válido"
+
+#: airtime_mvc/application/forms/BillingClient.php:126
+msgid "What is the name of your favorite childhood friend?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:127
+msgid "What school did you attend for sixth grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:128
+msgid "In what city did you meet your spouse/significant other?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:129
+msgid "What street did you live on in third grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:130
+msgid "What is the first name of the boy or girl that you first kissed?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:131
+msgid "In what city or town was your first job?"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
+msgid "Default License:"
+msgstr "Licencia por defecto:"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
+msgid "All rights are reserved"
+msgstr "Todos los derechos reservados"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
+msgid "The work is in the public domain"
+msgstr "El trabajo es de dominio público"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
+msgid "Creative Commons Attribution"
+msgstr "Atribución Creative Commons"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
+msgid "Creative Commons Attribution Noncommercial"
+msgstr "Atribución-NoComercial Creative Commons"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
+msgid "Creative Commons Attribution No Derivative Works"
+msgstr "Atribución-sinDerivadas Creative Commons"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
+msgid "Creative Commons Attribution Share Alike"
+msgstr "Atribución-CompartirIgual Creative Commons"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
+msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
+msgstr "Atribución-NoComercial-SinDerivadas Creative Commons"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
+msgid "Creative Commons Attribution Noncommercial Share Alike"
+msgstr "Atribución-NoComercial-CompartirIgual Creative Commons"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
+msgid "Default Sharing Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
+msgid "Public"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
+msgid "Private"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditUser.php:129
+msgid "Interface Timezone:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:14
+msgid "Now Playing"
+msgstr "Reproduciéndose ahora"
+
+#: airtime_mvc/application/forms/Player.php:25
+msgid "Select Stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:28
+msgid "Auto detect the most appropriate stream to use."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:29
+msgid "Select a stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:41
+msgid " - Mobile friendly"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:45
+msgid " - The player does not support Opus streams."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:71
+msgid "Embeddable code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:72
+msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
+#: airtime_mvc/application/models/Block.php:1351
+msgid "Select criteria"
+msgstr "Seleccionar criterio"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
+#: airtime_mvc/application/models/Block.php:1353
+msgid "Bit Rate (Kbps)"
+msgstr "Tasa de bits (Kbps)"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
+#: airtime_mvc/application/models/Block.php:1374
+msgid "Sample Rate (kHz)"
+msgstr "Tasa de muestreo (kHz)"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
+msgid "hours"
+msgstr "horas"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
+msgid "minutes"
+msgstr "minutos"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
+#: airtime_mvc/application/models/Block.php:333
+msgid "items"
+msgstr "items"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
+msgid "Randomly"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
+msgid "Newest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
+msgid "Oldest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
+msgid "Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
+msgid "Static"
+msgstr "Estático"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
+msgid "Dynamic"
+msgstr "Dinámico"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
+msgid "Allow Repeated Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
+msgid "Sort Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
+msgid "Limit to:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
+msgid "Generate playlist content and save criteria"
+msgstr "Generar contenido para la lista de reproducción y guardar criterios"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
+msgid "Generate"
+msgstr "Generar"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
+msgid "Shuffle playlist content"
+msgstr "Reproducir de forma aleatoria los contenidos de la lista de reproducción"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
+msgid "Limit cannot be empty or smaller than 0"
+msgstr "El límite no puede estar vacío o ser menor que 0"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
+msgid "Limit cannot be more than 24 hrs"
+msgstr "El límite no puede ser mayor a 24 horas"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
+msgid "The value should be an integer"
+msgstr "El valor debe ser un número entero"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
+msgid "500 is the max item limit value you can set"
+msgstr "500 es el valor máximo de ítems que se pueden configurar"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
+msgid "You must select Criteria and Modifier"
+msgstr "Debes elegir Criterios y Modificador"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
+msgid "'Length' should be in '00:00:00' format"
+msgstr "'Length' (la duración) debe establecerse e un formato de '00:00:00' "
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
+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:594
+msgid "The value has to be numeric"
+msgstr "El valor debe ser numérico"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
+msgid "The value should be less then 2147483648"
+msgstr "El valor debe ser menor a 2147483648"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
+#, php-format
+msgid "The value should be less than %s characters"
+msgstr "El valor debe ser menor que los caracteres %s"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
+msgid "Value cannot be empty"
+msgstr "El valor no se puede vaciar"
+
+#: airtime_mvc/application/forms/StreamSetting.php:26
+msgid "Icecast Vorbis Metadata"
+msgstr "Metadata Icecast Vorbis"
+
+#: airtime_mvc/application/forms/StreamSetting.php:36
+msgid "Stream Label:"
+msgstr "Sello del stream:"
+
+#: airtime_mvc/application/forms/StreamSetting.php:37
+msgid "Artist - Title"
+msgstr "Artísta - Título"
+
+#: airtime_mvc/application/forms/StreamSetting.php:38
+msgid "Show - Artist - Title"
+msgstr "Show - Artista - Título"
+
+#: airtime_mvc/application/forms/StreamSetting.php:39
+msgid "Station name - Show name"
+msgstr "Nombre de la estación - nombre del show"
+
+#: airtime_mvc/application/forms/StreamSetting.php:45
+msgid "Off Air Metadata"
+msgstr "Metadata fuera del aire"
+
+#: airtime_mvc/application/forms/StreamSetting.php:51
+msgid "Enable Replay Gain"
+msgstr "Activar ajuste del volumen"
+
+#: airtime_mvc/application/forms/StreamSetting.php:57
+msgid "Replay Gain Modifier"
+msgstr "Modificar ajuste de volumen"
+
+#: airtime_mvc/application/forms/StreamSetting.php:65
+msgid "Streaming Server:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Airtime Pro Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Custom / 3rd Party Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordChange.php:17
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
+msgid "Password"
+msgstr "Contraseña"
-#~ msgid "enter a time in seconds 0{.0}"
-#~ msgstr "ingresa el tiempo en segundos 0{.0}"
+#: airtime_mvc/application/forms/PasswordChange.php:28
+msgid "Confirm new password"
+msgstr "Confirma nueva contraseña"
-#~ msgid "Allow Remote Websites To Access \"Schedule\" Info?%s (Enable this to make front-end widgets work.)"
-#~ msgstr "Permitir a sitios web remotos acceder a \"Schedule\" Info?%s (Activa esto para que los widgets públicos funcionen.)"
+#: airtime_mvc/application/forms/PasswordChange.php:36
+msgid "Password confirmation does not match your password."
+msgstr "La confirmación de la contraseña no concuerda con tu contraseña."
-#~ msgid "Default Interface Language"
-#~ msgstr "Idioma de la interfaz por defecto"
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
+msgid "Station Language"
+msgstr ""
-#~ msgid "Get new password"
-#~ msgstr "Obtener nueva contraseña"
-
-#~ msgid "Set smart block type:"
-#~ msgstr "Configura un tipo de bloque inteligente:"
-
-#~ msgid "Allow Repeat Tracks:"
-#~ msgstr "Permitir repetición de pistas:"
-
-#~ msgid "Limit to"
-#~ msgstr "Limitar a"
-
-#~ msgid "Auto Switch Off"
-#~ msgstr "Apagado automático"
-
-#~ msgid "Auto Switch On"
-#~ msgstr "Encendido automático"
-
-#~ msgid "Switch Transition Fade (s)"
-#~ msgstr "Cambiar el Fade (s) de Transición"
-
-#~ msgid "enter a time in seconds 00{.000000}"
-#~ msgstr "ingresa un tiempo en segundos 00{.000000}"
-
-#~ msgid "Master Username"
-#~ msgstr "Usuario master"
-
-#~ msgid "Master Password"
-#~ msgstr "Contraseña master"
-
-#~ msgid "Master Source Connection URL"
-#~ msgstr "URL de la conexión de la fuente maestra"
-
-#~ msgid "Show Source Connection URL"
-#~ msgstr "URL de la conexión de la fuente del show"
-
-#~ msgid "Master Source Port"
-#~ msgstr "Puerto de la fuente maestra"
-
-#~ msgid "Master Source Mount Point"
-#~ msgstr "Punto maestro de instalación de la fuente"
-
-#~ msgid "Show Source Port"
-#~ msgstr "Mostrar puerto de la fuente"
-
-#~ msgid "Show Source Mount Point"
-#~ msgstr "Mostrar punto de instalación de la fuente"
-
-#~ msgid "You cannot use same port as Master DJ port."
-#~ msgstr "No puedes usar el mismo puerto que el del DJ maestro"
-
-#~ msgid "Port %s is not available"
-#~ msgstr "El puerto %s no está disponible"
-
-#~ msgid "E-mail"
-#~ msgstr "Correo electrónico"
-
-#~ msgid "Restore password"
-#~ msgstr "Restablecer contraseña"
-
-#~ msgid "Hardware Audio Output"
-#~ msgstr "Salida del equipo de audio"
-
-#~ msgid "Output Type"
-#~ msgstr "Tipo de salida"
-
-#~ msgid "Date/Time Start:"
-#~ msgstr "Fecha/hora de inicio:"
-
-#~ msgid "Date/Time End:"
-#~ msgstr "Fecha/hora de finalización:"
-
-#~ msgid "Automatically Upload Recorded Shows"
-#~ msgstr "Subir automáticamente los shows grabados"
-
-#~ msgid "Enable SoundCloud Upload"
-#~ msgstr "Activar la carga a SoundCloud"
-
-#~ msgid "Automatically Mark Files \"Downloadable\" on SoundCloud"
-#~ msgstr "Marcar automáticamente los archivos \"Downloadable\" en SoundCloud"
-
-#~ msgid "SoundCloud Email"
-#~ msgstr "Correo electrónico SoundCloud"
-
-#~ msgid "SoundCloud Password"
-#~ msgstr "Contraseña SoundCloud"
-
-#~ msgid "SoundCloud Tags: (separate tags with spaces)"
-#~ msgstr "Etiquetas SoundCloud: (separadas con espacios)"
-
-#~ msgid "Default Genre:"
-#~ msgstr "Género por defecto:"
-
-#~ msgid "Default Track Type:"
-#~ msgstr "Tipo de pista por defecto:"
-
-#~ msgid "Original"
-#~ msgstr "Original"
-
-#~ msgid "Remix"
-#~ msgstr "Mezcla"
-
-#~ msgid "Live"
-#~ msgstr "En vivo"
-
-#~ msgid "Recording"
-#~ msgstr "Grabando"
-
-#~ msgid "Spoken"
-#~ msgstr "Hablado"
-
-#~ msgid "Podcast"
-#~ msgstr "Podcast"
-
-#~ msgid "Demo"
-#~ msgstr "Demo"
-
-#~ msgid "Work in progress"
-#~ msgstr "Trabajo en progreso"
-
-#~ msgid "Stem"
-#~ msgstr "Stem"
-
-#~ msgid "Loop"
-#~ msgstr "Loop"
-
-#~ msgid "Sound Effect"
-#~ msgstr "Efecto de sonido"
-
-#~ msgid "One Shot Sample"
-#~ msgstr "Muestreo de una toma "
-
-#~ msgid "Other"
-#~ msgstr "Otro"
-
-#~ msgid "Enable System Emails (Password Reset)"
-#~ msgstr "Activar Correos elctrónicos del Sistema (Restablecer Contraseña)"
-
-#~ msgid "Reset Password 'From' Email"
-#~ msgstr "Restablecer la contraseña del correo electrónico del 'Emisor' ('From')"
-
-#~ msgid "Configure Mail Server"
-#~ msgstr "Configurar el servidor de correo"
-
-#~ msgid "Requires Authentication"
-#~ msgstr "Requiere autenticación"
-
-#~ msgid "Mail Server"
-#~ msgstr "Servidor de correo"
-
-#~ msgid "Email Address"
-#~ msgstr "Correo electrónico"
-
-#~ msgid "Please enter your user name and password"
-#~ msgstr "Por favor ingresa tu usuario y contraseña"
-
-#~ msgid "Given email not found."
-#~ msgstr "No se encontró ese correo electrónico."
-
-#~ msgid "Page not found"
-#~ msgstr "No se encontró esa página"
-
-#~ msgid "Application error"
-#~ msgstr "Error de la aplicación"
-
-#~ msgid "If you change the username or password values for an enabled stream the playout engine will be rebooted and your listeners will hear silence for 5-10 seconds. Changing the following fields will NOT cause a reboot: Stream Label (Global Settings), and Switch Transition Fade(s), Master Username, and Master Password (Input Stream Settings). If Airtime is recording, and if the change causes a playout engine restart, the recording will be interrupted."
-#~ msgstr "Si cambias los valores del usuario o contraseña para un stream activado el motor de reproducción se reiniciará y tus oyentes escucharán silencio por 5-10 segundos. Cambiar los siguientes campos NO provocará un reinicio del sistema: sello del stream (configuración global), Switch en el fade (s) de transición, usuario maestro y contraseña maestra (configuración del stream de entrada). Si Airtime está grabando y si el cambio provoca el reinicio del motor de reproducció, la grabación se interrumpirá."
-
-#~ msgid "today"
-#~ msgstr "hoy"
-
-#~ msgid "day"
-#~ msgstr "día"
-
-#~ msgid "week"
-#~ msgstr "semana"
-
-#~ msgid "month"
-#~ msgstr "mes"
-
-#~ msgid "Remove overbooked tracks"
-#~ msgstr "Eliminar pistas utilizadas con demasiada frecuencia."
-
-#~ msgid "Soundcloud"
-#~ msgstr "SoundCloud"
-
-#~ msgid "View on Soundcloud"
-#~ msgstr "Ver en SoundCloud"
-
-#~ msgid "Re-upload to SoundCloud"
-#~ msgstr "Volver a cargar a SoundCloud"
-
-#~ msgid "Upload to SoundCloud"
-#~ msgstr "Cargar a SoundCloud"
-
-#~ msgid "Could not delete some scheduled files."
-#~ msgstr "No se pudo eliminar algunos de los archivos programados."
-
-#~ msgid "Add Media"
-#~ msgstr "Añadir pistas"
-
-#~ msgid "Library"
-#~ msgstr "Biblioteca"
-
-#~ msgid "System"
-#~ msgstr "Sistema"
-
-#~ msgid "Preferences"
-#~ msgstr "Preferencias"
-
-#~ msgid "Media Folders"
-#~ msgstr "Carpetas de medios"
-
-#~ msgid "Service"
-#~ msgstr "Servicio"
-
-#~ msgid "Uptime"
-#~ msgstr "Tiempo de actividad (uptime)"
-
-#~ msgid "CPU"
-#~ msgstr "CPU"
-
-#~ msgid "Memory"
-#~ msgstr "Memoria"
-
-#~ msgid "Email / Mail Server Settings"
-#~ msgstr "Correo electrónico / Configuración del servidor de correo"
-
-#~ msgid "Connection URL: "
-#~ msgstr "URL de conexión:"
-
-#~ msgid "Input Stream Settings"
-#~ msgstr "Configuración del stream de entrada"
-
-#~ msgid "Master Source Connection URL:"
-#~ msgstr "URL de la conexión de la fuente maestra:"
-
-#~ msgid "Override"
-#~ msgstr "Anular"
-
-#~ msgid "RESET"
-#~ msgstr "RESTABLECER"
-
-#~ msgid "Show Source Connection URL:"
-#~ msgstr "URL de la conexión de la fuente del show"
-
-#~ msgid "Filter By Show:"
-#~ msgstr "Filtrar ppor show:"
-
-#~ msgid "%s's Settings"
-#~ msgstr "Configuraciones de %s's"
-
-#~ msgid "Sourcefabric Privacy Policy"
-#~ msgstr "Política de privacidad de Sourcefabric"
-
-#~ msgid "Smart Block Options"
-#~ msgstr "Opciones del bloque inteligente"
-
-#~ msgid "file meet the criteria"
-#~ msgstr "los archivos si cumplen con los criterios"
-
-#~ msgid "New"
-#~ msgstr "Nuevo"
-
-#~ msgid "New Playlist"
-#~ msgstr "Nueva lista de reproducción"
-
-#~ msgid "New Smart Block"
-#~ msgstr "Nuevo bloque inteligente"
-
-#~ msgid "New Webstream"
-#~ msgstr "Nuevo webstream"
-
-#~ msgid "View / edit description"
-#~ msgstr "Ver / editar descripción"
-
-#~ msgid "Global Settings"
-#~ msgstr "Configuración global"
-
-#~ msgid "Output Stream Settings"
-#~ msgstr "Configuración de los streams de salida"
-
-#~ msgid "Listener Count Over Time"
-#~ msgstr "Conteo de oyentes a lo largo del tiempo"
-
-#~ msgid "Begin by adding your files to the library using the 'Add Media' menu button. You can drag and drop your files to this window too."
-#~ msgstr "Comienza agregando tus archivos a la biblioteca usando el botón 'Add Media' (Agregar Pistas). También puedes arrastrar y soltar tus archivos a esta ventana."
-
-#~ msgid "Create a show by going to 'Calendar' in the menu bar, and then clicking the '+ Show' icon. This can be either a one-time or repeating show. Only admins and program managers can add shows."
-#~ msgstr "Crea un show ubicándote en 'Calendar' (Calendario) en la barra de menú, y luego haciendo clic en el ícono '+ Show' (agregar show). Este puede ser un show único o periódico. Solo los administradores y los administradores de programa pueden agregar shows."
-
-#~ msgid "Add media to the show by going to your show in the Schedule calendar, left-clicking on it and selecting 'Add / Remove Content'"
-#~ msgstr "Agrega pistas al show ubicándote en tu show en el calendario de programación. Presiona clic izquierdo sobre él y selecciona 'Add / Remove Content' (Agregar / Quitar Contenido)"
-
-#~ msgid "Select your media from the left pane and drag them to your show in the right pane."
-#~ msgstr "Selecciona tus pistas del panel izquierdo y arrástralas a tu programa en el panel derecho."
-
-#~ msgid "Then you're good to go!"
-#~ msgstr "¡Estas listo para comenzar!"
-
-#~ msgid "Please enter your account e-mail address. You will receive a link to create a new password via e-mail."
-#~ msgstr "Por favor ingresa el correo electrónico con el que te suscribiste. Recibirás por ese medio un enlace para crear una nueva contraseña."
-
-#~ msgid "Email sent"
-#~ msgstr "Correo enviado"
-
-#~ msgid "An email has been sent"
-#~ msgstr "Se envió un correo electrónico"
-
-#~ msgid "Back to login screen"
-#~ msgstr "De vuelta a la pantalla ingreso"
-
-#~ msgid "Scheduled Play"
-#~ msgstr "Contenido programado"
-
-#~ msgid "Station time"
-#~ msgstr "Nombre de la estación"
-
-#~ msgid "Zend Framework Default Application"
-#~ msgstr "Aplicación de Zend Framework por defecto"
-
-#~ msgid "Empty smart block"
-#~ msgstr "Vaciar bloque inteligente"
-
-#~ msgid "Empty playlist"
-#~ msgstr "Lista de reproducción vacía"
-
-#~ msgid "No open smart block"
-#~ msgstr "No hay bloques inteligentes abiertos"
-
-#~ msgid "Record & Rebroadcast"
-#~ msgstr "Grabar y retransmitir"
-
-#~ msgid "Failed to create 'organize' directory."
-#~ msgstr "Falló la creación del directorio 'organize' (organizar)"
-
-#~ msgid "The file was not uploaded, there is %s MB of disk space left and the file you are uploading has a size of %s MB."
-#~ msgstr "El archivo no se cargó, solo queda %s MB de espacio en disco y el archivo que intentas cargar mide %s MB."
-
-#~ msgid "This file appears to be corrupted and will not be added to media library."
-#~ msgstr "Este archivo parece estar corrupto y no se agregará a la biblioteca de pistas."
-
-#~ msgid "The file was not uploaded, this error can occur if the computer hard drive does not have enough disk space or the stor directory does not have correct write permissions."
-#~ msgstr "El archivo no se cargó. Este error puede ocurrir si el disco duro de la computadora no tiene suficiente espacio o el directorio stor no tiene los permisos correctos para escritura."
-
-#~ msgid ""
-#~ "Hi %s, \n"
-#~ "\n"
-#~ "Click this link to reset your password: "
-#~ msgstr ""
-#~ "Hola %s, \n"
-#~ "\n"
-#~ "Haz clic en este enlace para restablecer tu contraseña: "
-
-#~ msgid "Show Content"
-#~ msgstr "Mostrar contenido"
-
-#~ msgid "Remove All Content"
-#~ msgstr "Eliminar todo el contenido"
-
-#~ msgid "Cancel Current Show"
-#~ msgstr "Cancelar el show actual"
-
-#~ msgid "Delete This Instance"
-#~ msgstr "Eliminar esta instancia"
-
-#~ msgid "Delete This Instance and All Following"
-#~ msgstr "Eliminar esta instancia y todas las que siguen"
-
-#~ msgid "Please selection an option"
-#~ msgstr "Por favor elige una opción"
-
-#~ msgid "No Records"
-#~ msgstr "No hay registros"
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
+msgid "Enabled:"
+msgstr "Activado:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
+msgid "Mobile:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
+msgid "Stream Type:"
+msgstr "Tipo de stream:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
+msgid "Service Type:"
+msgstr "Tipo de servicio:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
+msgid "Channels:"
+msgstr "Canales:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "1 - Mono"
+msgstr "1 - Mono"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "2 - Stereo"
+msgstr "2 - Estéreo"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
+msgid "Server"
+msgstr "Servidor"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
+msgid "Port"
+msgstr "Puerto"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
+msgid "Only numbers are allowed."
+msgstr "Solo se permiten números."
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
+msgid "URL"
+msgstr "URL"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
+msgid "Mount Point"
+msgstr "Punto de instalación"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
+msgid "Admin User"
+msgstr "Usuario administrativo"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
+msgid "Admin Password"
+msgstr "Contraseña administrativa"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
+msgid "Server cannot be empty."
+msgstr "El servidor no puede estar vacío."
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
+msgid "Port cannot be empty."
+msgstr "El puerto no puede estar vacío."
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
+msgid "Mount cannot be empty with Icecast server."
+msgstr "La instalación no puede estar vacía con el servidor Icecast."
+
+#: airtime_mvc/application/forms/AddShowWhen.php:16
+msgid "'%value%' does not fit the time format 'HH:mm'"
+msgstr "'%value%' no concuerda con el formato de tiempo 'HH:mm'"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:22
+msgid "Start Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:37
+msgid "In the Future:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:64
+msgid "End Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:98
+msgid "Timezone:"
+msgstr "Huso horario:"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:107
+msgid "Repeats?"
+msgstr "¿Se repite?"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:139
+msgid "Cannot create show in the past"
+msgstr "No puedes crear un show en el pasado"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:147
+msgid "Cannot modify start date/time of the show that is already started"
+msgstr "No puedes modificar la hora/fecha de inicio de un show que ya empezó"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:156
+#: airtime_mvc/application/models/Show.php:282
+msgid "End date/time cannot be in the past"
+msgstr "La fecha/hora de finalización no puede estar en el pasado."
+
+#: airtime_mvc/application/forms/AddShowWhen.php:164
+msgid "Cannot have duration < 0m"
+msgstr "No puede tener una duración < 0m"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:168
+msgid "Cannot have duration 00h 00m"
+msgstr "No puede tener una duración 00h 00m"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:175
+msgid "Cannot have duration greater than 24h"
+msgstr "No puede tener una duración mayor a 24 horas"
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:19
+msgid "Push metadata to your station on TuneIn?"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:24
+msgid "Station ID:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:30
+msgid "Partner Key:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:36
+msgid "Partner Id:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:77
+#: airtime_mvc/application/forms/TuneInPreferences.php:86
+msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:10
+#, php-format
+msgid "Use %s Authentication:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:16
+msgid "Use Custom Authentication:"
+msgstr "Use la autenticación personalizada:"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:25
+msgid "Custom Username"
+msgstr "Usuario personalizado"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:37
+msgid "Custom Password"
+msgstr "Contraseña personalizada"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:48
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
+msgid "Host:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
+msgid "Port:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:60
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
+msgid "Mount:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:77
+msgid "Username field cannot be empty."
+msgstr "El campo de usuario no puede estar vacío."
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:82
+msgid "Password field cannot be empty."
+msgstr "El campo de contraseña no puede estar vacío."
+
+#: airtime_mvc/application/forms/AddShowStyle.php:12
+msgid "Background Colour:"
+msgstr "Color de fondo:"
+
+#: airtime_mvc/application/forms/AddShowStyle.php:31
+msgid "Text Colour:"
+msgstr "Color del texto:"
+
+#: airtime_mvc/application/forms/AddShowStyle.php:49
+msgid "Current Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:72
+msgid "Show Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:87
+msgid "Logo Preview:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Login.php:102
+msgid "Type the characters you see in the picture below."
+msgstr "Digita los caracteres que ves en la gráfica que aparece a continuación."
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
+msgid "Auto Switch Off:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
+msgid "Auto Switch On:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
+msgid "Switch Transition Fade (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:10
+msgid "Link:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:16
+msgid "Repeat Type:"
+msgstr "Repetir tipo:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:19
+msgid "weekly"
+msgstr "semanal"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:20
+msgid "every 2 weeks"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:21
+msgid "every 3 weeks"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:22
+msgid "every 4 weeks"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:23
+msgid "monthly"
+msgstr "mensual"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:32
+msgid "Select Days:"
+msgstr "Seleccione días:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:47
+msgid "Repeat By:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the month"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the week"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:69
+msgid "No End?"
+msgstr "¿Sin fin?"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:106
+msgid "End date must be after start date"
+msgstr "La fecha de finalización debe ser posterior a la inicio"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:113
+msgid "Please select a repeat day"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:12
+msgid "Radio Page"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:19
+msgid "Calendar"
+msgstr "Calendario"
+
+#: airtime_mvc/application/configs/navigation.php:26
+msgid "Widgets"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:48
+msgid "Settings"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:67
+msgid "Users"
+msgstr "Usuarios"
+
+#: airtime_mvc/application/configs/navigation.php:74
+msgid "Streams"
+msgstr "Streams"
+
+#: airtime_mvc/application/configs/navigation.php:82
+msgid "Analytics"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:90
+msgid "Listener Stats"
+msgstr "Estadísticas de oyentes"
+
+#: airtime_mvc/application/configs/navigation.php:104
+msgid "History Templates"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:113
+msgid "Billing"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:120
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:127
+msgid "Account Details"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:134
+msgid "View Invoices"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:150
+msgid "Getting Started"
+msgstr "Cómo iniciar"
+
+#: airtime_mvc/application/configs/navigation.php:157
+msgid "FAQ"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:162
+msgid "User Manual"
+msgstr "Manual para el usuario"
+
+#: airtime_mvc/application/configs/navigation.php:167
+msgid "File a Support Ticket"
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:833
+#: airtime_mvc/application/models/Playlist.php:812
+msgid "Cue in and cue out are null."
+msgstr "Cue in y cue out son nulos."
+
+#: airtime_mvc/application/models/Block.php:868
+#: airtime_mvc/application/models/Block.php:924
+#: airtime_mvc/application/models/Playlist.php:851
+#: airtime_mvc/application/models/Playlist.php:895
+msgid "Can't set cue out to be greater than file length."
+msgstr "No se puede asignar un cue out mayor que la duración del archivo."
+
+#: airtime_mvc/application/models/Block.php:879
+#: airtime_mvc/application/models/Block.php:900
+#: airtime_mvc/application/models/Playlist.php:843
+#: airtime_mvc/application/models/Playlist.php:868
+msgid "Can't set cue in to be larger than cue out."
+msgstr "No se puede asignar un cue in mayor al cue out."
+
+#: airtime_mvc/application/models/Block.php:935
+#: airtime_mvc/application/models/Playlist.php:887
+msgid "Can't set cue out to be smaller than cue in."
+msgstr "No se puede asignar un cue out menor que el cue in."
+
+#: airtime_mvc/application/models/Block.php:1366
+msgid "Upload Time"
+msgstr ""
+
+#: airtime_mvc/application/models/ShowBuilder.php:212
+#, php-format
+msgid "Rebroadcast of %s from %s"
+msgstr "Retransmisión de %s desde %s"
+
+#: airtime_mvc/application/models/Preference.php:460
+#, php-format
+msgid "Powered by %s"
+msgstr ""
+
+#: airtime_mvc/application/models/Preference.php:588
+msgid "Select Country"
+msgstr "Seleccionar país"
+
+#: airtime_mvc/application/models/MusicDir.php:160
+#, php-format
+msgid "%s is already watched."
+msgstr "%s ya está siendo monitoreado."
+
+#: airtime_mvc/application/models/MusicDir.php:164
+#, php-format
+msgid "%s contains nested watched directory: %s"
+msgstr "%s contiene un directorio anidado monitoreado: %s"
+
+#: airtime_mvc/application/models/MusicDir.php:168
+#, php-format
+msgid "%s is nested within existing watched directory: %s"
+msgstr "%s está anidado dentro de un directorio monitoreado existente: %s"
+
+#: airtime_mvc/application/models/MusicDir.php:189
+#: airtime_mvc/application/models/MusicDir.php:370
+#, php-format
+msgid "%s is not a valid directory."
+msgstr "%s no es un directorio válido."
+
+#: airtime_mvc/application/models/MusicDir.php:232
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list"
+msgstr "%s ya está asignado como el directorio actual de almacenamiento o en la lista de carpetas monitoreadas."
+
+#: airtime_mvc/application/models/MusicDir.php:388
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list."
+msgstr "%s ya está asignado como el directorio actual de almacenamiento o en la lista de carpetas monitoreadas."
+
+#: airtime_mvc/application/models/MusicDir.php:431
+#, php-format
+msgid "%s doesn't exist in the watched list."
+msgstr "%s no existe en la lista de monitoreo."
+
+#: airtime_mvc/application/models/Auth.php:33
+#, php-format
+msgid ""
+"Hi %s, \n"
+"\n"
+"Please click this link to reset your password: "
+msgstr ""
+
+#: airtime_mvc/application/models/Auth.php:38
+#, php-format
+msgid "%s Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/models/Show.php:184
+msgid "Shows can have a max length of 24 hours."
+msgstr "Los shows pueden tener una duración máxima de 24 horas."
+
+#: airtime_mvc/application/models/Show.php:293
+msgid ""
+"Cannot schedule overlapping shows.\n"
+"Note: Resizing a repeating show affects all of its repeats."
+msgstr ""
+"No se pueden programar shows traslapados.\n"
+"Nota: Cambiar el tamaño de un show periódico afecta todas sus repeticiones."
+
+#: airtime_mvc/application/models/Scheduler.php:73
+msgid "Cannot move items out of linked shows"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:119
+msgid "The schedule you're viewing is out of date! (sched mismatch)"
+msgstr "¡El calendario que tienes a la vista no está actualizado! (sched mismatch)"
+
+#: airtime_mvc/application/models/Scheduler.php:124
+msgid "The schedule you're viewing is out of date! (instance mismatch)"
+msgstr "¡La programación que estás viendo está desactualizada! (desfase de instancia)"
+
+#: airtime_mvc/application/models/Scheduler.php:132
+#: airtime_mvc/application/models/Scheduler.php:458
+#: airtime_mvc/application/models/Scheduler.php:490
+msgid "The schedule you're viewing is out of date!"
+msgstr "¡La programación que estás viendo está desactualizada!"
+
+#: airtime_mvc/application/models/Scheduler.php:142
+#, php-format
+msgid "You are not allowed to schedule show %s."
+msgstr "No tienes permiso para programar el show %s."
+
+#: airtime_mvc/application/models/Scheduler.php:146
+msgid "You cannot add files to recording shows."
+msgstr "No puedes agregar pistas a shows en grabación."
+
+#: airtime_mvc/application/models/Scheduler.php:152
+#, php-format
+msgid "The show %s is over and cannot be scheduled."
+msgstr "El show %s terminó y no puede ser programado."
+
+#: airtime_mvc/application/models/Scheduler.php:159
+#, php-format
+msgid "The show %s has been previously updated!"
+msgstr "¡El show %s ha sido actualizado previamente!"
+
+#: airtime_mvc/application/models/Scheduler.php:178
+msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:195
+msgid "Cannot schedule a playlist that contains missing files."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:216
+#: airtime_mvc/application/models/Scheduler.php:305
+msgid "A selected File does not exist!"
+msgstr "¡Un Archivo seleccionado no existe!"
+
+#: airtime_mvc/application/models/Schedule.php:206
+msgid "livestream"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:166
+msgid "Length needs to be greater than 0 minutes"
+msgstr "La duración debe ser mayor de 0 minutos"
+
+#: airtime_mvc/application/models/Webstream.php:171
+msgid "Length should be of form \"00h 00m\""
+msgstr "La duración debe estar en el formato \"00h 00m\""
+
+#: airtime_mvc/application/models/Webstream.php:184
+msgid "URL should be of form \"http://domain\""
+msgstr "El URL debe estar en el formato \"http://domain\""
+
+#: airtime_mvc/application/models/Webstream.php:187
+msgid "URL should be 512 characters or less"
+msgstr "El URL debe ser de 512 caracteres o menos"
+
+#: airtime_mvc/application/models/Webstream.php:193
+msgid "No MIME type found for webstream."
+msgstr "No se encontró ningún tipo MIME para el webstream."
+
+#: airtime_mvc/application/models/Webstream.php:209
+msgid "Webstream name cannot be empty"
+msgstr "El nombre del webstream no puede estar vacío"
+
+#: airtime_mvc/application/models/Webstream.php:278
+msgid "Could not parse XSPF playlist"
+msgstr "No se pudo procesar el XSPF de la lista de reproducción"
+
+#: airtime_mvc/application/models/Webstream.php:298
+msgid "Could not parse PLS playlist"
+msgstr "No se pudo procesar el XSPF de la lista de reproducción"
+
+#: airtime_mvc/application/models/Webstream.php:318
+msgid "Could not parse M3U playlist"
+msgstr "No se pudo procesar el M3U de la lista de reproducción"
+
+#: airtime_mvc/application/models/Webstream.php:332
+msgid "Invalid webstream - This appears to be a file download."
+msgstr "Webstream inválido - Esto parece ser una descarga de archivo."
+
+#: airtime_mvc/application/models/Webstream.php:336
+#, php-format
+msgid "Unrecognized stream type: %s"
+msgstr "Tipo de stream no reconocido: %s"
+
+#: airtime_mvc/public/setup/rabbitmq-setup.php:78
+msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
+msgstr ""
+
+#~ msgid "My Account"
+#~ msgstr "Mi cuenta"
diff --git a/airtime_mvc/locale/es_ES/LC_MESSAGES/pro.po b/airtime_mvc/locale/es_ES/LC_MESSAGES/pro.po
index 866ee0acb..f59b52c3d 100644
--- a/airtime_mvc/locale/es_ES/LC_MESSAGES/pro.po
+++ b/airtime_mvc/locale/es_ES/LC_MESSAGES/pro.po
@@ -1,3 +1,139 @@
+#: airtime_mvc/application/controllers/LoginController.php:170
+#, php-format
+msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
+#, php-format
+msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
+#, php-format
+msgid "If you are the primary owner of this station, please reset your password here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
+msgid "Thank you!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
+msgid "Your station has been upgraded successfully."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
+msgid "Return to Airtime"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+#, php-format
+msgid "Purchase an %s plan!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+msgid "My Account"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
+msgid "Upgrade today to get more listeners and storage space!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
+msgid "View Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:257
+msgid "Your Current Plan:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:291
+msgid "Please enter your payment details:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
+msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
+msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:17
+msgid "First Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:26
+msgid "Last Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:35
+msgid "Company Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:44
+msgid "Email Address:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:54
+msgid "Address 1:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:63
+msgid "Address 2:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:70
+msgid "City:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:80
+msgid "State/Region:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:89
+msgid "Zip Code / Postal Code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:102
+msgid "Country:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:112
+msgid "Phone Number:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:121
+msgid "Please choose a security question:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:135
+msgid "Please enter an answer:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:152
+msgid "VAT/Tax ID (EU only)"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:162
+msgid "Subscribe to Sourcefabric newsletter"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:172
+msgid "Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:181
+msgid "Verify Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:193
+msgid "Save"
+msgstr ""
+
#: airtime_mvc/application/models/Auth.php:35
#, php-format
msgid ""
@@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
-msgid "Thank you!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
-msgid "Your station has been upgraded successfully."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
-msgid "Return to Airtime"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
-#, php-format
-msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
-msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
-msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
-#, php-format
-msgid "If you are the primary owner of this station, please reset your password here."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:170
-#, php-format
-msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
-msgstr ""
diff --git a/airtime_mvc/locale/fr_FR/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/fr_FR/LC_MESSAGES/airtime.mo
index 3cec6f9c0..dde882031 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 1ad75cca3..bf74b1ae3 100644
--- a/airtime_mvc/locale/fr_FR/LC_MESSAGES/airtime.po
+++ b/airtime_mvc/locale/fr_FR/LC_MESSAGES/airtime.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Airtime\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-09-03 10:24-0400\n"
-"PO-Revision-Date: 2014-12-23 10:11+0000\n"
-"Last-Translator: AlbertFR \n"
+"POT-Creation-Date: 2015-09-04 11:17-0400\n"
+"PO-Revision-Date: 2015-09-04 08:15+0000\n"
+"Last-Translator: Daniel James \n"
"Language-Team: French (France) (http://www.transifex.com/sourcefabric/airtime/language/fr_FR/)\n"
"Language: fr_FR\n"
"MIME-Version: 1.0\n"
@@ -19,132 +19,6 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-#: airtime_mvc/public/setup/rabbitmq-setup.php:78
-msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1117
-#: airtime_mvc/application/services/HistoryService.php:1157
-#: airtime_mvc/application/services/HistoryService.php:1174
-#: airtime_mvc/application/models/Block.php:1375
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
-#: airtime_mvc/application/controllers/LocaleController.php:76
-msgid "Title"
-msgstr "Titre"
-
-#: airtime_mvc/application/services/HistoryService.php:1118
-#: airtime_mvc/application/services/HistoryService.php:1158
-#: airtime_mvc/application/services/HistoryService.php:1175
-#: airtime_mvc/application/models/Block.php:1360
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
-#: airtime_mvc/application/controllers/LocaleController.php:77
-msgid "Creator"
-msgstr "Créateur"
-
-#: airtime_mvc/application/services/HistoryService.php:1119
-#: airtime_mvc/application/models/Block.php:1352
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
-#: airtime_mvc/application/controllers/LocaleController.php:78
-msgid "Album"
-msgstr "Album"
-
-#: airtime_mvc/application/services/HistoryService.php:1120
-#: airtime_mvc/application/services/HistoryService.php:1177
-#: airtime_mvc/application/models/Block.php:1369
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
-#: airtime_mvc/application/controllers/LocaleController.php:91
-msgid "Length"
-msgstr "Durée"
-
-#: airtime_mvc/application/services/HistoryService.php:1121
-#: airtime_mvc/application/models/Block.php:1362
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
-#: airtime_mvc/application/controllers/LocaleController.php:85
-msgid "Genre"
-msgstr "Genre"
-
-#: airtime_mvc/application/services/HistoryService.php:1122
-#: airtime_mvc/application/models/Block.php:1371
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
-#: airtime_mvc/application/controllers/LocaleController.php:93
-msgid "Mood"
-msgstr "Mood"
-
-#: airtime_mvc/application/services/HistoryService.php:1123
-#: airtime_mvc/application/models/Block.php:1364
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
-#: airtime_mvc/application/controllers/LocaleController.php:87
-msgid "Label"
-msgstr "Label"
-
-#: airtime_mvc/application/services/HistoryService.php:1124
-#: airtime_mvc/application/services/HistoryService.php:1178
-#: airtime_mvc/application/models/Block.php:1355
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
-#: airtime_mvc/application/controllers/LocaleController.php:81
-msgid "Composer"
-msgstr "Compositeur"
-
-#: airtime_mvc/application/services/HistoryService.php:1125
-#: airtime_mvc/application/models/Block.php:1363
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
-#: airtime_mvc/application/controllers/LocaleController.php:86
-msgid "ISRC"
-msgstr "ISRC"
-
-#: airtime_mvc/application/services/HistoryService.php:1126
-#: airtime_mvc/application/services/HistoryService.php:1179
-#: airtime_mvc/application/models/Block.php:1357
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
-#: airtime_mvc/application/controllers/LocaleController.php:83
-msgid "Copyright"
-msgstr "Droit d'Auteur"
-
-#: airtime_mvc/application/services/HistoryService.php:1127
-#: airtime_mvc/application/models/Block.php:1379
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
-#: airtime_mvc/application/controllers/LocaleController.php:100
-msgid "Year"
-msgstr "Année"
-
-#: airtime_mvc/application/services/HistoryService.php:1128
-msgid "Track"
-msgstr "Morceau"
-
-#: airtime_mvc/application/services/HistoryService.php:1129
-#: airtime_mvc/application/models/Block.php:1356
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
-#: airtime_mvc/application/controllers/LocaleController.php:82
-msgid "Conductor"
-msgstr "Conducteur"
-
-#: airtime_mvc/application/services/HistoryService.php:1130
-#: airtime_mvc/application/models/Block.php:1365
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
-#: airtime_mvc/application/controllers/LocaleController.php:88
-msgid "Language"
-msgstr "Langue"
-
-#: airtime_mvc/application/services/HistoryService.php:1155
-#: airtime_mvc/application/forms/EditHistoryItem.php:32
-msgid "Start Time"
-msgstr "Heure de Début"
-
-#: airtime_mvc/application/services/HistoryService.php:1156
-#: airtime_mvc/application/forms/EditHistoryItem.php:44
-msgid "End Time"
-msgstr "Heure de Fin"
-
-#: airtime_mvc/application/services/HistoryService.php:1176
-msgid "Played"
-msgstr "Joué"
-
#: airtime_mvc/application/services/CalendarService.php:50
msgid "Record file doesn't exist"
msgstr "L'enregistrement du fichier n'existe pas"
@@ -240,2605 +114,382 @@ msgstr "L'Emission a été éffacée parce que l'enregistrement de l'émission n
msgid "Must wait 1 hour to rebroadcast."
msgstr "Doit attendre 1 heure pour retransmettre."
-#: airtime_mvc/application/models/Schedule.php:206
-msgid "livestream"
-msgstr ""
-
-#: airtime_mvc/application/models/ShowBuilder.php:212
-#, php-format
-msgid "Rebroadcast of %s from %s"
-msgstr "Rediffusion de %s à %s"
-
-#: airtime_mvc/application/models/Webstream.php:166
-msgid "Length needs to be greater than 0 minutes"
-msgstr "La durée doit être supérieure à 0 minute"
-
-#: airtime_mvc/application/models/Webstream.php:171
-msgid "Length should be of form \"00h 00m\""
-msgstr "La durée doit être de la forme \"00h 00m\""
-
-#: airtime_mvc/application/models/Webstream.php:184
-msgid "URL should be of form \"http://domain\""
-msgstr "URL doit être de la forme \"http://domain\""
-
-#: airtime_mvc/application/models/Webstream.php:187
-msgid "URL should be 512 characters or less"
-msgstr "L'URL doit être de 512 caractères ou moins"
-
-#: airtime_mvc/application/models/Webstream.php:193
-msgid "No MIME type found for webstream."
-msgstr "Aucun type MIME trouvé pour le Flux Web."
-
-#: airtime_mvc/application/models/Webstream.php:209
-msgid "Webstream name cannot be empty"
-msgstr "Le Nom du Flux Web ne peut être vide"
-
-#: airtime_mvc/application/models/Webstream.php:278
-msgid "Could not parse XSPF playlist"
-msgstr "Impossible d'analyser la Sélection XSPF"
-
-#: airtime_mvc/application/models/Webstream.php:298
-msgid "Could not parse PLS playlist"
-msgstr "Impossible d'analyser la Sélection PLS"
-
-#: airtime_mvc/application/models/Webstream.php:318
-msgid "Could not parse M3U playlist"
-msgstr "Impossible d'analyser la Séléction M3U"
-
-#: airtime_mvc/application/models/Webstream.php:332
-msgid "Invalid webstream - This appears to be a file download."
-msgstr "Flux Web Invalide - Ceci semble être un fichier téléchargeable."
-
-#: airtime_mvc/application/models/Webstream.php:336
-#, php-format
-msgid "Unrecognized stream type: %s"
-msgstr "Type de flux non reconnu: %s"
-
-#: airtime_mvc/application/models/Preference.php:460
-#, php-format
-msgid "Powered by %s"
-msgstr ""
-
-#: airtime_mvc/application/models/Preference.php:588
-msgid "Select Country"
-msgstr "Selectionner le Pays"
-
-#: airtime_mvc/application/models/MusicDir.php:160
-#, php-format
-msgid "%s is already watched."
-msgstr "%s déjà examiné(s)."
-
-#: airtime_mvc/application/models/MusicDir.php:164
-#, php-format
-msgid "%s contains nested watched directory: %s"
-msgstr "%s contient un répertoire surveillé imbriqué: %s"
-
-#: airtime_mvc/application/models/MusicDir.php:168
-#, php-format
-msgid "%s is nested within existing watched directory: %s"
-msgstr "%s est imbriqué avec un répertoire surveillé existant: %s"
-
-#: airtime_mvc/application/models/MusicDir.php:189
-#: airtime_mvc/application/models/MusicDir.php:370
-#, php-format
-msgid "%s is not a valid directory."
-msgstr "%s n'est pas un répertoire valide."
-
-#: airtime_mvc/application/models/MusicDir.php:232
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list"
-msgstr "%s est déjà défini comme le répertoire de stockage courant ou dans la liste des dossiers surveillés"
-
-#: airtime_mvc/application/models/MusicDir.php:388
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list."
-msgstr "%s est déjà défini comme espace de stockage courant ou dans la liste des répertoires surveillés."
-
-#: airtime_mvc/application/models/MusicDir.php:431
-#, php-format
-msgid "%s doesn't exist in the watched list."
-msgstr "%s n'existe pas dans la liste surveillée"
-
-#: airtime_mvc/application/models/Show.php:184
-msgid "Shows can have a max length of 24 hours."
-msgstr "Les Emissions peuvent avoir une durée maximale de 24 heures."
-
-#: airtime_mvc/application/models/Show.php:282
-#: airtime_mvc/application/forms/AddShowWhen.php:156
-msgid "End date/time cannot be in the past"
-msgstr "La date/heure de Fin ne peut être dans le passé"
-
-#: airtime_mvc/application/models/Show.php:293
-msgid ""
-"Cannot schedule overlapping shows.\n"
-"Note: Resizing a repeating show affects all of its repeats."
-msgstr ""
-"Ne peux pas programmer des émissions qui se chevauchent. \n"
-"Remarque: Le redimensionnement d'une émission répétée affecte l'ensemble de ses répétitions."
-
-#: airtime_mvc/application/models/Auth.php:33
-#, php-format
-msgid ""
-"Hi %s, \n"
-"\n"
-"Please click this link to reset your password: "
-msgstr ""
-
-#: airtime_mvc/application/models/Auth.php:38
-#, php-format
-msgid "%s Password Reset"
-msgstr "%s Réinitialisation du mot de passe"
-
-#: airtime_mvc/application/models/Block.php:333
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
-msgid "items"
-msgstr "éléments"
-
-#: airtime_mvc/application/models/Block.php:833
-#: airtime_mvc/application/models/Playlist.php:812
-msgid "Cue in and cue out are null."
-msgstr "Le Point d'entré et le point de sortie sont nul."
-
-#: airtime_mvc/application/models/Block.php:868
-#: airtime_mvc/application/models/Block.php:924
-#: airtime_mvc/application/models/Playlist.php:851
-#: airtime_mvc/application/models/Playlist.php:895
-msgid "Can't set cue out to be greater than file length."
-msgstr "Ne peut pas fixer un point de sortie plus grand que la durée du fichier."
-
-#: airtime_mvc/application/models/Block.php:879
-#: airtime_mvc/application/models/Block.php:900
-#: airtime_mvc/application/models/Playlist.php:843
-#: airtime_mvc/application/models/Playlist.php:868
-msgid "Can't set cue in to be larger than cue out."
-msgstr "Impossible de définir un point d'entrée plus grand que le point de sortie."
-
-#: airtime_mvc/application/models/Block.php:935
-#: airtime_mvc/application/models/Playlist.php:887
-msgid "Can't set cue out to be smaller than cue in."
-msgstr "Ne peux pas fixer un point de sortie plus petit que le point d'entrée."
-
-#: airtime_mvc/application/models/Block.php:1351
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
-msgid "Select criteria"
-msgstr "Selectionner le critère"
-
-#: airtime_mvc/application/models/Block.php:1353
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
-msgid "Bit Rate (Kbps)"
-msgstr "Taux d'Echantillonage (Kbps)"
-
-#: airtime_mvc/application/models/Block.php:1354
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
-#: airtime_mvc/application/controllers/LocaleController.php:80
-msgid "BPM"
-msgstr "BPM"
-
-#: airtime_mvc/application/models/Block.php:1358
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
-#: airtime_mvc/application/controllers/LocaleController.php:281
-#: airtime_mvc/application/layouts/scripts/layout.phtml:140
-msgid "Cue In"
-msgstr "Point d'Entré"
-
-#: airtime_mvc/application/models/Block.php:1359
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:282
-#: airtime_mvc/application/layouts/scripts/layout.phtml:147
-msgid "Cue Out"
-msgstr "Point de Sorti"
-
-#: airtime_mvc/application/models/Block.php:1361
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
-#: airtime_mvc/application/controllers/LocaleController.php:84
-msgid "Encoded By"
-msgstr "Encodé Par"
-
-#: airtime_mvc/application/models/Block.php:1366
-msgid "Upload Time"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1367
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
-#: airtime_mvc/application/controllers/LocaleController.php:89
-msgid "Last Modified"
-msgstr "Dernier Modifié"
-
-#: airtime_mvc/application/models/Block.php:1368
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
-#: airtime_mvc/application/controllers/LocaleController.php:90
-msgid "Last Played"
-msgstr "Dernier Joué"
-
-#: airtime_mvc/application/models/Block.php:1370
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
-#: airtime_mvc/application/controllers/LocaleController.php:92
-msgid "Mime"
-msgstr "Mime"
-
-#: airtime_mvc/application/models/Block.php:1372
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
-#: airtime_mvc/application/controllers/LocaleController.php:94
-msgid "Owner"
-msgstr "Propriétaire"
-
-#: airtime_mvc/application/models/Block.php:1373
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
-#: airtime_mvc/application/controllers/LocaleController.php:95
-msgid "Replay Gain"
-msgstr "Replay Gain"
-
-#: airtime_mvc/application/models/Block.php:1374
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
-msgid "Sample Rate (kHz)"
-msgstr "Taux d'Echantillonage (Khz)"
-
-#: airtime_mvc/application/models/Block.php:1376
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
-#: airtime_mvc/application/controllers/LocaleController.php:97
-msgid "Track Number"
-msgstr "Numéro de la Piste"
-
-#: airtime_mvc/application/models/Block.php:1377
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
-#: airtime_mvc/application/controllers/LocaleController.php:98
-msgid "Uploaded"
-msgstr "Téléversé"
-
-#: airtime_mvc/application/models/Block.php:1378
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
-#: airtime_mvc/application/controllers/LocaleController.php:99
-msgid "Website"
-msgstr "Site Internet"
-
-#: airtime_mvc/application/models/Block.php:1383
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
-#: airtime_mvc/application/controllers/LocaleController.php:151
-msgid "Select modifier"
-msgstr "Sélectionnez modification"
-
-#: airtime_mvc/application/models/Block.php:1384
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
-#: airtime_mvc/application/controllers/LocaleController.php:152
-msgid "contains"
-msgstr "contient"
-
-#: airtime_mvc/application/models/Block.php:1385
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
-#: airtime_mvc/application/controllers/LocaleController.php:153
-msgid "does not contain"
-msgstr "ne contitent pas"
-
-#: airtime_mvc/application/models/Block.php:1386
-#: airtime_mvc/application/models/Block.php:1390
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
-#: airtime_mvc/application/controllers/LocaleController.php:154
-msgid "is"
-msgstr "est"
-
-#: airtime_mvc/application/models/Block.php:1387
-#: airtime_mvc/application/models/Block.php:1391
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
-#: airtime_mvc/application/controllers/LocaleController.php:155
-msgid "is not"
-msgstr "n'est pas"
-
-#: airtime_mvc/application/models/Block.php:1388
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
-#: airtime_mvc/application/controllers/LocaleController.php:156
-msgid "starts with"
-msgstr "commence par"
-
-#: airtime_mvc/application/models/Block.php:1389
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
-#: airtime_mvc/application/controllers/LocaleController.php:157
-msgid "ends with"
-msgstr "fini par"
-
-#: airtime_mvc/application/models/Block.php:1392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
-#: airtime_mvc/application/controllers/LocaleController.php:158
-msgid "is greater than"
-msgstr "est plus grand que"
-
-#: airtime_mvc/application/models/Block.php:1393
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
-#: airtime_mvc/application/controllers/LocaleController.php:159
-msgid "is less than"
-msgstr "est plus petit que"
-
-#: airtime_mvc/application/models/Block.php:1394
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
-#: airtime_mvc/application/controllers/LocaleController.php:160
-msgid "is in the range"
-msgstr "est dans le champ"
-
-#: airtime_mvc/application/models/Scheduler.php:73
-msgid "Cannot move items out of linked shows"
-msgstr "Vous ne pouvez pas déplacer les éléments sur les émissions liées"
-
-#: airtime_mvc/application/models/Scheduler.php:119
-msgid "The schedule you're viewing is out of date! (sched mismatch)"
-msgstr "Le calendrier que vous consultez n'est pas à jour! (décalage calendaire)"
-
-#: airtime_mvc/application/models/Scheduler.php:124
-msgid "The schedule you're viewing is out of date! (instance mismatch)"
-msgstr "La programmation que vous consultez n'est pas à jour! (décalage d'instance)"
-
-#: airtime_mvc/application/models/Scheduler.php:132
-#: airtime_mvc/application/models/Scheduler.php:458
-#: airtime_mvc/application/models/Scheduler.php:490
-msgid "The schedule you're viewing is out of date!"
-msgstr "Le calendrier que vous consultez n'est pas à jour!"
-
-#: airtime_mvc/application/models/Scheduler.php:142
-#, php-format
-msgid "You are not allowed to schedule show %s."
-msgstr "Vous n'êtes pas autorisé à programme l'émission %s."
-
-#: airtime_mvc/application/models/Scheduler.php:146
-msgid "You cannot add files to recording shows."
-msgstr "Vous ne pouvez pas ajouter des fichiers à des emissions enregistrées."
-
-#: airtime_mvc/application/models/Scheduler.php:152
-#, php-format
-msgid "The show %s is over and cannot be scheduled."
-msgstr "L émission %s est terminé et ne peut pas être programmé."
-
-#: airtime_mvc/application/models/Scheduler.php:159
-#, php-format
-msgid "The show %s has been previously updated!"
-msgstr "L'émission %s a été précédement mise à jour!"
-
-#: airtime_mvc/application/models/Scheduler.php:178
-msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
-msgstr "Le contenu des émissions liés doit être programmé avant ou après sa diffusion"
-
-#: airtime_mvc/application/models/Scheduler.php:195
-msgid "Cannot schedule a playlist that contains missing files."
-msgstr "Vous ne pouvez pas programmer une liste de lecture qui contient des fichiers manquants "
-
-#: airtime_mvc/application/models/Scheduler.php:216
-#: airtime_mvc/application/models/Scheduler.php:305
-msgid "A selected File does not exist!"
-msgstr "Un fichier séléctionné n'existe pas!"
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
-#: airtime_mvc/application/configs/navigation.php:40
-msgid "Weekly Schedule"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
-#: airtime_mvc/application/forms/Player.php:77
-msgid "Preview:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
-#: airtime_mvc/application/configs/navigation.php:34
-msgid "Player"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
-#: airtime_mvc/application/controllers/LocaleController.php:362
-#: airtime_mvc/application/controllers/LocaleController.php:390
-msgid "Close"
-msgstr "Fermer"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Add this show"
-msgstr "Ajouter cette Emission"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Update show"
-msgstr "Mettre à jour l'émission"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
-msgid "What"
-msgstr "Quoi"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
-msgid "When"
-msgstr "Quand"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
-msgid "Live Stream Input"
-msgstr "Entrée du Flux Direct"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
-msgid "Who"
-msgstr "Qui"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
-msgid "Style"
-msgstr "Style"
-
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
-#: airtime_mvc/application/controllers/LocaleController.php:273
-msgid "Start"
-msgstr "Début"
-
-#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
-msgid "Password Reset"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
-msgid "Email Sent!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
-msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
-msgid "Back"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
-msgid "New password"
-msgstr "Nouveau mot de passe"
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
-msgid "Please enter and confirm your new password in the fields below."
-msgstr "S'il vous plaît saisir et confirmer votre nouveau mot de passe dans les champs ci-dessous."
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:3
-#: airtime_mvc/application/forms/Login.php:83
-msgid "Login"
-msgstr "Connexion"
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:7
-#, php-format
-msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
-msgstr "Bienvenue à la démo %s ! Vous pouvez vous connecter en utilisant le nom d'utilisateur «admin» et le mot de passe «admin» ."
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:97
-msgid "Playout History"
-msgstr "Historique de Diffusion"
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
-msgid "Log Sheet"
-msgstr "Fichier de Log"
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
-msgid "File Summary"
-msgstr "Résumé du fichier"
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
-msgid "Show Summary"
-msgstr "Historique Emision"
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
-msgid "Your trial expires in"
-msgstr "Votre période d'éssai expire dans"
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
-msgid "days"
-msgstr "jours"
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-#, php-format
-msgid "Purchase an %s Pro plan!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-msgid "My Account"
-msgstr "Mon Compte"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
-msgid "Previous:"
-msgstr "Précédent:"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
-msgid "Next:"
-msgstr "Prochain:"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
-msgid "Source Streams"
-msgstr "Sources des Flux"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
-msgid "Master Source"
-msgstr "Source Maitre"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
-msgid "Show Source"
-msgstr "Source Emission"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
-msgid "ON AIR"
-msgstr "DIRECT"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
-msgid "Listen"
-msgstr "Ecouter"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
-msgid "Logout"
-msgstr "Déconnexion"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
-msgid "Drop files here or click to browse your computer."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
-#: airtime_mvc/application/controllers/LocaleController.php:314
-msgid "in use"
-msgstr "en utilisation"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
-#: airtime_mvc/application/controllers/LocaleController.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:401
-msgid "All"
-msgstr "Tous"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
-msgid "Failed"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
-msgid "Pending"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
-msgid "Recent Uploads"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
-#: airtime_mvc/application/configs/navigation.php:120
-msgid "Account Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
-msgid "Upgrade today to get more listeners and storage space!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
-msgid "View Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
-msgid "About"
-msgstr "A propos"
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
-#, php-format
-msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
-msgstr "%1$s %2$s, le logiciel ouvert de gestion et de programmation pour vos stations distantes."
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
-#, php-format
-msgid "%1$s %2$s is distributed under the %3$s"
-msgstr "%1$s %2$s est distribué sous %3$s"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
-#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
-msgid "Live stream"
-msgstr "Flux Live"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
-msgid "Share"
-msgstr "Partager"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
-msgid "Select stream:"
-msgstr "Selection du Flux:"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
-msgid "mute"
-msgstr "sourdine"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
-msgid "unmute"
-msgstr "désactiver"
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
-#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
-#, php-format
-msgid "Welcome to %s!"
-msgstr "Bienvenue à %s !"
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
-#, php-format
-msgid "Here's how you can get started using %s to automate your broadcasts: "
-msgstr "Voici comment vous pouvez commencer à utiliser %s pour automatiser vos émissions:"
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
-msgid "Upload audio tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
-msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
-msgid "Schedule a show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
-msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
-msgid "Add tracks to your show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
-msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
-msgid "Now you're good to go!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
-#, php-format
-msgid "For more detailed help, read the %suser manual%s."
-msgstr "Pour une aide plus détaillée, lisez le %smanuel utilisateur%s."
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
-msgid "Listeners"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
-msgid "Stream Data Collection Status"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
-#: airtime_mvc/application/views/scripts/error/error.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
-msgid "An error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
-msgid "Access Denied!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
-msgid "You do not have permission to access this page!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
-#: airtime_mvc/application/views/scripts/error/error.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
-#: airtime_mvc/application/configs/navigation.php:143
-msgid "Help"
-msgstr "Aide"
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
-msgid "Page not found!"
-msgstr "Page non trouvée!"
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
-msgid "We couldn't find the page you were looking for."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error.phtml:12
-msgid "Looks like the page you were looking for doesn't exist!"
-msgstr "On dirait que la page que vous cherchez n'existe pas!"
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
-msgid "Oops!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
-msgid "Something went wrong!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
-msgid "Bad Request!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
-msgid "The requested action is not supported!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
-msgid "Viewing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
-msgid "Editing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:3
-msgid "File import in progress..."
-msgstr "Import du Fichier en cours..."
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:10
-#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
-msgid "Advanced Search Options"
-msgstr "Options Avancées de Recherche"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
-#: airtime_mvc/application/forms/Player.php:15
-#: airtime_mvc/application/forms/EditAudioMD.php:24
-msgid "Title:"
-msgstr "Titre:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
-#: airtime_mvc/application/forms/EditAudioMD.php:34
-msgid "Creator:"
-msgstr "Créateur:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
-#: airtime_mvc/application/forms/EditAudioMD.php:44
-msgid "Album:"
-msgstr "Album:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
-msgid "Track:"
-msgstr "Piste:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
-msgid "Length:"
-msgstr "Durée:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
-msgid "Sample Rate:"
-msgstr "Fréquence d'Echantillonnage"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
-msgid "Bit Rate:"
-msgstr "Débit:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
-#: airtime_mvc/application/forms/EditAudioMD.php:115
-msgid "Mood:"
-msgstr "Atmosphère:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
-#: airtime_mvc/application/forms/EditAudioMD.php:62
-#: airtime_mvc/application/forms/AddShowWhat.php:45
-msgid "Genre:"
-msgstr "Genre:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
-#: airtime_mvc/application/forms/EditAudioMD.php:72
-msgid "Year:"
-msgstr "Année:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
-#: airtime_mvc/application/forms/EditAudioMD.php:85
-msgid "Label:"
-msgstr "Label:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
-#: airtime_mvc/application/forms/EditAudioMD.php:125
-msgid "BPM:"
-msgstr "BPM:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
-#: airtime_mvc/application/forms/EditAudioMD.php:95
-msgid "Composer:"
-msgstr "Compositeur:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
-#: airtime_mvc/application/forms/EditAudioMD.php:105
-msgid "Conductor:"
-msgstr "Conducteur:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
-#: airtime_mvc/application/forms/EditAudioMD.php:135
-msgid "Copyright:"
-msgstr "Copyright:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
-msgid "Isrc Number:"
-msgstr "Numéro ISRC:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
-#: airtime_mvc/application/forms/EditAudioMD.php:155
-msgid "Website:"
-msgstr "Site Internet:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
-#: airtime_mvc/application/forms/EditUser.php:119
-#: airtime_mvc/application/forms/EditAudioMD.php:165
-#: airtime_mvc/application/forms/Login.php:68
-msgid "Language:"
+#: airtime_mvc/application/services/HistoryService.php:1117
+#: airtime_mvc/application/services/HistoryService.php:1157
+#: airtime_mvc/application/services/HistoryService.php:1174
+#: airtime_mvc/application/controllers/LocaleController.php:76
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
+#: airtime_mvc/application/models/Block.php:1375
+msgid "Title"
+msgstr "Titre"
+
+#: airtime_mvc/application/services/HistoryService.php:1118
+#: airtime_mvc/application/services/HistoryService.php:1158
+#: airtime_mvc/application/services/HistoryService.php:1175
+#: airtime_mvc/application/controllers/LocaleController.php:77
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
+#: airtime_mvc/application/models/Block.php:1360
+msgid "Creator"
+msgstr "Créateur"
+
+#: airtime_mvc/application/services/HistoryService.php:1119
+#: airtime_mvc/application/controllers/LocaleController.php:78
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
+#: airtime_mvc/application/models/Block.php:1352
+msgid "Album"
+msgstr "Album"
+
+#: airtime_mvc/application/services/HistoryService.php:1120
+#: airtime_mvc/application/services/HistoryService.php:1177
+#: airtime_mvc/application/controllers/LocaleController.php:91
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
+#: airtime_mvc/application/models/Block.php:1369
+msgid "Length"
+msgstr "Durée"
+
+#: airtime_mvc/application/services/HistoryService.php:1121
+#: airtime_mvc/application/controllers/LocaleController.php:85
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
+#: airtime_mvc/application/models/Block.php:1362
+msgid "Genre"
+msgstr "Genre"
+
+#: airtime_mvc/application/services/HistoryService.php:1122
+#: airtime_mvc/application/controllers/LocaleController.php:93
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
+#: airtime_mvc/application/models/Block.php:1371
+msgid "Mood"
+msgstr "Mood"
+
+#: airtime_mvc/application/services/HistoryService.php:1123
+#: airtime_mvc/application/controllers/LocaleController.php:87
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
+#: airtime_mvc/application/models/Block.php:1364
+msgid "Label"
+msgstr "Label"
+
+#: airtime_mvc/application/services/HistoryService.php:1124
+#: airtime_mvc/application/services/HistoryService.php:1178
+#: airtime_mvc/application/controllers/LocaleController.php:81
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
+#: airtime_mvc/application/models/Block.php:1355
+msgid "Composer"
+msgstr "Compositeur"
+
+#: airtime_mvc/application/services/HistoryService.php:1125
+#: airtime_mvc/application/controllers/LocaleController.php:86
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
+#: airtime_mvc/application/models/Block.php:1363
+msgid "ISRC"
+msgstr "ISRC"
+
+#: airtime_mvc/application/services/HistoryService.php:1126
+#: airtime_mvc/application/services/HistoryService.php:1179
+#: airtime_mvc/application/controllers/LocaleController.php:83
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
+#: airtime_mvc/application/models/Block.php:1357
+msgid "Copyright"
+msgstr "Droit d'Auteur"
+
+#: airtime_mvc/application/services/HistoryService.php:1127
+#: airtime_mvc/application/controllers/LocaleController.php:100
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
+#: airtime_mvc/application/models/Block.php:1379
+msgid "Year"
+msgstr "Année"
+
+#: airtime_mvc/application/services/HistoryService.php:1128
+msgid "Track"
+msgstr "Morceau"
+
+#: airtime_mvc/application/services/HistoryService.php:1129
+#: airtime_mvc/application/controllers/LocaleController.php:82
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
+#: airtime_mvc/application/models/Block.php:1356
+msgid "Conductor"
+msgstr "Conducteur"
+
+#: airtime_mvc/application/services/HistoryService.php:1130
+#: airtime_mvc/application/controllers/LocaleController.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
+#: airtime_mvc/application/models/Block.php:1365
+msgid "Language"
msgstr "Langue"
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
-msgid "File Path:"
-msgstr "Chemin du fichier:"
+#: airtime_mvc/application/services/HistoryService.php:1155
+#: airtime_mvc/application/forms/EditHistoryItem.php:32
+msgid "Start Time"
+msgstr "Heure de Début"
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
-#: airtime_mvc/application/forms/AddShowWhat.php:26
-msgid "Name:"
-msgstr "Nom:"
+#: airtime_mvc/application/services/HistoryService.php:1156
+#: airtime_mvc/application/forms/EditHistoryItem.php:44
+msgid "End Time"
+msgstr "Heure de Fin"
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
-#: airtime_mvc/application/forms/AddShowWhat.php:54
-msgid "Description:"
-msgstr "Description:"
+#: airtime_mvc/application/services/HistoryService.php:1176
+msgid "Played"
+msgstr "Joué"
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
-msgid "Web Stream"
-msgstr "Flux Web"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
-msgid "Dynamic Smart Block"
-msgstr "Bloc Intelligent Dynamique"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
-msgid "Static Smart Block"
-msgstr "Bloc Intélligent Statique"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
-msgid "Audio Track"
-msgstr "Piste Audio"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
-msgid "Playlist Contents: "
-msgstr "Contenus de la Liste de Lecture:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
-msgid "Static Smart Block Contents: "
-msgstr "Contenus du Bloc Intelligent Statique:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
-msgid "Dynamic Smart Block Criteria: "
-msgstr "Critère(s) du Bloc Intelligent Dynamique:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
-msgid "Limit to "
-msgstr "Limité à"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
-#: airtime_mvc/application/forms/AddShowWhat.php:36
-msgid "URL:"
-msgstr "URL:"
-
-#: airtime_mvc/application/views/scripts/form/login.phtml:41
-msgid "Forgot your password?"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
+#: airtime_mvc/application/controllers/LibraryController.php:31
+#: airtime_mvc/application/controllers/PlaylistController.php:147
#, php-format
-msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
+msgid "%s not found"
+msgstr "%s non trouvé"
+
+#: airtime_mvc/application/controllers/LibraryController.php:40
+#: airtime_mvc/application/controllers/PlaylistController.php:168
+msgid "Something went wrong."
+msgstr "Quelque chose s'est mal passé."
+
+#: airtime_mvc/application/controllers/LibraryController.php:95
+#: airtime_mvc/application/controllers/ShowbuilderController.php:136
+msgid "Preview"
+msgstr "Pré-Visualisation"
+
+#: airtime_mvc/application/controllers/LibraryController.php:115
+#: airtime_mvc/application/controllers/LibraryController.php:177
+#: airtime_mvc/application/controllers/LibraryController.php:200
+msgid "Add to Playlist"
+msgstr "Ajouter une"
+
+#: airtime_mvc/application/controllers/LibraryController.php:117
+msgid "Add to Smart Block"
+msgstr "Ajouter un bloc Intelligent"
+
+#: airtime_mvc/application/controllers/LibraryController.php:123
+#: airtime_mvc/application/controllers/LocaleController.php:66
+msgid "Edit Metadata"
+msgstr "Edition des Méta-Données"
+
+#: airtime_mvc/application/controllers/LibraryController.php:131
+#: airtime_mvc/application/controllers/ScheduleController.php:712
+msgid "Download"
+msgstr "Téléchargement"
+
+#: airtime_mvc/application/controllers/LibraryController.php:147
+msgid "View track"
msgstr ""
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
+#: airtime_mvc/application/controllers/LibraryController.php:148
+msgid "Remove track"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:154
+#: airtime_mvc/application/controllers/LibraryController.php:159
+msgid "Upload track"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:169
+msgid "Duplicate Playlist"
+msgstr "dupliquer la Liste de lecture"
+
+#: airtime_mvc/application/controllers/LibraryController.php:213
+msgid "No action available"
+msgstr "Aucune action disponible"
+
+#: airtime_mvc/application/controllers/LibraryController.php:233
+msgid "You don't have permission to delete selected items."
+msgstr "Vous n'avez pas la permission de supprimer les éléments sélectionnés."
+
+#: airtime_mvc/application/controllers/LibraryController.php:279
+msgid "Could not delete file because it is scheduled in the future."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:282
+msgid "Could not delete file(s)."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:322
#, php-format
-msgid "Click the box below to promote your station on %s."
-msgstr "Cliquez sur la case ci-dessous pour promouvoir votre station sur %s ."
+msgid "Copy of %s"
+msgstr "Copie de %s"
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
-msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
-msgstr "(Pour la promotion de votre station, 'Envoyez vos remarques au support' doit être activé)."
+#: airtime_mvc/application/controllers/WebstreamController.php:28
+#: airtime_mvc/application/controllers/WebstreamController.php:32
+msgid "Untitled Webstream"
+msgstr "Flux Web sans Titre"
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
-msgid "(Required)"
-msgstr "(Requis)"
+#: airtime_mvc/application/controllers/WebstreamController.php:150
+msgid "Webstream saved."
+msgstr "Flux Web sauvegardé"
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
-msgid "(for verification purposes only, will not be published)"
-msgstr "(à des fins de vérification uniquement, ne sera pas publié)"
+#: airtime_mvc/application/controllers/WebstreamController.php:158
+msgid "Invalid form values."
+msgstr "Valeurs du formulaire non valides."
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
-msgid "Choose folder"
-msgstr "Choisir le répertoire"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
-msgid "Set"
-msgstr "Installer"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
-msgid "Current Import Folder:"
-msgstr "Répertoire d'Import en Cours:"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
-msgid "Add"
-msgstr "Ajouter"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
-#, php-format
-msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
-msgstr "Rescanner le répertoire surveillé (Ce qui peut être utile si il est sur le réseau et est peut être désynchronisé de %s)"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
-msgid "Remove watched directory"
-msgstr "Supprimer le répertoire surveillé"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
-msgid "You are not watching any media folders."
-msgstr "Vous ne surveillez pas les dossiers médias."
-
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
-msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
-msgid "Live Broadcasting"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
-msgid "Use these settings in your broadcasting software to stream live at any time."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
-msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
-msgid "Choose Show Instance"
-msgstr "Choisissez Afficher instance"
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
-#: airtime_mvc/application/forms/EditHistoryItem.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:400
-msgid "No Show"
-msgstr "Pas d'émission"
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
-msgid "Find"
-msgstr "Trouver"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
-msgid "Choose Days:"
-msgstr "Choix des Jours:"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
-#: airtime_mvc/application/forms/AddShowStyle.php:64
-#: airtime_mvc/application/forms/GeneralPreferences.php:53
-msgid "Remove"
-msgstr "Enlever"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
-msgid "Stream "
-msgstr "Flux"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
-msgid "Additional Options"
-msgstr "options supplémentaires"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
-msgid "The following info will be displayed to listeners in their media player:"
-msgstr "Les informations suivantes seront affichées aux auditeurs dans leur lecteur multimédia:"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
-msgid "(Your radio station website)"
-msgstr "(Site Internet de la Station de Radio)"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
-msgid "Stream URL: "
-msgstr "URL du Flux:"
-
-#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
-msgid "Find Shows"
-msgstr "Trouver Emissions"
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
-msgid "TuneIn Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
-msgid "SoundCloud Settings"
-msgstr "Réglages SoundCloud"
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
-msgid "Dangerous Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
-msgid "Search Criteria:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
-msgid "New Criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
-msgid "or"
-msgstr "ou"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
-msgid "and"
-msgstr "et"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
-msgid "New Modifier"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
-msgid " to "
-msgstr "à"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
-msgid "files meet the criteria"
-msgstr "fichiers répondent aux critères"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
-msgid "file meets the criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
-msgid "Filter History"
-msgstr "Filtre de l'Historique"
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
-#: airtime_mvc/application/configs/navigation.php:61
-msgid "My Profile"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
-#, php-format
-msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
-#: airtime_mvc/application/forms/Preferences.php:40
-#: airtime_mvc/application/forms/PasswordChange.php:43
-#: airtime_mvc/application/forms/AddUser.php:110
-#: airtime_mvc/application/forms/BillingClient.php:193
-#: airtime_mvc/application/forms/SupportSettings.php:131
-#: airtime_mvc/application/forms/EditHistory.php:131
-#: airtime_mvc/application/controllers/LocaleController.php:294
-msgid "Save"
-msgstr "Sauvegarder"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
-msgid "Repeat Days:"
-msgstr "Jours de Répétition:"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
-msgid "Register Airtime"
-msgstr "Enregistrez Airtime"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
-#: airtime_mvc/application/forms/GeneralPreferences.php:43
-msgid "Note: Anything larger than 600x600 will be resized."
-msgstr "Remarque: Tout ce qui est plus grand que 600x600 sera redimensionné."
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
-msgid "Show me what I am sending "
-msgstr "Montrez-moi ce que je vais envoyer"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
-msgid "Terms and Conditions"
-msgstr "Termes et Conditions."
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
-msgid "Creating File Summary Template"
-msgstr "Création du fichier Modèle d'Historique"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
-msgid "Creating Log Sheet Template"
-msgstr "Création du modèle de fichier de Log"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
-msgid "Name"
-msgstr "Nom"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
-msgid "Add more elements"
-msgstr "Ajouter plus d'éléments"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
-msgid "Add New Field"
-msgstr "Ajouter un nouveau champs"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
-msgid "Set Default Template"
-msgstr "Definir le modèle par défaut"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
-msgid "Playout History Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
-msgid "Log Sheet Templates"
-msgstr "Modèles de fichiers de Log"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
-msgid "New Log Sheet Template"
-msgstr "Nouveau modèle de fichier de Log"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
-msgid "No Log Sheet Templates"
-msgstr "Aucun modèles de fichiers de Log"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
-#: airtime_mvc/application/controllers/LocaleController.php:397
-msgid "Set Default"
-msgstr "Définir par défaut"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
-msgid "File Summary Templates"
-msgstr "Modèle de fichier d'historique"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
-msgid "New File Summary Template"
-msgstr "Nouveau modèle de fichier d'Historique"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
-msgid "No File Summary Templates"
-msgstr "aucun modèle de fichier d'Historique"
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
-msgid "Disk Space"
-msgstr "Espace Disque"
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
-#: airtime_mvc/application/controllers/LocaleController.php:315
-msgid "Disk"
-msgstr "Disque"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
-#: airtime_mvc/application/forms/AddShowWhen.php:89
-msgid "Duration:"
-msgstr "Durée:"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
-msgid "Toggle Details"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
-msgid "Playlist crossfade"
-msgstr "Fondu enchainé de la Liste de Lecture"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-msgid "Remove all content from this smart block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Clear"
-msgstr "Vider"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "Fade in: "
-msgstr "Fondu en entrée:"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "(ss.t)"
-msgstr "(ss.t)"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-msgid "Fade out: "
-msgstr "Fondu en sortie:"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
-#: airtime_mvc/application/forms/EditAudioMD.php:186
-#: airtime_mvc/application/forms/EditHistory.php:141
-#: airtime_mvc/application/controllers/LocaleController.php:295
-#: airtime_mvc/application/controllers/LocaleController.php:318
-msgid "Cancel"
-msgstr "Annuler"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
-msgid "No smart block currently open"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
-msgid "Show Waveform"
-msgstr "Montrer la Forme d'Onde"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-msgid "Cue In: "
-msgstr "Point d'Entrée"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "(hh:mm:ss.t)"
-msgstr "(hh:mm:ss.t)"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "Cue Out: "
-msgstr "Point de Sortie:"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
-msgid "Original Length:"
-msgstr "Durée Originale:"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
-msgid "Expand Static Block"
-msgstr "Ettendre le bloc Statique"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
-msgid "Expand Dynamic Block"
-msgstr "Ettendre le Bloc Dynamique"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
-msgid "Choose some search criteria above and click Generate to create this playlist."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
-msgid "A track list will be generated when you schedule this smart block into a show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
-msgid "Drag tracks here from your library to add them to the playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-msgid "Shuffle playlist"
-msgstr "Liste de Lecture Aléatoire"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
-msgid "Shuffle"
-msgstr "Aléatoire"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Empty playlist content"
-msgstr "Vider le contenu de la Liste de Lecture"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-msgid "Save playlist"
-msgstr "Sauvegarde de la Liste de Lecture"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
-msgid "No open playlist"
-msgstr "Pas de Liste de Lecture Ouverte"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
-msgid "previous"
-msgstr "précédent"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
-msgid "play"
-msgstr "jouer"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
-msgid "pause"
-msgstr "pause"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
-msgid "next"
-msgstr "suivant"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
-msgid "stop"
-msgstr "stop"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
-msgid "max volume"
-msgstr "Volume max"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
-msgid "Update Required"
-msgstr "Mise à Jour Requise"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
-#, php-format
-msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
-msgstr "Pour lire le média, vous devrez mettre à jour votre navigateur vers une version récente ou mettre à jour votre %sPlugin Flash%s."
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
-msgid "Stream Settings"
-msgstr "Réglages des Flux"
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
-msgid "Global"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
-msgid "dB"
-msgstr "dB"
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
-msgid "Output Streams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
-#: airtime_mvc/application/controllers/LocaleController.php:166
-msgid "Manage Media Folders"
-msgstr "Gérer les Répertoires des Médias"
-
-#: airtime_mvc/application/views/scripts/preference/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:56
-msgid "General"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
-msgid "Description"
-msgstr "Description"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
-msgid "Stream URL:"
-msgstr "URL du Flux:"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
-msgid "Default Length:"
-msgstr "Durée par Défaut:"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
-msgid "No webstream"
-msgstr "Aucun Flux Web"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
-msgid "Manage Users"
-msgstr "Gérer les Utilisateurs"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
-msgid "New User"
-msgstr "Nouvel Utilisateur"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
-msgid "id"
-msgstr "id"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
-#: airtime_mvc/application/forms/PasswordRestore.php:25
-msgid "Username"
-msgstr "Utilisateur"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
-msgid "First Name"
-msgstr "Prénom"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
-msgid "Last Name"
-msgstr "Nom"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
-msgid "User Type"
-msgstr "Type d'Utilisateur"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
-#, php-format
-msgid "Super Admin details can be changed in your Billing Settings."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
-#: airtime_mvc/application/controllers/LocaleController.php:74
-#: airtime_mvc/application/layouts/scripts/layout.phtml:78
-msgid "Tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
-#: airtime_mvc/application/controllers/LocaleController.php:104
-#: airtime_mvc/application/layouts/scripts/layout.phtml:80
-msgid "Playlists"
-msgstr "Listes de Lecture"
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
-#: airtime_mvc/application/controllers/LocaleController.php:105
-#: airtime_mvc/application/layouts/scripts/layout.phtml:82
-msgid "Smart Blocks"
-msgstr "Blocs Intelligents"
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
-#: airtime_mvc/application/layouts/scripts/layout.phtml:84
-msgid "Webstreams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
-#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
-#: airtime_mvc/application/layouts/scripts/layout.phtml:76
-msgid "Dashboard"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:12
-msgid "Radio Page"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:19
-msgid "Calendar"
-msgstr "Calendrier"
-
-#: airtime_mvc/application/configs/navigation.php:26
-msgid "Widgets"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:48
-msgid "Settings"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:67
-msgid "Users"
-msgstr "Utilisateurs"
-
-#: airtime_mvc/application/configs/navigation.php:74
-msgid "Streams"
-msgstr "Flux"
-
-#: airtime_mvc/application/configs/navigation.php:82
-msgid "Analytics"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:90
-msgid "Listener Stats"
-msgstr "Statistiques des Auditeurs"
-
-#: airtime_mvc/application/configs/navigation.php:104
-msgid "History Templates"
-msgstr "Modèle d'historique"
-
-#: airtime_mvc/application/configs/navigation.php:113
-msgid "Billing"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:127
-msgid "Account Details"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:134
-msgid "View Invoices"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:150
-msgid "Getting Started"
-msgstr "Mise en route"
-
-#: airtime_mvc/application/configs/navigation.php:157
-msgid "FAQ"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:162
-msgid "User Manual"
-msgstr "Manuel Utilisateur"
-
-#: airtime_mvc/application/configs/navigation.php:167
-msgid "File a Support Ticket"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:12
-msgid "Background Colour:"
-msgstr "Couleur de Fond:"
-
-#: airtime_mvc/application/forms/AddShowStyle.php:31
-msgid "Text Colour:"
-msgstr "Couleur du Texte:"
-
-#: airtime_mvc/application/forms/AddShowStyle.php:49
-msgid "Current Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:72
-msgid "Show Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:87
-msgid "Logo Preview:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:19
-msgid "Push metadata to your station on TuneIn?"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:24
-msgid "Station ID:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:30
-msgid "Partner Key:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:36
-msgid "Partner Id:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:77
-#: airtime_mvc/application/forms/TuneInPreferences.php:86
-msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:14
-msgid "Now Playing"
-msgstr "En Lecture"
-
-#: airtime_mvc/application/forms/Player.php:25
-msgid "Select Stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:28
-msgid "Auto detect the most appropriate stream to use."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:29
-msgid "Select a stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:41
-msgid " - Mobile friendly"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:45
-msgid " - The player does not support Opus streams."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:71
-msgid "Embeddable code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:72
-msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:37
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
-#: airtime_mvc/application/forms/Login.php:41
-#: airtime_mvc/application/forms/AddUser.php:29
-msgid "Username:"
-msgstr "Utilisateur:"
-
-#: airtime_mvc/application/forms/EditUser.php:48
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
-#: airtime_mvc/application/forms/Login.php:54
-#: airtime_mvc/application/forms/AddUser.php:38
-#: airtime_mvc/application/forms/BillingClient.php:172
-msgid "Password:"
-msgstr "Mot de Passe:"
-
-#: airtime_mvc/application/forms/EditUser.php:57
-#: airtime_mvc/application/forms/AddUser.php:46
-#: airtime_mvc/application/forms/BillingClient.php:181
-msgid "Verify Password:"
-msgstr "Vérification du Mot de Passe:"
-
-#: airtime_mvc/application/forms/EditUser.php:67
-#: airtime_mvc/application/forms/AddUser.php:55
-msgid "Firstname:"
-msgstr "Prénom:"
-
-#: airtime_mvc/application/forms/EditUser.php:75
-#: airtime_mvc/application/forms/AddUser.php:61
-msgid "Lastname:"
-msgstr "Nom:"
-
-#: airtime_mvc/application/forms/EditUser.php:83
-#: airtime_mvc/application/forms/RegisterAirtime.php:51
-#: airtime_mvc/application/forms/AddUser.php:67
-#: airtime_mvc/application/forms/SupportSettings.php:43
-msgid "Email:"
-msgstr "Courriel:"
-
-#: airtime_mvc/application/forms/EditUser.php:94
-#: airtime_mvc/application/forms/AddUser.php:76
-msgid "Mobile Phone:"
-msgstr "Numéro de Mobile:"
-
-#: airtime_mvc/application/forms/EditUser.php:102
-#: airtime_mvc/application/forms/AddUser.php:82
-msgid "Skype:"
-msgstr "Skype:"
-
-#: airtime_mvc/application/forms/EditUser.php:110
-#: airtime_mvc/application/forms/AddUser.php:88
-msgid "Jabber:"
-msgstr "Jabber:"
-
-#: airtime_mvc/application/forms/EditUser.php:129
-msgid "Interface Timezone:"
-msgstr "Fuseau horaire de l'Interface:"
-
-#: airtime_mvc/application/forms/EditUser.php:155
-#: airtime_mvc/application/forms/AddUser.php:120
-msgid "Login name is not unique."
-msgstr "Le Nom de connexion n'est pas unique."
-
-#: airtime_mvc/application/forms/AddShowRR.php:10
-msgid "Record from Line In?"
-msgstr "Enregistrer à partir de 'Line In'?"
-
-#: airtime_mvc/application/forms/AddShowRR.php:16
-msgid "Rebroadcast?"
-msgstr "Rediffusion?"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:16
-msgid "'%value%' does not fit the time format 'HH:mm'"
-msgstr "'%value%' ne correspond pas au format de durée 'HH:mm'"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:22
-msgid "Start Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:37
-msgid "In the Future:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:64
-msgid "End Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:98
-msgid "Timezone:"
-msgstr "Fuseau horaire:"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:107
-msgid "Repeats?"
-msgstr "Répétitions?"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:139
-msgid "Cannot create show in the past"
-msgstr "Impossible de créer un émission dans le passé"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:147
-msgid "Cannot modify start date/time of the show that is already started"
-msgstr "Vous ne pouvez pas modifier la date / heure de début de l'émission qui a déjà commencé"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:164
-msgid "Cannot have duration < 0m"
-msgstr "Ne peut pas avoir une durée <0m"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:168
-msgid "Cannot have duration 00h 00m"
-msgstr "Ne peut pas avoir une durée de 00h 00m"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:175
-msgid "Cannot have duration greater than 24h"
-msgstr "Ne peut pas avoir une durée supérieure à 24h"
-
-#: airtime_mvc/application/forms/AddShowWho.php:10
-msgid "Search Users:"
-msgstr "Recherche d'Utilisateurs:"
-
-#: airtime_mvc/application/forms/AddShowWho.php:24
-msgid "DJs:"
-msgstr "v"
-
-#: airtime_mvc/application/forms/PasswordChange.php:17
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
-msgid "Password"
-msgstr "Mot de Passe"
-
-#: airtime_mvc/application/forms/PasswordChange.php:28
-msgid "Confirm new password"
-msgstr "Confirmez le nouveau mot de passe"
-
-#: airtime_mvc/application/forms/PasswordChange.php:36
-msgid "Password confirmation does not match your password."
-msgstr "La confirmation mot de passe ne correspond pas à votre mot de passe."
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
-msgid "Station Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
-#: airtime_mvc/application/forms/GeneralPreferences.php:127
-msgid "Station Timezone"
-msgstr "Fuseau horaire de la Station"
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
-msgid "Auto Switch Off:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
-msgid "Auto Switch On:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
-msgid "Switch Transition Fade (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
-#: airtime_mvc/application/forms/GeneralPreferences.php:68
-#: airtime_mvc/application/forms/GeneralPreferences.php:82
-#: airtime_mvc/application/forms/GeneralPreferences.php:96
-msgid "Please enter a time in seconds (eg. 0.5)"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
-#: airtime_mvc/application/forms/AddShowLiveStream.php:48
-msgid "Host:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
-#: airtime_mvc/application/forms/AddShowLiveStream.php:54
-msgid "Port:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
-#: airtime_mvc/application/forms/AddShowLiveStream.php:60
-msgid "Mount:"
-msgstr ""
-
-#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
-msgid "Value is required and can't be empty"
-msgstr "Une Valeur est requise, ne peut pas être vide"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:25
-#: airtime_mvc/application/forms/RegisterAirtime.php:30
-#: airtime_mvc/application/forms/SupportSettings.php:18
-msgid "Station Name"
-msgstr "Nom de la Station"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:33
-msgid "Station Description"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:42
-#: airtime_mvc/application/forms/RegisterAirtime.php:106
-msgid "Station Logo:"
-msgstr "Logo de la Station:"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:62
-msgid "Default Crossfade Duration (s):"
-msgstr "Durée du fondu enchaîné "
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:76
-msgid "Default Fade In (s):"
-msgstr "Fondu en Entrée par défaut (s):"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:90
-msgid "Default Fade Out (s):"
-msgstr "Fondu en Sorti par défaut (s):"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:102
-msgid "Public Airtime API"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:103
-msgid "Required for embeddable schedule widget."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:105
-msgid "Disabled"
-msgstr "Désactivé"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:106
-msgid "Enabled"
-msgstr "Activé"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:109
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
msgid ""
-"Enabling this feature will allow Airtime to provide schedule data\n"
-" to external widgets that can be embedded in your website."
+"To configure and use the embeddable player you must:
\n"
+" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
+" 2. Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/forms/GeneralPreferences.php:120
-msgid "Default Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:134
-msgid "Week Starts On"
-msgstr "La Semaine Commence Le"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:150
-msgid "Display login button on your Radio Page?"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:158
-#: airtime_mvc/application/controllers/LocaleController.php:249
-msgid "Sunday"
-msgstr "Dimanche"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:159
-#: airtime_mvc/application/controllers/LocaleController.php:250
-msgid "Monday"
-msgstr "Lundi"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:160
-#: airtime_mvc/application/controllers/LocaleController.php:251
-msgid "Tuesday"
-msgstr "Mardi"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:161
-#: airtime_mvc/application/controllers/LocaleController.php:252
-msgid "Wednesday"
-msgstr "Mercredi"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:162
-#: airtime_mvc/application/controllers/LocaleController.php:253
-msgid "Thursday"
-msgstr "Jeudi"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:163
-#: airtime_mvc/application/controllers/LocaleController.php:254
-msgid "Friday"
-msgstr "Vendredi"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:164
-#: airtime_mvc/application/controllers/LocaleController.php:255
-msgid "Saturday"
-msgstr "Samedi"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
-msgid "Default License:"
-msgstr "Licence par Défaut:"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
-msgid "All rights are reserved"
-msgstr "Tous droits réservés"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
-msgid "The work is in the public domain"
-msgstr "Ce travail est dans le domaine public"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
-msgid "Creative Commons Attribution"
-msgstr "Creative Commons Attribution"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
-msgid "Creative Commons Attribution Noncommercial"
-msgstr "Creative Commons Attribution Non Commercial"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
-msgid "Creative Commons Attribution No Derivative Works"
-msgstr "Creative Commons Attribution Pas de Travaux Dérivés"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
-msgid "Creative Commons Attribution Share Alike"
-msgstr "Creative Commons Attribution Distribution à l'Identique"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
-msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
-msgstr "Creative Commons Attribution Non Commercial Pas de Travaux Dérivés"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
-msgid "Creative Commons Attribution Noncommercial Share Alike"
-msgstr "Creative Commons Attribution Non Commercial Distribution à l'Identique"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
-msgid "Default Sharing Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
-msgid "Public"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
-msgid "Private"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:18
-#: airtime_mvc/application/forms/DateRange.php:16
-msgid "Date Start:"
-msgstr "Date de Début:"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:37
-#: airtime_mvc/application/forms/ShowBuilder.php:65
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
-#: airtime_mvc/application/forms/DateRange.php:35
-#: airtime_mvc/application/forms/DateRange.php:63
-msgid "Invalid character entered"
-msgstr "Caractère Invalide saisi"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:46
-#: airtime_mvc/application/forms/AddShowRepeats.php:56
-#: airtime_mvc/application/forms/DateRange.php:44
-msgid "Date End:"
-msgstr "Date de Fin:"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:72
-#: airtime_mvc/application/forms/ShowBuilder.php:88
-msgid "Filter by Show"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:80
-msgid "All My Shows:"
-msgstr "Toutes Mes Emissions:"
-
-#: airtime_mvc/application/forms/EditAudioMD.php:145
-msgid "ISRC Number:"
-msgstr "Numéro ISRC:"
-
-#: airtime_mvc/application/forms/EditAudioMD.php:176
-msgid "OK"
-msgstr "OK"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
-msgid "Day must be specified"
-msgstr "Le Jour doit être spécifié"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
-msgid "Time must be specified"
-msgstr "La durée doit être spécifiée"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
-msgid "Must wait at least 1 hour to rebroadcast"
-msgstr "Vous devez attendre au moins 1 heure pour retransmettre"
-
-#: airtime_mvc/application/forms/AddShowWhat.php:30
-msgid "Untitled Show"
-msgstr "Emission sans Titre"
-
-#: airtime_mvc/application/forms/AddShowWhat.php:69
-msgid "Instance Description:"
-msgstr ""
-
-#: airtime_mvc/application/forms/DangerousPreferences.php:12
-msgid "Delete All Tracks in Library"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:39
-#: airtime_mvc/application/forms/SupportSettings.php:31
-msgid "Phone:"
-msgstr "Téléphone"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:62
-#: airtime_mvc/application/forms/SupportSettings.php:54
-msgid "Station Web Site:"
-msgstr "Site Internet de la Station"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:73
-#: airtime_mvc/application/forms/BillingClient.php:102
-#: airtime_mvc/application/forms/SupportSettings.php:65
-msgid "Country:"
-msgstr "Pays:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:84
-#: airtime_mvc/application/forms/BillingClient.php:70
-#: airtime_mvc/application/forms/SupportSettings.php:76
-msgid "City:"
-msgstr "Ville:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:96
-#: airtime_mvc/application/forms/SupportSettings.php:88
-msgid "Station Description:"
-msgstr "Description de la Station:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:116
-#: airtime_mvc/application/forms/SupportSettings.php:98
-#: airtime_mvc/application/controllers/LocaleController.php:341
-msgid "Send support feedback"
-msgstr "Envoyez vos remarques au support"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:126
-#: airtime_mvc/application/forms/SupportSettings.php:108
-#, php-format
-msgid "Promote my station on %s"
-msgstr "Promouvoir station sur %s"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:151
-#: airtime_mvc/application/forms/SupportSettings.php:120
-#, php-format
-msgid "By checking this box, I agree to %s's %sprivacy policy%s."
-msgstr "En cochant cette case , je accepte la %s's %s de politique de confidentialité %s ."
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:169
-#: airtime_mvc/application/forms/SupportSettings.php:143
-msgid "You have to agree to privacy policy."
-msgstr "Vous devez accepter la politique de confidentialité."
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:10
-msgid "Link:"
-msgstr "Lien:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:16
-msgid "Repeat Type:"
-msgstr "Type de Répétition:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:19
-msgid "weekly"
-msgstr "hebdomadaire"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:20
-msgid "every 2 weeks"
-msgstr "Toutes les 2 semaines"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:21
-msgid "every 3 weeks"
-msgstr "Toutes les 3 semaines"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:22
-msgid "every 4 weeks"
-msgstr "Toutes les 4 semaines"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:23
-msgid "monthly"
-msgstr "mensuel"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:32
-msgid "Select Days:"
-msgstr "Selection des Jours:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:35
-#: airtime_mvc/application/controllers/LocaleController.php:256
-msgid "Sun"
-msgstr "Dim"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:36
-#: airtime_mvc/application/controllers/LocaleController.php:257
-msgid "Mon"
-msgstr "Lun"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:37
-#: airtime_mvc/application/controllers/LocaleController.php:258
-msgid "Tue"
-msgstr "Mar"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:38
-#: airtime_mvc/application/controllers/LocaleController.php:259
-msgid "Wed"
-msgstr "Mer"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:39
-#: airtime_mvc/application/controllers/LocaleController.php:260
-msgid "Thu"
-msgstr "Jeu"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:40
-#: airtime_mvc/application/controllers/LocaleController.php:261
-msgid "Fri"
-msgstr "Ven"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:41
-#: airtime_mvc/application/controllers/LocaleController.php:262
-msgid "Sat"
-msgstr "Sam"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:47
-msgid "Repeat By:"
-msgstr "Répétition par:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the month"
-msgstr "jour du mois"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the week"
-msgstr "jour de la semaine"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:69
-msgid "No End?"
-msgstr "Sans Fin?"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:106
-msgid "End date must be after start date"
-msgstr "La Date de Fin doit être postérieure à la Date de Début"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:113
-msgid "Please select a repeat day"
-msgstr "SVP, selectionnez un jour de répétition"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:10
-#, php-format
-msgid "Use %s Authentication:"
-msgstr "Utilisez l'authentification %s :"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:16
-msgid "Use Custom Authentication:"
-msgstr "Utiliser l'authentification personnalisée:"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:25
-msgid "Custom Username"
-msgstr "Nom d'utilisateur personnalisé"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:37
-msgid "Custom Password"
-msgstr "Mot de Passe personnalisé"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:77
-msgid "Username field cannot be empty."
-msgstr "Le Champ Nom d'Utilisateur ne peut pas être vide."
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:82
-msgid "Password field cannot be empty."
-msgstr "Le Champ Mot de Passe ne peut être vide."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
-msgid "Enabled:"
-msgstr "Activé:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
-msgid "Mobile:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
-msgid "Stream Type:"
-msgstr "Type de Flux:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
-msgid "Service Type:"
-msgstr "Type de service:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
-msgid "Channels:"
-msgstr "Cannaux:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "1 - Mono"
-msgstr "1 - Mono"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "2 - Stereo"
-msgstr "2 - Stereo"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
-msgid "Server"
-msgstr "Serveur"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
-msgid "Port"
-msgstr "Port"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
-msgid "Only numbers are allowed."
-msgstr "Seuls les chiffres sont autorisés."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
-msgid "URL"
-msgstr "URL"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
-msgid "Mount Point"
-msgstr "Point de Montage"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
-msgid "Admin User"
-msgstr "Utilisateur Admin"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
-msgid "Admin Password"
-msgstr "Mot de Passe Admin"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
-#: airtime_mvc/application/controllers/LocaleController.php:173
-msgid "Getting information from the server..."
-msgstr "Obtention des informations à partir du serveur ..."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
-msgid "Server cannot be empty."
-msgstr "Le Serveur ne peut être vide."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
-msgid "Port cannot be empty."
-msgstr "Le Port ne peut être vide."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
-msgid "Mount cannot be empty with Icecast server."
-msgstr "Le Point de Montage ne peut être vide avec un serveur Icecast."
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
-msgid "'%value%' is no valid email address in the basic format local-part@hostname"
-msgstr "'%value%' n'est pas une adresse de courriel valide dans le format de type partie-locale@nomdedomaine"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
-msgid "'%value%' does not fit the date format '%format%'"
-msgstr "'%value%' ne correspond pas au format de la date '%format%'"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
-msgid "'%value%' is less than %min% characters long"
-msgstr "'%value%' est inférieur à %min% charactères"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
-msgid "'%value%' is more than %max% characters long"
-msgstr "'%value%' est plus grand de %min% charactères"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
-msgid "'%value%' is not between '%min%' and '%max%', inclusively"
-msgstr "'%value%' n'est pas entre '%min%' et '%max%', inclusivement"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
-msgid "Passwords do not match"
-msgstr "Les mots de passe ne correspondent pas"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
-msgid "hours"
-msgstr "heures"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
-msgid "minutes"
-msgstr "minutes"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
-msgid "Randomly"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
-msgid "Newest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
-msgid "Oldest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
-msgid "Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
-msgid "Static"
-msgstr "Statique"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
-msgid "Dynamic"
-msgstr "Dynamique"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
-msgid "Allow Repeated Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
-msgid "Sort Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
-msgid "Limit to:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
-msgid "Generate playlist content and save criteria"
-msgstr "Génération de la liste de lecture et sauvegarde des crières"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
-msgid "Generate"
-msgstr "Générer"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
-msgid "Shuffle playlist content"
-msgstr "Contenu de la liste de lecture alèatoire"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
-msgid "Limit cannot be empty or smaller than 0"
-msgstr "La Limite ne peut être vide ou plus petite que 0"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
-msgid "Limit cannot be more than 24 hrs"
-msgstr "La Limite ne peut être supérieure à 24 heures"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
-msgid "The value should be an integer"
-msgstr "La valeur doit être un entier"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
-msgid "500 is the max item limit value you can set"
-msgstr "500 est la valeur maximale de l'élément que vous pouvez définir"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
-msgid "You must select Criteria and Modifier"
-msgstr "Vous devez sélectionner Critères et Modification"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
-msgid "'Length' should be in '00:00:00' format"
-msgstr "La 'Durée' doit être au format '00:00:00'"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
-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:594
-msgid "The value has to be numeric"
-msgstr "La valeur doit être numérique"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
-msgid "The value should be less then 2147483648"
-msgstr "La valeur doit être inférieure à 2147483648"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
-#, php-format
-msgid "The value should be less than %s characters"
-msgstr "La valeur doit être inférieure à %s caractères"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
-msgid "Value cannot be empty"
-msgstr "La Valeur ne peut pas être vide"
-
-#: airtime_mvc/application/forms/Login.php:102
-msgid "Type the characters you see in the picture below."
-msgstr "Saisissez les caractères que vous voyez dans l'image ci-dessous."
-
-#: airtime_mvc/application/forms/StreamSetting.php:26
-msgid "Icecast Vorbis Metadata"
-msgstr "Icecast Metadata Vorbis"
-
-#: airtime_mvc/application/forms/StreamSetting.php:36
-msgid "Stream Label:"
-msgstr "Label du Flux:"
-
-#: airtime_mvc/application/forms/StreamSetting.php:37
-msgid "Artist - Title"
-msgstr "Artiste - Titre"
-
-#: airtime_mvc/application/forms/StreamSetting.php:38
-msgid "Show - Artist - Title"
-msgstr "Emission - Artiste - Titre"
-
-#: airtime_mvc/application/forms/StreamSetting.php:39
-msgid "Station name - Show name"
-msgstr "Nom de la Station - Nom de l'Emission"
-
-#: airtime_mvc/application/forms/StreamSetting.php:45
-msgid "Off Air Metadata"
-msgstr "Métadonnées Hors Antenne"
-
-#: airtime_mvc/application/forms/StreamSetting.php:51
-msgid "Enable Replay Gain"
-msgstr "Activer"
-
-#: airtime_mvc/application/forms/StreamSetting.php:57
-msgid "Replay Gain Modifier"
-msgstr "Modifier le Niveau du Gain"
-
-#: airtime_mvc/application/forms/StreamSetting.php:65
-msgid "Streaming Server:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Airtime Pro Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Custom / 3rd Party Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:95
-msgid "User Type:"
-msgstr "Type d'Utilisateur:"
-
-#: airtime_mvc/application/forms/AddUser.php:99
-#: airtime_mvc/application/controllers/LocaleController.php:324
-msgid "Guest"
-msgstr "Invité"
-
-#: airtime_mvc/application/forms/AddUser.php:100
-#: airtime_mvc/application/controllers/LocaleController.php:322
-msgid "DJ"
-msgstr "DeaJee"
-
-#: airtime_mvc/application/forms/AddUser.php:101
-#: airtime_mvc/application/controllers/LocaleController.php:323
-msgid "Program Manager"
-msgstr "Programmateur"
-
-#: airtime_mvc/application/forms/AddUser.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:321
-msgid "Admin"
-msgstr "Administrateur"
-
-#: airtime_mvc/application/forms/BillingClient.php:17
-msgid "First Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:26
-msgid "Last Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:35
-msgid "Company Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:44
-msgid "Email Address:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:54
-msgid "Address 1:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:63
-msgid "Address 2:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:80
-msgid "State/Region:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:89
-msgid "Zip Code / Postal Code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:112
-msgid "Phone Number:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:121
-msgid "Please choose a security question:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:126
-msgid "What is the name of your favorite childhood friend?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:127
-msgid "What school did you attend for sixth grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:128
-msgid "In what city did you meet your spouse/significant other?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:129
-msgid "What street did you live on in third grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:130
-msgid "What is the first name of the boy or girl that you first kissed?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:131
-msgid "In what city or town was your first job?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:135
-msgid "Please enter an answer:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:152
-msgid "VAT/Tax ID (EU only)"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:162
-msgid "Subscribe to Sourcefabric newsletter"
-msgstr ""
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
-msgid "Import Folder:"
-msgstr "répertoire d'Import:"
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
-msgid "Watched Folders:"
-msgstr "Répertoires Suveillés:"
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
-msgid "Not a valid Directory"
-msgstr "N'est pas un Répertoire valide"
-
-#: airtime_mvc/application/forms/PasswordRestore.php:14
-msgid "Email"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordRestore.php:36
-msgid "Reset password"
-msgstr "Réinitialisation du Mot de Passe"
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
-msgid "Plan type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
-msgid "Billing cycle:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
-msgid "Payment method:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
-msgid "PayPal"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
-msgid "Credit Card via 2Checkout"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:213
-#, php-format
-msgid "The year %s must be within the range of 1753 - 9999"
-msgstr "L'année %s doit être comprise entre 1753 - 9999"
-
-#: airtime_mvc/application/common/DateHelper.php:216
-#, php-format
-msgid "%s-%s-%s is not a valid date"
-msgstr "%s-%s-%s n'est pas une date valide"
-
-#: airtime_mvc/application/common/DateHelper.php:240
-#, php-format
-msgid "%s:%s:%s is not a valid time"
-msgstr "%s:%s:%s n'est pas une durée valide"
-
-#: airtime_mvc/application/common/UsabilityHints.php:55
-msgid "Upload some tracks below to add them to your library!"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:57
-#, php-format
-msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:63
-msgid "Click the 'New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:65
-#, php-format
-msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:73
-msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:75
-#, php-format
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
msgid ""
-"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
-" %sCreate an unlinked show now%s."
+"To use the embeddable weekly schedule widget you must:
\n"
+" Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/common/UsabilityHints.php:80
-msgid "To start broadcasting, click on the current show and select 'Schedule Show'"
-msgstr ""
+#: airtime_mvc/application/controllers/ListenerstatController.php:51
+msgid "Please make sure admin user/password is correct on System->Streams page."
+msgstr "S'il vous plaît assurez-vous que l'utilisateur admin a un mot de passe correct sur le système-> page flux."
-#: airtime_mvc/application/common/UsabilityHints.php:82
+#: airtime_mvc/application/controllers/UserController.php:86
+msgid "User added successfully!"
+msgstr "Utilisateur ajouté avec succès!"
+
+#: airtime_mvc/application/controllers/UserController.php:88
+msgid "User updated successfully!"
+msgstr "Utilisateur mis à jour avec succès!"
+
+#: airtime_mvc/application/controllers/UserController.php:187
+msgid "Settings updated successfully!"
+msgstr "Paramètres mis à jour avec succès!"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:53
#, php-format
-msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
-msgstr ""
+msgid "You are viewing an older version of %s"
+msgstr "Vous visualisez l'ancienne version de %s"
-#: airtime_mvc/application/common/UsabilityHints.php:89
-msgid "Click on the show starting next and select 'Schedule Show'"
-msgstr ""
+#: airtime_mvc/application/controllers/PlaylistController.php:140
+msgid "You cannot add tracks to dynamic blocks."
+msgstr "Vous ne pouvez pas ajouter de pistes aux blocs dynamiques."
-#: airtime_mvc/application/common/UsabilityHints.php:91
+#: airtime_mvc/application/controllers/PlaylistController.php:161
#, php-format
-msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+msgid "You don't have permission to delete selected %s(s)."
+msgstr "Vous n'avez pas la permission de supprimer la sélection %s(s)."
+
+#: airtime_mvc/application/controllers/PlaylistController.php:174
+msgid "You can only add tracks to smart block."
+msgstr "Vous pouvez seulement ajouter des pistes au bloc intelligent."
+
+#: airtime_mvc/application/controllers/PlaylistController.php:180
+#: airtime_mvc/application/controllers/LocaleController.php:50
+msgid "You can only add tracks, smart blocks, and webstreams to playlists."
+msgstr "Vous pouvez uniquement ajouter des pistes, des blocs intelligents et flux web aux listes de lecture."
+
+#: airtime_mvc/application/controllers/PlaylistController.php:192
+msgid "Untitled Playlist"
+msgstr "Liste de Lecture Sans Titre"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:194
+msgid "Untitled Smart Block"
+msgstr "Bloc Intelligent Sans Titre"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:522
+msgid "Unknown Playlist"
+msgstr "Liste de Lecture Inconnue"
+
+#: airtime_mvc/application/controllers/ErrorController.php:78
+msgid "Page not found."
msgstr ""
+#: airtime_mvc/application/controllers/ErrorController.php:87
+msgid "The requested action is not supported."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:98
+msgid "You do not have permission to access this resource."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:109
+msgid "An internal application error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/controllers/Apiv2Controller.php:77
+#: airtime_mvc/application/controllers/ApiController.php:79
+msgid "You are not allowed to access this resource."
+msgstr "Vous n'êtes pas autorisé à acceder à cette ressource."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:72
+msgid "Preferences updated."
+msgstr "Préférences mises à jour."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:115
+msgid "Support setting updated."
+msgstr "Régalges su Support mis à jour."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:123
+msgid "Support Feedback"
+msgstr "Remarques au support"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:251
+msgid "Stream Setting Updated."
+msgstr "Réglages du Flux mis à jour."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:342
+msgid "path should be specified"
+msgstr "le chemin doit être spécifié"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:437
+msgid "Problem with Liquidsoap..."
+msgstr "Problème ave Liquidsoap..."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:493
+msgid "Request method not accepted"
+msgstr ""
+
+#: airtime_mvc/application/controllers/DashboardController.php:35
+#: airtime_mvc/application/controllers/DashboardController.php:84
+msgid "You don't have permission to disconnect source."
+msgstr "Vous n'avez pas la permission de déconnecter la source."
+
+#: airtime_mvc/application/controllers/DashboardController.php:37
+#: airtime_mvc/application/controllers/DashboardController.php:86
+msgid "There is no source connected to this input."
+msgstr "Il n'y a pas de source connectée à cette entrée."
+
+#: airtime_mvc/application/controllers/DashboardController.php:81
+msgid "You don't have permission to switch source."
+msgstr "Vous n'avez pas la permission de changer de source."
+
+#: airtime_mvc/application/controllers/LoginController.php:43
+msgid "Please enter your username and password."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:93
+msgid "Wrong username or password provided. Please try again."
+msgstr "Mauvais Nom d'utilisateur ou mot de passe fourni. S'il vous plaît essayez de nouveau."
+
+#: airtime_mvc/application/controllers/LoginController.php:167
+msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
+msgstr "Le Courriel n'a pas pu être envoyé. Vérifiez vos paramètres du serveur de messagerie et s'assurez vous qu'il a été correctement configuré."
+
+#: airtime_mvc/application/controllers/LoginController.php:173
+msgid "There was a problem with the username or email address you entered."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ApiController.php:244
+#: airtime_mvc/application/controllers/ApiController.php:317
+#: airtime_mvc/application/controllers/ApiController.php:392
+#: airtime_mvc/application/controllers/ApiController.php:435
+#: airtime_mvc/application/controllers/ApiController.php:474
+#: airtime_mvc/application/controllers/ApiController.php:507
+msgid "You are not allowed to access this resource. "
+msgstr "Vous n'êtes pas autorisé à acceder à cette ressource."
+
+#: airtime_mvc/application/controllers/ApiController.php:698
+#: airtime_mvc/application/controllers/ApiController.php:718
+#: airtime_mvc/application/controllers/ApiController.php:730
+#, php-format
+msgid "File does not exist in %s"
+msgstr "Le fichier n'existe pas dans %s"
+
+#: airtime_mvc/application/controllers/ApiController.php:781
+msgid "Bad request. no 'mode' parameter passed."
+msgstr "Mauvaise requête. pas de \"mode\" paramètre passé."
+
+#: airtime_mvc/application/controllers/ApiController.php:791
+msgid "Bad request. 'mode' parameter is invalid"
+msgstr "Mauvaise requête.paramètre 'mode' invalide"
+
#: airtime_mvc/application/controllers/LocaleController.php:30
#: airtime_mvc/application/layouts/scripts/audio-player.phtml:5
msgid "Audio Player"
@@ -2909,11 +560,6 @@ msgstr "Ajout de %s Elements"
msgid "You can only add tracks to smart blocks."
msgstr "Vous pouvez seulement ajouter des pistes aux Blocs Intelligents."
-#: airtime_mvc/application/controllers/LocaleController.php:50
-#: airtime_mvc/application/controllers/PlaylistController.php:180
-msgid "You can only add tracks, smart blocks, and webstreams to playlists."
-msgstr "Vous pouvez uniquement ajouter des pistes, des blocs intelligents et flux web aux listes de lecture."
-
#: airtime_mvc/application/controllers/LocaleController.php:53
msgid "Please select a cursor position on timeline."
msgstr "S'il vous plaît sélectionner un curseur sur la timeline."
@@ -2954,11 +600,6 @@ msgstr ""
msgid "Click 'New' to create one."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:66
-#: airtime_mvc/application/controllers/LibraryController.php:123
-msgid "Edit Metadata"
-msgstr "Edition des Méta-Données"
-
#: airtime_mvc/application/controllers/LocaleController.php:67
msgid "Add to selected show"
msgstr "Ajouter à l'émission selectionnée"
@@ -2987,6 +628,12 @@ msgstr "Etes-vous sûr de vouloir efacer le(s) élément(s) selectionné(s)?"
msgid "Scheduled"
msgstr "Programmé"
+#: airtime_mvc/application/controllers/LocaleController.php:74
+#: airtime_mvc/application/layouts/scripts/layout.phtml:78
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
+msgid "Tracks"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:75
#: airtime_mvc/application/layouts/scripts/layout.phtml:60
msgid "Playlist"
@@ -2996,18 +643,96 @@ msgstr ""
msgid "Bit Rate"
msgstr "Taux d'echantillonage"
+#: airtime_mvc/application/controllers/LocaleController.php:80
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
+#: airtime_mvc/application/models/Block.php:1354
+msgid "BPM"
+msgstr "BPM"
+
+#: airtime_mvc/application/controllers/LocaleController.php:84
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
+#: airtime_mvc/application/models/Block.php:1361
+msgid "Encoded By"
+msgstr "Encodé Par"
+
+#: airtime_mvc/application/controllers/LocaleController.php:89
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
+#: airtime_mvc/application/models/Block.php:1367
+msgid "Last Modified"
+msgstr "Dernier Modifié"
+
+#: airtime_mvc/application/controllers/LocaleController.php:90
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
+#: airtime_mvc/application/models/Block.php:1368
+msgid "Last Played"
+msgstr "Dernier Joué"
+
+#: airtime_mvc/application/controllers/LocaleController.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
+#: airtime_mvc/application/models/Block.php:1370
+msgid "Mime"
+msgstr "Mime"
+
+#: airtime_mvc/application/controllers/LocaleController.php:94
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
+#: airtime_mvc/application/models/Block.php:1372
+msgid "Owner"
+msgstr "Propriétaire"
+
+#: airtime_mvc/application/controllers/LocaleController.php:95
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
+#: airtime_mvc/application/models/Block.php:1373
+msgid "Replay Gain"
+msgstr "Replay Gain"
+
#: airtime_mvc/application/controllers/LocaleController.php:96
msgid "Sample Rate"
msgstr "Taux d'Echantillonnage"
+#: airtime_mvc/application/controllers/LocaleController.php:97
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
+#: airtime_mvc/application/models/Block.php:1376
+msgid "Track Number"
+msgstr "Numéro de la Piste"
+
+#: airtime_mvc/application/controllers/LocaleController.php:98
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
+#: airtime_mvc/application/models/Block.php:1377
+msgid "Uploaded"
+msgstr "Téléversé"
+
+#: airtime_mvc/application/controllers/LocaleController.php:99
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
+#: airtime_mvc/application/models/Block.php:1378
+msgid "Website"
+msgstr "Site Internet"
+
#: airtime_mvc/application/controllers/LocaleController.php:101
msgid "Loading..."
msgstr "Chargement..."
+#: airtime_mvc/application/controllers/LocaleController.php:102
+#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
+msgid "All"
+msgstr "Tous"
+
#: airtime_mvc/application/controllers/LocaleController.php:103
msgid "Files"
msgstr "Fichiers"
+#: airtime_mvc/application/controllers/LocaleController.php:104
+#: airtime_mvc/application/layouts/scripts/layout.phtml:80
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
+msgid "Playlists"
+msgstr "Listes de Lecture"
+
+#: airtime_mvc/application/controllers/LocaleController.php:105
+#: airtime_mvc/application/layouts/scripts/layout.phtml:82
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
+msgid "Smart Blocks"
+msgstr "Blocs Intelligents"
+
#: airtime_mvc/application/controllers/LocaleController.php:106
msgid "Web Streams"
msgstr "Flux Web"
@@ -3152,6 +877,74 @@ msgstr "Bloc Intelligent sauvegardé"
msgid "Processing..."
msgstr "Traitement en cours ..."
+#: airtime_mvc/application/controllers/LocaleController.php:151
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
+#: airtime_mvc/application/models/Block.php:1383
+msgid "Select modifier"
+msgstr "Sélectionnez modification"
+
+#: airtime_mvc/application/controllers/LocaleController.php:152
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
+#: airtime_mvc/application/models/Block.php:1384
+msgid "contains"
+msgstr "contient"
+
+#: airtime_mvc/application/controllers/LocaleController.php:153
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
+#: airtime_mvc/application/models/Block.php:1385
+msgid "does not contain"
+msgstr "ne contitent pas"
+
+#: airtime_mvc/application/controllers/LocaleController.php:154
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
+#: airtime_mvc/application/models/Block.php:1386
+#: airtime_mvc/application/models/Block.php:1390
+msgid "is"
+msgstr "est"
+
+#: airtime_mvc/application/controllers/LocaleController.php:155
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
+#: airtime_mvc/application/models/Block.php:1387
+#: airtime_mvc/application/models/Block.php:1391
+msgid "is not"
+msgstr "n'est pas"
+
+#: airtime_mvc/application/controllers/LocaleController.php:156
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
+#: airtime_mvc/application/models/Block.php:1388
+msgid "starts with"
+msgstr "commence par"
+
+#: airtime_mvc/application/controllers/LocaleController.php:157
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
+#: airtime_mvc/application/models/Block.php:1389
+msgid "ends with"
+msgstr "fini par"
+
+#: airtime_mvc/application/controllers/LocaleController.php:158
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
+#: airtime_mvc/application/models/Block.php:1392
+msgid "is greater than"
+msgstr "est plus grand que"
+
+#: airtime_mvc/application/controllers/LocaleController.php:159
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
+#: airtime_mvc/application/models/Block.php:1393
+msgid "is less than"
+msgstr "est plus petit que"
+
+#: airtime_mvc/application/controllers/LocaleController.php:160
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
+#: airtime_mvc/application/models/Block.php:1394
+msgid "is in the range"
+msgstr "est dans le champ"
+
#: airtime_mvc/application/controllers/LocaleController.php:162
msgid "Choose Storage Folder"
msgstr "Choisir un Répertoire de Stockage"
@@ -3168,6 +961,11 @@ msgstr ""
"Etes-vous sûr que vous voulez changer le répertoire de stockage? \n"
"Cela supprimera les fichiers de votre médiathèque Airtime!"
+#: airtime_mvc/application/controllers/LocaleController.php:166
+#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
+msgid "Manage Media Folders"
+msgstr "Gérer les Répertoires des Médias"
+
#: airtime_mvc/application/controllers/LocaleController.php:167
msgid "Are you sure you want to remove the watched folder?"
msgstr "Êtes-vous sûr de vouloir supprimer le répertoire surveillé?"
@@ -3189,6 +987,11 @@ msgstr "Connecté au serveur de flux"
msgid "The stream is disabled"
msgstr "Le flux est désactivé"
+#: airtime_mvc/application/controllers/LocaleController.php:173
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
+msgid "Getting information from the server..."
+msgstr "Obtention des informations à partir du serveur ..."
+
#: airtime_mvc/application/controllers/LocaleController.php:174
msgid "Can not connect to the streaming server"
msgstr "Impossible de se connecter au serveur de flux"
@@ -3416,6 +1219,76 @@ msgstr ""
msgid "Month"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:249
+#: airtime_mvc/application/forms/GeneralPreferences.php:158
+msgid "Sunday"
+msgstr "Dimanche"
+
+#: airtime_mvc/application/controllers/LocaleController.php:250
+#: airtime_mvc/application/forms/GeneralPreferences.php:159
+msgid "Monday"
+msgstr "Lundi"
+
+#: airtime_mvc/application/controllers/LocaleController.php:251
+#: airtime_mvc/application/forms/GeneralPreferences.php:160
+msgid "Tuesday"
+msgstr "Mardi"
+
+#: airtime_mvc/application/controllers/LocaleController.php:252
+#: airtime_mvc/application/forms/GeneralPreferences.php:161
+msgid "Wednesday"
+msgstr "Mercredi"
+
+#: airtime_mvc/application/controllers/LocaleController.php:253
+#: airtime_mvc/application/forms/GeneralPreferences.php:162
+msgid "Thursday"
+msgstr "Jeudi"
+
+#: airtime_mvc/application/controllers/LocaleController.php:254
+#: airtime_mvc/application/forms/GeneralPreferences.php:163
+msgid "Friday"
+msgstr "Vendredi"
+
+#: airtime_mvc/application/controllers/LocaleController.php:255
+#: airtime_mvc/application/forms/GeneralPreferences.php:164
+msgid "Saturday"
+msgstr "Samedi"
+
+#: airtime_mvc/application/controllers/LocaleController.php:256
+#: airtime_mvc/application/forms/AddShowRepeats.php:35
+msgid "Sun"
+msgstr "Dim"
+
+#: airtime_mvc/application/controllers/LocaleController.php:257
+#: airtime_mvc/application/forms/AddShowRepeats.php:36
+msgid "Mon"
+msgstr "Lun"
+
+#: airtime_mvc/application/controllers/LocaleController.php:258
+#: airtime_mvc/application/forms/AddShowRepeats.php:37
+msgid "Tue"
+msgstr "Mar"
+
+#: airtime_mvc/application/controllers/LocaleController.php:259
+#: airtime_mvc/application/forms/AddShowRepeats.php:38
+msgid "Wed"
+msgstr "Mer"
+
+#: airtime_mvc/application/controllers/LocaleController.php:260
+#: airtime_mvc/application/forms/AddShowRepeats.php:39
+msgid "Thu"
+msgstr "Jeu"
+
+#: airtime_mvc/application/controllers/LocaleController.php:261
+#: airtime_mvc/application/forms/AddShowRepeats.php:40
+msgid "Fri"
+msgstr "Ven"
+
+#: airtime_mvc/application/controllers/LocaleController.php:262
+#: airtime_mvc/application/forms/AddShowRepeats.php:41
+msgid "Sat"
+msgstr "Sam"
+
#: airtime_mvc/application/controllers/LocaleController.php:263
msgid "Shows longer than their scheduled time will be cut off by a following show."
msgstr "Les émissions qui dépassent leur programmation seront coupés par les émissions suivantes."
@@ -3425,7 +1298,7 @@ msgid "Cancel Current Show?"
msgstr "Annuler l'Emission en Cours?"
#: airtime_mvc/application/controllers/LocaleController.php:265
-#: airtime_mvc/application/controllers/LocaleController.php:309
+#: airtime_mvc/application/controllers/LocaleController.php:312
msgid "Stop recording current show?"
msgstr "Arreter l'enregistrement de l'émission en cours"
@@ -3445,6 +1318,11 @@ msgstr "Enlever tous les contenus?"
msgid "Delete selected item(s)?"
msgstr "Selectionner le(s) élément(s)?"
+#: airtime_mvc/application/controllers/LocaleController.php:273
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
+msgid "Start"
+msgstr "Début"
+
#: airtime_mvc/application/controllers/LocaleController.php:274
msgid "End"
msgstr "Fin"
@@ -3453,580 +1331,467 @@ msgstr "Fin"
msgid "Duration"
msgstr "Durée"
-#: airtime_mvc/application/controllers/LocaleController.php:283
+#: airtime_mvc/application/controllers/LocaleController.php:276
+msgid "Filtering out "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:277
+msgid " of "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:278
+msgid " records"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/layouts/scripts/layout.phtml:140
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
+#: airtime_mvc/application/models/Block.php:1358
+msgid "Cue In"
+msgstr "Point d'Entré"
+
+#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/layouts/scripts/layout.phtml:147
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
+#: airtime_mvc/application/models/Block.php:1359
+msgid "Cue Out"
+msgstr "Point de Sorti"
+
+#: airtime_mvc/application/controllers/LocaleController.php:286
#: airtime_mvc/application/layouts/scripts/layout.phtml:167
msgid "Fade In"
msgstr "fondu en Entré"
-#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/controllers/LocaleController.php:287
#: airtime_mvc/application/layouts/scripts/layout.phtml:168
msgid "Fade Out"
msgstr "Fondu en Sorti"
-#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/controllers/LocaleController.php:288
msgid "Show Empty"
msgstr "Emission vide"
-#: airtime_mvc/application/controllers/LocaleController.php:286
+#: airtime_mvc/application/controllers/LocaleController.php:289
msgid "Recording From Line In"
msgstr "Enregistrement à partir de 'Line In'"
-#: airtime_mvc/application/controllers/LocaleController.php:287
+#: airtime_mvc/application/controllers/LocaleController.php:290
msgid "Track preview"
msgstr "Pré-écoute de la Piste"
-#: airtime_mvc/application/controllers/LocaleController.php:291
+#: airtime_mvc/application/controllers/LocaleController.php:294
msgid "Cannot schedule outside a show."
msgstr "Vous ne pouvez pas programmer en dehors d'une émission."
-#: airtime_mvc/application/controllers/LocaleController.php:292
+#: airtime_mvc/application/controllers/LocaleController.php:295
msgid "Moving 1 Item"
msgstr "Déplacer 1 élément"
-#: airtime_mvc/application/controllers/LocaleController.php:293
+#: airtime_mvc/application/controllers/LocaleController.php:296
#, php-format
msgid "Moving %s Items"
msgstr "Déplacer %s éléments"
-#: airtime_mvc/application/controllers/LocaleController.php:296
+#: airtime_mvc/application/controllers/LocaleController.php:297
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
+#: airtime_mvc/application/forms/Preferences.php:40
+#: airtime_mvc/application/forms/EditHistory.php:131
+#: airtime_mvc/application/forms/AddUser.php:110
+#: airtime_mvc/application/forms/PasswordChange.php:43
+#: airtime_mvc/application/forms/SupportSettings.php:131
+msgid "Save"
+msgstr "Sauvegarder"
+
+#: airtime_mvc/application/controllers/LocaleController.php:298
+#: airtime_mvc/application/controllers/LocaleController.php:321
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
+#: airtime_mvc/application/forms/EditHistory.php:141
+#: airtime_mvc/application/forms/EditAudioMD.php:186
+msgid "Cancel"
+msgstr "Annuler"
+
+#: airtime_mvc/application/controllers/LocaleController.php:299
msgid "Fade Editor"
msgstr "Editeur de Fondu"
-#: airtime_mvc/application/controllers/LocaleController.php:297
+#: airtime_mvc/application/controllers/LocaleController.php:300
msgid "Cue Editor"
msgstr "Editeur de Point d'E/S"
-#: airtime_mvc/application/controllers/LocaleController.php:298
+#: airtime_mvc/application/controllers/LocaleController.php:301
msgid "Waveform features are available in a browser supporting the Web Audio API"
msgstr "Les caractéristiques de la forme d'onde sont disponibles dans un navigateur supportant l'API Web Audio"
-#: airtime_mvc/application/controllers/LocaleController.php:301
+#: airtime_mvc/application/controllers/LocaleController.php:304
msgid "Select all"
msgstr "Tout Selectionner"
-#: airtime_mvc/application/controllers/LocaleController.php:302
+#: airtime_mvc/application/controllers/LocaleController.php:305
msgid "Select none"
msgstr "Ne Rien Selectionner"
-#: airtime_mvc/application/controllers/LocaleController.php:303
+#: airtime_mvc/application/controllers/LocaleController.php:306
msgid "Trim overbooked shows"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:304
+#: airtime_mvc/application/controllers/LocaleController.php:307
msgid "Remove selected scheduled items"
msgstr "Supprimer les éléments programmés selectionnés"
-#: airtime_mvc/application/controllers/LocaleController.php:305
+#: airtime_mvc/application/controllers/LocaleController.php:308
msgid "Jump to the current playing track"
msgstr "Aller à la piste en cours de lecture"
-#: airtime_mvc/application/controllers/LocaleController.php:306
+#: airtime_mvc/application/controllers/LocaleController.php:309
msgid "Cancel current show"
msgstr "Annuler l'émission en cours"
-#: airtime_mvc/application/controllers/LocaleController.php:311
+#: airtime_mvc/application/controllers/LocaleController.php:314
msgid "Open library to add or remove content"
msgstr "Ouvrir la Médiathèque pour ajouter ou supprimer du contenu"
-#: airtime_mvc/application/controllers/LocaleController.php:312
+#: airtime_mvc/application/controllers/LocaleController.php:315
msgid "Add / Remove Content"
msgstr "Ajouter/Supprimer Contenu"
#: airtime_mvc/application/controllers/LocaleController.php:317
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
+msgid "in use"
+msgstr "en utilisation"
+
+#: airtime_mvc/application/controllers/LocaleController.php:318
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
+msgid "Disk"
+msgstr "Disque"
+
+#: airtime_mvc/application/controllers/LocaleController.php:320
msgid "Look in"
msgstr "Regarder à l'intérieur"
-#: airtime_mvc/application/controllers/LocaleController.php:319
+#: airtime_mvc/application/controllers/LocaleController.php:322
msgid "Open"
msgstr "Ouvrir"
+#: airtime_mvc/application/controllers/LocaleController.php:324
+#: airtime_mvc/application/forms/AddUser.php:102
+msgid "Admin"
+msgstr "Administrateur"
+
#: airtime_mvc/application/controllers/LocaleController.php:325
+#: airtime_mvc/application/forms/AddUser.php:100
+msgid "DJ"
+msgstr "DeaJee"
+
+#: airtime_mvc/application/controllers/LocaleController.php:326
+#: airtime_mvc/application/forms/AddUser.php:101
+msgid "Program Manager"
+msgstr "Programmateur"
+
+#: airtime_mvc/application/controllers/LocaleController.php:327
+#: airtime_mvc/application/forms/AddUser.php:99
+msgid "Guest"
+msgstr "Invité"
+
+#: airtime_mvc/application/controllers/LocaleController.php:328
msgid "Guests can do the following:"
msgstr "Les Invités peuvent effectuer les opérations suivantes:"
-#: airtime_mvc/application/controllers/LocaleController.php:326
+#: airtime_mvc/application/controllers/LocaleController.php:329
msgid "View schedule"
msgstr "Voir le calendrier"
-#: airtime_mvc/application/controllers/LocaleController.php:327
+#: airtime_mvc/application/controllers/LocaleController.php:330
msgid "View show content"
msgstr "Voir le contenu des émissions"
-#: airtime_mvc/application/controllers/LocaleController.php:328
+#: airtime_mvc/application/controllers/LocaleController.php:331
msgid "DJs can do the following:"
msgstr "Les DJs peuvent effectuer les opérations suivantes:"
-#: airtime_mvc/application/controllers/LocaleController.php:329
+#: airtime_mvc/application/controllers/LocaleController.php:332
msgid "Manage assigned show content"
msgstr "Gérer le contenu des émissions attribué"
-#: airtime_mvc/application/controllers/LocaleController.php:330
+#: airtime_mvc/application/controllers/LocaleController.php:333
msgid "Import media files"
msgstr "Importer des fichiers multimédias"
-#: airtime_mvc/application/controllers/LocaleController.php:331
+#: airtime_mvc/application/controllers/LocaleController.php:334
msgid "Create playlists, smart blocks, and webstreams"
msgstr "Créez des listes de lectures, des blocs intelligents et des flux web"
-#: airtime_mvc/application/controllers/LocaleController.php:332
+#: airtime_mvc/application/controllers/LocaleController.php:335
msgid "Manage their own library content"
msgstr "Gérer le contenu de leur propre audiotheque"
-#: airtime_mvc/application/controllers/LocaleController.php:333
+#: airtime_mvc/application/controllers/LocaleController.php:336
msgid "Progam Managers can do the following:"
msgstr "Les gestionnaires pouvent effectuer les opérations suivantes:"
-#: airtime_mvc/application/controllers/LocaleController.php:334
+#: airtime_mvc/application/controllers/LocaleController.php:337
msgid "View and manage show content"
msgstr "Afficher et gérer le contenu des émissions"
-#: airtime_mvc/application/controllers/LocaleController.php:335
+#: airtime_mvc/application/controllers/LocaleController.php:338
msgid "Schedule shows"
msgstr "Programmer des émissions"
-#: airtime_mvc/application/controllers/LocaleController.php:336
+#: airtime_mvc/application/controllers/LocaleController.php:339
msgid "Manage all library content"
msgstr "Gérez tout le contenu de l'audiotheque"
-#: airtime_mvc/application/controllers/LocaleController.php:337
+#: airtime_mvc/application/controllers/LocaleController.php:340
msgid "Admins can do the following:"
msgstr "Les Administrateurs peuvent effectuer les opérations suivantes:"
-#: airtime_mvc/application/controllers/LocaleController.php:338
+#: airtime_mvc/application/controllers/LocaleController.php:341
msgid "Manage preferences"
msgstr "Gérer les préférences"
-#: airtime_mvc/application/controllers/LocaleController.php:339
+#: airtime_mvc/application/controllers/LocaleController.php:342
msgid "Manage users"
msgstr "Gérer les utilisateurs"
-#: airtime_mvc/application/controllers/LocaleController.php:340
+#: airtime_mvc/application/controllers/LocaleController.php:343
msgid "Manage watched folders"
msgstr "Gérer les dossiers surveillés"
-#: airtime_mvc/application/controllers/LocaleController.php:342
+#: airtime_mvc/application/controllers/LocaleController.php:344
+#: airtime_mvc/application/forms/RegisterAirtime.php:116
+#: airtime_mvc/application/forms/SupportSettings.php:98
+msgid "Send support feedback"
+msgstr "Envoyez vos remarques au support"
+
+#: airtime_mvc/application/controllers/LocaleController.php:345
msgid "View system status"
msgstr "Voir l'état du système"
-#: airtime_mvc/application/controllers/LocaleController.php:343
+#: airtime_mvc/application/controllers/LocaleController.php:346
msgid "Access playout history"
msgstr "Accédez à l'historique diffusion"
-#: airtime_mvc/application/controllers/LocaleController.php:344
+#: airtime_mvc/application/controllers/LocaleController.php:347
msgid "View listener stats"
msgstr "Voir les statistiques des auditeurs"
-#: airtime_mvc/application/controllers/LocaleController.php:346
+#: airtime_mvc/application/controllers/LocaleController.php:349
msgid "Show / hide columns"
msgstr "Montrer / cacher les colonnes"
-#: airtime_mvc/application/controllers/LocaleController.php:348
+#: airtime_mvc/application/controllers/LocaleController.php:351
msgid "From {from} to {to}"
msgstr "De {from} à {to}"
-#: airtime_mvc/application/controllers/LocaleController.php:349
+#: airtime_mvc/application/controllers/LocaleController.php:352
msgid "kbps"
msgstr "kbps"
-#: airtime_mvc/application/controllers/LocaleController.php:350
+#: airtime_mvc/application/controllers/LocaleController.php:353
msgid "yyyy-mm-dd"
msgstr "aaaa-mm-jj"
-#: airtime_mvc/application/controllers/LocaleController.php:351
+#: airtime_mvc/application/controllers/LocaleController.php:354
msgid "hh:mm:ss.t"
msgstr "hh:mm:ss.t"
-#: airtime_mvc/application/controllers/LocaleController.php:352
+#: airtime_mvc/application/controllers/LocaleController.php:355
msgid "kHz"
msgstr "kHz"
-#: airtime_mvc/application/controllers/LocaleController.php:355
+#: airtime_mvc/application/controllers/LocaleController.php:358
msgid "Su"
msgstr "Di"
-#: airtime_mvc/application/controllers/LocaleController.php:356
+#: airtime_mvc/application/controllers/LocaleController.php:359
msgid "Mo"
msgstr "Lu"
-#: airtime_mvc/application/controllers/LocaleController.php:357
+#: airtime_mvc/application/controllers/LocaleController.php:360
msgid "Tu"
msgstr "Ma"
-#: airtime_mvc/application/controllers/LocaleController.php:358
+#: airtime_mvc/application/controllers/LocaleController.php:361
msgid "We"
msgstr "Me"
-#: airtime_mvc/application/controllers/LocaleController.php:359
+#: airtime_mvc/application/controllers/LocaleController.php:362
msgid "Th"
msgstr "Je"
-#: airtime_mvc/application/controllers/LocaleController.php:360
+#: airtime_mvc/application/controllers/LocaleController.php:363
msgid "Fr"
msgstr "Ve"
-#: airtime_mvc/application/controllers/LocaleController.php:361
+#: airtime_mvc/application/controllers/LocaleController.php:364
msgid "Sa"
msgstr "Sa"
-#: airtime_mvc/application/controllers/LocaleController.php:364
+#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
+msgid "Close"
+msgstr "Fermer"
+
+#: airtime_mvc/application/controllers/LocaleController.php:367
msgid "Hour"
msgstr "Heure"
-#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:368
msgid "Minute"
msgstr "Minute"
-#: airtime_mvc/application/controllers/LocaleController.php:366
+#: airtime_mvc/application/controllers/LocaleController.php:369
msgid "Done"
msgstr "Fait"
-#: airtime_mvc/application/controllers/LocaleController.php:369
+#: airtime_mvc/application/controllers/LocaleController.php:372
msgid "Select files"
msgstr "Sélectionnez les fichiers"
-#: airtime_mvc/application/controllers/LocaleController.php:370
-#: airtime_mvc/application/controllers/LocaleController.php:371
+#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:374
msgid "Add files to the upload queue and click the start button."
msgstr "Ajouter des fichiers à la file d'attente de téléversement, puis cliquez sur le bouton Démarrer."
-#: airtime_mvc/application/controllers/LocaleController.php:372
-#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:376
msgid "Status"
msgstr "Status"
-#: airtime_mvc/application/controllers/LocaleController.php:374
+#: airtime_mvc/application/controllers/LocaleController.php:377
msgid "Add Files"
msgstr "Ajouter des fichiers"
-#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:378
msgid "Stop Upload"
msgstr "Arreter le Téléversement"
-#: airtime_mvc/application/controllers/LocaleController.php:376
+#: airtime_mvc/application/controllers/LocaleController.php:379
msgid "Start upload"
msgstr "Démarrer le Téléversement"
-#: airtime_mvc/application/controllers/LocaleController.php:377
+#: airtime_mvc/application/controllers/LocaleController.php:380
msgid "Add files"
msgstr "Ajouter des fichiers"
-#: airtime_mvc/application/controllers/LocaleController.php:378
+#: airtime_mvc/application/controllers/LocaleController.php:381
#, php-format
msgid "Uploaded %d/%d files"
msgstr "Téléversement de %d/%d fichiers"
-#: airtime_mvc/application/controllers/LocaleController.php:379
+#: airtime_mvc/application/controllers/LocaleController.php:382
msgid "N/A"
msgstr "N/A"
-#: airtime_mvc/application/controllers/LocaleController.php:380
+#: airtime_mvc/application/controllers/LocaleController.php:383
msgid "Drag files here."
msgstr "Faites glisser les fichiers ici."
-#: airtime_mvc/application/controllers/LocaleController.php:381
+#: airtime_mvc/application/controllers/LocaleController.php:384
msgid "File extension error."
msgstr "Erreur d'extension du fichier."
-#: airtime_mvc/application/controllers/LocaleController.php:382
+#: airtime_mvc/application/controllers/LocaleController.php:385
msgid "File size error."
msgstr "Erreur de la Taille de Fichier."
-#: airtime_mvc/application/controllers/LocaleController.php:383
+#: airtime_mvc/application/controllers/LocaleController.php:386
msgid "File count error."
msgstr "Erreur de comptage des fichiers."
-#: airtime_mvc/application/controllers/LocaleController.php:384
+#: airtime_mvc/application/controllers/LocaleController.php:387
msgid "Init error."
msgstr "Erreur d'Initialisation."
-#: airtime_mvc/application/controllers/LocaleController.php:385
+#: airtime_mvc/application/controllers/LocaleController.php:388
msgid "HTTP Error."
msgstr "Erreur HTTP."
-#: airtime_mvc/application/controllers/LocaleController.php:386
+#: airtime_mvc/application/controllers/LocaleController.php:389
msgid "Security error."
msgstr "Erreur de sécurité."
-#: airtime_mvc/application/controllers/LocaleController.php:387
+#: airtime_mvc/application/controllers/LocaleController.php:390
msgid "Generic error."
msgstr "Erreur générique."
-#: airtime_mvc/application/controllers/LocaleController.php:388
+#: airtime_mvc/application/controllers/LocaleController.php:391
msgid "IO error."
msgstr "Erreur d'E/S."
-#: airtime_mvc/application/controllers/LocaleController.php:389
+#: airtime_mvc/application/controllers/LocaleController.php:392
#, php-format
msgid "File: %s"
msgstr "Fichier: %s"
-#: airtime_mvc/application/controllers/LocaleController.php:391
+#: airtime_mvc/application/controllers/LocaleController.php:394
#, php-format
msgid "%d files queued"
msgstr "%d fichiers en file d'attente"
-#: airtime_mvc/application/controllers/LocaleController.php:392
+#: airtime_mvc/application/controllers/LocaleController.php:395
msgid "File: %f, size: %s, max file size: %m"
msgstr "Fichier:%f, taille: %s, taille de fichier maximale: %m"
-#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/controllers/LocaleController.php:396
msgid "Upload URL might be wrong or doesn't exist"
msgstr "l'URL de Téléversement est peut être erronée ou inexistante"
-#: airtime_mvc/application/controllers/LocaleController.php:394
+#: airtime_mvc/application/controllers/LocaleController.php:397
msgid "Error: File too large: "
msgstr "Erreur: Fichier trop grand:"
-#: airtime_mvc/application/controllers/LocaleController.php:395
+#: airtime_mvc/application/controllers/LocaleController.php:398
msgid "Error: Invalid file extension: "
msgstr "Erreur: extension de fichier non valide:"
-#: airtime_mvc/application/controllers/LocaleController.php:398
+#: airtime_mvc/application/controllers/LocaleController.php:400
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
+msgid "Set Default"
+msgstr "Définir par défaut"
+
+#: airtime_mvc/application/controllers/LocaleController.php:401
msgid "Create Entry"
msgstr "créer une entrée"
-#: airtime_mvc/application/controllers/LocaleController.php:399
+#: airtime_mvc/application/controllers/LocaleController.php:402
msgid "Edit History Record"
msgstr "Éditer l'enregistrement de l'historique"
-#: airtime_mvc/application/controllers/LocaleController.php:402
+#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
+#: airtime_mvc/application/forms/EditHistoryItem.php:57
+msgid "No Show"
+msgstr "Pas d'émission"
+
+#: airtime_mvc/application/controllers/LocaleController.php:405
#, php-format
msgid "Copied %s row%s to the clipboard"
msgstr "Copié %s ligne(s)%s dans le presse papier"
-#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/controllers/LocaleController.php:406
#, php-format
msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished."
msgstr "%sVue Imprimante%s Veuillez utiliser la fonction d'impression de votre navigateur pour imprimer ce tableau. Appuyez sur échapper lorsque vous avez terminé."
-#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/controllers/LocaleController.php:407
msgid "New Show"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:405
+#: airtime_mvc/application/controllers/LocaleController.php:408
msgid "New Log Entry"
msgstr ""
-#: airtime_mvc/application/controllers/ScheduleController.php:389
-#, php-format
-msgid "Rebroadcast of show %s from %s at %s"
-msgstr "Rediffusion de l'émission %s de %s à %s"
-
-#: airtime_mvc/application/controllers/ScheduleController.php:712
-#: airtime_mvc/application/controllers/LibraryController.php:131
-msgid "Download"
-msgstr "Téléchargement"
-
-#: airtime_mvc/application/controllers/ErrorController.php:78
-msgid "Page not found."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:87
-msgid "The requested action is not supported."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:98
-msgid "You do not have permission to access this resource."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:109
-msgid "An internal application error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ListenerstatController.php:51
-msgid "Please make sure admin user/password is correct on System->Streams page."
-msgstr "S'il vous plaît assurez-vous que l'utilisateur admin a un mot de passe correct sur le système-> page flux."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:53
-#, php-format
-msgid "You are viewing an older version of %s"
-msgstr "Vous visualisez l'ancienne version de %s"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:140
-msgid "You cannot add tracks to dynamic blocks."
-msgstr "Vous ne pouvez pas ajouter de pistes aux blocs dynamiques."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:147
-#: airtime_mvc/application/controllers/LibraryController.php:31
-#, php-format
-msgid "%s not found"
-msgstr "%s non trouvé"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:161
-#, php-format
-msgid "You don't have permission to delete selected %s(s)."
-msgstr "Vous n'avez pas la permission de supprimer la sélection %s(s)."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:168
-#: airtime_mvc/application/controllers/LibraryController.php:40
-msgid "Something went wrong."
-msgstr "Quelque chose s'est mal passé."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:174
-msgid "You can only add tracks to smart block."
-msgstr "Vous pouvez seulement ajouter des pistes au bloc intelligent."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:192
-msgid "Untitled Playlist"
-msgstr "Liste de Lecture Sans Titre"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:194
-msgid "Untitled Smart Block"
-msgstr "Bloc Intelligent Sans Titre"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:522
-msgid "Unknown Playlist"
-msgstr "Liste de Lecture Inconnue"
-
-#: airtime_mvc/application/controllers/LoginController.php:43
-msgid "Please enter your username and password."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:93
-msgid "Wrong username or password provided. Please try again."
-msgstr "Mauvais Nom d'utilisateur ou mot de passe fourni. S'il vous plaît essayez de nouveau."
-
-#: airtime_mvc/application/controllers/LoginController.php:167
-msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
-msgstr "Le Courriel n'a pas pu être envoyé. Vérifiez vos paramètres du serveur de messagerie et s'assurez vous qu'il a été correctement configuré."
-
-#: airtime_mvc/application/controllers/LoginController.php:173
-msgid "There was a problem with the username or email address you entered."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:35
-#: airtime_mvc/application/controllers/DashboardController.php:84
-msgid "You don't have permission to disconnect source."
-msgstr "Vous n'avez pas la permission de déconnecter la source."
-
-#: airtime_mvc/application/controllers/DashboardController.php:37
-#: airtime_mvc/application/controllers/DashboardController.php:86
-msgid "There is no source connected to this input."
-msgstr "Il n'y a pas de source connectée à cette entrée."
-
-#: airtime_mvc/application/controllers/DashboardController.php:81
-msgid "You don't have permission to switch source."
-msgstr "Vous n'avez pas la permission de changer de source."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:72
-msgid "Preferences updated."
-msgstr "Préférences mises à jour."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:115
-msgid "Support setting updated."
-msgstr "Régalges su Support mis à jour."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:123
-msgid "Support Feedback"
-msgstr "Remarques au support"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:251
-msgid "Stream Setting Updated."
-msgstr "Réglages du Flux mis à jour."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:342
-msgid "path should be specified"
-msgstr "le chemin doit être spécifié"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:437
-msgid "Problem with Liquidsoap..."
-msgstr "Problème ave Liquidsoap..."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:493
-msgid "Request method not accepted"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:86
-msgid "User added successfully!"
-msgstr "Utilisateur ajouté avec succès!"
-
-#: airtime_mvc/application/controllers/UserController.php:88
-msgid "User updated successfully!"
-msgstr "Utilisateur mis à jour avec succès!"
-
-#: airtime_mvc/application/controllers/UserController.php:187
-msgid "Settings updated successfully!"
-msgstr "Paramètres mis à jour avec succès!"
-
-#: airtime_mvc/application/controllers/WebstreamController.php:28
-#: airtime_mvc/application/controllers/WebstreamController.php:32
-msgid "Untitled Webstream"
-msgstr "Flux Web sans Titre"
-
-#: airtime_mvc/application/controllers/WebstreamController.php:150
-msgid "Webstream saved."
-msgstr "Flux Web sauvegardé"
-
-#: airtime_mvc/application/controllers/WebstreamController.php:158
-msgid "Invalid form values."
-msgstr "Valeurs du formulaire non valides."
-
-#: airtime_mvc/application/controllers/LibraryController.php:95
-#: airtime_mvc/application/controllers/ShowbuilderController.php:136
-msgid "Preview"
-msgstr "Pré-Visualisation"
-
-#: airtime_mvc/application/controllers/LibraryController.php:115
-#: airtime_mvc/application/controllers/LibraryController.php:177
-#: airtime_mvc/application/controllers/LibraryController.php:200
-msgid "Add to Playlist"
-msgstr "Ajouter une"
-
-#: airtime_mvc/application/controllers/LibraryController.php:117
-msgid "Add to Smart Block"
-msgstr "Ajouter un bloc Intelligent"
-
-#: airtime_mvc/application/controllers/LibraryController.php:147
-msgid "View track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:148
-msgid "Remove track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:154
-#: airtime_mvc/application/controllers/LibraryController.php:159
-msgid "Upload track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:169
-msgid "Duplicate Playlist"
-msgstr "dupliquer la Liste de lecture"
-
-#: airtime_mvc/application/controllers/LibraryController.php:213
-msgid "No action available"
-msgstr "Aucune action disponible"
-
-#: airtime_mvc/application/controllers/LibraryController.php:233
-msgid "You don't have permission to delete selected items."
-msgstr "Vous n'avez pas la permission de supprimer les éléments sélectionnés."
-
-#: airtime_mvc/application/controllers/LibraryController.php:279
-msgid "Could not delete file because it is scheduled in the future."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:282
-msgid "Could not delete file(s)."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:322
-#, php-format
-msgid "Copy of %s"
-msgstr "Copie de %s"
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
-msgid ""
-"To configure and use the embeddable player you must:
\n"
-" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
-" 2. Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
-msgid ""
-"To use the embeddable weekly schedule widget you must:
\n"
-" Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
#: airtime_mvc/application/controllers/ShowbuilderController.php:138
msgid "Select cursor"
msgstr "Selectionner le Curseur"
@@ -4039,39 +1804,78 @@ msgstr "Enlever le Curseur"
msgid "show does not exist"
msgstr "L'Emission n'existe pas"
-#: airtime_mvc/application/controllers/ApiController.php:79
-msgid "You are not allowed to access this resource."
-msgstr "Vous n'êtes pas autorisé à acceder à cette ressource."
-
-#: airtime_mvc/application/controllers/ApiController.php:244
-#: airtime_mvc/application/controllers/ApiController.php:317
-#: airtime_mvc/application/controllers/ApiController.php:392
-#: airtime_mvc/application/controllers/ApiController.php:435
-#: airtime_mvc/application/controllers/ApiController.php:474
-#: airtime_mvc/application/controllers/ApiController.php:507
-msgid "You are not allowed to access this resource. "
-msgstr "Vous n'êtes pas autorisé à acceder à cette ressource."
-
-#: airtime_mvc/application/controllers/ApiController.php:698
-#: airtime_mvc/application/controllers/ApiController.php:718
-#: airtime_mvc/application/controllers/ApiController.php:730
+#: airtime_mvc/application/controllers/ScheduleController.php:389
#, php-format
-msgid "File does not exist in %s"
-msgstr "Le fichier n'existe pas dans %s"
+msgid "Rebroadcast of show %s from %s at %s"
+msgstr "Rediffusion de l'émission %s de %s à %s"
-#: airtime_mvc/application/controllers/ApiController.php:781
-msgid "Bad request. no 'mode' parameter passed."
-msgstr "Mauvaise requête. pas de \"mode\" paramètre passé."
-
-#: airtime_mvc/application/controllers/ApiController.php:791
-msgid "Bad request. 'mode' parameter is invalid"
-msgstr "Mauvaise requête.paramètre 'mode' invalide"
-
-#: airtime_mvc/application/layouts/scripts/login.phtml:24
-#, php-format
-msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+#: airtime_mvc/application/common/UsabilityHints.php:55
+msgid "Upload some tracks below to add them to your library!"
msgstr ""
+#: airtime_mvc/application/common/UsabilityHints.php:57
+#, php-format
+msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:63
+msgid "Click the 'New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:65
+#, php-format
+msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:73
+msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:75
+#, php-format
+msgid ""
+"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
+" %sCreate an unlinked show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:80
+msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:82
+#, php-format
+msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:89
+msgid "Click on the show starting next and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:91
+#, php-format
+msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/DateHelper.php:213
+#, php-format
+msgid "The year %s must be within the range of 1753 - 9999"
+msgstr "L'année %s doit être comprise entre 1753 - 9999"
+
+#: airtime_mvc/application/common/DateHelper.php:216
+#, php-format
+msgid "%s-%s-%s is not a valid date"
+msgstr "%s-%s-%s n'est pas une date valide"
+
+#: airtime_mvc/application/common/DateHelper.php:240
+#, php-format
+msgid "%s:%s:%s is not a valid time"
+msgstr "%s:%s:%s n'est pas une durée valide"
+
+#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
+msgid "Live stream"
+msgstr "Flux Live"
+
#: airtime_mvc/application/layouts/scripts/layout.phtml:63
msgid "Smart Block"
msgstr ""
@@ -4084,6 +1888,17 @@ msgstr ""
msgid "Upload"
msgstr ""
+#: airtime_mvc/application/layouts/scripts/layout.phtml:76
+#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
+msgid "Dashboard"
+msgstr ""
+
+#: airtime_mvc/application/layouts/scripts/layout.phtml:84
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
+msgid "Webstreams"
+msgstr ""
+
#: airtime_mvc/application/layouts/scripts/layout.phtml:135
#: airtime_mvc/application/layouts/scripts/layout.phtml:161
msgid "Play"
@@ -4106,420 +1921,2128 @@ msgstr "Placer le Point de Sortie"
msgid "Cursor"
msgstr "Curseur"
-#~ msgid "%1$s copyright © %2$s All rights reserved.%3$sMaintained and distributed under the %4$s by %5$s"
-#~ msgstr "%1$s copyright © %2$s Tous droits réservés.%3$sMaintenue et distribuée sous %4$s by %5$s"
+#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#, php-format
+msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
+msgid "Drop files here or click to browse your computer."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
+msgid "Failed"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
+msgid "Pending"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
+msgid "Recent Uploads"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
+msgid "Share"
+msgstr "Partager"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
+msgid "Select stream:"
+msgstr "Selection du Flux:"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
+msgid "mute"
+msgstr "sourdine"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
+msgid "unmute"
+msgstr "désactiver"
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
+msgid "About"
+msgstr "A propos"
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
+#, php-format
+msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
+msgstr "%1$s %2$s, le logiciel ouvert de gestion et de programmation pour vos stations distantes."
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
+#, php-format
+msgid "%1$s %2$s is distributed under the %3$s"
+msgstr "%1$s %2$s est distribué sous %3$s"
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
+#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
+#, php-format
+msgid "Welcome to %s!"
+msgstr "Bienvenue à %s !"
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
+#, php-format
+msgid "Here's how you can get started using %s to automate your broadcasts: "
+msgstr "Voici comment vous pouvez commencer à utiliser %s pour automatiser vos émissions:"
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
+msgid "Upload audio tracks"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
+msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
+msgid "Schedule a show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
+msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
+msgid "Add tracks to your show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
+msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
+msgid "Now you're good to go!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
+#, php-format
+msgid "For more detailed help, read the %suser manual%s."
+msgstr "Pour une aide plus détaillée, lisez le %smanuel utilisateur%s."
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
+#: airtime_mvc/application/configs/navigation.php:40
+msgid "Weekly Schedule"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
+#: airtime_mvc/application/forms/Player.php:77
+msgid "Preview:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
+#: airtime_mvc/application/configs/navigation.php:34
+msgid "Player"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:97
+msgid "Playout History"
+msgstr "Historique de Diffusion"
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
+msgid "Log Sheet"
+msgstr "Fichier de Log"
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
+msgid "File Summary"
+msgstr "Résumé du fichier"
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
+msgid "Show Summary"
+msgstr "Historique Emision"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
+msgid "Expand Static Block"
+msgstr "Ettendre le bloc Statique"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
+msgid "Expand Dynamic Block"
+msgstr "Ettendre le Bloc Dynamique"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
+msgid "Choose some search criteria above and click Generate to create this playlist."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
+msgid "A track list will be generated when you schedule this smart block into a show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
+msgid "Drag tracks here from your library to add them to the playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
+msgid "Editing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:26
+msgid "Name:"
+msgstr "Nom:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
+#: airtime_mvc/application/forms/AddShowWhat.php:54
+msgid "Description:"
+msgstr "Description:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
+#: airtime_mvc/application/forms/AddShowWhen.php:89
+msgid "Duration:"
+msgstr "Durée:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
+msgid "Toggle Details"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+msgid "Shuffle playlist"
+msgstr "Liste de Lecture Aléatoire"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
+msgid "Shuffle"
+msgstr "Aléatoire"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
+msgid "Playlist crossfade"
+msgstr "Fondu enchainé de la Liste de Lecture"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+msgid "Empty playlist content"
+msgstr "Vider le contenu de la Liste de Lecture"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Clear"
+msgstr "Vider"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+msgid "Fade in: "
+msgstr "Fondu en entrée:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "Fade out: "
+msgstr "Fondu en sortie:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+msgid "Save playlist"
+msgstr "Sauvegarde de la Liste de Lecture"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
+msgid "No open playlist"
+msgstr "Pas de Liste de Lecture Ouverte"
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
+msgid "Show Waveform"
+msgstr "Montrer la Forme d'Onde"
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "(ss.t)"
+msgstr "(ss.t)"
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Remove all content from this smart block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
+msgid "No smart block currently open"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+msgid "Cue In: "
+msgstr "Point d'Entrée"
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "(hh:mm:ss.t)"
+msgstr "(hh:mm:ss.t)"
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "Cue Out: "
+msgstr "Point de Sortie:"
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
+msgid "Original Length:"
+msgstr "Durée Originale:"
+
+#: airtime_mvc/application/views/scripts/preference/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:56
+msgid "General"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
+msgid "Stream Settings"
+msgstr "Réglages des Flux"
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
+msgid "Global"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
+msgid "dB"
+msgstr "dB"
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
+msgid "Output Streams"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:3
+#: airtime_mvc/application/forms/Login.php:83
+msgid "Login"
+msgstr "Connexion"
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:7
+#, php-format
+msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
+msgstr "Bienvenue à la démo %s ! Vous pouvez vous connecter en utilisant le nom d'utilisateur «admin» et le mot de passe «admin» ."
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
+msgid "Email Sent!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
+msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
+msgid "Back"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
+msgid "Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
+msgid "New password"
+msgstr "Nouveau mot de passe"
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
+msgid "Please enter and confirm your new password in the fields below."
+msgstr "S'il vous plaît saisir et confirmer votre nouveau mot de passe dans les champs ci-dessous."
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
+msgid "Manage Users"
+msgstr "Gérer les Utilisateurs"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
+msgid "New User"
+msgstr "Nouvel Utilisateur"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
+msgid "id"
+msgstr "id"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
+#: airtime_mvc/application/forms/PasswordRestore.php:25
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
+msgid "Username"
+msgstr "Utilisateur"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
+msgid "First Name"
+msgstr "Prénom"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
+msgid "Last Name"
+msgstr "Nom"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
+msgid "User Type"
+msgstr "Type d'Utilisateur"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
+#, php-format
+msgid "Super Admin details can be changed in your Billing Settings."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
+msgid "Find Shows"
+msgstr "Trouver Emissions"
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
+msgid "Choose Show Instance"
+msgstr "Choisissez Afficher instance"
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
+msgid "Find"
+msgstr "Trouver"
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
+#: airtime_mvc/application/configs/navigation.php:61
+msgid "My Profile"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
+#, php-format
+msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
+msgid "Repeat Days:"
+msgstr "Jours de Répétition:"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
+#: airtime_mvc/application/forms/GeneralPreferences.php:53
+#: airtime_mvc/application/forms/AddShowStyle.php:64
+msgid "Remove"
+msgstr "Enlever"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
+msgid "Add"
+msgstr "Ajouter"
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
+msgid "Show Source"
+msgstr "Source Emission"
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
+msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
+msgid "Register Airtime"
+msgstr "Enregistrez Airtime"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
+#, php-format
+msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
+#, php-format
+msgid "Click the box below to promote your station on %s."
+msgstr "Cliquez sur la case ci-dessous pour promouvoir votre station sur %s ."
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
+msgid "(Required)"
+msgstr "(Requis)"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
+msgid "(for verification purposes only, will not be published)"
+msgstr "(à des fins de vérification uniquement, ne sera pas publié)"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
+#: airtime_mvc/application/forms/GeneralPreferences.php:43
+msgid "Note: Anything larger than 600x600 will be resized."
+msgstr "Remarque: Tout ce qui est plus grand que 600x600 sera redimensionné."
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
+msgid "Show me what I am sending "
+msgstr "Montrez-moi ce que je vais envoyer"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
+msgid "Terms and Conditions"
+msgstr "Termes et Conditions."
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
+msgid "Choose Days:"
+msgstr "Choix des Jours:"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
+msgid "Search Criteria:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
+msgid "New Criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
+msgid "or"
+msgstr "ou"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
+msgid "and"
+msgstr "et"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
+msgid "New Modifier"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
+msgid " to "
+msgstr "à"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
+msgid "files meet the criteria"
+msgstr "fichiers répondent aux critères"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
+msgid "file meets the criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
+msgid "Filter History"
+msgstr "Filtre de l'Historique"
+
+#: airtime_mvc/application/views/scripts/form/login.phtml:41
+msgid "Forgot your password?"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
+msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
+msgstr "(Pour la promotion de votre station, 'Envoyez vos remarques au support' doit être activé)."
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
+msgid "Stream "
+msgstr "Flux"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
+msgid "Additional Options"
+msgstr "options supplémentaires"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
+msgid "The following info will be displayed to listeners in their media player:"
+msgstr "Les informations suivantes seront affichées aux auditeurs dans leur lecteur multimédia:"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
+msgid "(Your radio station website)"
+msgstr "(Site Internet de la Station de Radio)"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
+msgid "Stream URL: "
+msgstr "URL du Flux:"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
+msgid "Choose folder"
+msgstr "Choisir le répertoire"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
+msgid "Set"
+msgstr "Installer"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
+msgid "Current Import Folder:"
+msgstr "Répertoire d'Import en Cours:"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
+#, php-format
+msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
+msgstr "Rescanner le répertoire surveillé (Ce qui peut être utile si il est sur le réseau et est peut être désynchronisé de %s)"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
+msgid "Remove watched directory"
+msgstr "Supprimer le répertoire surveillé"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
+msgid "You are not watching any media folders."
+msgstr "Vous ne surveillez pas les dossiers médias."
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
+msgid "Live Broadcasting"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
+msgid "Master Source"
+msgstr "Source Maitre"
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
+msgid "Use these settings in your broadcasting software to stream live at any time."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
+msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
+msgid "TuneIn Settings"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
+msgid "SoundCloud Settings"
+msgstr "Réglages SoundCloud"
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
+msgid "Dangerous Options"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Add this show"
+msgstr "Ajouter cette Emission"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Update show"
+msgstr "Mettre à jour l'émission"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
+msgid "What"
+msgstr "Quoi"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
+msgid "When"
+msgstr "Quand"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
+msgid "Live Stream Input"
+msgstr "Entrée du Flux Direct"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
+msgid "Who"
+msgstr "Qui"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
+msgid "Style"
+msgstr "Style"
+
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
+msgid "Disk Space"
+msgstr "Espace Disque"
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:3
+msgid "File import in progress..."
+msgstr "Import du Fichier en cours..."
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:10
+#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
+msgid "Advanced Search Options"
+msgstr "Options Avancées de Recherche"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
+#: airtime_mvc/application/forms/EditAudioMD.php:24
+#: airtime_mvc/application/forms/Player.php:15
+msgid "Title:"
+msgstr "Titre:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
+#: airtime_mvc/application/forms/EditAudioMD.php:34
+msgid "Creator:"
+msgstr "Créateur:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
+#: airtime_mvc/application/forms/EditAudioMD.php:44
+msgid "Album:"
+msgstr "Album:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
+msgid "Track:"
+msgstr "Piste:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
+msgid "Length:"
+msgstr "Durée:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
+msgid "Sample Rate:"
+msgstr "Fréquence d'Echantillonnage"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
+msgid "Bit Rate:"
+msgstr "Débit:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
+#: airtime_mvc/application/forms/EditAudioMD.php:115
+msgid "Mood:"
+msgstr "Atmosphère:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:45
+#: airtime_mvc/application/forms/EditAudioMD.php:62
+msgid "Genre:"
+msgstr "Genre:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
+#: airtime_mvc/application/forms/EditAudioMD.php:72
+msgid "Year:"
+msgstr "Année:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
+#: airtime_mvc/application/forms/EditAudioMD.php:85
+msgid "Label:"
+msgstr "Label:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
+#: airtime_mvc/application/forms/EditAudioMD.php:125
+msgid "BPM:"
+msgstr "BPM:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
+#: airtime_mvc/application/forms/EditAudioMD.php:95
+msgid "Composer:"
+msgstr "Compositeur:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
+#: airtime_mvc/application/forms/EditAudioMD.php:105
+msgid "Conductor:"
+msgstr "Conducteur:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
+#: airtime_mvc/application/forms/EditAudioMD.php:135
+msgid "Copyright:"
+msgstr "Copyright:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
+msgid "Isrc Number:"
+msgstr "Numéro ISRC:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
+#: airtime_mvc/application/forms/EditAudioMD.php:155
+msgid "Website:"
+msgstr "Site Internet:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
+#: airtime_mvc/application/forms/EditAudioMD.php:165
+#: airtime_mvc/application/forms/EditUser.php:119
+#: airtime_mvc/application/forms/Login.php:68
+msgid "Language:"
+msgstr "Langue"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
+msgid "File Path:"
+msgstr "Chemin du fichier:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
+msgid "Web Stream"
+msgstr "Flux Web"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
+msgid "Dynamic Smart Block"
+msgstr "Bloc Intelligent Dynamique"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
+msgid "Static Smart Block"
+msgstr "Bloc Intélligent Statique"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
+msgid "Audio Track"
+msgstr "Piste Audio"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
+msgid "Playlist Contents: "
+msgstr "Contenus de la Liste de Lecture:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
+msgid "Static Smart Block Contents: "
+msgstr "Contenus du Bloc Intelligent Statique:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
+msgid "Dynamic Smart Block Criteria: "
+msgstr "Critère(s) du Bloc Intelligent Dynamique:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
+msgid "Limit to "
+msgstr "Limité à"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
+#: airtime_mvc/application/forms/AddShowWhat.php:36
+msgid "URL:"
+msgstr "URL:"
+
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
+msgid "Viewing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
+msgid "Listeners"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
+msgid "Stream Data Collection Status"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
+msgid "Your trial expires in"
+msgstr "Votre période d'éssai expire dans"
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
+msgid "days"
+msgstr "jours"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
+msgid "Previous:"
+msgstr "Précédent:"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
+msgid "Next:"
+msgstr "Prochain:"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
+msgid "Source Streams"
+msgstr "Sources des Flux"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
+msgid "ON AIR"
+msgstr "DIRECT"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
+msgid "Listen"
+msgstr "Ecouter"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
+msgid "Logout"
+msgstr "Déconnexion"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
+msgid "Playout History Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
+msgid "Log Sheet Templates"
+msgstr "Modèles de fichiers de Log"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
+msgid "New Log Sheet Template"
+msgstr "Nouveau modèle de fichier de Log"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
+msgid "No Log Sheet Templates"
+msgstr "Aucun modèles de fichiers de Log"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
+msgid "File Summary Templates"
+msgstr "Modèle de fichier d'historique"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
+msgid "New File Summary Template"
+msgstr "Nouveau modèle de fichier d'Historique"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
+msgid "No File Summary Templates"
+msgstr "aucun modèle de fichier d'Historique"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
+msgid "Creating File Summary Template"
+msgstr "Création du fichier Modèle d'Historique"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
+msgid "Creating Log Sheet Template"
+msgstr "Création du modèle de fichier de Log"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
+msgid "Name"
+msgstr "Nom"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
+msgid "Add more elements"
+msgstr "Ajouter plus d'éléments"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
+msgid "Add New Field"
+msgstr "Ajouter un nouveau champs"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
+msgid "Set Default Template"
+msgstr "Definir le modèle par défaut"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
+msgid "Description"
+msgstr "Description"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
+msgid "Stream URL:"
+msgstr "URL du Flux:"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
+msgid "Default Length:"
+msgstr "Durée par Défaut:"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
+msgid "No webstream"
+msgstr "Aucun Flux Web"
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
+#: airtime_mvc/application/views/scripts/error/error.phtml:6
+msgid "An error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
+msgid "Access Denied!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
+msgid "You do not have permission to access this page!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
+#: airtime_mvc/application/views/scripts/error/error.phtml:14
+#: airtime_mvc/application/configs/navigation.php:143
+msgid "Help"
+msgstr "Aide"
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
+msgid "Oops!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
+msgid "Something went wrong!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
+msgid "Bad Request!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
+msgid "The requested action is not supported!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
+msgid "Page not found!"
+msgstr "Page non trouvée!"
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
+msgid "We couldn't find the page you were looking for."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error.phtml:12
+msgid "Looks like the page you were looking for doesn't exist!"
+msgstr "On dirait que la page que vous cherchez n'existe pas!"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
+msgid "previous"
+msgstr "précédent"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
+msgid "play"
+msgstr "jouer"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
+msgid "pause"
+msgstr "pause"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
+msgid "next"
+msgstr "suivant"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
+msgid "stop"
+msgstr "stop"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
+msgid "max volume"
+msgstr "Volume max"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
+msgid "Update Required"
+msgstr "Mise à Jour Requise"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
+#, php-format
+msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
+msgstr "Pour lire le média, vous devrez mettre à jour votre navigateur vers une version récente ou mettre à jour votre %sPlugin Flash%s."
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
+msgid "Plan type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
+msgid "Billing cycle:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
+msgid "Payment method:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
+msgid "PayPal"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
+msgid "Credit Card via 2Checkout"
+msgstr ""
+
+#: airtime_mvc/application/forms/DateRange.php:16
+#: airtime_mvc/application/forms/ShowBuilder.php:18
+msgid "Date Start:"
+msgstr "Date de Début:"
+
+#: airtime_mvc/application/forms/DateRange.php:35
+#: airtime_mvc/application/forms/DateRange.php:63
+#: airtime_mvc/application/forms/ShowBuilder.php:37
+#: airtime_mvc/application/forms/ShowBuilder.php:65
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
+msgid "Invalid character entered"
+msgstr "Caractère Invalide saisi"
+
+#: airtime_mvc/application/forms/DateRange.php:44
+#: airtime_mvc/application/forms/ShowBuilder.php:46
+#: airtime_mvc/application/forms/AddShowRepeats.php:56
+msgid "Date End:"
+msgstr "Date de Fin:"
+
+#: airtime_mvc/application/forms/ShowBuilder.php:72
+#: airtime_mvc/application/forms/ShowBuilder.php:88
+msgid "Filter by Show"
+msgstr ""
+
+#: airtime_mvc/application/forms/ShowBuilder.php:80
+msgid "All My Shows:"
+msgstr "Toutes Mes Emissions:"
+
+#: airtime_mvc/application/forms/AddShowWho.php:10
+msgid "Search Users:"
+msgstr "Recherche d'Utilisateurs:"
+
+#: airtime_mvc/application/forms/AddShowWho.php:24
+msgid "DJs:"
+msgstr "v"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:30
+#: airtime_mvc/application/forms/GeneralPreferences.php:25
+#: airtime_mvc/application/forms/SupportSettings.php:18
+msgid "Station Name"
+msgstr "Nom de la Station"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:39
+#: airtime_mvc/application/forms/SupportSettings.php:31
+msgid "Phone:"
+msgstr "Téléphone"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:51
+#: airtime_mvc/application/forms/AddUser.php:67
+#: airtime_mvc/application/forms/EditUser.php:83
+#: airtime_mvc/application/forms/SupportSettings.php:43
+msgid "Email:"
+msgstr "Courriel:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:62
+#: airtime_mvc/application/forms/SupportSettings.php:54
+msgid "Station Web Site:"
+msgstr "Site Internet de la Station"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:73
+#: airtime_mvc/application/forms/SupportSettings.php:65
+msgid "Country:"
+msgstr "Pays:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:84
+#: airtime_mvc/application/forms/SupportSettings.php:76
+msgid "City:"
+msgstr "Ville:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:96
+#: airtime_mvc/application/forms/SupportSettings.php:88
+msgid "Station Description:"
+msgstr "Description de la Station:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:106
+#: airtime_mvc/application/forms/GeneralPreferences.php:42
+msgid "Station Logo:"
+msgstr "Logo de la Station:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:126
+#: airtime_mvc/application/forms/SupportSettings.php:108
+#, php-format
+msgid "Promote my station on %s"
+msgstr "Promouvoir station sur %s"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:151
+#: airtime_mvc/application/forms/SupportSettings.php:120
+#, php-format
+msgid "By checking this box, I agree to %s's %sprivacy policy%s."
+msgstr "En cochant cette case , je accepte la %s's %s de politique de confidentialité %s ."
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:169
+#: airtime_mvc/application/forms/SupportSettings.php:143
+msgid "You have to agree to privacy policy."
+msgstr "Vous devez accepter la politique de confidentialité."
+
+#: airtime_mvc/application/forms/AddShowRR.php:10
+msgid "Record from Line In?"
+msgstr "Enregistrer à partir de 'Line In'?"
+
+#: airtime_mvc/application/forms/AddShowRR.php:16
+msgid "Rebroadcast?"
+msgstr "Rediffusion?"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
+#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
+msgid "Value is required and can't be empty"
+msgstr "Une Valeur est requise, ne peut pas être vide"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
+msgid "'%value%' is no valid email address in the basic format local-part@hostname"
+msgstr "'%value%' n'est pas une adresse de courriel valide dans le format de type partie-locale@nomdedomaine"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
+msgid "'%value%' does not fit the date format '%format%'"
+msgstr "'%value%' ne correspond pas au format de la date '%format%'"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
+msgid "'%value%' is less than %min% characters long"
+msgstr "'%value%' est inférieur à %min% charactères"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
+msgid "'%value%' is more than %max% characters long"
+msgstr "'%value%' est plus grand de %min% charactères"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
+msgid "'%value%' is not between '%min%' and '%max%', inclusively"
+msgstr "'%value%' n'est pas entre '%min%' et '%max%', inclusivement"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
+msgid "Passwords do not match"
+msgstr "Les mots de passe ne correspondent pas"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
+msgid "Day must be specified"
+msgstr "Le Jour doit être spécifié"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
+msgid "Time must be specified"
+msgstr "La durée doit être spécifiée"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
+msgid "Must wait at least 1 hour to rebroadcast"
+msgstr "Vous devez attendre au moins 1 heure pour retransmettre"
+
+#: airtime_mvc/application/forms/PasswordRestore.php:14
+msgid "Email"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordRestore.php:36
+msgid "Reset password"
+msgstr "Réinitialisation du Mot de Passe"
+
+#: airtime_mvc/application/forms/AddShowWhat.php:30
+msgid "Untitled Show"
+msgstr "Emission sans Titre"
+
+#: airtime_mvc/application/forms/AddShowWhat.php:69
+msgid "Instance Description:"
+msgstr ""
+
+#: airtime_mvc/application/forms/DangerousPreferences.php:12
+msgid "Delete All Tracks in Library"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditAudioMD.php:145
+msgid "ISRC Number:"
+msgstr "Numéro ISRC:"
+
+#: airtime_mvc/application/forms/EditAudioMD.php:176
+msgid "OK"
+msgstr "OK"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:33
+msgid "Station Description"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:62
+msgid "Default Crossfade Duration (s):"
+msgstr "Durée du fondu enchaîné "
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:68
+#: airtime_mvc/application/forms/GeneralPreferences.php:82
+#: airtime_mvc/application/forms/GeneralPreferences.php:96
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
+msgid "Please enter a time in seconds (eg. 0.5)"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:76
+msgid "Default Fade In (s):"
+msgstr "Fondu en Entrée par défaut (s):"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:90
+msgid "Default Fade Out (s):"
+msgstr "Fondu en Sorti par défaut (s):"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:102
+msgid "Public Airtime API"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:103
+msgid "Required for embeddable schedule widget."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:105
+msgid "Disabled"
+msgstr "Désactivé"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:106
+msgid "Enabled"
+msgstr "Activé"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:109
+msgid ""
+"Enabling this feature will allow Airtime to provide schedule data\n"
+" to external widgets that can be embedded in your website."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:120
+msgid "Default Language"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:127
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
+msgid "Station Timezone"
+msgstr "Fuseau horaire de la Station"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:134
+msgid "Week Starts On"
+msgstr "La Semaine Commence Le"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:150
+msgid "Display login button on your Radio Page?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:29
+#: airtime_mvc/application/forms/EditUser.php:37
+#: airtime_mvc/application/forms/Login.php:41
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
+msgid "Username:"
+msgstr "Utilisateur:"
+
+#: airtime_mvc/application/forms/AddUser.php:38
+#: airtime_mvc/application/forms/EditUser.php:48
+#: airtime_mvc/application/forms/Login.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
+msgid "Password:"
+msgstr "Mot de Passe:"
+
+#: airtime_mvc/application/forms/AddUser.php:46
+#: airtime_mvc/application/forms/EditUser.php:57
+msgid "Verify Password:"
+msgstr "Vérification du Mot de Passe:"
+
+#: airtime_mvc/application/forms/AddUser.php:55
+#: airtime_mvc/application/forms/EditUser.php:67
+msgid "Firstname:"
+msgstr "Prénom:"
+
+#: airtime_mvc/application/forms/AddUser.php:61
+#: airtime_mvc/application/forms/EditUser.php:75
+msgid "Lastname:"
+msgstr "Nom:"
+
+#: airtime_mvc/application/forms/AddUser.php:76
+#: airtime_mvc/application/forms/EditUser.php:94
+msgid "Mobile Phone:"
+msgstr "Numéro de Mobile:"
+
+#: airtime_mvc/application/forms/AddUser.php:82
+#: airtime_mvc/application/forms/EditUser.php:102
+msgid "Skype:"
+msgstr "Skype:"
+
+#: airtime_mvc/application/forms/AddUser.php:88
+#: airtime_mvc/application/forms/EditUser.php:110
+msgid "Jabber:"
+msgstr "Jabber:"
+
+#: airtime_mvc/application/forms/AddUser.php:95
+msgid "User Type:"
+msgstr "Type d'Utilisateur:"
+
+#: airtime_mvc/application/forms/AddUser.php:120
+#: airtime_mvc/application/forms/EditUser.php:155
+msgid "Login name is not unique."
+msgstr "Le Nom de connexion n'est pas unique."
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
+msgid "Import Folder:"
+msgstr "répertoire d'Import:"
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
+msgid "Watched Folders:"
+msgstr "Répertoires Suveillés:"
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
+msgid "Not a valid Directory"
+msgstr "N'est pas un Répertoire valide"
+
+#: airtime_mvc/application/forms/BillingClient.php:126
+msgid "What is the name of your favorite childhood friend?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:127
+msgid "What school did you attend for sixth grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:128
+msgid "In what city did you meet your spouse/significant other?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:129
+msgid "What street did you live on in third grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:130
+msgid "What is the first name of the boy or girl that you first kissed?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:131
+msgid "In what city or town was your first job?"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
+msgid "Default License:"
+msgstr "Licence par Défaut:"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
+msgid "All rights are reserved"
+msgstr "Tous droits réservés"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
+msgid "The work is in the public domain"
+msgstr "Ce travail est dans le domaine public"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
+msgid "Creative Commons Attribution"
+msgstr "Creative Commons Attribution"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
+msgid "Creative Commons Attribution Noncommercial"
+msgstr "Creative Commons Attribution Non Commercial"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
+msgid "Creative Commons Attribution No Derivative Works"
+msgstr "Creative Commons Attribution Pas de Travaux Dérivés"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
+msgid "Creative Commons Attribution Share Alike"
+msgstr "Creative Commons Attribution Distribution à l'Identique"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
+msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
+msgstr "Creative Commons Attribution Non Commercial Pas de Travaux Dérivés"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
+msgid "Creative Commons Attribution Noncommercial Share Alike"
+msgstr "Creative Commons Attribution Non Commercial Distribution à l'Identique"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
+msgid "Default Sharing Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
+msgid "Public"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
+msgid "Private"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditUser.php:129
+msgid "Interface Timezone:"
+msgstr "Fuseau horaire de l'Interface:"
+
+#: airtime_mvc/application/forms/Player.php:14
+msgid "Now Playing"
+msgstr "En Lecture"
+
+#: airtime_mvc/application/forms/Player.php:25
+msgid "Select Stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:28
+msgid "Auto detect the most appropriate stream to use."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:29
+msgid "Select a stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:41
+msgid " - Mobile friendly"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:45
+msgid " - The player does not support Opus streams."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:71
+msgid "Embeddable code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:72
+msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
+#: airtime_mvc/application/models/Block.php:1351
+msgid "Select criteria"
+msgstr "Selectionner le critère"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
+#: airtime_mvc/application/models/Block.php:1353
+msgid "Bit Rate (Kbps)"
+msgstr "Taux d'Echantillonage (Kbps)"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
+#: airtime_mvc/application/models/Block.php:1374
+msgid "Sample Rate (kHz)"
+msgstr "Taux d'Echantillonage (Khz)"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
+msgid "hours"
+msgstr "heures"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
+msgid "minutes"
+msgstr "minutes"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
+#: airtime_mvc/application/models/Block.php:333
+msgid "items"
+msgstr "éléments"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
+msgid "Randomly"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
+msgid "Newest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
+msgid "Oldest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
+msgid "Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
+msgid "Static"
+msgstr "Statique"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
+msgid "Dynamic"
+msgstr "Dynamique"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
+msgid "Allow Repeated Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
+msgid "Sort Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
+msgid "Limit to:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
+msgid "Generate playlist content and save criteria"
+msgstr "Génération de la liste de lecture et sauvegarde des crières"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
+msgid "Generate"
+msgstr "Générer"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
+msgid "Shuffle playlist content"
+msgstr "Contenu de la liste de lecture alèatoire"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
+msgid "Limit cannot be empty or smaller than 0"
+msgstr "La Limite ne peut être vide ou plus petite que 0"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
+msgid "Limit cannot be more than 24 hrs"
+msgstr "La Limite ne peut être supérieure à 24 heures"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
+msgid "The value should be an integer"
+msgstr "La valeur doit être un entier"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
+msgid "500 is the max item limit value you can set"
+msgstr "500 est la valeur maximale de l'élément que vous pouvez définir"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
+msgid "You must select Criteria and Modifier"
+msgstr "Vous devez sélectionner Critères et Modification"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
+msgid "'Length' should be in '00:00:00' format"
+msgstr "La 'Durée' doit être au format '00:00:00'"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
+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:594
+msgid "The value has to be numeric"
+msgstr "La valeur doit être numérique"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
+msgid "The value should be less then 2147483648"
+msgstr "La valeur doit être inférieure à 2147483648"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
+#, php-format
+msgid "The value should be less than %s characters"
+msgstr "La valeur doit être inférieure à %s caractères"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
+msgid "Value cannot be empty"
+msgstr "La Valeur ne peut pas être vide"
+
+#: airtime_mvc/application/forms/StreamSetting.php:26
+msgid "Icecast Vorbis Metadata"
+msgstr "Icecast Metadata Vorbis"
+
+#: airtime_mvc/application/forms/StreamSetting.php:36
+msgid "Stream Label:"
+msgstr "Label du Flux:"
+
+#: airtime_mvc/application/forms/StreamSetting.php:37
+msgid "Artist - Title"
+msgstr "Artiste - Titre"
+
+#: airtime_mvc/application/forms/StreamSetting.php:38
+msgid "Show - Artist - Title"
+msgstr "Emission - Artiste - Titre"
+
+#: airtime_mvc/application/forms/StreamSetting.php:39
+msgid "Station name - Show name"
+msgstr "Nom de la Station - Nom de l'Emission"
+
+#: airtime_mvc/application/forms/StreamSetting.php:45
+msgid "Off Air Metadata"
+msgstr "Métadonnées Hors Antenne"
+
+#: airtime_mvc/application/forms/StreamSetting.php:51
+msgid "Enable Replay Gain"
+msgstr "Activer"
+
+#: airtime_mvc/application/forms/StreamSetting.php:57
+msgid "Replay Gain Modifier"
+msgstr "Modifier le Niveau du Gain"
+
+#: airtime_mvc/application/forms/StreamSetting.php:65
+msgid "Streaming Server:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Airtime Pro Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Custom / 3rd Party Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordChange.php:17
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
+msgid "Password"
+msgstr "Mot de Passe"
-#~ msgid "Show:"
-#~ msgstr "Emission:"
+#: airtime_mvc/application/forms/PasswordChange.php:28
+msgid "Confirm new password"
+msgstr "Confirmez le nouveau mot de passe"
-#~ msgid "enter a time in seconds 0{.0}"
-#~ msgstr "Entrez une durée en secondes 0{.0}"
+#: airtime_mvc/application/forms/PasswordChange.php:36
+msgid "Password confirmation does not match your password."
+msgstr "La confirmation mot de passe ne correspond pas à votre mot de passe."
-#~ msgid "Allow Remote Websites To Access \"Schedule\" Info?%s (Enable this to make front-end widgets work.)"
-#~ msgstr "Autoriser les sites internet à acceder aux informations de la Programmation ?%s (Activer cette option permettra aux widgets de fonctionner.)"
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
+msgid "Station Language"
+msgstr ""
-#~ msgid "Default Interface Language"
-#~ msgstr "Langue de l'interface par défaut"
-
-#~ msgid "Get new password"
-#~ msgstr "Récuperer un nouveau mot de passe"
-
-#~ msgid "Set smart block type:"
-#~ msgstr "Définir le type de Bloc Intelligent:"
-
-#~ msgid "Allow Repeat Tracks:"
-#~ msgstr "Permettre la Répétition des Pistes:"
-
-#~ msgid "Limit to"
-#~ msgstr "Limiter à"
-
-#~ msgid "Auto Switch Off"
-#~ msgstr "Auto commutateur Arrété"
-
-#~ msgid "Auto Switch On"
-#~ msgstr "Auto Commutateur Activé"
-
-#~ msgid "Switch Transition Fade (s)"
-#~ msgstr "fondu(s) de Transition du Commutateur"
-
-#~ msgid "enter a time in seconds 00{.000000}"
-#~ msgstr "Saisissez une durée en secondes 00{.000000}"
-
-#~ msgid "Master Username"
-#~ msgstr "Nom Utilisateur Maître"
-
-#~ msgid "Master Password"
-#~ msgstr "Mot de Passe Maître"
-
-#~ msgid "Master Source Connection URL"
-#~ msgstr "URL de Connexion de la Source Maître"
-
-#~ msgid "Show Source Connection URL"
-#~ msgstr "URL de connexion de la Source Emission"
-
-#~ msgid "Master Source Port"
-#~ msgstr "Port de la Source Maitre"
-
-#~ msgid "Master Source Mount Point"
-#~ msgstr "Point de Montage de la Source Maitre"
-
-#~ msgid "Show Source Port"
-#~ msgstr "Port de la Source Emission"
-
-#~ msgid "Show Source Mount Point"
-#~ msgstr "Point de Montage de la Source Emission"
-
-#~ msgid "You cannot use same port as Master DJ port."
-#~ msgstr "Vous ne pouvez pas utiliser le même port que le port Maitre DJ."
-
-#~ msgid "Port %s is not available"
-#~ msgstr "Le Port %s n'est pas disponible"
-
-#~ msgid "E-mail"
-#~ msgstr "Courriel"
-
-#~ msgid "Restore password"
-#~ msgstr "Récuperer le mot de passe"
-
-#~ msgid "Hardware Audio Output"
-#~ msgstr "Sortie Audio Matérielle"
-
-#~ msgid "Output Type"
-#~ msgstr "Type de Sortie"
-
-#~ msgid "Date/Time Start:"
-#~ msgstr "Date/Heure de Début:"
-
-#~ msgid "Date/Time End:"
-#~ msgstr "Date/Heure de Fin:"
-
-#~ msgid "Automatically Upload Recorded Shows"
-#~ msgstr "Téléverser Automatiquement les Emissions Enregistrées"
-
-#~ msgid "Enable SoundCloud Upload"
-#~ msgstr "Activer le Téléversement SoundCloud"
-
-#~ msgid "Automatically Mark Files \"Downloadable\" on SoundCloud"
-#~ msgstr "Marquer automatiquement les fichiers \"téléchargeable\" sur SoundCloud"
-
-#~ msgid "SoundCloud Email"
-#~ msgstr "Courriel SoundCloud"
-
-#~ msgid "SoundCloud Password"
-#~ msgstr "Mot de Passe SoundCloud"
-
-#~ msgid "SoundCloud Tags: (separate tags with spaces)"
-#~ msgstr "Tags SoundCloud: (séparer les tags avec des espaces)"
-
-#~ msgid "Default Genre:"
-#~ msgstr "Genre par Défaut:"
-
-#~ msgid "Default Track Type:"
-#~ msgstr "Type de Piste par Défaut:"
-
-#~ msgid "Original"
-#~ msgstr "Original"
-
-#~ msgid "Remix"
-#~ msgstr "Remix"
-
-#~ msgid "Live"
-#~ msgstr "Direct"
-
-#~ msgid "Recording"
-#~ msgstr "Enregistrement"
-
-#~ msgid "Spoken"
-#~ msgstr "Parlé"
-
-#~ msgid "Podcast"
-#~ msgstr "Ballado-diffusion"
-
-#~ msgid "Demo"
-#~ msgstr "Démo"
-
-#~ msgid "Work in progress"
-#~ msgstr "travail en cours"
-
-#~ msgid "Stem"
-#~ msgstr "Contenir"
-
-#~ msgid "Loop"
-#~ msgstr "Boucle"
-
-#~ msgid "Sound Effect"
-#~ msgstr "Effet Sonore"
-
-#~ msgid "One Shot Sample"
-#~ msgstr "Un Court Echantillon"
-
-#~ msgid "Other"
-#~ msgstr "Autre"
-
-#~ msgid "Enable System Emails (Password Reset)"
-#~ msgstr "Activer les courriels système (Réinitialisation du mot de passe)"
-
-#~ msgid "Reset Password 'From' Email"
-#~ msgstr "Réinitialisation du mot de passe Courriel 'De'"
-
-#~ msgid "Configure Mail Server"
-#~ msgstr "Configuration du Serveur de Courriels"
-
-#~ msgid "Requires Authentication"
-#~ msgstr "Requier une authentification"
-
-#~ msgid "Mail Server"
-#~ msgstr "Serveur de Courriel"
-
-#~ msgid "Email Address"
-#~ msgstr "Adresse de Courriel"
-
-#~ msgid "Please enter your user name and password"
-#~ msgstr "S'il vous plaît saisissez votre nom d'utilisateur et mot de passe"
-
-#~ msgid "Given email not found."
-#~ msgstr "Courriel donné non trouvé"
-
-#~ msgid "Page not found"
-#~ msgstr "Page non trouvée"
-
-#~ msgid "Application error"
-#~ msgstr "Erreur de l'application"
-
-#~ msgid "Playlist / Block"
-#~ msgstr "Liste de Lecture / Bloc"
-
-#~ msgid "If you change the username or password values for an enabled stream the playout engine will be rebooted and your listeners will hear silence for 5-10 seconds. Changing the following fields will NOT cause a reboot: Stream Label (Global Settings), and Switch Transition Fade(s), Master Username, and Master Password (Input Stream Settings). If Airtime is recording, and if the change causes a playout engine restart, the recording will be interrupted."
-#~ msgstr "Si vous modifiez les valeurs du nom d'utilisateur ou du mot de passe pour un flux activé le moteur diffusion sera redémarré et vos auditeurs entendront un silence pendant 5-10 secondes. Changer les champs suivants ne provoqueront pas un redémarrage: Label du Flux (Paramètres globaux), et Commutateur de transition du fondu (s), Nom d'Utilisateur Maître, et le Mot de passe Maître (Paramètres du flux d'entrée). Si Airtime enregistre, et si la modification entraîne un redémarrage du moteur, l'enregistrement sera interrompu."
-
-#~ msgid "today"
-#~ msgstr "aujourd'hui"
-
-#~ msgid "day"
-#~ msgstr "jour"
-
-#~ msgid "week"
-#~ msgstr "semaine"
-
-#~ msgid "month"
-#~ msgstr "mois"
-
-#~ msgid "Remove overbooked tracks"
-#~ msgstr "Suppression des pistes en surcharge"
-
-#~ msgid "Soundcloud"
-#~ msgstr "SoundCloud"
-
-#~ msgid "View on Soundcloud"
-#~ msgstr "Voir sur SoundCloud"
-
-#~ msgid "Re-upload to SoundCloud"
-#~ msgstr "Re-Téléverser vers SoundCloud"
-
-#~ msgid "Upload to SoundCloud"
-#~ msgstr "Téléverser vers SoundCloud"
-
-#~ msgid "Could not delete some scheduled files."
-#~ msgstr "Impossible de supprimer certains fichiers programmés."
-
-#~ msgid "Add Media"
-#~ msgstr "Ajouter un Media"
-
-#~ msgid "Library"
-#~ msgstr "Audiothèque"
-
-#~ msgid "System"
-#~ msgstr "Système"
-
-#~ msgid "Preferences"
-#~ msgstr "Préférences"
-
-#~ msgid "Media Folders"
-#~ msgstr "Répertoires des Médias"
-
-#~ msgid "History"
-#~ msgstr "Historique"
-
-#~ msgid "Service"
-#~ msgstr "Service"
-
-#~ msgid "Uptime"
-#~ msgstr "Durée de Fonctionnement"
-
-#~ msgid "CPU"
-#~ msgstr "Proc."
-
-#~ msgid "Memory"
-#~ msgstr "Mémoire"
-
-#~ msgid "%s Version"
-#~ msgstr "%s Version"
-
-#~ msgid "Email / Mail Server Settings"
-#~ msgstr "Courriel / Réglages du Serveur de Courriels"
-
-#~ msgid "Connection URL: "
-#~ msgstr "URL de Connexion:"
-
-#~ msgid "Input Stream Settings"
-#~ msgstr "Réglages de Flux en Entrée"
-
-#~ msgid "Master Source Connection URL:"
-#~ msgstr "URL de Connexion de la Source Maitre:"
-
-#~ msgid "Override"
-#~ msgstr "Outrepasser"
-
-#~ msgid "RESET"
-#~ msgstr "Remise à Zéro"
-
-#~ msgid "Show Source Connection URL:"
-#~ msgstr "URL de Connexion de la Source Emission:"
-
-#~ msgid "Help %1$s improve by letting us know how you are using it. This info will be collected regularly in order to enhance your user experience.%2$sClick 'Yes, help %1$s' and we'll make sure the features you use are constantly improving."
-#~ msgstr ""
-#~ "Aidez %1$s nous à l'améliorer en nous faisant savoir comment vous l'utilisez. Cette information sera recueillie régulièrement afin d'améliorer votre expérience utilisateur.\n"
-#~ "%2$s Cliquez Oui, aider %1$s et nous vous assurerons que les fonctions que vous utilisez seront en constante amélioration."
-
-#~ msgid "Filter By Show:"
-#~ msgstr "Filtrer par émission"
-
-#~ msgid "%s's Settings"
-#~ msgstr "%s's Réglages"
-
-#~ msgid "Help %s improve by letting %s know how you are using it. This information will be collected regularly in order to enhance your user experience.%sClick the 'Send support feedback' box and we'll make sure the features you use are constantly improving."
-#~ msgstr ""
-#~ "Aidez %s à améliorer le logiciel en nous faisant savoir comment vous l'utilisez %s. Cette information sera recueillie régulièrement afin d'améliorer votre expérience utilisateur.\n"
-#~ "%s Cliquez la case \"Envoyer des rapports d'utilisation» et nous nous assurerons que les fonctions que vous utilisez seront en constante amélioration."
-
-#~ msgid "Sourcefabric Privacy Policy"
-#~ msgstr "Politique de Confidentialité Sourcefabric"
-
-#~ msgid "Smart Block Options"
-#~ msgstr "Options de Bloc Intelligent"
-
-#~ msgid "file meet the criteria"
-#~ msgstr "Le fichier doit correspondre aux crtères"
-
-#~ msgid "New"
-#~ msgstr "Nouveau"
-
-#~ msgid "New Playlist"
-#~ msgstr "Nouvelle Liste de Lecture"
-
-#~ msgid "New Smart Block"
-#~ msgstr "Nouveau Bloc Intelligent"
-
-#~ msgid "New Webstream"
-#~ msgstr "Nouveau Flux Web"
-
-#~ msgid "View / edit description"
-#~ msgstr "Voir / Editer la description"
-
-#~ msgid "Global Settings"
-#~ msgstr "Réglages Globaux"
-
-#~ msgid "Output Stream Settings"
-#~ msgstr "Réglages flux de sortie"
-
-#~ msgid "Listener Count Over Time"
-#~ msgstr "Nombre d'auditeur au fil du temps"
-
-#~ msgid "Begin by adding your files to the library using the 'Add Media' menu button. You can drag and drop your files to this window too."
-#~ msgstr "Commencez par ajouter vos fichiers à l'aide du menu \"Ajouter un média\". Vous pouvez faire glisser et déposer vos fichiers sur la fenêtre."
-
-#~ msgid "Create a show by going to 'Calendar' in the menu bar, and then clicking the '+ Show' icon. This can be either a one-time or repeating show. Only admins and program managers can add shows."
-#~ msgstr "Créer une émission en allant sur «Calendrier» dans la barre de menus, puis en cliquant sur l'icône 'Emission + \". Il peut s'agir d'une seule fois ou d'une émission en répétition. Seuls les administrateurs et les gestionnaires de programmation peuvent ajouter des émissions."
-
-#~ msgid "Add media to the show by going to your show in the Schedule calendar, left-clicking on it and selecting 'Add / Remove Content'"
-#~ msgstr "Ajouter des médias à votre émission en cliquant sur votre émission dans le calendrier, Clic gauche dessus et selectionnez 'Ajouter / Supprimer Contenu'"
-
-#~ msgid "Select your media from the left pane and drag them to your show in the right pane."
-#~ msgstr "Sélectionnez votre média dans le cadre de gauche et glissez-les dans votre émission dans le cadre de droite."
-
-#~ msgid "Then you're good to go!"
-#~ msgstr "Alors vous êtes prêt à démarrer!"
-
-#~ msgid "Please enter your account e-mail address. You will receive a link to create a new password via e-mail."
-#~ msgstr "S'il vous plaît saisissez votre adresse de courriel. Vous recevrez un lien pour créer un nouveau mot de passe par courriel."
-
-#~ msgid "Email sent"
-#~ msgstr "Courriel envoyé"
-
-#~ msgid "An email has been sent"
-#~ msgstr "Un courriel a été envoyé"
-
-#~ msgid "Back to login screen"
-#~ msgstr "Retour à l'écran de connexion"
-
-#~ msgid "Scheduled Play"
-#~ msgstr "Lecture Programmée"
-
-#~ msgid "Station time"
-#~ msgstr "Heure de la Station"
-
-#~ msgid "Purchase your copy of %s"
-#~ msgstr "Achetez votre copie d' %s"
-
-#~ msgid "Zend Framework Default Application"
-#~ msgstr "Application par défaut du Framework Zend"
-
-#~ msgid "Empty smart block"
-#~ msgstr "Bloc Intelligent Vide"
-
-#~ msgid "Empty playlist"
-#~ msgstr "Liste de Lecture Vide"
-
-#~ msgid "Empty smart block content"
-#~ msgstr "Vider le contenu du bloc intelligent"
-
-#~ msgid "No open smart block"
-#~ msgstr "Pas de Bloc Intelligent Ouvert"
-
-#~ msgid "Record & Rebroadcast"
-#~ msgstr "Enregistrement & Rediffusion"
-
-#~ msgid "Failed to create 'organize' directory."
-#~ msgstr "Impossible de créer le répertoire \"organize\"."
-
-#~ msgid "The file was not uploaded, there is %s MB of disk space left and the file you are uploading has a size of %s MB."
-#~ msgstr "Le fichier n'a pas été téléchargé, il y a %s Mo d'espace libre sur le disque et le fichier que vous téléchargez a une taille de %s MB."
-
-#~ msgid "This file appears to be corrupted and will not be added to media library."
-#~ msgstr "Ce fichier semble être endommagé et ne sera pas ajouté à la médiathèque."
-
-#~ msgid "The file was not uploaded, this error can occur if the computer hard drive does not have enough disk space or the stor directory does not have correct write permissions."
-#~ msgstr "Le fichier n'a pas été téléchargé, cette erreur peut se produire si le disque dur de l'ordinateur ne dispose pas de suffisamment d'espace libre ou le répertoire stockage ne dispose pas des autorisations d'écriture correctes."
-
-#~ msgid ""
-#~ "Hi %s, \n"
-#~ "\n"
-#~ "Click this link to reset your password: "
-#~ msgstr ""
-#~ "Bonjour %s, \n"
-#~ "\n"
-#~ "Cliquez sur ce lien pour réinitialiser votre mot de passe:"
-
-#~ msgid "Show Content"
-#~ msgstr "Contenu Emission"
-
-#~ msgid "Remove All Content"
-#~ msgstr "Supprimer tous les contenus"
-
-#~ msgid "Cancel Current Show"
-#~ msgstr "Annuler l'émission en cours"
-
-#~ msgid "Edit This Instance"
-#~ msgstr "Editer cette instance"
-
-#~ msgid "Delete This Instance"
-#~ msgstr "Suppression de l'instance"
-
-#~ msgid "Delete This Instance and All Following"
-#~ msgstr "Suppression de l'instance et des suivantes"
-
-#~ msgid "Please selection an option"
-#~ msgstr "S'il vous plait, selectionnez une option"
-
-#~ msgid "No Records"
-#~ msgstr "Aucun Enregistrements"
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
+msgid "Enabled:"
+msgstr "Activé:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
+msgid "Mobile:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
+msgid "Stream Type:"
+msgstr "Type de Flux:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
+msgid "Service Type:"
+msgstr "Type de service:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
+msgid "Channels:"
+msgstr "Cannaux:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "1 - Mono"
+msgstr "1 - Mono"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "2 - Stereo"
+msgstr "2 - Stereo"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
+msgid "Server"
+msgstr "Serveur"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
+msgid "Port"
+msgstr "Port"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
+msgid "Only numbers are allowed."
+msgstr "Seuls les chiffres sont autorisés."
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
+msgid "URL"
+msgstr "URL"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
+msgid "Mount Point"
+msgstr "Point de Montage"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
+msgid "Admin User"
+msgstr "Utilisateur Admin"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
+msgid "Admin Password"
+msgstr "Mot de Passe Admin"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
+msgid "Server cannot be empty."
+msgstr "Le Serveur ne peut être vide."
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
+msgid "Port cannot be empty."
+msgstr "Le Port ne peut être vide."
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
+msgid "Mount cannot be empty with Icecast server."
+msgstr "Le Point de Montage ne peut être vide avec un serveur Icecast."
+
+#: airtime_mvc/application/forms/AddShowWhen.php:16
+msgid "'%value%' does not fit the time format 'HH:mm'"
+msgstr "'%value%' ne correspond pas au format de durée 'HH:mm'"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:22
+msgid "Start Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:37
+msgid "In the Future:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:64
+msgid "End Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:98
+msgid "Timezone:"
+msgstr "Fuseau horaire:"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:107
+msgid "Repeats?"
+msgstr "Répétitions?"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:139
+msgid "Cannot create show in the past"
+msgstr "Impossible de créer un émission dans le passé"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:147
+msgid "Cannot modify start date/time of the show that is already started"
+msgstr "Vous ne pouvez pas modifier la date / heure de début de l'émission qui a déjà commencé"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:156
+#: airtime_mvc/application/models/Show.php:282
+msgid "End date/time cannot be in the past"
+msgstr "La date/heure de Fin ne peut être dans le passé"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:164
+msgid "Cannot have duration < 0m"
+msgstr "Ne peut pas avoir une durée <0m"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:168
+msgid "Cannot have duration 00h 00m"
+msgstr "Ne peut pas avoir une durée de 00h 00m"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:175
+msgid "Cannot have duration greater than 24h"
+msgstr "Ne peut pas avoir une durée supérieure à 24h"
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:19
+msgid "Push metadata to your station on TuneIn?"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:24
+msgid "Station ID:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:30
+msgid "Partner Key:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:36
+msgid "Partner Id:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:77
+#: airtime_mvc/application/forms/TuneInPreferences.php:86
+msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:10
+#, php-format
+msgid "Use %s Authentication:"
+msgstr "Utilisez l'authentification %s :"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:16
+msgid "Use Custom Authentication:"
+msgstr "Utiliser l'authentification personnalisée:"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:25
+msgid "Custom Username"
+msgstr "Nom d'utilisateur personnalisé"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:37
+msgid "Custom Password"
+msgstr "Mot de Passe personnalisé"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:48
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
+msgid "Host:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
+msgid "Port:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:60
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
+msgid "Mount:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:77
+msgid "Username field cannot be empty."
+msgstr "Le Champ Nom d'Utilisateur ne peut pas être vide."
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:82
+msgid "Password field cannot be empty."
+msgstr "Le Champ Mot de Passe ne peut être vide."
+
+#: airtime_mvc/application/forms/AddShowStyle.php:12
+msgid "Background Colour:"
+msgstr "Couleur de Fond:"
+
+#: airtime_mvc/application/forms/AddShowStyle.php:31
+msgid "Text Colour:"
+msgstr "Couleur du Texte:"
+
+#: airtime_mvc/application/forms/AddShowStyle.php:49
+msgid "Current Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:72
+msgid "Show Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:87
+msgid "Logo Preview:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Login.php:102
+msgid "Type the characters you see in the picture below."
+msgstr "Saisissez les caractères que vous voyez dans l'image ci-dessous."
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
+msgid "Auto Switch Off:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
+msgid "Auto Switch On:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
+msgid "Switch Transition Fade (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:10
+msgid "Link:"
+msgstr "Lien:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:16
+msgid "Repeat Type:"
+msgstr "Type de Répétition:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:19
+msgid "weekly"
+msgstr "hebdomadaire"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:20
+msgid "every 2 weeks"
+msgstr "Toutes les 2 semaines"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:21
+msgid "every 3 weeks"
+msgstr "Toutes les 3 semaines"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:22
+msgid "every 4 weeks"
+msgstr "Toutes les 4 semaines"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:23
+msgid "monthly"
+msgstr "mensuel"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:32
+msgid "Select Days:"
+msgstr "Selection des Jours:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:47
+msgid "Repeat By:"
+msgstr "Répétition par:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the month"
+msgstr "jour du mois"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the week"
+msgstr "jour de la semaine"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:69
+msgid "No End?"
+msgstr "Sans Fin?"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:106
+msgid "End date must be after start date"
+msgstr "La Date de Fin doit être postérieure à la Date de Début"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:113
+msgid "Please select a repeat day"
+msgstr "SVP, selectionnez un jour de répétition"
+
+#: airtime_mvc/application/configs/navigation.php:12
+msgid "Radio Page"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:19
+msgid "Calendar"
+msgstr "Calendrier"
+
+#: airtime_mvc/application/configs/navigation.php:26
+msgid "Widgets"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:48
+msgid "Settings"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:67
+msgid "Users"
+msgstr "Utilisateurs"
+
+#: airtime_mvc/application/configs/navigation.php:74
+msgid "Streams"
+msgstr "Flux"
+
+#: airtime_mvc/application/configs/navigation.php:82
+msgid "Analytics"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:90
+msgid "Listener Stats"
+msgstr "Statistiques des Auditeurs"
+
+#: airtime_mvc/application/configs/navigation.php:104
+msgid "History Templates"
+msgstr "Modèle d'historique"
+
+#: airtime_mvc/application/configs/navigation.php:113
+msgid "Billing"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:120
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:127
+msgid "Account Details"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:134
+msgid "View Invoices"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:150
+msgid "Getting Started"
+msgstr "Mise en route"
+
+#: airtime_mvc/application/configs/navigation.php:157
+msgid "FAQ"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:162
+msgid "User Manual"
+msgstr "Manuel Utilisateur"
+
+#: airtime_mvc/application/configs/navigation.php:167
+msgid "File a Support Ticket"
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:833
+#: airtime_mvc/application/models/Playlist.php:812
+msgid "Cue in and cue out are null."
+msgstr "Le Point d'entré et le point de sortie sont nul."
+
+#: airtime_mvc/application/models/Block.php:868
+#: airtime_mvc/application/models/Block.php:924
+#: airtime_mvc/application/models/Playlist.php:851
+#: airtime_mvc/application/models/Playlist.php:895
+msgid "Can't set cue out to be greater than file length."
+msgstr "Ne peut pas fixer un point de sortie plus grand que la durée du fichier."
+
+#: airtime_mvc/application/models/Block.php:879
+#: airtime_mvc/application/models/Block.php:900
+#: airtime_mvc/application/models/Playlist.php:843
+#: airtime_mvc/application/models/Playlist.php:868
+msgid "Can't set cue in to be larger than cue out."
+msgstr "Impossible de définir un point d'entrée plus grand que le point de sortie."
+
+#: airtime_mvc/application/models/Block.php:935
+#: airtime_mvc/application/models/Playlist.php:887
+msgid "Can't set cue out to be smaller than cue in."
+msgstr "Ne peux pas fixer un point de sortie plus petit que le point d'entrée."
+
+#: airtime_mvc/application/models/Block.php:1366
+msgid "Upload Time"
+msgstr ""
+
+#: airtime_mvc/application/models/ShowBuilder.php:212
+#, php-format
+msgid "Rebroadcast of %s from %s"
+msgstr "Rediffusion de %s à %s"
+
+#: airtime_mvc/application/models/Preference.php:460
+#, php-format
+msgid "Powered by %s"
+msgstr ""
+
+#: airtime_mvc/application/models/Preference.php:588
+msgid "Select Country"
+msgstr "Selectionner le Pays"
+
+#: airtime_mvc/application/models/MusicDir.php:160
+#, php-format
+msgid "%s is already watched."
+msgstr "%s déjà examiné(s)."
+
+#: airtime_mvc/application/models/MusicDir.php:164
+#, php-format
+msgid "%s contains nested watched directory: %s"
+msgstr "%s contient un répertoire surveillé imbriqué: %s"
+
+#: airtime_mvc/application/models/MusicDir.php:168
+#, php-format
+msgid "%s is nested within existing watched directory: %s"
+msgstr "%s est imbriqué avec un répertoire surveillé existant: %s"
+
+#: airtime_mvc/application/models/MusicDir.php:189
+#: airtime_mvc/application/models/MusicDir.php:370
+#, php-format
+msgid "%s is not a valid directory."
+msgstr "%s n'est pas un répertoire valide."
+
+#: airtime_mvc/application/models/MusicDir.php:232
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list"
+msgstr "%s est déjà défini comme le répertoire de stockage courant ou dans la liste des dossiers surveillés"
+
+#: airtime_mvc/application/models/MusicDir.php:388
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list."
+msgstr "%s est déjà défini comme espace de stockage courant ou dans la liste des répertoires surveillés."
+
+#: airtime_mvc/application/models/MusicDir.php:431
+#, php-format
+msgid "%s doesn't exist in the watched list."
+msgstr "%s n'existe pas dans la liste surveillée"
+
+#: airtime_mvc/application/models/Auth.php:33
+#, php-format
+msgid ""
+"Hi %s, \n"
+"\n"
+"Please click this link to reset your password: "
+msgstr ""
+
+#: airtime_mvc/application/models/Auth.php:38
+#, php-format
+msgid "%s Password Reset"
+msgstr "%s Réinitialisation du mot de passe"
+
+#: airtime_mvc/application/models/Show.php:184
+msgid "Shows can have a max length of 24 hours."
+msgstr "Les Emissions peuvent avoir une durée maximale de 24 heures."
+
+#: airtime_mvc/application/models/Show.php:293
+msgid ""
+"Cannot schedule overlapping shows.\n"
+"Note: Resizing a repeating show affects all of its repeats."
+msgstr ""
+"Ne peux pas programmer des émissions qui se chevauchent. \n"
+"Remarque: Le redimensionnement d'une émission répétée affecte l'ensemble de ses répétitions."
+
+#: airtime_mvc/application/models/Scheduler.php:73
+msgid "Cannot move items out of linked shows"
+msgstr "Vous ne pouvez pas déplacer les éléments sur les émissions liées"
+
+#: airtime_mvc/application/models/Scheduler.php:119
+msgid "The schedule you're viewing is out of date! (sched mismatch)"
+msgstr "Le calendrier que vous consultez n'est pas à jour! (décalage calendaire)"
+
+#: airtime_mvc/application/models/Scheduler.php:124
+msgid "The schedule you're viewing is out of date! (instance mismatch)"
+msgstr "La programmation que vous consultez n'est pas à jour! (décalage d'instance)"
+
+#: airtime_mvc/application/models/Scheduler.php:132
+#: airtime_mvc/application/models/Scheduler.php:458
+#: airtime_mvc/application/models/Scheduler.php:490
+msgid "The schedule you're viewing is out of date!"
+msgstr "Le calendrier que vous consultez n'est pas à jour!"
+
+#: airtime_mvc/application/models/Scheduler.php:142
+#, php-format
+msgid "You are not allowed to schedule show %s."
+msgstr "Vous n'êtes pas autorisé à programme l'émission %s."
+
+#: airtime_mvc/application/models/Scheduler.php:146
+msgid "You cannot add files to recording shows."
+msgstr "Vous ne pouvez pas ajouter des fichiers à des emissions enregistrées."
+
+#: airtime_mvc/application/models/Scheduler.php:152
+#, php-format
+msgid "The show %s is over and cannot be scheduled."
+msgstr "L émission %s est terminé et ne peut pas être programmé."
+
+#: airtime_mvc/application/models/Scheduler.php:159
+#, php-format
+msgid "The show %s has been previously updated!"
+msgstr "L'émission %s a été précédement mise à jour!"
+
+#: airtime_mvc/application/models/Scheduler.php:178
+msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
+msgstr "Le contenu des émissions liés doit être programmé avant ou après sa diffusion"
+
+#: airtime_mvc/application/models/Scheduler.php:195
+msgid "Cannot schedule a playlist that contains missing files."
+msgstr "Vous ne pouvez pas programmer une liste de lecture qui contient des fichiers manquants "
+
+#: airtime_mvc/application/models/Scheduler.php:216
+#: airtime_mvc/application/models/Scheduler.php:305
+msgid "A selected File does not exist!"
+msgstr "Un fichier séléctionné n'existe pas!"
+
+#: airtime_mvc/application/models/Schedule.php:206
+msgid "livestream"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:166
+msgid "Length needs to be greater than 0 minutes"
+msgstr "La durée doit être supérieure à 0 minute"
+
+#: airtime_mvc/application/models/Webstream.php:171
+msgid "Length should be of form \"00h 00m\""
+msgstr "La durée doit être de la forme \"00h 00m\""
+
+#: airtime_mvc/application/models/Webstream.php:184
+msgid "URL should be of form \"http://domain\""
+msgstr "URL doit être de la forme \"http://domain\""
+
+#: airtime_mvc/application/models/Webstream.php:187
+msgid "URL should be 512 characters or less"
+msgstr "L'URL doit être de 512 caractères ou moins"
+
+#: airtime_mvc/application/models/Webstream.php:193
+msgid "No MIME type found for webstream."
+msgstr "Aucun type MIME trouvé pour le Flux Web."
+
+#: airtime_mvc/application/models/Webstream.php:209
+msgid "Webstream name cannot be empty"
+msgstr "Le Nom du Flux Web ne peut être vide"
+
+#: airtime_mvc/application/models/Webstream.php:278
+msgid "Could not parse XSPF playlist"
+msgstr "Impossible d'analyser la Sélection XSPF"
+
+#: airtime_mvc/application/models/Webstream.php:298
+msgid "Could not parse PLS playlist"
+msgstr "Impossible d'analyser la Sélection PLS"
+
+#: airtime_mvc/application/models/Webstream.php:318
+msgid "Could not parse M3U playlist"
+msgstr "Impossible d'analyser la Séléction M3U"
+
+#: airtime_mvc/application/models/Webstream.php:332
+msgid "Invalid webstream - This appears to be a file download."
+msgstr "Flux Web Invalide - Ceci semble être un fichier téléchargeable."
+
+#: airtime_mvc/application/models/Webstream.php:336
+#, php-format
+msgid "Unrecognized stream type: %s"
+msgstr "Type de flux non reconnu: %s"
+
+#: airtime_mvc/public/setup/rabbitmq-setup.php:78
+msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
+msgstr ""
+
+#~ msgid "My Account"
+#~ msgstr "Mon Compte"
diff --git a/airtime_mvc/locale/fr_FR/LC_MESSAGES/pro.po b/airtime_mvc/locale/fr_FR/LC_MESSAGES/pro.po
index 866ee0acb..f59b52c3d 100644
--- a/airtime_mvc/locale/fr_FR/LC_MESSAGES/pro.po
+++ b/airtime_mvc/locale/fr_FR/LC_MESSAGES/pro.po
@@ -1,3 +1,139 @@
+#: airtime_mvc/application/controllers/LoginController.php:170
+#, php-format
+msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
+#, php-format
+msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
+#, php-format
+msgid "If you are the primary owner of this station, please reset your password here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
+msgid "Thank you!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
+msgid "Your station has been upgraded successfully."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
+msgid "Return to Airtime"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+#, php-format
+msgid "Purchase an %s plan!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+msgid "My Account"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
+msgid "Upgrade today to get more listeners and storage space!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
+msgid "View Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:257
+msgid "Your Current Plan:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:291
+msgid "Please enter your payment details:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
+msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
+msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:17
+msgid "First Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:26
+msgid "Last Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:35
+msgid "Company Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:44
+msgid "Email Address:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:54
+msgid "Address 1:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:63
+msgid "Address 2:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:70
+msgid "City:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:80
+msgid "State/Region:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:89
+msgid "Zip Code / Postal Code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:102
+msgid "Country:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:112
+msgid "Phone Number:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:121
+msgid "Please choose a security question:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:135
+msgid "Please enter an answer:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:152
+msgid "VAT/Tax ID (EU only)"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:162
+msgid "Subscribe to Sourcefabric newsletter"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:172
+msgid "Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:181
+msgid "Verify Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:193
+msgid "Save"
+msgstr ""
+
#: airtime_mvc/application/models/Auth.php:35
#, php-format
msgid ""
@@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
-msgid "Thank you!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
-msgid "Your station has been upgraded successfully."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
-msgid "Return to Airtime"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
-#, php-format
-msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
-msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
-msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
-#, php-format
-msgid "If you are the primary owner of this station, please reset your password here."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:170
-#, php-format
-msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
-msgstr ""
diff --git a/airtime_mvc/locale/hr_HR/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/hr_HR/LC_MESSAGES/airtime.mo
index 84df2dd56..76f940e6e 100644
Binary files a/airtime_mvc/locale/hr_HR/LC_MESSAGES/airtime.mo and b/airtime_mvc/locale/hr_HR/LC_MESSAGES/airtime.mo differ
diff --git a/airtime_mvc/locale/hr_HR/LC_MESSAGES/airtime.po b/airtime_mvc/locale/hr_HR/LC_MESSAGES/airtime.po
index 0fef57255..07bb7a281 100644
--- a/airtime_mvc/locale/hr_HR/LC_MESSAGES/airtime.po
+++ b/airtime_mvc/locale/hr_HR/LC_MESSAGES/airtime.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Airtime\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-09-03 10:24-0400\n"
-"PO-Revision-Date: 2014-11-14 09:58+0000\n"
+"POT-Creation-Date: 2015-09-04 11:17-0400\n"
+"PO-Revision-Date: 2015-09-04 08:15+0000\n"
"Last-Translator: Daniel James \n"
"Language-Team: Croatian (Croatia) (http://www.transifex.com/sourcefabric/airtime/language/hr_HR/)\n"
"Language: hr_HR\n"
@@ -18,132 +18,6 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-#: airtime_mvc/public/setup/rabbitmq-setup.php:78
-msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1117
-#: airtime_mvc/application/services/HistoryService.php:1157
-#: airtime_mvc/application/services/HistoryService.php:1174
-#: airtime_mvc/application/models/Block.php:1375
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
-#: airtime_mvc/application/controllers/LocaleController.php:76
-msgid "Title"
-msgstr "Naziv"
-
-#: airtime_mvc/application/services/HistoryService.php:1118
-#: airtime_mvc/application/services/HistoryService.php:1158
-#: airtime_mvc/application/services/HistoryService.php:1175
-#: airtime_mvc/application/models/Block.php:1360
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
-#: airtime_mvc/application/controllers/LocaleController.php:77
-msgid "Creator"
-msgstr "Tvorac"
-
-#: airtime_mvc/application/services/HistoryService.php:1119
-#: airtime_mvc/application/models/Block.php:1352
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
-#: airtime_mvc/application/controllers/LocaleController.php:78
-msgid "Album"
-msgstr "Album"
-
-#: airtime_mvc/application/services/HistoryService.php:1120
-#: airtime_mvc/application/services/HistoryService.php:1177
-#: airtime_mvc/application/models/Block.php:1369
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
-#: airtime_mvc/application/controllers/LocaleController.php:91
-msgid "Length"
-msgstr "Dužina"
-
-#: airtime_mvc/application/services/HistoryService.php:1121
-#: airtime_mvc/application/models/Block.php:1362
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
-#: airtime_mvc/application/controllers/LocaleController.php:85
-msgid "Genre"
-msgstr "Žanr"
-
-#: airtime_mvc/application/services/HistoryService.php:1122
-#: airtime_mvc/application/models/Block.php:1371
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
-#: airtime_mvc/application/controllers/LocaleController.php:93
-msgid "Mood"
-msgstr "Raspoloženje"
-
-#: airtime_mvc/application/services/HistoryService.php:1123
-#: airtime_mvc/application/models/Block.php:1364
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
-#: airtime_mvc/application/controllers/LocaleController.php:87
-msgid "Label"
-msgstr "Naljepnica"
-
-#: airtime_mvc/application/services/HistoryService.php:1124
-#: airtime_mvc/application/services/HistoryService.php:1178
-#: airtime_mvc/application/models/Block.php:1355
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
-#: airtime_mvc/application/controllers/LocaleController.php:81
-msgid "Composer"
-msgstr "Kompozitor"
-
-#: airtime_mvc/application/services/HistoryService.php:1125
-#: airtime_mvc/application/models/Block.php:1363
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
-#: airtime_mvc/application/controllers/LocaleController.php:86
-msgid "ISRC"
-msgstr "ISRC"
-
-#: airtime_mvc/application/services/HistoryService.php:1126
-#: airtime_mvc/application/services/HistoryService.php:1179
-#: airtime_mvc/application/models/Block.php:1357
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
-#: airtime_mvc/application/controllers/LocaleController.php:83
-msgid "Copyright"
-msgstr "Autorsko pravo"
-
-#: airtime_mvc/application/services/HistoryService.php:1127
-#: airtime_mvc/application/models/Block.php:1379
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
-#: airtime_mvc/application/controllers/LocaleController.php:100
-msgid "Year"
-msgstr "Godina"
-
-#: airtime_mvc/application/services/HistoryService.php:1128
-msgid "Track"
-msgstr "Pjesma"
-
-#: airtime_mvc/application/services/HistoryService.php:1129
-#: airtime_mvc/application/models/Block.php:1356
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
-#: airtime_mvc/application/controllers/LocaleController.php:82
-msgid "Conductor"
-msgstr "Dirigent"
-
-#: airtime_mvc/application/services/HistoryService.php:1130
-#: airtime_mvc/application/models/Block.php:1365
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
-#: airtime_mvc/application/controllers/LocaleController.php:88
-msgid "Language"
-msgstr "Jezik"
-
-#: airtime_mvc/application/services/HistoryService.php:1155
-#: airtime_mvc/application/forms/EditHistoryItem.php:32
-msgid "Start Time"
-msgstr "Vrijeme Početka"
-
-#: airtime_mvc/application/services/HistoryService.php:1156
-#: airtime_mvc/application/forms/EditHistoryItem.php:44
-msgid "End Time"
-msgstr "Vrijeme Završetka"
-
-#: airtime_mvc/application/services/HistoryService.php:1176
-msgid "Played"
-msgstr "Pušteno"
-
#: airtime_mvc/application/services/CalendarService.php:50
msgid "Record file doesn't exist"
msgstr "Snimljena datoteka ne postoji"
@@ -239,2605 +113,382 @@ msgstr "Emisija je izbrisana jer je snimljena emisija ne postoji!"
msgid "Must wait 1 hour to rebroadcast."
msgstr "Moraš pričekati 1 sat za re-emitiranje."
-#: airtime_mvc/application/models/Schedule.php:206
-msgid "livestream"
-msgstr ""
-
-#: airtime_mvc/application/models/ShowBuilder.php:212
-#, php-format
-msgid "Rebroadcast of %s from %s"
-msgstr "Reemitiranje od %s od %s"
-
-#: airtime_mvc/application/models/Webstream.php:166
-msgid "Length needs to be greater than 0 minutes"
-msgstr "Duljina mora biti veća od 0 minuta"
-
-#: airtime_mvc/application/models/Webstream.php:171
-msgid "Length should be of form \"00h 00m\""
-msgstr "Duljina mora biti u obliku \"00h 00m\""
-
-#: airtime_mvc/application/models/Webstream.php:184
-msgid "URL should be of form \"http://domain\""
-msgstr "URL mora biti u obliku \"http://domain\""
-
-#: airtime_mvc/application/models/Webstream.php:187
-msgid "URL should be 512 characters or less"
-msgstr "URL mora biti 512 znakova ili manje"
-
-#: airtime_mvc/application/models/Webstream.php:193
-msgid "No MIME type found for webstream."
-msgstr "Ne postoji MIME tip za prijenos."
-
-#: airtime_mvc/application/models/Webstream.php:209
-msgid "Webstream name cannot be empty"
-msgstr "Ime prijenosa ne može biti prazno"
-
-#: airtime_mvc/application/models/Webstream.php:278
-msgid "Could not parse XSPF playlist"
-msgstr "Nismo mogli analizirati XSPF popis pjesama"
-
-#: airtime_mvc/application/models/Webstream.php:298
-msgid "Could not parse PLS playlist"
-msgstr "Nismo mogli analizirati PLS popis pjesama"
-
-#: airtime_mvc/application/models/Webstream.php:318
-msgid "Could not parse M3U playlist"
-msgstr "Nismo mogli analizirati M3U popis pjesama"
-
-#: airtime_mvc/application/models/Webstream.php:332
-msgid "Invalid webstream - This appears to be a file download."
-msgstr "Nevažeći prijenos - Čini se da je ovo preuzimanje datoteka."
-
-#: airtime_mvc/application/models/Webstream.php:336
-#, php-format
-msgid "Unrecognized stream type: %s"
-msgstr "Nepoznati prijenosni tip: %s"
-
-#: airtime_mvc/application/models/Preference.php:460
-#, php-format
-msgid "Powered by %s"
-msgstr ""
-
-#: airtime_mvc/application/models/Preference.php:588
-msgid "Select Country"
-msgstr "Odaberi Državu"
-
-#: airtime_mvc/application/models/MusicDir.php:160
-#, php-format
-msgid "%s is already watched."
-msgstr "%s je već nadziran."
-
-#: airtime_mvc/application/models/MusicDir.php:164
-#, php-format
-msgid "%s contains nested watched directory: %s"
-msgstr "%s sadržava ugniježđene nadzirane direktorije: %s"
-
-#: airtime_mvc/application/models/MusicDir.php:168
-#, php-format
-msgid "%s is nested within existing watched directory: %s"
-msgstr "%s se nalazi unutar u postojeći nadzirani direktoriji: %s"
-
-#: airtime_mvc/application/models/MusicDir.php:189
-#: airtime_mvc/application/models/MusicDir.php:370
-#, php-format
-msgid "%s is not a valid directory."
-msgstr "%s nije valjana direktorija."
-
-#: airtime_mvc/application/models/MusicDir.php:232
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list"
-msgstr "%s je već postavljena kao mapa za pohranu ili je između popisa praćene mape"
-
-#: airtime_mvc/application/models/MusicDir.php:388
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list."
-msgstr "%s je već postavljena kao mapa za pohranu ili je između popisa praćene mape."
-
-#: airtime_mvc/application/models/MusicDir.php:431
-#, php-format
-msgid "%s doesn't exist in the watched list."
-msgstr "%s ne postoji u popisu nadziranih lokacija."
-
-#: airtime_mvc/application/models/Show.php:184
-msgid "Shows can have a max length of 24 hours."
-msgstr "Emisija može imati najveću duljinu od 24 sata."
-
-#: airtime_mvc/application/models/Show.php:282
-#: airtime_mvc/application/forms/AddShowWhen.php:156
-msgid "End date/time cannot be in the past"
-msgstr "Datum završetka i vrijeme ne može biti u prošlosti"
-
-#: airtime_mvc/application/models/Show.php:293
-msgid ""
-"Cannot schedule overlapping shows.\n"
-"Note: Resizing a repeating show affects all of its repeats."
-msgstr ""
-"Ne može se zakazati preklapajuće emisije.\n"
-"Napomena: Promjena veličine ponovljene emisije utječe na sve njene ponavljanje"
-
-#: airtime_mvc/application/models/Auth.php:33
-#, php-format
-msgid ""
-"Hi %s, \n"
-"\n"
-"Please click this link to reset your password: "
-msgstr ""
-
-#: airtime_mvc/application/models/Auth.php:38
-#, php-format
-msgid "%s Password Reset"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:333
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
-msgid "items"
-msgstr "elementi"
-
-#: airtime_mvc/application/models/Block.php:833
-#: airtime_mvc/application/models/Playlist.php:812
-msgid "Cue in and cue out are null."
-msgstr "Cue in i cue out su nule."
-
-#: airtime_mvc/application/models/Block.php:868
-#: airtime_mvc/application/models/Block.php:924
-#: airtime_mvc/application/models/Playlist.php:851
-#: airtime_mvc/application/models/Playlist.php:895
-msgid "Can't set cue out to be greater than file length."
-msgstr "Ne možeš postaviti da će 'cue out' biti veće od duljine datoteke."
-
-#: airtime_mvc/application/models/Block.php:879
-#: airtime_mvc/application/models/Block.php:900
-#: airtime_mvc/application/models/Playlist.php:843
-#: airtime_mvc/application/models/Playlist.php:868
-msgid "Can't set cue in to be larger than cue out."
-msgstr "Ne možeš postaviti da će 'cue in' biti veće od 'cue out'."
-
-#: airtime_mvc/application/models/Block.php:935
-#: airtime_mvc/application/models/Playlist.php:887
-msgid "Can't set cue out to be smaller than cue in."
-msgstr "Ne mogu se postaviti da će 'cue out' biti manje od 'cue in'."
-
-#: airtime_mvc/application/models/Block.php:1351
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
-msgid "Select criteria"
-msgstr "Odaberi kriterije"
-
-#: airtime_mvc/application/models/Block.php:1353
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
-msgid "Bit Rate (Kbps)"
-msgstr "Brzina u Bitovima (Kbps)"
-
-#: airtime_mvc/application/models/Block.php:1354
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
-#: airtime_mvc/application/controllers/LocaleController.php:80
-msgid "BPM"
-msgstr "BPM"
-
-#: airtime_mvc/application/models/Block.php:1358
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
-#: airtime_mvc/application/controllers/LocaleController.php:281
-#: airtime_mvc/application/layouts/scripts/layout.phtml:140
-msgid "Cue In"
-msgstr "Cue In"
-
-#: airtime_mvc/application/models/Block.php:1359
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:282
-#: airtime_mvc/application/layouts/scripts/layout.phtml:147
-msgid "Cue Out"
-msgstr "Cue Out"
-
-#: airtime_mvc/application/models/Block.php:1361
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
-#: airtime_mvc/application/controllers/LocaleController.php:84
-msgid "Encoded By"
-msgstr "Kodirano je po"
-
-#: airtime_mvc/application/models/Block.php:1366
-msgid "Upload Time"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1367
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
-#: airtime_mvc/application/controllers/LocaleController.php:89
-msgid "Last Modified"
-msgstr "Zadnja Izmjena"
-
-#: airtime_mvc/application/models/Block.php:1368
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
-#: airtime_mvc/application/controllers/LocaleController.php:90
-msgid "Last Played"
-msgstr "Zadnji Put Odigrano"
-
-#: airtime_mvc/application/models/Block.php:1370
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
-#: airtime_mvc/application/controllers/LocaleController.php:92
-msgid "Mime"
-msgstr "Mimika"
-
-#: airtime_mvc/application/models/Block.php:1372
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
-#: airtime_mvc/application/controllers/LocaleController.php:94
-msgid "Owner"
-msgstr "Vlasnik"
-
-#: airtime_mvc/application/models/Block.php:1373
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
-#: airtime_mvc/application/controllers/LocaleController.php:95
-msgid "Replay Gain"
-msgstr "Replay Gain"
-
-#: airtime_mvc/application/models/Block.php:1374
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
-msgid "Sample Rate (kHz)"
-msgstr "Uzorak Stopa (kHz)"
-
-#: airtime_mvc/application/models/Block.php:1376
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
-#: airtime_mvc/application/controllers/LocaleController.php:97
-msgid "Track Number"
-msgstr "Broj Pjesma"
-
-#: airtime_mvc/application/models/Block.php:1377
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
-#: airtime_mvc/application/controllers/LocaleController.php:98
-msgid "Uploaded"
-msgstr "Dodano"
-
-#: airtime_mvc/application/models/Block.php:1378
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
-#: airtime_mvc/application/controllers/LocaleController.php:99
-msgid "Website"
-msgstr "Web stranica"
-
-#: airtime_mvc/application/models/Block.php:1383
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
-#: airtime_mvc/application/controllers/LocaleController.php:151
-msgid "Select modifier"
-msgstr "Odaberi modifikator"
-
-#: airtime_mvc/application/models/Block.php:1384
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
-#: airtime_mvc/application/controllers/LocaleController.php:152
-msgid "contains"
-msgstr "sadrži"
-
-#: airtime_mvc/application/models/Block.php:1385
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
-#: airtime_mvc/application/controllers/LocaleController.php:153
-msgid "does not contain"
-msgstr "ne sadrži"
-
-#: airtime_mvc/application/models/Block.php:1386
-#: airtime_mvc/application/models/Block.php:1390
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
-#: airtime_mvc/application/controllers/LocaleController.php:154
-msgid "is"
-msgstr "je"
-
-#: airtime_mvc/application/models/Block.php:1387
-#: airtime_mvc/application/models/Block.php:1391
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
-#: airtime_mvc/application/controllers/LocaleController.php:155
-msgid "is not"
-msgstr "nije"
-
-#: airtime_mvc/application/models/Block.php:1388
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
-#: airtime_mvc/application/controllers/LocaleController.php:156
-msgid "starts with"
-msgstr "počinje sa"
-
-#: airtime_mvc/application/models/Block.php:1389
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
-#: airtime_mvc/application/controllers/LocaleController.php:157
-msgid "ends with"
-msgstr "završava sa"
-
-#: airtime_mvc/application/models/Block.php:1392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
-#: airtime_mvc/application/controllers/LocaleController.php:158
-msgid "is greater than"
-msgstr "je veći od"
-
-#: airtime_mvc/application/models/Block.php:1393
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
-#: airtime_mvc/application/controllers/LocaleController.php:159
-msgid "is less than"
-msgstr "je manji od"
-
-#: airtime_mvc/application/models/Block.php:1394
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
-#: airtime_mvc/application/controllers/LocaleController.php:160
-msgid "is in the range"
-msgstr "je u rasponu"
-
-#: airtime_mvc/application/models/Scheduler.php:73
-msgid "Cannot move items out of linked shows"
-msgstr "Ne možeš premjestiti stavke iz povezanih emisija"
-
-#: airtime_mvc/application/models/Scheduler.php:119
-msgid "The schedule you're viewing is out of date! (sched mismatch)"
-msgstr "Zastario se pregledan raspored! (nevažeći raspored)"
-
-#: airtime_mvc/application/models/Scheduler.php:124
-msgid "The schedule you're viewing is out of date! (instance mismatch)"
-msgstr "Zastario se pregledan raspored! (primjer neusklađenost)"
-
-#: airtime_mvc/application/models/Scheduler.php:132
-#: airtime_mvc/application/models/Scheduler.php:458
-#: airtime_mvc/application/models/Scheduler.php:490
-msgid "The schedule you're viewing is out of date!"
-msgstr "Zastario se pregledan raspored!"
-
-#: airtime_mvc/application/models/Scheduler.php:142
-#, php-format
-msgid "You are not allowed to schedule show %s."
-msgstr "Ne smijes zakazati rasporednu emisiju %s."
-
-#: airtime_mvc/application/models/Scheduler.php:146
-msgid "You cannot add files to recording shows."
-msgstr "Ne možeš dodavati datoteke za snimljene emisije."
-
-#: airtime_mvc/application/models/Scheduler.php:152
-#, php-format
-msgid "The show %s is over and cannot be scheduled."
-msgstr "Emisija %s je gotova i ne mogu biti zakazana."
-
-#: airtime_mvc/application/models/Scheduler.php:159
-#, php-format
-msgid "The show %s has been previously updated!"
-msgstr "Ranije je %s emisija već bila ažurirana!"
-
-#: airtime_mvc/application/models/Scheduler.php:178
-msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
-msgstr "Sadržaj u povezanim emisijama mora biti zakazan prije ili poslije bilo koje emisije"
-
-#: airtime_mvc/application/models/Scheduler.php:195
-msgid "Cannot schedule a playlist that contains missing files."
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:216
-#: airtime_mvc/application/models/Scheduler.php:305
-msgid "A selected File does not exist!"
-msgstr "Odabrana Datoteka ne postoji!"
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
-#: airtime_mvc/application/configs/navigation.php:40
-msgid "Weekly Schedule"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
-#: airtime_mvc/application/forms/Player.php:77
-msgid "Preview:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
-#: airtime_mvc/application/configs/navigation.php:34
-msgid "Player"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
-#: airtime_mvc/application/controllers/LocaleController.php:362
-#: airtime_mvc/application/controllers/LocaleController.php:390
-msgid "Close"
-msgstr "Zatvori"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Add this show"
-msgstr "Dodaj ovu emisiju"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Update show"
-msgstr "Ažuriranje emisije"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
-msgid "What"
-msgstr "Što"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
-msgid "When"
-msgstr "Kada"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
-msgid "Live Stream Input"
-msgstr "Ulaz Uživnog Prijenosa"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
-msgid "Who"
-msgstr "Tko"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
-msgid "Style"
-msgstr "Stil"
-
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
-#: airtime_mvc/application/controllers/LocaleController.php:273
-msgid "Start"
-msgstr "Početak"
-
-#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
-msgid "Password Reset"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
-msgid "Email Sent!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
-msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
-msgid "Back"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
-msgid "New password"
-msgstr "Nova lozinka"
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
-msgid "Please enter and confirm your new password in the fields below."
-msgstr "Unesi i potvrdi svoju novu lozinku u polja dolje."
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:3
-#: airtime_mvc/application/forms/Login.php:83
-msgid "Login"
-msgstr "Prijava"
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:7
-#, php-format
-msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:97
-msgid "Playout History"
-msgstr "Povijest puštenih pjesama"
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
-msgid "Log Sheet"
-msgstr "Popis Prijava"
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
-msgid "File Summary"
-msgstr "Datotečni Sažetak"
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
-msgid "Show Summary"
-msgstr "Programski Sažetak"
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
-msgid "Your trial expires in"
-msgstr "Vaš račun istječe u"
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
-msgid "days"
-msgstr "dani"
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-#, php-format
-msgid "Purchase an %s Pro plan!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-msgid "My Account"
-msgstr "Moj Račun"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
-msgid "Previous:"
-msgstr "Prethodna:"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
-msgid "Next:"
-msgstr "Sljedeća:"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
-msgid "Source Streams"
-msgstr "Prijenosni Izvori"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
-msgid "Master Source"
-msgstr "Majstorski Izvor"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
-msgid "Show Source"
-msgstr "Emisijski Izvor"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
-msgid "ON AIR"
-msgstr "PRIJENOS"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
-msgid "Listen"
-msgstr "Slušaj"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
-msgid "Logout"
-msgstr "Odjava"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
-msgid "Drop files here or click to browse your computer."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
-#: airtime_mvc/application/controllers/LocaleController.php:314
-msgid "in use"
-msgstr "u upotrebi"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
-#: airtime_mvc/application/controllers/LocaleController.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:401
-msgid "All"
-msgstr "Sve"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
-msgid "Failed"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
-msgid "Pending"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
-msgid "Recent Uploads"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
-#: airtime_mvc/application/configs/navigation.php:120
-msgid "Account Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
-msgid "Upgrade today to get more listeners and storage space!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
-msgid "View Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
-msgid "About"
-msgstr "O projektu"
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
-#, php-format
-msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
-#, php-format
-msgid "%1$s %2$s is distributed under the %3$s"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
-#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
-msgid "Live stream"
-msgstr "Prijenos uživo"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
-msgid "Share"
-msgstr "Podijeli"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
-msgid "Select stream:"
-msgstr "Prijenosi:"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
-msgid "mute"
-msgstr "nijemi"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
-msgid "unmute"
-msgstr "uključi"
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
-#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
-#, php-format
-msgid "Welcome to %s!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
-#, php-format
-msgid "Here's how you can get started using %s to automate your broadcasts: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
-msgid "Upload audio tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
-msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
-msgid "Schedule a show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
-msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
-msgid "Add tracks to your show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
-msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
-msgid "Now you're good to go!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
-#, php-format
-msgid "For more detailed help, read the %suser manual%s."
-msgstr "Za detaljnu pomoć, pročitaj %skorisnički priručnik%s."
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
-msgid "Listeners"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
-msgid "Stream Data Collection Status"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
-#: airtime_mvc/application/views/scripts/error/error.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
-msgid "An error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
-msgid "Access Denied!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
-msgid "You do not have permission to access this page!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
-#: airtime_mvc/application/views/scripts/error/error.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
-#: airtime_mvc/application/configs/navigation.php:143
-msgid "Help"
-msgstr "Pomoć"
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
-msgid "Page not found!"
-msgstr "Stranica nije pronađena!"
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
-msgid "We couldn't find the page you were looking for."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error.phtml:12
-msgid "Looks like the page you were looking for doesn't exist!"
-msgstr "Izgleda stranica koju si tražio ne postoji!"
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
-msgid "Oops!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
-msgid "Something went wrong!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
-msgid "Bad Request!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
-msgid "The requested action is not supported!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
-msgid "Viewing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
-msgid "Editing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:3
-msgid "File import in progress..."
-msgstr "Uvoz datoteke je u tijeku..."
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:10
-#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
-msgid "Advanced Search Options"
-msgstr "Napredne Opcije Pretraživanja"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
-#: airtime_mvc/application/forms/Player.php:15
-#: airtime_mvc/application/forms/EditAudioMD.php:24
-msgid "Title:"
-msgstr "Naziv:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
-#: airtime_mvc/application/forms/EditAudioMD.php:34
-msgid "Creator:"
-msgstr "Tvorac:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
-#: airtime_mvc/application/forms/EditAudioMD.php:44
-msgid "Album:"
-msgstr "Album:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
-msgid "Track:"
-msgstr "Pjesma:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
-msgid "Length:"
-msgstr "Dužina:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
-msgid "Sample Rate:"
-msgstr "Uzorak Stopa:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
-msgid "Bit Rate:"
-msgstr "Brzina u Bitovima:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
-#: airtime_mvc/application/forms/EditAudioMD.php:115
-msgid "Mood:"
-msgstr "Raspoloženje:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
-#: airtime_mvc/application/forms/EditAudioMD.php:62
-#: airtime_mvc/application/forms/AddShowWhat.php:45
-msgid "Genre:"
-msgstr "Žanr:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
-#: airtime_mvc/application/forms/EditAudioMD.php:72
-msgid "Year:"
-msgstr "Godina:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
-#: airtime_mvc/application/forms/EditAudioMD.php:85
-msgid "Label:"
-msgstr "Naljepnica:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
-#: airtime_mvc/application/forms/EditAudioMD.php:125
-msgid "BPM:"
-msgstr "BPM:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
-#: airtime_mvc/application/forms/EditAudioMD.php:95
-msgid "Composer:"
-msgstr "Kompozitor:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
-#: airtime_mvc/application/forms/EditAudioMD.php:105
-msgid "Conductor:"
-msgstr "Dirigent:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
-#: airtime_mvc/application/forms/EditAudioMD.php:135
-msgid "Copyright:"
-msgstr "Autorsko pravo:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
-msgid "Isrc Number:"
-msgstr "Isrc Broj:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
-#: airtime_mvc/application/forms/EditAudioMD.php:155
-msgid "Website:"
-msgstr "Web stranica:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
-#: airtime_mvc/application/forms/EditUser.php:119
-#: airtime_mvc/application/forms/EditAudioMD.php:165
-#: airtime_mvc/application/forms/Login.php:68
-msgid "Language:"
-msgstr "Jezik:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
-msgid "File Path:"
-msgstr "Staža Datoteka:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
-#: airtime_mvc/application/forms/AddShowWhat.php:26
-msgid "Name:"
-msgstr "Naziv:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
-#: airtime_mvc/application/forms/AddShowWhat.php:54
-msgid "Description:"
-msgstr "Opis:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
-msgid "Web Stream"
-msgstr "Prijenos"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
-msgid "Dynamic Smart Block"
-msgstr "Dinamički Smart Block"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
-msgid "Static Smart Block"
-msgstr "Statički Smart Block"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
-msgid "Audio Track"
-msgstr "Zvučni Zapis"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
-msgid "Playlist Contents: "
-msgstr "Sadržaji Popis Pjesama:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
-msgid "Static Smart Block Contents: "
-msgstr "Statički Smart Block Sadržaji:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
-msgid "Dynamic Smart Block Criteria: "
-msgstr "Dinamički Smart Block Kriteriji:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
-msgid "Limit to "
-msgstr "Ograničeno za"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
-#: airtime_mvc/application/forms/AddShowWhat.php:36
-msgid "URL:"
-msgstr "URL:"
-
-#: airtime_mvc/application/views/scripts/form/login.phtml:41
-msgid "Forgot your password?"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
-#, php-format
-msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
-#, php-format
-msgid "Click the box below to promote your station on %s."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
-msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
-msgstr "(Kako bi se promovirao svoju stanicu, 'Pošalji povratne informacije' mora biti omogućena)."
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
-msgid "(Required)"
-msgstr "(Obavezno)"
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
-msgid "(for verification purposes only, will not be published)"
-msgstr "(služi samo za provjeru, neće biti objavljena)"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
-msgid "Choose folder"
-msgstr "Odaberi mapu"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
-msgid "Set"
-msgstr "Podesi"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
-msgid "Current Import Folder:"
-msgstr "Aktualna Uvozna Mapa:"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
-msgid "Add"
-msgstr "Dodaj"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
-#, php-format
-msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
-msgid "Remove watched directory"
-msgstr "Ukloni nadzoranu direktoriju"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
-msgid "You are not watching any media folders."
-msgstr "Ne pratiš nijedne medijske mape."
-
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
-msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
-msgid "Live Broadcasting"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
-msgid "Use these settings in your broadcasting software to stream live at any time."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
-msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
-msgid "Choose Show Instance"
-msgstr "Odaberi Emisijsku Stupnju"
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
-#: airtime_mvc/application/forms/EditHistoryItem.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:400
-msgid "No Show"
-msgstr "Nema Programa"
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
-msgid "Find"
-msgstr "Nađi"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
-msgid "Choose Days:"
-msgstr "Odaberi Dane:"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
-#: airtime_mvc/application/forms/AddShowStyle.php:64
-#: airtime_mvc/application/forms/GeneralPreferences.php:53
-msgid "Remove"
-msgstr "Ukloni"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
-msgid "Stream "
-msgstr "Prijenos"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
-msgid "Additional Options"
-msgstr "Dodatne Opcije"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
-msgid "The following info will be displayed to listeners in their media player:"
-msgstr "Sljedeće informacije će biti prikazane slušateljima u medijskom plejerima:"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
-msgid "(Your radio station website)"
-msgstr "(Tvoja radijska postaja web stranice)"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
-msgid "Stream URL: "
-msgstr "URL Prijenosa:"
-
-#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
-msgid "Find Shows"
-msgstr "Nađi Emisije"
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
-msgid "TuneIn Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
-msgid "SoundCloud Settings"
-msgstr "SoundCloud Postavke"
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
-msgid "Dangerous Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
-msgid "Search Criteria:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
-msgid "New Criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
-msgid "or"
-msgstr "ili"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
-msgid "and"
-msgstr "i"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
-msgid "New Modifier"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
-msgid " to "
-msgstr "do"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
-msgid "files meet the criteria"
-msgstr "datoteke zadovoljavaju kriterije"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
-msgid "file meets the criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
-msgid "Filter History"
-msgstr "Filtriraj Povijesti"
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
-#: airtime_mvc/application/configs/navigation.php:61
-msgid "My Profile"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
-#, php-format
-msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
-#: airtime_mvc/application/forms/Preferences.php:40
-#: airtime_mvc/application/forms/PasswordChange.php:43
-#: airtime_mvc/application/forms/AddUser.php:110
-#: airtime_mvc/application/forms/BillingClient.php:193
-#: airtime_mvc/application/forms/SupportSettings.php:131
-#: airtime_mvc/application/forms/EditHistory.php:131
-#: airtime_mvc/application/controllers/LocaleController.php:294
-msgid "Save"
-msgstr "Spremi"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
-msgid "Repeat Days:"
-msgstr "Ponovljeni Dani:"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
-msgid "Register Airtime"
-msgstr "Airtime Registar"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
-#: airtime_mvc/application/forms/GeneralPreferences.php:43
-msgid "Note: Anything larger than 600x600 will be resized."
-msgstr "Napomena: Sve veća od 600x600 će se mijenjati."
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
-msgid "Show me what I am sending "
-msgstr "Pokaži mi što šaljem"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
-msgid "Terms and Conditions"
-msgstr "Uvjeti i Odredbe"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
-msgid "Creating File Summary Template"
-msgstr "Stvaranje Predložaka za Datotečni Sažeci"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
-msgid "Creating Log Sheet Template"
-msgstr "Stvaranje Popis Predložaka"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
-msgid "Name"
+#: airtime_mvc/application/services/HistoryService.php:1117
+#: airtime_mvc/application/services/HistoryService.php:1157
+#: airtime_mvc/application/services/HistoryService.php:1174
+#: airtime_mvc/application/controllers/LocaleController.php:76
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
+#: airtime_mvc/application/models/Block.php:1375
+msgid "Title"
msgstr "Naziv"
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
-msgid "Add more elements"
-msgstr "Dodaj više elemenata"
+#: airtime_mvc/application/services/HistoryService.php:1118
+#: airtime_mvc/application/services/HistoryService.php:1158
+#: airtime_mvc/application/services/HistoryService.php:1175
+#: airtime_mvc/application/controllers/LocaleController.php:77
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
+#: airtime_mvc/application/models/Block.php:1360
+msgid "Creator"
+msgstr "Tvorac"
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
-msgid "Add New Field"
-msgstr "Dodaj Novo Polje"
+#: airtime_mvc/application/services/HistoryService.php:1119
+#: airtime_mvc/application/controllers/LocaleController.php:78
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
+#: airtime_mvc/application/models/Block.php:1352
+msgid "Album"
+msgstr "Album"
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
-msgid "Set Default Template"
-msgstr "Postavi Zadano Predlošku"
+#: airtime_mvc/application/services/HistoryService.php:1120
+#: airtime_mvc/application/services/HistoryService.php:1177
+#: airtime_mvc/application/controllers/LocaleController.php:91
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
+#: airtime_mvc/application/models/Block.php:1369
+msgid "Length"
+msgstr "Dužina"
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
-msgid "Playout History Templates"
-msgstr ""
+#: airtime_mvc/application/services/HistoryService.php:1121
+#: airtime_mvc/application/controllers/LocaleController.php:85
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
+#: airtime_mvc/application/models/Block.php:1362
+msgid "Genre"
+msgstr "Žanr"
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
-msgid "Log Sheet Templates"
-msgstr "Predlošci Popis Prijave"
+#: airtime_mvc/application/services/HistoryService.php:1122
+#: airtime_mvc/application/controllers/LocaleController.php:93
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
+#: airtime_mvc/application/models/Block.php:1371
+msgid "Mood"
+msgstr "Raspoloženje"
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
-msgid "New Log Sheet Template"
-msgstr "Novi Popis Predložaka"
+#: airtime_mvc/application/services/HistoryService.php:1123
+#: airtime_mvc/application/controllers/LocaleController.php:87
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
+#: airtime_mvc/application/models/Block.php:1364
+msgid "Label"
+msgstr "Naljepnica"
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
-msgid "No Log Sheet Templates"
-msgstr "Nema Popis Predložaka"
+#: airtime_mvc/application/services/HistoryService.php:1124
+#: airtime_mvc/application/services/HistoryService.php:1178
+#: airtime_mvc/application/controllers/LocaleController.php:81
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
+#: airtime_mvc/application/models/Block.php:1355
+msgid "Composer"
+msgstr "Kompozitor"
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
-#: airtime_mvc/application/controllers/LocaleController.php:397
-msgid "Set Default"
-msgstr "Postavi Zadano"
+#: airtime_mvc/application/services/HistoryService.php:1125
+#: airtime_mvc/application/controllers/LocaleController.php:86
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
+#: airtime_mvc/application/models/Block.php:1363
+msgid "ISRC"
+msgstr "ISRC"
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
-msgid "File Summary Templates"
-msgstr "Predlošci za Datotečni Sažeci"
+#: airtime_mvc/application/services/HistoryService.php:1126
+#: airtime_mvc/application/services/HistoryService.php:1179
+#: airtime_mvc/application/controllers/LocaleController.php:83
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
+#: airtime_mvc/application/models/Block.php:1357
+msgid "Copyright"
+msgstr "Autorsko pravo"
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
-msgid "New File Summary Template"
-msgstr "Novi Predložak za Datotečni Sažeci"
+#: airtime_mvc/application/services/HistoryService.php:1127
+#: airtime_mvc/application/controllers/LocaleController.php:100
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
+#: airtime_mvc/application/models/Block.php:1379
+msgid "Year"
+msgstr "Godina"
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
-msgid "No File Summary Templates"
-msgstr "Nema Predložaka za Datotečni Sažeci"
+#: airtime_mvc/application/services/HistoryService.php:1128
+msgid "Track"
+msgstr "Pjesma"
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
-msgid "Disk Space"
-msgstr "Diskovni Prostor"
+#: airtime_mvc/application/services/HistoryService.php:1129
+#: airtime_mvc/application/controllers/LocaleController.php:82
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
+#: airtime_mvc/application/models/Block.php:1356
+msgid "Conductor"
+msgstr "Dirigent"
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
-#: airtime_mvc/application/controllers/LocaleController.php:315
-msgid "Disk"
-msgstr "Disk"
+#: airtime_mvc/application/services/HistoryService.php:1130
+#: airtime_mvc/application/controllers/LocaleController.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
+#: airtime_mvc/application/models/Block.php:1365
+msgid "Language"
+msgstr "Jezik"
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
-#: airtime_mvc/application/forms/AddShowWhen.php:89
-msgid "Duration:"
-msgstr "Trajanje:"
+#: airtime_mvc/application/services/HistoryService.php:1155
+#: airtime_mvc/application/forms/EditHistoryItem.php:32
+msgid "Start Time"
+msgstr "Vrijeme Početka"
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
-msgid "Toggle Details"
-msgstr ""
+#: airtime_mvc/application/services/HistoryService.php:1156
+#: airtime_mvc/application/forms/EditHistoryItem.php:44
+msgid "End Time"
+msgstr "Vrijeme Završetka"
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
-msgid "Playlist crossfade"
-msgstr "Križno utišavanje popis pjesama"
+#: airtime_mvc/application/services/HistoryService.php:1176
+msgid "Played"
+msgstr "Pušteno"
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-msgid "Remove all content from this smart block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Clear"
-msgstr "Očisti"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "Fade in: "
-msgstr "Odtamnjenje:"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "(ss.t)"
-msgstr "(ss.t)"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-msgid "Fade out: "
-msgstr "Zatamnjenje:"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
-#: airtime_mvc/application/forms/EditAudioMD.php:186
-#: airtime_mvc/application/forms/EditHistory.php:141
-#: airtime_mvc/application/controllers/LocaleController.php:295
-#: airtime_mvc/application/controllers/LocaleController.php:318
-msgid "Cancel"
-msgstr "Otkaži"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
-msgid "No smart block currently open"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
-msgid "Show Waveform"
-msgstr "Emisijski zvučni talasni oblik"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-msgid "Cue In: "
-msgstr "Cue In: "
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "(hh:mm:ss.t)"
-msgstr "(hh:mm:ss.t)"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "Cue Out: "
-msgstr "Cue Out: "
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
-msgid "Original Length:"
-msgstr "Izvorna Dužina:"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
-msgid "Expand Static Block"
-msgstr "Proširenje Statičkog Bloka"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
-msgid "Expand Dynamic Block"
-msgstr "Proširenje Dinamičkog Bloka"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
-msgid "Choose some search criteria above and click Generate to create this playlist."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
-msgid "A track list will be generated when you schedule this smart block into a show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
-msgid "Drag tracks here from your library to add them to the playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-msgid "Shuffle playlist"
-msgstr "Slučajni izbor popis pjesama"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
-msgid "Shuffle"
-msgstr "Miješanje"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Empty playlist content"
-msgstr "Prazan sadržaj popis pjesama"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-msgid "Save playlist"
-msgstr "Spremi popis pjesama"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
-msgid "No open playlist"
-msgstr "Nema otvorenih popis pjesama"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
-msgid "previous"
-msgstr "prethodna"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
-msgid "play"
-msgstr "pokreni"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
-msgid "pause"
-msgstr "pauza"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
-msgid "next"
-msgstr "sljedeća"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
-msgid "stop"
-msgstr "zaustavi"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
-msgid "max volume"
-msgstr "max glasnoća"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
-msgid "Update Required"
-msgstr "Potrebno Ažuriranje"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
+#: airtime_mvc/application/controllers/LibraryController.php:31
+#: airtime_mvc/application/controllers/PlaylistController.php:147
#, php-format
-msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
-msgstr "Medija je potrebna za reprodukciju, i moraš ažurirati svoj preglednik na noviju verziju, ili ažurirati svoj %sFlash plugin%s."
+msgid "%s not found"
+msgstr "%s nije pronađen"
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
-msgid "Stream Settings"
-msgstr "Prijenosne Postavke"
+#: airtime_mvc/application/controllers/LibraryController.php:40
+#: airtime_mvc/application/controllers/PlaylistController.php:168
+msgid "Something went wrong."
+msgstr "Nešto je pošlo po krivu."
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
-msgid "Global"
+#: airtime_mvc/application/controllers/LibraryController.php:95
+#: airtime_mvc/application/controllers/ShowbuilderController.php:136
+msgid "Preview"
+msgstr "Pregled"
+
+#: airtime_mvc/application/controllers/LibraryController.php:115
+#: airtime_mvc/application/controllers/LibraryController.php:177
+#: airtime_mvc/application/controllers/LibraryController.php:200
+msgid "Add to Playlist"
+msgstr "Dodaj na Popis Pjesama"
+
+#: airtime_mvc/application/controllers/LibraryController.php:117
+msgid "Add to Smart Block"
+msgstr "Dodaj u Smart Block"
+
+#: airtime_mvc/application/controllers/LibraryController.php:123
+#: airtime_mvc/application/controllers/LocaleController.php:66
+msgid "Edit Metadata"
+msgstr "Uredi Metapodatke"
+
+#: airtime_mvc/application/controllers/LibraryController.php:131
+#: airtime_mvc/application/controllers/ScheduleController.php:712
+msgid "Download"
+msgstr "Preuzimanje"
+
+#: airtime_mvc/application/controllers/LibraryController.php:147
+msgid "View track"
msgstr ""
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
-msgid "dB"
-msgstr "dB"
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
-msgid "Output Streams"
+#: airtime_mvc/application/controllers/LibraryController.php:148
+msgid "Remove track"
msgstr ""
-#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
-#: airtime_mvc/application/controllers/LocaleController.php:166
-msgid "Manage Media Folders"
-msgstr "Upravljanje Medijske Mape"
-
-#: airtime_mvc/application/views/scripts/preference/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:56
-msgid "General"
+#: airtime_mvc/application/controllers/LibraryController.php:154
+#: airtime_mvc/application/controllers/LibraryController.php:159
+msgid "Upload track"
msgstr ""
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
-msgid "Description"
-msgstr "Opis"
+#: airtime_mvc/application/controllers/LibraryController.php:169
+msgid "Duplicate Playlist"
+msgstr "Udvostručavanje"
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
-msgid "Stream URL:"
-msgstr "URL Prijenosa:"
+#: airtime_mvc/application/controllers/LibraryController.php:213
+msgid "No action available"
+msgstr "Nema dostupnih akcija"
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
-msgid "Default Length:"
-msgstr "Zadana Dužina:"
+#: airtime_mvc/application/controllers/LibraryController.php:233
+msgid "You don't have permission to delete selected items."
+msgstr "Nemaš dopuštenje za brisanje odabrane stavke."
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
-msgid "No webstream"
-msgstr "Nema prijenosa"
+#: airtime_mvc/application/controllers/LibraryController.php:279
+msgid "Could not delete file because it is scheduled in the future."
+msgstr ""
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
-msgid "Manage Users"
-msgstr "Upravljanje Korisnike"
+#: airtime_mvc/application/controllers/LibraryController.php:282
+msgid "Could not delete file(s)."
+msgstr ""
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
-msgid "New User"
-msgstr "Novi Korisnik"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
-msgid "id"
-msgstr "id"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
-#: airtime_mvc/application/forms/PasswordRestore.php:25
-msgid "Username"
-msgstr "Korisničko ime"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
-msgid "First Name"
-msgstr "Ime"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
-msgid "Last Name"
-msgstr "Prezime"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
-msgid "User Type"
-msgstr "Tip Korisnika"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
+#: airtime_mvc/application/controllers/LibraryController.php:322
#, php-format
-msgid "Super Admin details can be changed in your Billing Settings."
-msgstr ""
+msgid "Copy of %s"
+msgstr "Kopiranje od %s"
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
-#: airtime_mvc/application/controllers/LocaleController.php:74
-#: airtime_mvc/application/layouts/scripts/layout.phtml:78
-msgid "Tracks"
-msgstr ""
+#: airtime_mvc/application/controllers/WebstreamController.php:28
+#: airtime_mvc/application/controllers/WebstreamController.php:32
+msgid "Untitled Webstream"
+msgstr "Neimenovani Prijenos"
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
-#: airtime_mvc/application/controllers/LocaleController.php:104
-#: airtime_mvc/application/layouts/scripts/layout.phtml:80
-msgid "Playlists"
-msgstr "Popisi pjesama"
+#: airtime_mvc/application/controllers/WebstreamController.php:150
+msgid "Webstream saved."
+msgstr "Prijenos je spremljen."
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
-#: airtime_mvc/application/controllers/LocaleController.php:105
-#: airtime_mvc/application/layouts/scripts/layout.phtml:82
-msgid "Smart Blocks"
-msgstr "Smart Block-ovi"
+#: airtime_mvc/application/controllers/WebstreamController.php:158
+msgid "Invalid form values."
+msgstr "Nevažeći vrijednosti obrasca."
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
-#: airtime_mvc/application/layouts/scripts/layout.phtml:84
-msgid "Webstreams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
-#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
-#: airtime_mvc/application/layouts/scripts/layout.phtml:76
-msgid "Dashboard"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:12
-msgid "Radio Page"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:19
-msgid "Calendar"
-msgstr "Kalendar"
-
-#: airtime_mvc/application/configs/navigation.php:26
-msgid "Widgets"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:48
-msgid "Settings"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:67
-msgid "Users"
-msgstr "Korisnici"
-
-#: airtime_mvc/application/configs/navigation.php:74
-msgid "Streams"
-msgstr "Prijenosi"
-
-#: airtime_mvc/application/configs/navigation.php:82
-msgid "Analytics"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:90
-msgid "Listener Stats"
-msgstr "Slušateljska Statistika"
-
-#: airtime_mvc/application/configs/navigation.php:104
-msgid "History Templates"
-msgstr "Povijesni Predlošci"
-
-#: airtime_mvc/application/configs/navigation.php:113
-msgid "Billing"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:127
-msgid "Account Details"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:134
-msgid "View Invoices"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:150
-msgid "Getting Started"
-msgstr "Početak Korištenja"
-
-#: airtime_mvc/application/configs/navigation.php:157
-msgid "FAQ"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:162
-msgid "User Manual"
-msgstr "Priručnik"
-
-#: airtime_mvc/application/configs/navigation.php:167
-msgid "File a Support Ticket"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:12
-msgid "Background Colour:"
-msgstr "Boja Pozadine:"
-
-#: airtime_mvc/application/forms/AddShowStyle.php:31
-msgid "Text Colour:"
-msgstr "Boja Teksta:"
-
-#: airtime_mvc/application/forms/AddShowStyle.php:49
-msgid "Current Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:72
-msgid "Show Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:87
-msgid "Logo Preview:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:19
-msgid "Push metadata to your station on TuneIn?"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:24
-msgid "Station ID:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:30
-msgid "Partner Key:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:36
-msgid "Partner Id:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:77
-#: airtime_mvc/application/forms/TuneInPreferences.php:86
-msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:14
-msgid "Now Playing"
-msgstr "Trenutno Izvođena"
-
-#: airtime_mvc/application/forms/Player.php:25
-msgid "Select Stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:28
-msgid "Auto detect the most appropriate stream to use."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:29
-msgid "Select a stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:41
-msgid " - Mobile friendly"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:45
-msgid " - The player does not support Opus streams."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:71
-msgid "Embeddable code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:72
-msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:37
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
-#: airtime_mvc/application/forms/Login.php:41
-#: airtime_mvc/application/forms/AddUser.php:29
-msgid "Username:"
-msgstr "Korisničko ime:"
-
-#: airtime_mvc/application/forms/EditUser.php:48
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
-#: airtime_mvc/application/forms/Login.php:54
-#: airtime_mvc/application/forms/AddUser.php:38
-#: airtime_mvc/application/forms/BillingClient.php:172
-msgid "Password:"
-msgstr "Lozinka:"
-
-#: airtime_mvc/application/forms/EditUser.php:57
-#: airtime_mvc/application/forms/AddUser.php:46
-#: airtime_mvc/application/forms/BillingClient.php:181
-msgid "Verify Password:"
-msgstr "Potvrdi Lozinku:"
-
-#: airtime_mvc/application/forms/EditUser.php:67
-#: airtime_mvc/application/forms/AddUser.php:55
-msgid "Firstname:"
-msgstr "Ime:"
-
-#: airtime_mvc/application/forms/EditUser.php:75
-#: airtime_mvc/application/forms/AddUser.php:61
-msgid "Lastname:"
-msgstr "Prezime:"
-
-#: airtime_mvc/application/forms/EditUser.php:83
-#: airtime_mvc/application/forms/RegisterAirtime.php:51
-#: airtime_mvc/application/forms/AddUser.php:67
-#: airtime_mvc/application/forms/SupportSettings.php:43
-msgid "Email:"
-msgstr "E-mail:"
-
-#: airtime_mvc/application/forms/EditUser.php:94
-#: airtime_mvc/application/forms/AddUser.php:76
-msgid "Mobile Phone:"
-msgstr "Mobitel:"
-
-#: airtime_mvc/application/forms/EditUser.php:102
-#: airtime_mvc/application/forms/AddUser.php:82
-msgid "Skype:"
-msgstr "Skype:"
-
-#: airtime_mvc/application/forms/EditUser.php:110
-#: airtime_mvc/application/forms/AddUser.php:88
-msgid "Jabber:"
-msgstr "Jabber:"
-
-#: airtime_mvc/application/forms/EditUser.php:129
-msgid "Interface Timezone:"
-msgstr "Vremenska Zona Sučelja:"
-
-#: airtime_mvc/application/forms/EditUser.php:155
-#: airtime_mvc/application/forms/AddUser.php:120
-msgid "Login name is not unique."
-msgstr "Ime prijave nije jedinstveno."
-
-#: airtime_mvc/application/forms/AddShowRR.php:10
-msgid "Record from Line In?"
-msgstr "Snimanje sa Line In?"
-
-#: airtime_mvc/application/forms/AddShowRR.php:16
-msgid "Rebroadcast?"
-msgstr "Ponovno emitirati?"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:16
-msgid "'%value%' does not fit the time format 'HH:mm'"
-msgstr "'%value%' se ne uklapa u vremenskom formatu 'HH:mm'"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:22
-msgid "Start Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:37
-msgid "In the Future:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:64
-msgid "End Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:98
-msgid "Timezone:"
-msgstr "Vremenska Zona:"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:107
-msgid "Repeats?"
-msgstr "Ponavljanje?"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:139
-msgid "Cannot create show in the past"
-msgstr "Ne može se stvoriti emisije u prošlosti"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:147
-msgid "Cannot modify start date/time of the show that is already started"
-msgstr "Ne možeš mijenjati datum/vrijeme početak emisije, ako je već počela"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:164
-msgid "Cannot have duration < 0m"
-msgstr "Ne može trajati < 0m"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:168
-msgid "Cannot have duration 00h 00m"
-msgstr "Ne može trajati 00h 00m"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:175
-msgid "Cannot have duration greater than 24h"
-msgstr "Ne može trajati više od 24h"
-
-#: airtime_mvc/application/forms/AddShowWho.php:10
-msgid "Search Users:"
-msgstr "Traži Korisnike:"
-
-#: airtime_mvc/application/forms/AddShowWho.php:24
-msgid "DJs:"
-msgstr "Disk-Džokeji:"
-
-#: airtime_mvc/application/forms/PasswordChange.php:17
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
-msgid "Password"
-msgstr "Lozinka"
-
-#: airtime_mvc/application/forms/PasswordChange.php:28
-msgid "Confirm new password"
-msgstr "Potvrdi novu lozinku"
-
-#: airtime_mvc/application/forms/PasswordChange.php:36
-msgid "Password confirmation does not match your password."
-msgstr "Lozinke koje ste unijeli ne podudaraju se."
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
-msgid "Station Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
-#: airtime_mvc/application/forms/GeneralPreferences.php:127
-msgid "Station Timezone"
-msgstr "Stanična Vremenska Zona"
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
-msgid "Auto Switch Off:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
-msgid "Auto Switch On:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
-msgid "Switch Transition Fade (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
-#: airtime_mvc/application/forms/GeneralPreferences.php:68
-#: airtime_mvc/application/forms/GeneralPreferences.php:82
-#: airtime_mvc/application/forms/GeneralPreferences.php:96
-msgid "Please enter a time in seconds (eg. 0.5)"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
-#: airtime_mvc/application/forms/AddShowLiveStream.php:48
-msgid "Host:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
-#: airtime_mvc/application/forms/AddShowLiveStream.php:54
-msgid "Port:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
-#: airtime_mvc/application/forms/AddShowLiveStream.php:60
-msgid "Mount:"
-msgstr ""
-
-#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
-msgid "Value is required and can't be empty"
-msgstr "Vrijednost je potrebna i ne može biti prazan"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:25
-#: airtime_mvc/application/forms/RegisterAirtime.php:30
-#: airtime_mvc/application/forms/SupportSettings.php:18
-msgid "Station Name"
-msgstr "Naziv Postaje"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:33
-msgid "Station Description"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:42
-#: airtime_mvc/application/forms/RegisterAirtime.php:106
-msgid "Station Logo:"
-msgstr "Logo:"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:62
-msgid "Default Crossfade Duration (s):"
-msgstr "Zadano Trajanje Križno Stišavanje (s):"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:76
-msgid "Default Fade In (s):"
-msgstr "Zadano Odtamnjenje (s):"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:90
-msgid "Default Fade Out (s):"
-msgstr "Zadano Zatamnjenje (s):"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:102
-msgid "Public Airtime API"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:103
-msgid "Required for embeddable schedule widget."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:105
-msgid "Disabled"
-msgstr "Onemogućeno"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:106
-msgid "Enabled"
-msgstr "Omogućeno"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:109
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
msgid ""
-"Enabling this feature will allow Airtime to provide schedule data\n"
-" to external widgets that can be embedded in your website."
+"To configure and use the embeddable player you must:
\n"
+" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
+" 2. Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/forms/GeneralPreferences.php:120
-msgid "Default Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:134
-msgid "Week Starts On"
-msgstr "Prvi Dan u Tjednu"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:150
-msgid "Display login button on your Radio Page?"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:158
-#: airtime_mvc/application/controllers/LocaleController.php:249
-msgid "Sunday"
-msgstr "Nedjelja"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:159
-#: airtime_mvc/application/controllers/LocaleController.php:250
-msgid "Monday"
-msgstr "Ponedjeljak"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:160
-#: airtime_mvc/application/controllers/LocaleController.php:251
-msgid "Tuesday"
-msgstr "Utorak"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:161
-#: airtime_mvc/application/controllers/LocaleController.php:252
-msgid "Wednesday"
-msgstr "Srijeda"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:162
-#: airtime_mvc/application/controllers/LocaleController.php:253
-msgid "Thursday"
-msgstr "Četvrtak"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:163
-#: airtime_mvc/application/controllers/LocaleController.php:254
-msgid "Friday"
-msgstr "Petak"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:164
-#: airtime_mvc/application/controllers/LocaleController.php:255
-msgid "Saturday"
-msgstr "Subota"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
-msgid "Default License:"
-msgstr "Zadana Dozvola:"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
-msgid "All rights are reserved"
-msgstr "Sva prava pridržana"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
-msgid "The work is in the public domain"
-msgstr "Rad je u javnoj domeni"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
-msgid "Creative Commons Attribution"
-msgstr "Creative Commons Imenovanje"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
-msgid "Creative Commons Attribution Noncommercial"
-msgstr "Creative Commons Imenovanje Nekomercijalno"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
-msgid "Creative Commons Attribution No Derivative Works"
-msgstr "Creative Commons Imenovanje Bez Izvedenih Djela"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
-msgid "Creative Commons Attribution Share Alike"
-msgstr "Creative Commons Imenovanje Dijeli Pod Istim Uvjetima"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
-msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
-msgstr "Creative Commons Imenovanje Nekomercijalno Bez Izvedenih Djela"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
-msgid "Creative Commons Attribution Noncommercial Share Alike"
-msgstr "Creative Commons Imenovanje Nekomercijalno Dijeli Pod Istim Uvjetima"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
-msgid "Default Sharing Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
-msgid "Public"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
-msgid "Private"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:18
-#: airtime_mvc/application/forms/DateRange.php:16
-msgid "Date Start:"
-msgstr "Datum Početka:"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:37
-#: airtime_mvc/application/forms/ShowBuilder.php:65
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
-#: airtime_mvc/application/forms/DateRange.php:35
-#: airtime_mvc/application/forms/DateRange.php:63
-msgid "Invalid character entered"
-msgstr "Uneseni su nevažeći znakovi"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:46
-#: airtime_mvc/application/forms/AddShowRepeats.php:56
-#: airtime_mvc/application/forms/DateRange.php:44
-msgid "Date End:"
-msgstr "Datum Završetka:"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:72
-#: airtime_mvc/application/forms/ShowBuilder.php:88
-msgid "Filter by Show"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:80
-msgid "All My Shows:"
-msgstr "Sve Moje Emisije:"
-
-#: airtime_mvc/application/forms/EditAudioMD.php:145
-msgid "ISRC Number:"
-msgstr "ISRC Broj:"
-
-#: airtime_mvc/application/forms/EditAudioMD.php:176
-msgid "OK"
-msgstr "Ok"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
-msgid "Day must be specified"
-msgstr "Dan mora biti naveden"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
-msgid "Time must be specified"
-msgstr "Vrijeme mora biti navedeno"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
-msgid "Must wait at least 1 hour to rebroadcast"
-msgstr "Moraš čekati najmanje 1 sat za re-emitiranje"
-
-#: airtime_mvc/application/forms/AddShowWhat.php:30
-msgid "Untitled Show"
-msgstr "Neimenovan Program"
-
-#: airtime_mvc/application/forms/AddShowWhat.php:69
-msgid "Instance Description:"
-msgstr ""
-
-#: airtime_mvc/application/forms/DangerousPreferences.php:12
-msgid "Delete All Tracks in Library"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:39
-#: airtime_mvc/application/forms/SupportSettings.php:31
-msgid "Phone:"
-msgstr "Telefon:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:62
-#: airtime_mvc/application/forms/SupportSettings.php:54
-msgid "Station Web Site:"
-msgstr "Web Stranica:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:73
-#: airtime_mvc/application/forms/BillingClient.php:102
-#: airtime_mvc/application/forms/SupportSettings.php:65
-msgid "Country:"
-msgstr "Država:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:84
-#: airtime_mvc/application/forms/BillingClient.php:70
-#: airtime_mvc/application/forms/SupportSettings.php:76
-msgid "City:"
-msgstr "Grad:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:96
-#: airtime_mvc/application/forms/SupportSettings.php:88
-msgid "Station Description:"
-msgstr "Opis:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:116
-#: airtime_mvc/application/forms/SupportSettings.php:98
-#: airtime_mvc/application/controllers/LocaleController.php:341
-msgid "Send support feedback"
-msgstr "Pošalji povratne informacije"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:126
-#: airtime_mvc/application/forms/SupportSettings.php:108
-#, php-format
-msgid "Promote my station on %s"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:151
-#: airtime_mvc/application/forms/SupportSettings.php:120
-#, php-format
-msgid "By checking this box, I agree to %s's %sprivacy policy%s."
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:169
-#: airtime_mvc/application/forms/SupportSettings.php:143
-msgid "You have to agree to privacy policy."
-msgstr "Moraš pristati na pravila o privatnosti."
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:10
-msgid "Link:"
-msgstr "Link:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:16
-msgid "Repeat Type:"
-msgstr "Tip Ponavljanje:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:19
-msgid "weekly"
-msgstr "tjedno"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:20
-msgid "every 2 weeks"
-msgstr "svaka 2 tjedna"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:21
-msgid "every 3 weeks"
-msgstr "svaka 3 tjedna"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:22
-msgid "every 4 weeks"
-msgstr "svaka 4 tjedna"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:23
-msgid "monthly"
-msgstr "mjesečno"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:32
-msgid "Select Days:"
-msgstr "Odaberi Dane:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:35
-#: airtime_mvc/application/controllers/LocaleController.php:256
-msgid "Sun"
-msgstr "Ned"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:36
-#: airtime_mvc/application/controllers/LocaleController.php:257
-msgid "Mon"
-msgstr "Pon"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:37
-#: airtime_mvc/application/controllers/LocaleController.php:258
-msgid "Tue"
-msgstr "Uto"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:38
-#: airtime_mvc/application/controllers/LocaleController.php:259
-msgid "Wed"
-msgstr "Sri"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:39
-#: airtime_mvc/application/controllers/LocaleController.php:260
-msgid "Thu"
-msgstr "Čet"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:40
-#: airtime_mvc/application/controllers/LocaleController.php:261
-msgid "Fri"
-msgstr "Pet"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:41
-#: airtime_mvc/application/controllers/LocaleController.php:262
-msgid "Sat"
-msgstr "Sub"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:47
-msgid "Repeat By:"
-msgstr "Ponavljanje Po:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the month"
-msgstr "dan u mjesecu"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the week"
-msgstr "dan u tjednu"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:69
-msgid "No End?"
-msgstr "Nema Kraja?"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:106
-msgid "End date must be after start date"
-msgstr "Datum završetka mora biti nakon datuma početka"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:113
-msgid "Please select a repeat day"
-msgstr "Molimo, odaberi kojeg dana"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:10
-#, php-format
-msgid "Use %s Authentication:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:16
-msgid "Use Custom Authentication:"
-msgstr "Koristi Prilagođeno provjeru autentičnosti:"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:25
-msgid "Custom Username"
-msgstr "Prilagođeno Korisničko Ime"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:37
-msgid "Custom Password"
-msgstr "Prilagođena Lozinka"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:77
-msgid "Username field cannot be empty."
-msgstr "'Korisničko Ime' polja ne smije ostati prazno."
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:82
-msgid "Password field cannot be empty."
-msgstr "'Lozinka' polja ne smije ostati prazno."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
-msgid "Enabled:"
-msgstr "Omogućeno:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
-msgid "Mobile:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
-msgid "Stream Type:"
-msgstr "Prijenos Tipa:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
-msgid "Service Type:"
-msgstr "Tip Usluge:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
-msgid "Channels:"
-msgstr "Kanali:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "1 - Mono"
-msgstr "1 - Mono"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "2 - Stereo"
-msgstr "2 - Stereo"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
-msgid "Server"
-msgstr "Poslužitelj"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
-msgid "Port"
-msgstr "Port"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
-msgid "Only numbers are allowed."
-msgstr "Dopušteni su samo brojevi."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
-msgid "URL"
-msgstr "URL"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
-msgid "Mount Point"
-msgstr "Točka Montiranja"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
-msgid "Admin User"
-msgstr "Admin Korisnik"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
-msgid "Admin Password"
-msgstr "Admin Lozinka"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
-#: airtime_mvc/application/controllers/LocaleController.php:173
-msgid "Getting information from the server..."
-msgstr "Dobivanje informacija sa poslužitelja..."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
-msgid "Server cannot be empty."
-msgstr "Poslužitelj ne može biti prazan."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
-msgid "Port cannot be empty."
-msgstr "Port ne može biti prazan."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
-msgid "Mount cannot be empty with Icecast server."
-msgstr "Montiranje ne može biti prazna s Icecast poslužiteljem."
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
-msgid "'%value%' is no valid email address in the basic format local-part@hostname"
-msgstr "'%value%' nije valjana e-mail adresa u osnovnom obliku local-part@hostname"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
-msgid "'%value%' does not fit the date format '%format%'"
-msgstr "'%value%' ne odgovara po obliku datuma '%format%'"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
-msgid "'%value%' is less than %min% characters long"
-msgstr "'%value%' je manji od %min% dugačko znakova"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
-msgid "'%value%' is more than %max% characters long"
-msgstr "'%value%' je više od %max% dugačko znakova"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
-msgid "'%value%' is not between '%min%' and '%max%', inclusively"
-msgstr "'%value%' nije između '%min%' i '%max%', uključivo"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
-msgid "Passwords do not match"
-msgstr "Lozinke se ne podudaraju"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
-msgid "hours"
-msgstr "sati"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
-msgid "minutes"
-msgstr "minuti"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
-msgid "Randomly"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
-msgid "Newest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
-msgid "Oldest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
-msgid "Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
-msgid "Static"
-msgstr "Statički"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
-msgid "Dynamic"
-msgstr "Dinamički"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
-msgid "Allow Repeated Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
-msgid "Sort Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
-msgid "Limit to:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
-msgid "Generate playlist content and save criteria"
-msgstr "Generiranje popisa pjesama i spremanje sadržaja kriterije"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
-msgid "Generate"
-msgstr "Generiraj"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
-msgid "Shuffle playlist content"
-msgstr "Sadržaj slučajni izbor popis pjesama"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
-msgid "Limit cannot be empty or smaller than 0"
-msgstr "Ograničenje ne može biti prazan ili manji od 0"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
-msgid "Limit cannot be more than 24 hrs"
-msgstr "Ograničenje ne može biti više od 24 sati"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
-msgid "The value should be an integer"
-msgstr "Vrijednost mora biti cijeli broj"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
-msgid "500 is the max item limit value you can set"
-msgstr "500 je max stavku graničnu vrijednost moguće je podesiti"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
-msgid "You must select Criteria and Modifier"
-msgstr "Moraš odabrati Kriteriju i Modifikaciju"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
-msgid "'Length' should be in '00:00:00' format"
-msgstr "'Dužina' trebala biti u '00:00:00' obliku"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
-msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)"
-msgstr "Vrijednost mora biti u obliku vremenske oznake (npr. 0000-00-00 ili 0000-00-00 00:00:00)"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:594
-msgid "The value has to be numeric"
-msgstr "Vrijednost mora biti numerička"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
-msgid "The value should be less then 2147483648"
-msgstr "Vrijednost bi trebala biti manja od 2147483648"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
-#, php-format
-msgid "The value should be less than %s characters"
-msgstr "Vrijednost mora biti manja od %s znakova"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
-msgid "Value cannot be empty"
-msgstr "Vrijednost ne može biti prazna"
-
-#: airtime_mvc/application/forms/Login.php:102
-msgid "Type the characters you see in the picture below."
-msgstr "Upiši znakove koje vidiš na slici u nastavku."
-
-#: airtime_mvc/application/forms/StreamSetting.php:26
-msgid "Icecast Vorbis Metadata"
-msgstr "Icecast Vorbis Metapodaci"
-
-#: airtime_mvc/application/forms/StreamSetting.php:36
-msgid "Stream Label:"
-msgstr "Vidljivi Podaci:"
-
-#: airtime_mvc/application/forms/StreamSetting.php:37
-msgid "Artist - Title"
-msgstr "Autor - Naziv"
-
-#: airtime_mvc/application/forms/StreamSetting.php:38
-msgid "Show - Artist - Title"
-msgstr "Program - Autor - Naziv"
-
-#: airtime_mvc/application/forms/StreamSetting.php:39
-msgid "Station name - Show name"
-msgstr "Naziv postaje - Naziv programa"
-
-#: airtime_mvc/application/forms/StreamSetting.php:45
-msgid "Off Air Metadata"
-msgstr "Off Air Metapodaci"
-
-#: airtime_mvc/application/forms/StreamSetting.php:51
-msgid "Enable Replay Gain"
-msgstr "Omogući Replay Gain"
-
-#: airtime_mvc/application/forms/StreamSetting.php:57
-msgid "Replay Gain Modifier"
-msgstr "Replay Gain Modifikator"
-
-#: airtime_mvc/application/forms/StreamSetting.php:65
-msgid "Streaming Server:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Airtime Pro Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Custom / 3rd Party Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:95
-msgid "User Type:"
-msgstr "Vrsta Korisnika:"
-
-#: airtime_mvc/application/forms/AddUser.php:99
-#: airtime_mvc/application/controllers/LocaleController.php:324
-msgid "Guest"
-msgstr "Gost"
-
-#: airtime_mvc/application/forms/AddUser.php:100
-#: airtime_mvc/application/controllers/LocaleController.php:322
-msgid "DJ"
-msgstr "Disk-džokej"
-
-#: airtime_mvc/application/forms/AddUser.php:101
-#: airtime_mvc/application/controllers/LocaleController.php:323
-msgid "Program Manager"
-msgstr "Voditelj Programa"
-
-#: airtime_mvc/application/forms/AddUser.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:321
-msgid "Admin"
-msgstr "Administrator"
-
-#: airtime_mvc/application/forms/BillingClient.php:17
-msgid "First Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:26
-msgid "Last Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:35
-msgid "Company Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:44
-msgid "Email Address:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:54
-msgid "Address 1:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:63
-msgid "Address 2:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:80
-msgid "State/Region:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:89
-msgid "Zip Code / Postal Code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:112
-msgid "Phone Number:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:121
-msgid "Please choose a security question:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:126
-msgid "What is the name of your favorite childhood friend?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:127
-msgid "What school did you attend for sixth grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:128
-msgid "In what city did you meet your spouse/significant other?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:129
-msgid "What street did you live on in third grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:130
-msgid "What is the first name of the boy or girl that you first kissed?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:131
-msgid "In what city or town was your first job?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:135
-msgid "Please enter an answer:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:152
-msgid "VAT/Tax ID (EU only)"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:162
-msgid "Subscribe to Sourcefabric newsletter"
-msgstr ""
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
-msgid "Import Folder:"
-msgstr "Uvozna Mapa:"
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
-msgid "Watched Folders:"
-msgstr "Mape Pod Nadzorom:"
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
-msgid "Not a valid Directory"
-msgstr "Ne valjana Direktorija"
-
-#: airtime_mvc/application/forms/PasswordRestore.php:14
-msgid "Email"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordRestore.php:36
-msgid "Reset password"
-msgstr "Resetuj lozinku"
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
-msgid "Plan type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
-msgid "Billing cycle:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
-msgid "Payment method:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
-msgid "PayPal"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
-msgid "Credit Card via 2Checkout"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:213
-#, php-format
-msgid "The year %s must be within the range of 1753 - 9999"
-msgstr "Godine %s moraju biti u rasponu od 1753 - 9999"
-
-#: airtime_mvc/application/common/DateHelper.php:216
-#, php-format
-msgid "%s-%s-%s is not a valid date"
-msgstr "%s-%s-%s nije ispravan datum"
-
-#: airtime_mvc/application/common/DateHelper.php:240
-#, php-format
-msgid "%s:%s:%s is not a valid time"
-msgstr "%s:%s:%s nije ispravan datum"
-
-#: airtime_mvc/application/common/UsabilityHints.php:55
-msgid "Upload some tracks below to add them to your library!"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:57
-#, php-format
-msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:63
-msgid "Click the 'New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:65
-#, php-format
-msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:73
-msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:75
-#, php-format
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
msgid ""
-"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
-" %sCreate an unlinked show now%s."
+"To use the embeddable weekly schedule widget you must:
\n"
+" Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/common/UsabilityHints.php:80
-msgid "To start broadcasting, click on the current show and select 'Schedule Show'"
-msgstr ""
+#: airtime_mvc/application/controllers/ListenerstatController.php:51
+msgid "Please make sure admin user/password is correct on System->Streams page."
+msgstr "Molimo, provjeri da li je ispravan/na admin korisnik/lozinka na stranici Sustav->Prijenosi."
-#: airtime_mvc/application/common/UsabilityHints.php:82
+#: airtime_mvc/application/controllers/UserController.php:86
+msgid "User added successfully!"
+msgstr "Korisnik je uspješno dodan!"
+
+#: airtime_mvc/application/controllers/UserController.php:88
+msgid "User updated successfully!"
+msgstr "Korisnik je uspješno ažuriran!"
+
+#: airtime_mvc/application/controllers/UserController.php:187
+msgid "Settings updated successfully!"
+msgstr "Postavke su uspješno ažurirane!"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:53
#, php-format
-msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
-msgstr ""
+msgid "You are viewing an older version of %s"
+msgstr "Gledaš stariju verziju %s"
-#: airtime_mvc/application/common/UsabilityHints.php:89
-msgid "Click on the show starting next and select 'Schedule Show'"
-msgstr ""
+#: airtime_mvc/application/controllers/PlaylistController.php:140
+msgid "You cannot add tracks to dynamic blocks."
+msgstr "Ne možeš dodavati pjesme za dinamične blokove."
-#: airtime_mvc/application/common/UsabilityHints.php:91
+#: airtime_mvc/application/controllers/PlaylistController.php:161
#, php-format
-msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+msgid "You don't have permission to delete selected %s(s)."
+msgstr "Nemaš dopuštenje za brisanje odabranog (e) %s."
+
+#: airtime_mvc/application/controllers/PlaylistController.php:174
+msgid "You can only add tracks to smart block."
+msgstr "Možeš samo pjesme dodavati za pametnog bloka."
+
+#: airtime_mvc/application/controllers/PlaylistController.php:180
+#: airtime_mvc/application/controllers/LocaleController.php:50
+msgid "You can only add tracks, smart blocks, and webstreams to playlists."
+msgstr "Možeš samo dodati pjesme, pametne blokova, i prijenose kod popise pjesama."
+
+#: airtime_mvc/application/controllers/PlaylistController.php:192
+msgid "Untitled Playlist"
+msgstr "Neimenovani Popis Pjesama"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:194
+msgid "Untitled Smart Block"
+msgstr "Neimenovani Smart Block"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:522
+msgid "Unknown Playlist"
+msgstr "Nepoznati Popis Pjesama"
+
+#: airtime_mvc/application/controllers/ErrorController.php:78
+msgid "Page not found."
msgstr ""
+#: airtime_mvc/application/controllers/ErrorController.php:87
+msgid "The requested action is not supported."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:98
+msgid "You do not have permission to access this resource."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:109
+msgid "An internal application error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/controllers/Apiv2Controller.php:77
+#: airtime_mvc/application/controllers/ApiController.php:79
+msgid "You are not allowed to access this resource."
+msgstr "Ne smiješ pristupiti ovog izvora."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:72
+msgid "Preferences updated."
+msgstr "Postavke su ažurirane."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:115
+msgid "Support setting updated."
+msgstr "Podrška postavka je ažurirana."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:123
+msgid "Support Feedback"
+msgstr "Povratne Informacije"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:251
+msgid "Stream Setting Updated."
+msgstr "Prijenos Podešavanje je Ažurirano."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:342
+msgid "path should be specified"
+msgstr "put bi trebao biti specificiran"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:437
+msgid "Problem with Liquidsoap..."
+msgstr "Problem sa Liquidsoap..."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:493
+msgid "Request method not accepted"
+msgstr ""
+
+#: airtime_mvc/application/controllers/DashboardController.php:35
+#: airtime_mvc/application/controllers/DashboardController.php:84
+msgid "You don't have permission to disconnect source."
+msgstr "Nemaš dopuštenje isključiti izvor."
+
+#: airtime_mvc/application/controllers/DashboardController.php:37
+#: airtime_mvc/application/controllers/DashboardController.php:86
+msgid "There is no source connected to this input."
+msgstr "Nema spojenog izvora na ovaj ulaz."
+
+#: airtime_mvc/application/controllers/DashboardController.php:81
+msgid "You don't have permission to switch source."
+msgstr "Nemaš dozvolu za promjenu izvora."
+
+#: airtime_mvc/application/controllers/LoginController.php:43
+msgid "Please enter your username and password."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:93
+msgid "Wrong username or password provided. Please try again."
+msgstr "Pogrešno korisničko ime ili lozinka. Molimo pokušaj ponovno."
+
+#: airtime_mvc/application/controllers/LoginController.php:167
+msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
+msgstr "E-mail nije mogao biti poslan. Provjeri svoje postavke poslužitelja pošte i uvjeri se da je ispravno podešen."
+
+#: airtime_mvc/application/controllers/LoginController.php:173
+msgid "There was a problem with the username or email address you entered."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ApiController.php:244
+#: airtime_mvc/application/controllers/ApiController.php:317
+#: airtime_mvc/application/controllers/ApiController.php:392
+#: airtime_mvc/application/controllers/ApiController.php:435
+#: airtime_mvc/application/controllers/ApiController.php:474
+#: airtime_mvc/application/controllers/ApiController.php:507
+msgid "You are not allowed to access this resource. "
+msgstr "Ne smiješ pristupiti ovog izvora."
+
+#: airtime_mvc/application/controllers/ApiController.php:698
+#: airtime_mvc/application/controllers/ApiController.php:718
+#: airtime_mvc/application/controllers/ApiController.php:730
+#, php-format
+msgid "File does not exist in %s"
+msgstr ""
+
+#: airtime_mvc/application/controllers/ApiController.php:781
+msgid "Bad request. no 'mode' parameter passed."
+msgstr "Neispravan zahtjev."
+
+#: airtime_mvc/application/controllers/ApiController.php:791
+msgid "Bad request. 'mode' parameter is invalid"
+msgstr "Neispravan zahtjev"
+
#: airtime_mvc/application/controllers/LocaleController.php:30
#: airtime_mvc/application/layouts/scripts/audio-player.phtml:5
msgid "Audio Player"
@@ -2908,11 +559,6 @@ msgstr "Dodavanje %s Stavke"
msgid "You can only add tracks to smart blocks."
msgstr "Možeš dodavati samo pjesme kod pametnih blokova."
-#: airtime_mvc/application/controllers/LocaleController.php:50
-#: airtime_mvc/application/controllers/PlaylistController.php:180
-msgid "You can only add tracks, smart blocks, and webstreams to playlists."
-msgstr "Možeš samo dodati pjesme, pametne blokova, i prijenose kod popise pjesama."
-
#: airtime_mvc/application/controllers/LocaleController.php:53
msgid "Please select a cursor position on timeline."
msgstr "Molimo odaberi mjesto pokazivača na vremenskoj crti."
@@ -2953,11 +599,6 @@ msgstr ""
msgid "Click 'New' to create one."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:66
-#: airtime_mvc/application/controllers/LibraryController.php:123
-msgid "Edit Metadata"
-msgstr "Uredi Metapodatke"
-
#: airtime_mvc/application/controllers/LocaleController.php:67
msgid "Add to selected show"
msgstr "Dodaj u odabranoj emisiji"
@@ -2986,6 +627,12 @@ msgstr "Jesi li siguran da želiš izbrisati odabranu (e) stavku (e)?"
msgid "Scheduled"
msgstr "Zakazana"
+#: airtime_mvc/application/controllers/LocaleController.php:74
+#: airtime_mvc/application/layouts/scripts/layout.phtml:78
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
+msgid "Tracks"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:75
#: airtime_mvc/application/layouts/scripts/layout.phtml:60
msgid "Playlist"
@@ -2995,18 +642,96 @@ msgstr ""
msgid "Bit Rate"
msgstr "Prijenos Bita"
+#: airtime_mvc/application/controllers/LocaleController.php:80
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
+#: airtime_mvc/application/models/Block.php:1354
+msgid "BPM"
+msgstr "BPM"
+
+#: airtime_mvc/application/controllers/LocaleController.php:84
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
+#: airtime_mvc/application/models/Block.php:1361
+msgid "Encoded By"
+msgstr "Kodirano je po"
+
+#: airtime_mvc/application/controllers/LocaleController.php:89
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
+#: airtime_mvc/application/models/Block.php:1367
+msgid "Last Modified"
+msgstr "Zadnja Izmjena"
+
+#: airtime_mvc/application/controllers/LocaleController.php:90
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
+#: airtime_mvc/application/models/Block.php:1368
+msgid "Last Played"
+msgstr "Zadnji Put Odigrano"
+
+#: airtime_mvc/application/controllers/LocaleController.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
+#: airtime_mvc/application/models/Block.php:1370
+msgid "Mime"
+msgstr "Mimika"
+
+#: airtime_mvc/application/controllers/LocaleController.php:94
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
+#: airtime_mvc/application/models/Block.php:1372
+msgid "Owner"
+msgstr "Vlasnik"
+
+#: airtime_mvc/application/controllers/LocaleController.php:95
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
+#: airtime_mvc/application/models/Block.php:1373
+msgid "Replay Gain"
+msgstr "Replay Gain"
+
#: airtime_mvc/application/controllers/LocaleController.php:96
msgid "Sample Rate"
msgstr "Uzorak Stopa"
+#: airtime_mvc/application/controllers/LocaleController.php:97
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
+#: airtime_mvc/application/models/Block.php:1376
+msgid "Track Number"
+msgstr "Broj Pjesma"
+
+#: airtime_mvc/application/controllers/LocaleController.php:98
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
+#: airtime_mvc/application/models/Block.php:1377
+msgid "Uploaded"
+msgstr "Dodano"
+
+#: airtime_mvc/application/controllers/LocaleController.php:99
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
+#: airtime_mvc/application/models/Block.php:1378
+msgid "Website"
+msgstr "Web stranica"
+
#: airtime_mvc/application/controllers/LocaleController.php:101
msgid "Loading..."
msgstr "Učitavanje..."
+#: airtime_mvc/application/controllers/LocaleController.php:102
+#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
+msgid "All"
+msgstr "Sve"
+
#: airtime_mvc/application/controllers/LocaleController.php:103
msgid "Files"
msgstr "Datoteke"
+#: airtime_mvc/application/controllers/LocaleController.php:104
+#: airtime_mvc/application/layouts/scripts/layout.phtml:80
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
+msgid "Playlists"
+msgstr "Popisi pjesama"
+
+#: airtime_mvc/application/controllers/LocaleController.php:105
+#: airtime_mvc/application/layouts/scripts/layout.phtml:82
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
+msgid "Smart Blocks"
+msgstr "Smart Block-ovi"
+
#: airtime_mvc/application/controllers/LocaleController.php:106
msgid "Web Streams"
msgstr "Prijenosi"
@@ -3151,6 +876,74 @@ msgstr "Smart block je spremljen"
msgid "Processing..."
msgstr "Obrada..."
+#: airtime_mvc/application/controllers/LocaleController.php:151
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
+#: airtime_mvc/application/models/Block.php:1383
+msgid "Select modifier"
+msgstr "Odaberi modifikator"
+
+#: airtime_mvc/application/controllers/LocaleController.php:152
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
+#: airtime_mvc/application/models/Block.php:1384
+msgid "contains"
+msgstr "sadrži"
+
+#: airtime_mvc/application/controllers/LocaleController.php:153
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
+#: airtime_mvc/application/models/Block.php:1385
+msgid "does not contain"
+msgstr "ne sadrži"
+
+#: airtime_mvc/application/controllers/LocaleController.php:154
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
+#: airtime_mvc/application/models/Block.php:1386
+#: airtime_mvc/application/models/Block.php:1390
+msgid "is"
+msgstr "je"
+
+#: airtime_mvc/application/controllers/LocaleController.php:155
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
+#: airtime_mvc/application/models/Block.php:1387
+#: airtime_mvc/application/models/Block.php:1391
+msgid "is not"
+msgstr "nije"
+
+#: airtime_mvc/application/controllers/LocaleController.php:156
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
+#: airtime_mvc/application/models/Block.php:1388
+msgid "starts with"
+msgstr "počinje sa"
+
+#: airtime_mvc/application/controllers/LocaleController.php:157
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
+#: airtime_mvc/application/models/Block.php:1389
+msgid "ends with"
+msgstr "završava sa"
+
+#: airtime_mvc/application/controllers/LocaleController.php:158
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
+#: airtime_mvc/application/models/Block.php:1392
+msgid "is greater than"
+msgstr "je veći od"
+
+#: airtime_mvc/application/controllers/LocaleController.php:159
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
+#: airtime_mvc/application/models/Block.php:1393
+msgid "is less than"
+msgstr "je manji od"
+
+#: airtime_mvc/application/controllers/LocaleController.php:160
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
+#: airtime_mvc/application/models/Block.php:1394
+msgid "is in the range"
+msgstr "je u rasponu"
+
#: airtime_mvc/application/controllers/LocaleController.php:162
msgid "Choose Storage Folder"
msgstr "Odaberi Mapu za Skladištenje"
@@ -3167,6 +960,11 @@ msgstr ""
"Jesi li siguran da želiš promijeniti mapu za pohranu?\n"
"To će ukloniti datoteke iz tvoje knjižnice!"
+#: airtime_mvc/application/controllers/LocaleController.php:166
+#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
+msgid "Manage Media Folders"
+msgstr "Upravljanje Medijske Mape"
+
#: airtime_mvc/application/controllers/LocaleController.php:167
msgid "Are you sure you want to remove the watched folder?"
msgstr "Jesi li siguran da želiš ukloniti nadzorsku mapu?"
@@ -3188,6 +986,11 @@ msgstr "Priključen je na poslužitelju"
msgid "The stream is disabled"
msgstr "Prijenos je onemogućen"
+#: airtime_mvc/application/controllers/LocaleController.php:173
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
+msgid "Getting information from the server..."
+msgstr "Dobivanje informacija sa poslužitelja..."
+
#: airtime_mvc/application/controllers/LocaleController.php:174
msgid "Can not connect to the streaming server"
msgstr "Ne može se povezati na poslužitelju"
@@ -3415,6 +1218,76 @@ msgstr ""
msgid "Month"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:249
+#: airtime_mvc/application/forms/GeneralPreferences.php:158
+msgid "Sunday"
+msgstr "Nedjelja"
+
+#: airtime_mvc/application/controllers/LocaleController.php:250
+#: airtime_mvc/application/forms/GeneralPreferences.php:159
+msgid "Monday"
+msgstr "Ponedjeljak"
+
+#: airtime_mvc/application/controllers/LocaleController.php:251
+#: airtime_mvc/application/forms/GeneralPreferences.php:160
+msgid "Tuesday"
+msgstr "Utorak"
+
+#: airtime_mvc/application/controllers/LocaleController.php:252
+#: airtime_mvc/application/forms/GeneralPreferences.php:161
+msgid "Wednesday"
+msgstr "Srijeda"
+
+#: airtime_mvc/application/controllers/LocaleController.php:253
+#: airtime_mvc/application/forms/GeneralPreferences.php:162
+msgid "Thursday"
+msgstr "Četvrtak"
+
+#: airtime_mvc/application/controllers/LocaleController.php:254
+#: airtime_mvc/application/forms/GeneralPreferences.php:163
+msgid "Friday"
+msgstr "Petak"
+
+#: airtime_mvc/application/controllers/LocaleController.php:255
+#: airtime_mvc/application/forms/GeneralPreferences.php:164
+msgid "Saturday"
+msgstr "Subota"
+
+#: airtime_mvc/application/controllers/LocaleController.php:256
+#: airtime_mvc/application/forms/AddShowRepeats.php:35
+msgid "Sun"
+msgstr "Ned"
+
+#: airtime_mvc/application/controllers/LocaleController.php:257
+#: airtime_mvc/application/forms/AddShowRepeats.php:36
+msgid "Mon"
+msgstr "Pon"
+
+#: airtime_mvc/application/controllers/LocaleController.php:258
+#: airtime_mvc/application/forms/AddShowRepeats.php:37
+msgid "Tue"
+msgstr "Uto"
+
+#: airtime_mvc/application/controllers/LocaleController.php:259
+#: airtime_mvc/application/forms/AddShowRepeats.php:38
+msgid "Wed"
+msgstr "Sri"
+
+#: airtime_mvc/application/controllers/LocaleController.php:260
+#: airtime_mvc/application/forms/AddShowRepeats.php:39
+msgid "Thu"
+msgstr "Čet"
+
+#: airtime_mvc/application/controllers/LocaleController.php:261
+#: airtime_mvc/application/forms/AddShowRepeats.php:40
+msgid "Fri"
+msgstr "Pet"
+
+#: airtime_mvc/application/controllers/LocaleController.php:262
+#: airtime_mvc/application/forms/AddShowRepeats.php:41
+msgid "Sat"
+msgstr "Sub"
+
#: airtime_mvc/application/controllers/LocaleController.php:263
msgid "Shows longer than their scheduled time will be cut off by a following show."
msgstr "Emisija dulje od predviđenog vremena će biti odsječen."
@@ -3424,7 +1297,7 @@ msgid "Cancel Current Show?"
msgstr "Otkaži Trenutnog Programa?"
#: airtime_mvc/application/controllers/LocaleController.php:265
-#: airtime_mvc/application/controllers/LocaleController.php:309
+#: airtime_mvc/application/controllers/LocaleController.php:312
msgid "Stop recording current show?"
msgstr "Zaustavljanje snimanje emisije?"
@@ -3444,6 +1317,11 @@ msgstr "Ukloniš sve sadržaje?"
msgid "Delete selected item(s)?"
msgstr "Obrišeš li odabranu(e) stavku(e)?"
+#: airtime_mvc/application/controllers/LocaleController.php:273
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
+msgid "Start"
+msgstr "Početak"
+
#: airtime_mvc/application/controllers/LocaleController.php:274
msgid "End"
msgstr "Završetak"
@@ -3452,580 +1330,467 @@ msgstr "Završetak"
msgid "Duration"
msgstr "Trajanje"
-#: airtime_mvc/application/controllers/LocaleController.php:283
+#: airtime_mvc/application/controllers/LocaleController.php:276
+msgid "Filtering out "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:277
+msgid " of "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:278
+msgid " records"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/layouts/scripts/layout.phtml:140
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
+#: airtime_mvc/application/models/Block.php:1358
+msgid "Cue In"
+msgstr "Cue In"
+
+#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/layouts/scripts/layout.phtml:147
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
+#: airtime_mvc/application/models/Block.php:1359
+msgid "Cue Out"
+msgstr "Cue Out"
+
+#: airtime_mvc/application/controllers/LocaleController.php:286
#: airtime_mvc/application/layouts/scripts/layout.phtml:167
msgid "Fade In"
msgstr "Odtamnjenje"
-#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/controllers/LocaleController.php:287
#: airtime_mvc/application/layouts/scripts/layout.phtml:168
msgid "Fade Out"
msgstr "Zatamnjenje"
-#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/controllers/LocaleController.php:288
msgid "Show Empty"
msgstr "Prazna Emisija"
-#: airtime_mvc/application/controllers/LocaleController.php:286
+#: airtime_mvc/application/controllers/LocaleController.php:289
msgid "Recording From Line In"
msgstr "Snimanje sa Line In"
-#: airtime_mvc/application/controllers/LocaleController.php:287
+#: airtime_mvc/application/controllers/LocaleController.php:290
msgid "Track preview"
msgstr "Pregled pjesma"
-#: airtime_mvc/application/controllers/LocaleController.php:291
+#: airtime_mvc/application/controllers/LocaleController.php:294
msgid "Cannot schedule outside a show."
msgstr "Ne može se zakazivati izvan emisije."
-#: airtime_mvc/application/controllers/LocaleController.php:292
+#: airtime_mvc/application/controllers/LocaleController.php:295
msgid "Moving 1 Item"
msgstr "Premještanje 1 Stavka"
-#: airtime_mvc/application/controllers/LocaleController.php:293
+#: airtime_mvc/application/controllers/LocaleController.php:296
#, php-format
msgid "Moving %s Items"
msgstr "Premještanje %s Stavke"
-#: airtime_mvc/application/controllers/LocaleController.php:296
+#: airtime_mvc/application/controllers/LocaleController.php:297
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
+#: airtime_mvc/application/forms/Preferences.php:40
+#: airtime_mvc/application/forms/EditHistory.php:131
+#: airtime_mvc/application/forms/AddUser.php:110
+#: airtime_mvc/application/forms/PasswordChange.php:43
+#: airtime_mvc/application/forms/SupportSettings.php:131
+msgid "Save"
+msgstr "Spremi"
+
+#: airtime_mvc/application/controllers/LocaleController.php:298
+#: airtime_mvc/application/controllers/LocaleController.php:321
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
+#: airtime_mvc/application/forms/EditHistory.php:141
+#: airtime_mvc/application/forms/EditAudioMD.php:186
+msgid "Cancel"
+msgstr "Otkaži"
+
+#: airtime_mvc/application/controllers/LocaleController.php:299
msgid "Fade Editor"
msgstr "Uređivač za (Od-/Za-)tamnjivanje"
-#: airtime_mvc/application/controllers/LocaleController.php:297
+#: airtime_mvc/application/controllers/LocaleController.php:300
msgid "Cue Editor"
msgstr "Cue Uređivač"
-#: airtime_mvc/application/controllers/LocaleController.php:298
+#: airtime_mvc/application/controllers/LocaleController.php:301
msgid "Waveform features are available in a browser supporting the Web Audio API"
msgstr "Valni oblik značajke su dostupne u sporednu Web Audio API pregledniku"
-#: airtime_mvc/application/controllers/LocaleController.php:301
+#: airtime_mvc/application/controllers/LocaleController.php:304
msgid "Select all"
msgstr "Odaberi sve"
-#: airtime_mvc/application/controllers/LocaleController.php:302
+#: airtime_mvc/application/controllers/LocaleController.php:305
msgid "Select none"
msgstr "Ne odaberi ništa"
-#: airtime_mvc/application/controllers/LocaleController.php:303
+#: airtime_mvc/application/controllers/LocaleController.php:306
msgid "Trim overbooked shows"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:304
+#: airtime_mvc/application/controllers/LocaleController.php:307
msgid "Remove selected scheduled items"
msgstr "Ukloni odabrane zakazane stavke"
-#: airtime_mvc/application/controllers/LocaleController.php:305
+#: airtime_mvc/application/controllers/LocaleController.php:308
msgid "Jump to the current playing track"
msgstr "Skoči na trenutnu sviranu pjesmu"
-#: airtime_mvc/application/controllers/LocaleController.php:306
+#: airtime_mvc/application/controllers/LocaleController.php:309
msgid "Cancel current show"
msgstr "Poništi trenutnu emisiju"
-#: airtime_mvc/application/controllers/LocaleController.php:311
+#: airtime_mvc/application/controllers/LocaleController.php:314
msgid "Open library to add or remove content"
msgstr "Otvori knjižnicu za dodavanje ili uklanjanje sadržaja"
-#: airtime_mvc/application/controllers/LocaleController.php:312
+#: airtime_mvc/application/controllers/LocaleController.php:315
msgid "Add / Remove Content"
msgstr "Dodaj / Ukloni Sadržaj"
#: airtime_mvc/application/controllers/LocaleController.php:317
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
+msgid "in use"
+msgstr "u upotrebi"
+
+#: airtime_mvc/application/controllers/LocaleController.php:318
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
+msgid "Disk"
+msgstr "Disk"
+
+#: airtime_mvc/application/controllers/LocaleController.php:320
msgid "Look in"
msgstr "Pogledaj unutra"
-#: airtime_mvc/application/controllers/LocaleController.php:319
+#: airtime_mvc/application/controllers/LocaleController.php:322
msgid "Open"
msgstr "Otvori"
+#: airtime_mvc/application/controllers/LocaleController.php:324
+#: airtime_mvc/application/forms/AddUser.php:102
+msgid "Admin"
+msgstr "Administrator"
+
#: airtime_mvc/application/controllers/LocaleController.php:325
+#: airtime_mvc/application/forms/AddUser.php:100
+msgid "DJ"
+msgstr "Disk-džokej"
+
+#: airtime_mvc/application/controllers/LocaleController.php:326
+#: airtime_mvc/application/forms/AddUser.php:101
+msgid "Program Manager"
+msgstr "Voditelj Programa"
+
+#: airtime_mvc/application/controllers/LocaleController.php:327
+#: airtime_mvc/application/forms/AddUser.php:99
+msgid "Guest"
+msgstr "Gost"
+
+#: airtime_mvc/application/controllers/LocaleController.php:328
msgid "Guests can do the following:"
msgstr "Gosti mogu učiniti sljedeće:"
-#: airtime_mvc/application/controllers/LocaleController.php:326
+#: airtime_mvc/application/controllers/LocaleController.php:329
msgid "View schedule"
msgstr "Pregled rasporeda"
-#: airtime_mvc/application/controllers/LocaleController.php:327
+#: airtime_mvc/application/controllers/LocaleController.php:330
msgid "View show content"
msgstr "Pregled sadržaj emisije"
-#: airtime_mvc/application/controllers/LocaleController.php:328
+#: airtime_mvc/application/controllers/LocaleController.php:331
msgid "DJs can do the following:"
msgstr "Disk-džokeji mogu učiniti sljedeće:"
-#: airtime_mvc/application/controllers/LocaleController.php:329
+#: airtime_mvc/application/controllers/LocaleController.php:332
msgid "Manage assigned show content"
msgstr "Upravljanje dodijeljen sadržaj emisije"
-#: airtime_mvc/application/controllers/LocaleController.php:330
+#: airtime_mvc/application/controllers/LocaleController.php:333
msgid "Import media files"
msgstr "Uvoz medijske datoteke"
-#: airtime_mvc/application/controllers/LocaleController.php:331
+#: airtime_mvc/application/controllers/LocaleController.php:334
msgid "Create playlists, smart blocks, and webstreams"
msgstr "Izradi popise naslova, smart block-ove, i prijenose"
-#: airtime_mvc/application/controllers/LocaleController.php:332
+#: airtime_mvc/application/controllers/LocaleController.php:335
msgid "Manage their own library content"
msgstr "Upravljanje svoje knjižničnog sadržaja"
-#: airtime_mvc/application/controllers/LocaleController.php:333
+#: airtime_mvc/application/controllers/LocaleController.php:336
msgid "Progam Managers can do the following:"
msgstr "Menadžer programa mogu učiniti sljedeće:"
-#: airtime_mvc/application/controllers/LocaleController.php:334
+#: airtime_mvc/application/controllers/LocaleController.php:337
msgid "View and manage show content"
msgstr "Prikaz i upravljanje sadržaj emisije"
-#: airtime_mvc/application/controllers/LocaleController.php:335
+#: airtime_mvc/application/controllers/LocaleController.php:338
msgid "Schedule shows"
msgstr "Rasporedne emisije"
-#: airtime_mvc/application/controllers/LocaleController.php:336
+#: airtime_mvc/application/controllers/LocaleController.php:339
msgid "Manage all library content"
msgstr "Upravljanje sve sadržaje knjižnica"
-#: airtime_mvc/application/controllers/LocaleController.php:337
+#: airtime_mvc/application/controllers/LocaleController.php:340
msgid "Admins can do the following:"
msgstr "Administratori mogu učiniti sljedeće:"
-#: airtime_mvc/application/controllers/LocaleController.php:338
+#: airtime_mvc/application/controllers/LocaleController.php:341
msgid "Manage preferences"
msgstr "Upravljanje postavke"
-#: airtime_mvc/application/controllers/LocaleController.php:339
+#: airtime_mvc/application/controllers/LocaleController.php:342
msgid "Manage users"
msgstr "Upravljanje korisnike"
-#: airtime_mvc/application/controllers/LocaleController.php:340
+#: airtime_mvc/application/controllers/LocaleController.php:343
msgid "Manage watched folders"
msgstr "Upravljanje nadziranih datoteke"
-#: airtime_mvc/application/controllers/LocaleController.php:342
+#: airtime_mvc/application/controllers/LocaleController.php:344
+#: airtime_mvc/application/forms/RegisterAirtime.php:116
+#: airtime_mvc/application/forms/SupportSettings.php:98
+msgid "Send support feedback"
+msgstr "Pošalji povratne informacije"
+
+#: airtime_mvc/application/controllers/LocaleController.php:345
msgid "View system status"
msgstr "Pregled stanja sustava"
-#: airtime_mvc/application/controllers/LocaleController.php:343
+#: airtime_mvc/application/controllers/LocaleController.php:346
msgid "Access playout history"
msgstr "Pristup za povijest puštenih pjesama"
-#: airtime_mvc/application/controllers/LocaleController.php:344
+#: airtime_mvc/application/controllers/LocaleController.php:347
msgid "View listener stats"
msgstr "Pogledaj statistiku slušatelje"
-#: airtime_mvc/application/controllers/LocaleController.php:346
+#: airtime_mvc/application/controllers/LocaleController.php:349
msgid "Show / hide columns"
msgstr "Pokaži/sakrij stupce"
-#: airtime_mvc/application/controllers/LocaleController.php:348
+#: airtime_mvc/application/controllers/LocaleController.php:351
msgid "From {from} to {to}"
msgstr "Od {from} do {to}"
-#: airtime_mvc/application/controllers/LocaleController.php:349
+#: airtime_mvc/application/controllers/LocaleController.php:352
msgid "kbps"
msgstr "kbps"
-#: airtime_mvc/application/controllers/LocaleController.php:350
+#: airtime_mvc/application/controllers/LocaleController.php:353
msgid "yyyy-mm-dd"
msgstr "gggg-mm-dd"
-#: airtime_mvc/application/controllers/LocaleController.php:351
+#: airtime_mvc/application/controllers/LocaleController.php:354
msgid "hh:mm:ss.t"
msgstr "hh:mm:ss.t"
-#: airtime_mvc/application/controllers/LocaleController.php:352
+#: airtime_mvc/application/controllers/LocaleController.php:355
msgid "kHz"
msgstr "kHz"
-#: airtime_mvc/application/controllers/LocaleController.php:355
+#: airtime_mvc/application/controllers/LocaleController.php:358
msgid "Su"
msgstr "Ne"
-#: airtime_mvc/application/controllers/LocaleController.php:356
+#: airtime_mvc/application/controllers/LocaleController.php:359
msgid "Mo"
msgstr "Po"
-#: airtime_mvc/application/controllers/LocaleController.php:357
+#: airtime_mvc/application/controllers/LocaleController.php:360
msgid "Tu"
msgstr "Ut"
-#: airtime_mvc/application/controllers/LocaleController.php:358
+#: airtime_mvc/application/controllers/LocaleController.php:361
msgid "We"
msgstr "Sr"
-#: airtime_mvc/application/controllers/LocaleController.php:359
+#: airtime_mvc/application/controllers/LocaleController.php:362
msgid "Th"
msgstr "Če"
-#: airtime_mvc/application/controllers/LocaleController.php:360
+#: airtime_mvc/application/controllers/LocaleController.php:363
msgid "Fr"
msgstr "Pe"
-#: airtime_mvc/application/controllers/LocaleController.php:361
+#: airtime_mvc/application/controllers/LocaleController.php:364
msgid "Sa"
msgstr "Su"
-#: airtime_mvc/application/controllers/LocaleController.php:364
+#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
+msgid "Close"
+msgstr "Zatvori"
+
+#: airtime_mvc/application/controllers/LocaleController.php:367
msgid "Hour"
msgstr "Sat"
-#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:368
msgid "Minute"
msgstr "Minuta"
-#: airtime_mvc/application/controllers/LocaleController.php:366
+#: airtime_mvc/application/controllers/LocaleController.php:369
msgid "Done"
msgstr "Gotovo"
-#: airtime_mvc/application/controllers/LocaleController.php:369
+#: airtime_mvc/application/controllers/LocaleController.php:372
msgid "Select files"
msgstr "Odaberi datoteke"
-#: airtime_mvc/application/controllers/LocaleController.php:370
-#: airtime_mvc/application/controllers/LocaleController.php:371
+#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:374
msgid "Add files to the upload queue and click the start button."
msgstr "Dodaj datoteke i klikni na 'Pokreni Upload' dugme."
-#: airtime_mvc/application/controllers/LocaleController.php:372
-#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:376
msgid "Status"
msgstr "Stanje"
-#: airtime_mvc/application/controllers/LocaleController.php:374
+#: airtime_mvc/application/controllers/LocaleController.php:377
msgid "Add Files"
msgstr "Dodaj Datoteke"
-#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:378
msgid "Stop Upload"
msgstr "Zaustavi Upload"
-#: airtime_mvc/application/controllers/LocaleController.php:376
+#: airtime_mvc/application/controllers/LocaleController.php:379
msgid "Start upload"
msgstr "Pokreni upload"
-#: airtime_mvc/application/controllers/LocaleController.php:377
+#: airtime_mvc/application/controllers/LocaleController.php:380
msgid "Add files"
msgstr "Dodaj datoteke"
-#: airtime_mvc/application/controllers/LocaleController.php:378
+#: airtime_mvc/application/controllers/LocaleController.php:381
#, php-format
msgid "Uploaded %d/%d files"
msgstr "Poslana %d/%d datoteka"
-#: airtime_mvc/application/controllers/LocaleController.php:379
+#: airtime_mvc/application/controllers/LocaleController.php:382
msgid "N/A"
msgstr "N/A"
-#: airtime_mvc/application/controllers/LocaleController.php:380
+#: airtime_mvc/application/controllers/LocaleController.php:383
msgid "Drag files here."
msgstr "Povuci datoteke ovdje."
-#: airtime_mvc/application/controllers/LocaleController.php:381
+#: airtime_mvc/application/controllers/LocaleController.php:384
msgid "File extension error."
msgstr "Pogreška (datotečni nastavak)."
-#: airtime_mvc/application/controllers/LocaleController.php:382
+#: airtime_mvc/application/controllers/LocaleController.php:385
msgid "File size error."
msgstr "Pogreška veličine datoteke."
-#: airtime_mvc/application/controllers/LocaleController.php:383
+#: airtime_mvc/application/controllers/LocaleController.php:386
msgid "File count error."
msgstr "Pogreška broj datoteke."
-#: airtime_mvc/application/controllers/LocaleController.php:384
+#: airtime_mvc/application/controllers/LocaleController.php:387
msgid "Init error."
msgstr "Init pogreška."
-#: airtime_mvc/application/controllers/LocaleController.php:385
+#: airtime_mvc/application/controllers/LocaleController.php:388
msgid "HTTP Error."
msgstr "HTTP pogreška."
-#: airtime_mvc/application/controllers/LocaleController.php:386
+#: airtime_mvc/application/controllers/LocaleController.php:389
msgid "Security error."
msgstr "Sigurnosna pogreška."
-#: airtime_mvc/application/controllers/LocaleController.php:387
+#: airtime_mvc/application/controllers/LocaleController.php:390
msgid "Generic error."
msgstr "Generička pogreška."
-#: airtime_mvc/application/controllers/LocaleController.php:388
+#: airtime_mvc/application/controllers/LocaleController.php:391
msgid "IO error."
msgstr "IO pogreška."
-#: airtime_mvc/application/controllers/LocaleController.php:389
+#: airtime_mvc/application/controllers/LocaleController.php:392
#, php-format
msgid "File: %s"
msgstr "Datoteka: %s"
-#: airtime_mvc/application/controllers/LocaleController.php:391
+#: airtime_mvc/application/controllers/LocaleController.php:394
#, php-format
msgid "%d files queued"
msgstr "%d datoteka na čekanju"
-#: airtime_mvc/application/controllers/LocaleController.php:392
+#: airtime_mvc/application/controllers/LocaleController.php:395
msgid "File: %f, size: %s, max file size: %m"
msgstr "Datoteka: %f, veličina: %s, maks veličina datoteke: %m"
-#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/controllers/LocaleController.php:396
msgid "Upload URL might be wrong or doesn't exist"
msgstr "Prijenosni URL može biti u krivu ili ne postoji"
-#: airtime_mvc/application/controllers/LocaleController.php:394
+#: airtime_mvc/application/controllers/LocaleController.php:397
msgid "Error: File too large: "
msgstr "Pogreška: Datoteka je prevelika:"
-#: airtime_mvc/application/controllers/LocaleController.php:395
+#: airtime_mvc/application/controllers/LocaleController.php:398
msgid "Error: Invalid file extension: "
msgstr "Pogreška: Nevažeći datotečni nastavak:"
-#: airtime_mvc/application/controllers/LocaleController.php:398
+#: airtime_mvc/application/controllers/LocaleController.php:400
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
+msgid "Set Default"
+msgstr "Postavi Zadano"
+
+#: airtime_mvc/application/controllers/LocaleController.php:401
msgid "Create Entry"
msgstr "Stvaranje Unosa"
-#: airtime_mvc/application/controllers/LocaleController.php:399
+#: airtime_mvc/application/controllers/LocaleController.php:402
msgid "Edit History Record"
msgstr "Uredi Povijest Zapisa"
-#: airtime_mvc/application/controllers/LocaleController.php:402
+#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
+#: airtime_mvc/application/forms/EditHistoryItem.php:57
+msgid "No Show"
+msgstr "Nema Programa"
+
+#: airtime_mvc/application/controllers/LocaleController.php:405
#, php-format
msgid "Copied %s row%s to the clipboard"
msgstr "%s red%s je kopiran u međumemoriju"
-#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/controllers/LocaleController.php:406
#, php-format
msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished."
msgstr "%sIspis pogled%sMolimo, koristi preglednika ispis funkciju za ispis ovu tablicu. Kad završiš, pritisni Escape."
-#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/controllers/LocaleController.php:407
msgid "New Show"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:405
+#: airtime_mvc/application/controllers/LocaleController.php:408
msgid "New Log Entry"
msgstr ""
-#: airtime_mvc/application/controllers/ScheduleController.php:389
-#, php-format
-msgid "Rebroadcast of show %s from %s at %s"
-msgstr "Reemitiranje emisija %s od %s na %s"
-
-#: airtime_mvc/application/controllers/ScheduleController.php:712
-#: airtime_mvc/application/controllers/LibraryController.php:131
-msgid "Download"
-msgstr "Preuzimanje"
-
-#: airtime_mvc/application/controllers/ErrorController.php:78
-msgid "Page not found."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:87
-msgid "The requested action is not supported."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:98
-msgid "You do not have permission to access this resource."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:109
-msgid "An internal application error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ListenerstatController.php:51
-msgid "Please make sure admin user/password is correct on System->Streams page."
-msgstr "Molimo, provjeri da li je ispravan/na admin korisnik/lozinka na stranici Sustav->Prijenosi."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:53
-#, php-format
-msgid "You are viewing an older version of %s"
-msgstr "Gledaš stariju verziju %s"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:140
-msgid "You cannot add tracks to dynamic blocks."
-msgstr "Ne možeš dodavati pjesme za dinamične blokove."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:147
-#: airtime_mvc/application/controllers/LibraryController.php:31
-#, php-format
-msgid "%s not found"
-msgstr "%s nije pronađen"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:161
-#, php-format
-msgid "You don't have permission to delete selected %s(s)."
-msgstr "Nemaš dopuštenje za brisanje odabranog (e) %s."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:168
-#: airtime_mvc/application/controllers/LibraryController.php:40
-msgid "Something went wrong."
-msgstr "Nešto je pošlo po krivu."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:174
-msgid "You can only add tracks to smart block."
-msgstr "Možeš samo pjesme dodavati za pametnog bloka."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:192
-msgid "Untitled Playlist"
-msgstr "Neimenovani Popis Pjesama"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:194
-msgid "Untitled Smart Block"
-msgstr "Neimenovani Smart Block"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:522
-msgid "Unknown Playlist"
-msgstr "Nepoznati Popis Pjesama"
-
-#: airtime_mvc/application/controllers/LoginController.php:43
-msgid "Please enter your username and password."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:93
-msgid "Wrong username or password provided. Please try again."
-msgstr "Pogrešno korisničko ime ili lozinka. Molimo pokušaj ponovno."
-
-#: airtime_mvc/application/controllers/LoginController.php:167
-msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
-msgstr "E-mail nije mogao biti poslan. Provjeri svoje postavke poslužitelja pošte i uvjeri se da je ispravno podešen."
-
-#: airtime_mvc/application/controllers/LoginController.php:173
-msgid "There was a problem with the username or email address you entered."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:35
-#: airtime_mvc/application/controllers/DashboardController.php:84
-msgid "You don't have permission to disconnect source."
-msgstr "Nemaš dopuštenje isključiti izvor."
-
-#: airtime_mvc/application/controllers/DashboardController.php:37
-#: airtime_mvc/application/controllers/DashboardController.php:86
-msgid "There is no source connected to this input."
-msgstr "Nema spojenog izvora na ovaj ulaz."
-
-#: airtime_mvc/application/controllers/DashboardController.php:81
-msgid "You don't have permission to switch source."
-msgstr "Nemaš dozvolu za promjenu izvora."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:72
-msgid "Preferences updated."
-msgstr "Postavke su ažurirane."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:115
-msgid "Support setting updated."
-msgstr "Podrška postavka je ažurirana."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:123
-msgid "Support Feedback"
-msgstr "Povratne Informacije"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:251
-msgid "Stream Setting Updated."
-msgstr "Prijenos Podešavanje je Ažurirano."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:342
-msgid "path should be specified"
-msgstr "put bi trebao biti specificiran"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:437
-msgid "Problem with Liquidsoap..."
-msgstr "Problem sa Liquidsoap..."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:493
-msgid "Request method not accepted"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:86
-msgid "User added successfully!"
-msgstr "Korisnik je uspješno dodan!"
-
-#: airtime_mvc/application/controllers/UserController.php:88
-msgid "User updated successfully!"
-msgstr "Korisnik je uspješno ažuriran!"
-
-#: airtime_mvc/application/controllers/UserController.php:187
-msgid "Settings updated successfully!"
-msgstr "Postavke su uspješno ažurirane!"
-
-#: airtime_mvc/application/controllers/WebstreamController.php:28
-#: airtime_mvc/application/controllers/WebstreamController.php:32
-msgid "Untitled Webstream"
-msgstr "Neimenovani Prijenos"
-
-#: airtime_mvc/application/controllers/WebstreamController.php:150
-msgid "Webstream saved."
-msgstr "Prijenos je spremljen."
-
-#: airtime_mvc/application/controllers/WebstreamController.php:158
-msgid "Invalid form values."
-msgstr "Nevažeći vrijednosti obrasca."
-
-#: airtime_mvc/application/controllers/LibraryController.php:95
-#: airtime_mvc/application/controllers/ShowbuilderController.php:136
-msgid "Preview"
-msgstr "Pregled"
-
-#: airtime_mvc/application/controllers/LibraryController.php:115
-#: airtime_mvc/application/controllers/LibraryController.php:177
-#: airtime_mvc/application/controllers/LibraryController.php:200
-msgid "Add to Playlist"
-msgstr "Dodaj na Popis Pjesama"
-
-#: airtime_mvc/application/controllers/LibraryController.php:117
-msgid "Add to Smart Block"
-msgstr "Dodaj u Smart Block"
-
-#: airtime_mvc/application/controllers/LibraryController.php:147
-msgid "View track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:148
-msgid "Remove track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:154
-#: airtime_mvc/application/controllers/LibraryController.php:159
-msgid "Upload track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:169
-msgid "Duplicate Playlist"
-msgstr "Udvostručavanje"
-
-#: airtime_mvc/application/controllers/LibraryController.php:213
-msgid "No action available"
-msgstr "Nema dostupnih akcija"
-
-#: airtime_mvc/application/controllers/LibraryController.php:233
-msgid "You don't have permission to delete selected items."
-msgstr "Nemaš dopuštenje za brisanje odabrane stavke."
-
-#: airtime_mvc/application/controllers/LibraryController.php:279
-msgid "Could not delete file because it is scheduled in the future."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:282
-msgid "Could not delete file(s)."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:322
-#, php-format
-msgid "Copy of %s"
-msgstr "Kopiranje od %s"
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
-msgid ""
-"To configure and use the embeddable player you must:
\n"
-" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
-" 2. Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
-msgid ""
-"To use the embeddable weekly schedule widget you must:
\n"
-" Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
#: airtime_mvc/application/controllers/ShowbuilderController.php:138
msgid "Select cursor"
msgstr "Odaberi pokazivač"
@@ -4038,39 +1803,78 @@ msgstr "Ukloni pokazivač"
msgid "show does not exist"
msgstr "emisija ne postoji"
-#: airtime_mvc/application/controllers/ApiController.php:79
-msgid "You are not allowed to access this resource."
-msgstr "Ne smiješ pristupiti ovog izvora."
-
-#: airtime_mvc/application/controllers/ApiController.php:244
-#: airtime_mvc/application/controllers/ApiController.php:317
-#: airtime_mvc/application/controllers/ApiController.php:392
-#: airtime_mvc/application/controllers/ApiController.php:435
-#: airtime_mvc/application/controllers/ApiController.php:474
-#: airtime_mvc/application/controllers/ApiController.php:507
-msgid "You are not allowed to access this resource. "
-msgstr "Ne smiješ pristupiti ovog izvora."
-
-#: airtime_mvc/application/controllers/ApiController.php:698
-#: airtime_mvc/application/controllers/ApiController.php:718
-#: airtime_mvc/application/controllers/ApiController.php:730
+#: airtime_mvc/application/controllers/ScheduleController.php:389
#, php-format
-msgid "File does not exist in %s"
+msgid "Rebroadcast of show %s from %s at %s"
+msgstr "Reemitiranje emisija %s od %s na %s"
+
+#: airtime_mvc/application/common/UsabilityHints.php:55
+msgid "Upload some tracks below to add them to your library!"
msgstr ""
-#: airtime_mvc/application/controllers/ApiController.php:781
-msgid "Bad request. no 'mode' parameter passed."
-msgstr "Neispravan zahtjev."
-
-#: airtime_mvc/application/controllers/ApiController.php:791
-msgid "Bad request. 'mode' parameter is invalid"
-msgstr "Neispravan zahtjev"
-
-#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#: airtime_mvc/application/common/UsabilityHints.php:57
#, php-format
-msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
msgstr ""
+#: airtime_mvc/application/common/UsabilityHints.php:63
+msgid "Click the 'New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:65
+#, php-format
+msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:73
+msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:75
+#, php-format
+msgid ""
+"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
+" %sCreate an unlinked show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:80
+msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:82
+#, php-format
+msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:89
+msgid "Click on the show starting next and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:91
+#, php-format
+msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/DateHelper.php:213
+#, php-format
+msgid "The year %s must be within the range of 1753 - 9999"
+msgstr "Godine %s moraju biti u rasponu od 1753 - 9999"
+
+#: airtime_mvc/application/common/DateHelper.php:216
+#, php-format
+msgid "%s-%s-%s is not a valid date"
+msgstr "%s-%s-%s nije ispravan datum"
+
+#: airtime_mvc/application/common/DateHelper.php:240
+#, php-format
+msgid "%s:%s:%s is not a valid time"
+msgstr "%s:%s:%s nije ispravan datum"
+
+#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
+msgid "Live stream"
+msgstr "Prijenos uživo"
+
#: airtime_mvc/application/layouts/scripts/layout.phtml:63
msgid "Smart Block"
msgstr ""
@@ -4083,6 +1887,17 @@ msgstr ""
msgid "Upload"
msgstr ""
+#: airtime_mvc/application/layouts/scripts/layout.phtml:76
+#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
+msgid "Dashboard"
+msgstr ""
+
+#: airtime_mvc/application/layouts/scripts/layout.phtml:84
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
+msgid "Webstreams"
+msgstr ""
+
#: airtime_mvc/application/layouts/scripts/layout.phtml:135
#: airtime_mvc/application/layouts/scripts/layout.phtml:161
msgid "Play"
@@ -4105,401 +1920,2128 @@ msgstr "Podesi Cue Out"
msgid "Cursor"
msgstr "Pokazivač"
-#~ msgid "Show:"
-#~ msgstr "Program:"
+#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#, php-format
+msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
+msgid "Drop files here or click to browse your computer."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
+msgid "Failed"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
+msgid "Pending"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
+msgid "Recent Uploads"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
+msgid "Share"
+msgstr "Podijeli"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
+msgid "Select stream:"
+msgstr "Prijenosi:"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
+msgid "mute"
+msgstr "nijemi"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
+msgid "unmute"
+msgstr "uključi"
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
+msgid "About"
+msgstr "O projektu"
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
+#, php-format
+msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
+#, php-format
+msgid "%1$s %2$s is distributed under the %3$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
+#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
+#, php-format
+msgid "Welcome to %s!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
+#, php-format
+msgid "Here's how you can get started using %s to automate your broadcasts: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
+msgid "Upload audio tracks"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
+msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
+msgid "Schedule a show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
+msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
+msgid "Add tracks to your show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
+msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
+msgid "Now you're good to go!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
+#, php-format
+msgid "For more detailed help, read the %suser manual%s."
+msgstr "Za detaljnu pomoć, pročitaj %skorisnički priručnik%s."
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
+#: airtime_mvc/application/configs/navigation.php:40
+msgid "Weekly Schedule"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
+#: airtime_mvc/application/forms/Player.php:77
+msgid "Preview:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
+#: airtime_mvc/application/configs/navigation.php:34
+msgid "Player"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:97
+msgid "Playout History"
+msgstr "Povijest puštenih pjesama"
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
+msgid "Log Sheet"
+msgstr "Popis Prijava"
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
+msgid "File Summary"
+msgstr "Datotečni Sažetak"
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
+msgid "Show Summary"
+msgstr "Programski Sažetak"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
+msgid "Expand Static Block"
+msgstr "Proširenje Statičkog Bloka"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
+msgid "Expand Dynamic Block"
+msgstr "Proširenje Dinamičkog Bloka"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
+msgid "Choose some search criteria above and click Generate to create this playlist."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
+msgid "A track list will be generated when you schedule this smart block into a show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
+msgid "Drag tracks here from your library to add them to the playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
+msgid "Editing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:26
+msgid "Name:"
+msgstr "Naziv:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
+#: airtime_mvc/application/forms/AddShowWhat.php:54
+msgid "Description:"
+msgstr "Opis:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
+#: airtime_mvc/application/forms/AddShowWhen.php:89
+msgid "Duration:"
+msgstr "Trajanje:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
+msgid "Toggle Details"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+msgid "Shuffle playlist"
+msgstr "Slučajni izbor popis pjesama"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
+msgid "Shuffle"
+msgstr "Miješanje"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
+msgid "Playlist crossfade"
+msgstr "Križno utišavanje popis pjesama"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+msgid "Empty playlist content"
+msgstr "Prazan sadržaj popis pjesama"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Clear"
+msgstr "Očisti"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+msgid "Fade in: "
+msgstr "Odtamnjenje:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "Fade out: "
+msgstr "Zatamnjenje:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+msgid "Save playlist"
+msgstr "Spremi popis pjesama"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
+msgid "No open playlist"
+msgstr "Nema otvorenih popis pjesama"
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
+msgid "Show Waveform"
+msgstr "Emisijski zvučni talasni oblik"
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "(ss.t)"
+msgstr "(ss.t)"
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Remove all content from this smart block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
+msgid "No smart block currently open"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+msgid "Cue In: "
+msgstr "Cue In: "
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "(hh:mm:ss.t)"
+msgstr "(hh:mm:ss.t)"
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "Cue Out: "
+msgstr "Cue Out: "
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
+msgid "Original Length:"
+msgstr "Izvorna Dužina:"
+
+#: airtime_mvc/application/views/scripts/preference/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:56
+msgid "General"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
+msgid "Stream Settings"
+msgstr "Prijenosne Postavke"
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
+msgid "Global"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
+msgid "dB"
+msgstr "dB"
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
+msgid "Output Streams"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:3
+#: airtime_mvc/application/forms/Login.php:83
+msgid "Login"
+msgstr "Prijava"
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:7
+#, php-format
+msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
+msgid "Email Sent!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
+msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
+msgid "Back"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
+msgid "Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
+msgid "New password"
+msgstr "Nova lozinka"
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
+msgid "Please enter and confirm your new password in the fields below."
+msgstr "Unesi i potvrdi svoju novu lozinku u polja dolje."
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
+msgid "Manage Users"
+msgstr "Upravljanje Korisnike"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
+msgid "New User"
+msgstr "Novi Korisnik"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
+msgid "id"
+msgstr "id"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
+#: airtime_mvc/application/forms/PasswordRestore.php:25
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
+msgid "Username"
+msgstr "Korisničko ime"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
+msgid "First Name"
+msgstr "Ime"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
+msgid "Last Name"
+msgstr "Prezime"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
+msgid "User Type"
+msgstr "Tip Korisnika"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
+#, php-format
+msgid "Super Admin details can be changed in your Billing Settings."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
+msgid "Find Shows"
+msgstr "Nađi Emisije"
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
+msgid "Choose Show Instance"
+msgstr "Odaberi Emisijsku Stupnju"
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
+msgid "Find"
+msgstr "Nađi"
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
+#: airtime_mvc/application/configs/navigation.php:61
+msgid "My Profile"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
+#, php-format
+msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
+msgid "Repeat Days:"
+msgstr "Ponovljeni Dani:"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
+#: airtime_mvc/application/forms/GeneralPreferences.php:53
+#: airtime_mvc/application/forms/AddShowStyle.php:64
+msgid "Remove"
+msgstr "Ukloni"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
+msgid "Add"
+msgstr "Dodaj"
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
+msgid "Show Source"
+msgstr "Emisijski Izvor"
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
+msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
+msgid "Register Airtime"
+msgstr "Airtime Registar"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
+#, php-format
+msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
+#, php-format
+msgid "Click the box below to promote your station on %s."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
+msgid "(Required)"
+msgstr "(Obavezno)"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
+msgid "(for verification purposes only, will not be published)"
+msgstr "(služi samo za provjeru, neće biti objavljena)"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
+#: airtime_mvc/application/forms/GeneralPreferences.php:43
+msgid "Note: Anything larger than 600x600 will be resized."
+msgstr "Napomena: Sve veća od 600x600 će se mijenjati."
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
+msgid "Show me what I am sending "
+msgstr "Pokaži mi što šaljem"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
+msgid "Terms and Conditions"
+msgstr "Uvjeti i Odredbe"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
+msgid "Choose Days:"
+msgstr "Odaberi Dane:"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
+msgid "Search Criteria:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
+msgid "New Criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
+msgid "or"
+msgstr "ili"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
+msgid "and"
+msgstr "i"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
+msgid "New Modifier"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
+msgid " to "
+msgstr "do"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
+msgid "files meet the criteria"
+msgstr "datoteke zadovoljavaju kriterije"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
+msgid "file meets the criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
+msgid "Filter History"
+msgstr "Filtriraj Povijesti"
+
+#: airtime_mvc/application/views/scripts/form/login.phtml:41
+msgid "Forgot your password?"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
+msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
+msgstr "(Kako bi se promovirao svoju stanicu, 'Pošalji povratne informacije' mora biti omogućena)."
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
+msgid "Stream "
+msgstr "Prijenos"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
+msgid "Additional Options"
+msgstr "Dodatne Opcije"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
+msgid "The following info will be displayed to listeners in their media player:"
+msgstr "Sljedeće informacije će biti prikazane slušateljima u medijskom plejerima:"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
+msgid "(Your radio station website)"
+msgstr "(Tvoja radijska postaja web stranice)"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
+msgid "Stream URL: "
+msgstr "URL Prijenosa:"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
+msgid "Choose folder"
+msgstr "Odaberi mapu"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
+msgid "Set"
+msgstr "Podesi"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
+msgid "Current Import Folder:"
+msgstr "Aktualna Uvozna Mapa:"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
+#, php-format
+msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
+msgid "Remove watched directory"
+msgstr "Ukloni nadzoranu direktoriju"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
+msgid "You are not watching any media folders."
+msgstr "Ne pratiš nijedne medijske mape."
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
+msgid "Live Broadcasting"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
+msgid "Master Source"
+msgstr "Majstorski Izvor"
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
+msgid "Use these settings in your broadcasting software to stream live at any time."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
+msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
+msgid "TuneIn Settings"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
+msgid "SoundCloud Settings"
+msgstr "SoundCloud Postavke"
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
+msgid "Dangerous Options"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Add this show"
+msgstr "Dodaj ovu emisiju"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Update show"
+msgstr "Ažuriranje emisije"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
+msgid "What"
+msgstr "Što"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
+msgid "When"
+msgstr "Kada"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
+msgid "Live Stream Input"
+msgstr "Ulaz Uživnog Prijenosa"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
+msgid "Who"
+msgstr "Tko"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
+msgid "Style"
+msgstr "Stil"
+
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
+msgid "Disk Space"
+msgstr "Diskovni Prostor"
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:3
+msgid "File import in progress..."
+msgstr "Uvoz datoteke je u tijeku..."
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:10
+#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
+msgid "Advanced Search Options"
+msgstr "Napredne Opcije Pretraživanja"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
+#: airtime_mvc/application/forms/EditAudioMD.php:24
+#: airtime_mvc/application/forms/Player.php:15
+msgid "Title:"
+msgstr "Naziv:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
+#: airtime_mvc/application/forms/EditAudioMD.php:34
+msgid "Creator:"
+msgstr "Tvorac:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
+#: airtime_mvc/application/forms/EditAudioMD.php:44
+msgid "Album:"
+msgstr "Album:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
+msgid "Track:"
+msgstr "Pjesma:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
+msgid "Length:"
+msgstr "Dužina:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
+msgid "Sample Rate:"
+msgstr "Uzorak Stopa:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
+msgid "Bit Rate:"
+msgstr "Brzina u Bitovima:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
+#: airtime_mvc/application/forms/EditAudioMD.php:115
+msgid "Mood:"
+msgstr "Raspoloženje:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:45
+#: airtime_mvc/application/forms/EditAudioMD.php:62
+msgid "Genre:"
+msgstr "Žanr:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
+#: airtime_mvc/application/forms/EditAudioMD.php:72
+msgid "Year:"
+msgstr "Godina:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
+#: airtime_mvc/application/forms/EditAudioMD.php:85
+msgid "Label:"
+msgstr "Naljepnica:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
+#: airtime_mvc/application/forms/EditAudioMD.php:125
+msgid "BPM:"
+msgstr "BPM:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
+#: airtime_mvc/application/forms/EditAudioMD.php:95
+msgid "Composer:"
+msgstr "Kompozitor:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
+#: airtime_mvc/application/forms/EditAudioMD.php:105
+msgid "Conductor:"
+msgstr "Dirigent:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
+#: airtime_mvc/application/forms/EditAudioMD.php:135
+msgid "Copyright:"
+msgstr "Autorsko pravo:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
+msgid "Isrc Number:"
+msgstr "Isrc Broj:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
+#: airtime_mvc/application/forms/EditAudioMD.php:155
+msgid "Website:"
+msgstr "Web stranica:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
+#: airtime_mvc/application/forms/EditAudioMD.php:165
+#: airtime_mvc/application/forms/EditUser.php:119
+#: airtime_mvc/application/forms/Login.php:68
+msgid "Language:"
+msgstr "Jezik:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
+msgid "File Path:"
+msgstr "Staža Datoteka:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
+msgid "Web Stream"
+msgstr "Prijenos"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
+msgid "Dynamic Smart Block"
+msgstr "Dinamički Smart Block"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
+msgid "Static Smart Block"
+msgstr "Statički Smart Block"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
+msgid "Audio Track"
+msgstr "Zvučni Zapis"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
+msgid "Playlist Contents: "
+msgstr "Sadržaji Popis Pjesama:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
+msgid "Static Smart Block Contents: "
+msgstr "Statički Smart Block Sadržaji:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
+msgid "Dynamic Smart Block Criteria: "
+msgstr "Dinamički Smart Block Kriteriji:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
+msgid "Limit to "
+msgstr "Ograničeno za"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
+#: airtime_mvc/application/forms/AddShowWhat.php:36
+msgid "URL:"
+msgstr "URL:"
+
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
+msgid "Viewing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
+msgid "Listeners"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
+msgid "Stream Data Collection Status"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
+msgid "Your trial expires in"
+msgstr "Vaš račun istječe u"
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
+msgid "days"
+msgstr "dani"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
+msgid "Previous:"
+msgstr "Prethodna:"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
+msgid "Next:"
+msgstr "Sljedeća:"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
+msgid "Source Streams"
+msgstr "Prijenosni Izvori"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
+msgid "ON AIR"
+msgstr "PRIJENOS"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
+msgid "Listen"
+msgstr "Slušaj"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
+msgid "Logout"
+msgstr "Odjava"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
+msgid "Playout History Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
+msgid "Log Sheet Templates"
+msgstr "Predlošci Popis Prijave"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
+msgid "New Log Sheet Template"
+msgstr "Novi Popis Predložaka"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
+msgid "No Log Sheet Templates"
+msgstr "Nema Popis Predložaka"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
+msgid "File Summary Templates"
+msgstr "Predlošci za Datotečni Sažeci"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
+msgid "New File Summary Template"
+msgstr "Novi Predložak za Datotečni Sažeci"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
+msgid "No File Summary Templates"
+msgstr "Nema Predložaka za Datotečni Sažeci"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
+msgid "Creating File Summary Template"
+msgstr "Stvaranje Predložaka za Datotečni Sažeci"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
+msgid "Creating Log Sheet Template"
+msgstr "Stvaranje Popis Predložaka"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
+msgid "Name"
+msgstr "Naziv"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
+msgid "Add more elements"
+msgstr "Dodaj više elemenata"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
+msgid "Add New Field"
+msgstr "Dodaj Novo Polje"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
+msgid "Set Default Template"
+msgstr "Postavi Zadano Predlošku"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
+msgid "Description"
+msgstr "Opis"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
+msgid "Stream URL:"
+msgstr "URL Prijenosa:"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
+msgid "Default Length:"
+msgstr "Zadana Dužina:"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
+msgid "No webstream"
+msgstr "Nema prijenosa"
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
+#: airtime_mvc/application/views/scripts/error/error.phtml:6
+msgid "An error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
+msgid "Access Denied!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
+msgid "You do not have permission to access this page!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
+#: airtime_mvc/application/views/scripts/error/error.phtml:14
+#: airtime_mvc/application/configs/navigation.php:143
+msgid "Help"
+msgstr "Pomoć"
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
+msgid "Oops!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
+msgid "Something went wrong!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
+msgid "Bad Request!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
+msgid "The requested action is not supported!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
+msgid "Page not found!"
+msgstr "Stranica nije pronađena!"
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
+msgid "We couldn't find the page you were looking for."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error.phtml:12
+msgid "Looks like the page you were looking for doesn't exist!"
+msgstr "Izgleda stranica koju si tražio ne postoji!"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
+msgid "previous"
+msgstr "prethodna"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
+msgid "play"
+msgstr "pokreni"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
+msgid "pause"
+msgstr "pauza"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
+msgid "next"
+msgstr "sljedeća"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
+msgid "stop"
+msgstr "zaustavi"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
+msgid "max volume"
+msgstr "max glasnoća"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
+msgid "Update Required"
+msgstr "Potrebno Ažuriranje"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
+#, php-format
+msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
+msgstr "Medija je potrebna za reprodukciju, i moraš ažurirati svoj preglednik na noviju verziju, ili ažurirati svoj %sFlash plugin%s."
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
+msgid "Plan type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
+msgid "Billing cycle:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
+msgid "Payment method:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
+msgid "PayPal"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
+msgid "Credit Card via 2Checkout"
+msgstr ""
+
+#: airtime_mvc/application/forms/DateRange.php:16
+#: airtime_mvc/application/forms/ShowBuilder.php:18
+msgid "Date Start:"
+msgstr "Datum Početka:"
+
+#: airtime_mvc/application/forms/DateRange.php:35
+#: airtime_mvc/application/forms/DateRange.php:63
+#: airtime_mvc/application/forms/ShowBuilder.php:37
+#: airtime_mvc/application/forms/ShowBuilder.php:65
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
+msgid "Invalid character entered"
+msgstr "Uneseni su nevažeći znakovi"
+
+#: airtime_mvc/application/forms/DateRange.php:44
+#: airtime_mvc/application/forms/ShowBuilder.php:46
+#: airtime_mvc/application/forms/AddShowRepeats.php:56
+msgid "Date End:"
+msgstr "Datum Završetka:"
+
+#: airtime_mvc/application/forms/ShowBuilder.php:72
+#: airtime_mvc/application/forms/ShowBuilder.php:88
+msgid "Filter by Show"
+msgstr ""
+
+#: airtime_mvc/application/forms/ShowBuilder.php:80
+msgid "All My Shows:"
+msgstr "Sve Moje Emisije:"
+
+#: airtime_mvc/application/forms/AddShowWho.php:10
+msgid "Search Users:"
+msgstr "Traži Korisnike:"
+
+#: airtime_mvc/application/forms/AddShowWho.php:24
+msgid "DJs:"
+msgstr "Disk-Džokeji:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:30
+#: airtime_mvc/application/forms/GeneralPreferences.php:25
+#: airtime_mvc/application/forms/SupportSettings.php:18
+msgid "Station Name"
+msgstr "Naziv Postaje"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:39
+#: airtime_mvc/application/forms/SupportSettings.php:31
+msgid "Phone:"
+msgstr "Telefon:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:51
+#: airtime_mvc/application/forms/AddUser.php:67
+#: airtime_mvc/application/forms/EditUser.php:83
+#: airtime_mvc/application/forms/SupportSettings.php:43
+msgid "Email:"
+msgstr "E-mail:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:62
+#: airtime_mvc/application/forms/SupportSettings.php:54
+msgid "Station Web Site:"
+msgstr "Web Stranica:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:73
+#: airtime_mvc/application/forms/SupportSettings.php:65
+msgid "Country:"
+msgstr "Država:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:84
+#: airtime_mvc/application/forms/SupportSettings.php:76
+msgid "City:"
+msgstr "Grad:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:96
+#: airtime_mvc/application/forms/SupportSettings.php:88
+msgid "Station Description:"
+msgstr "Opis:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:106
+#: airtime_mvc/application/forms/GeneralPreferences.php:42
+msgid "Station Logo:"
+msgstr "Logo:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:126
+#: airtime_mvc/application/forms/SupportSettings.php:108
+#, php-format
+msgid "Promote my station on %s"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:151
+#: airtime_mvc/application/forms/SupportSettings.php:120
+#, php-format
+msgid "By checking this box, I agree to %s's %sprivacy policy%s."
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:169
+#: airtime_mvc/application/forms/SupportSettings.php:143
+msgid "You have to agree to privacy policy."
+msgstr "Moraš pristati na pravila o privatnosti."
+
+#: airtime_mvc/application/forms/AddShowRR.php:10
+msgid "Record from Line In?"
+msgstr "Snimanje sa Line In?"
+
+#: airtime_mvc/application/forms/AddShowRR.php:16
+msgid "Rebroadcast?"
+msgstr "Ponovno emitirati?"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
+#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
+msgid "Value is required and can't be empty"
+msgstr "Vrijednost je potrebna i ne može biti prazan"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
+msgid "'%value%' is no valid email address in the basic format local-part@hostname"
+msgstr "'%value%' nije valjana e-mail adresa u osnovnom obliku local-part@hostname"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
+msgid "'%value%' does not fit the date format '%format%'"
+msgstr "'%value%' ne odgovara po obliku datuma '%format%'"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
+msgid "'%value%' is less than %min% characters long"
+msgstr "'%value%' je manji od %min% dugačko znakova"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
+msgid "'%value%' is more than %max% characters long"
+msgstr "'%value%' je više od %max% dugačko znakova"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
+msgid "'%value%' is not between '%min%' and '%max%', inclusively"
+msgstr "'%value%' nije između '%min%' i '%max%', uključivo"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
+msgid "Passwords do not match"
+msgstr "Lozinke se ne podudaraju"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
+msgid "Day must be specified"
+msgstr "Dan mora biti naveden"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
+msgid "Time must be specified"
+msgstr "Vrijeme mora biti navedeno"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
+msgid "Must wait at least 1 hour to rebroadcast"
+msgstr "Moraš čekati najmanje 1 sat za re-emitiranje"
+
+#: airtime_mvc/application/forms/PasswordRestore.php:14
+msgid "Email"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordRestore.php:36
+msgid "Reset password"
+msgstr "Resetuj lozinku"
+
+#: airtime_mvc/application/forms/AddShowWhat.php:30
+msgid "Untitled Show"
+msgstr "Neimenovan Program"
+
+#: airtime_mvc/application/forms/AddShowWhat.php:69
+msgid "Instance Description:"
+msgstr ""
+
+#: airtime_mvc/application/forms/DangerousPreferences.php:12
+msgid "Delete All Tracks in Library"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditAudioMD.php:145
+msgid "ISRC Number:"
+msgstr "ISRC Broj:"
+
+#: airtime_mvc/application/forms/EditAudioMD.php:176
+msgid "OK"
+msgstr "Ok"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:33
+msgid "Station Description"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:62
+msgid "Default Crossfade Duration (s):"
+msgstr "Zadano Trajanje Križno Stišavanje (s):"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:68
+#: airtime_mvc/application/forms/GeneralPreferences.php:82
+#: airtime_mvc/application/forms/GeneralPreferences.php:96
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
+msgid "Please enter a time in seconds (eg. 0.5)"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:76
+msgid "Default Fade In (s):"
+msgstr "Zadano Odtamnjenje (s):"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:90
+msgid "Default Fade Out (s):"
+msgstr "Zadano Zatamnjenje (s):"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:102
+msgid "Public Airtime API"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:103
+msgid "Required for embeddable schedule widget."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:105
+msgid "Disabled"
+msgstr "Onemogućeno"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:106
+msgid "Enabled"
+msgstr "Omogućeno"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:109
+msgid ""
+"Enabling this feature will allow Airtime to provide schedule data\n"
+" to external widgets that can be embedded in your website."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:120
+msgid "Default Language"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:127
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
+msgid "Station Timezone"
+msgstr "Stanična Vremenska Zona"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:134
+msgid "Week Starts On"
+msgstr "Prvi Dan u Tjednu"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:150
+msgid "Display login button on your Radio Page?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:29
+#: airtime_mvc/application/forms/EditUser.php:37
+#: airtime_mvc/application/forms/Login.php:41
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
+msgid "Username:"
+msgstr "Korisničko ime:"
+
+#: airtime_mvc/application/forms/AddUser.php:38
+#: airtime_mvc/application/forms/EditUser.php:48
+#: airtime_mvc/application/forms/Login.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
+msgid "Password:"
+msgstr "Lozinka:"
+
+#: airtime_mvc/application/forms/AddUser.php:46
+#: airtime_mvc/application/forms/EditUser.php:57
+msgid "Verify Password:"
+msgstr "Potvrdi Lozinku:"
+
+#: airtime_mvc/application/forms/AddUser.php:55
+#: airtime_mvc/application/forms/EditUser.php:67
+msgid "Firstname:"
+msgstr "Ime:"
+
+#: airtime_mvc/application/forms/AddUser.php:61
+#: airtime_mvc/application/forms/EditUser.php:75
+msgid "Lastname:"
+msgstr "Prezime:"
+
+#: airtime_mvc/application/forms/AddUser.php:76
+#: airtime_mvc/application/forms/EditUser.php:94
+msgid "Mobile Phone:"
+msgstr "Mobitel:"
+
+#: airtime_mvc/application/forms/AddUser.php:82
+#: airtime_mvc/application/forms/EditUser.php:102
+msgid "Skype:"
+msgstr "Skype:"
+
+#: airtime_mvc/application/forms/AddUser.php:88
+#: airtime_mvc/application/forms/EditUser.php:110
+msgid "Jabber:"
+msgstr "Jabber:"
+
+#: airtime_mvc/application/forms/AddUser.php:95
+msgid "User Type:"
+msgstr "Vrsta Korisnika:"
+
+#: airtime_mvc/application/forms/AddUser.php:120
+#: airtime_mvc/application/forms/EditUser.php:155
+msgid "Login name is not unique."
+msgstr "Ime prijave nije jedinstveno."
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
+msgid "Import Folder:"
+msgstr "Uvozna Mapa:"
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
+msgid "Watched Folders:"
+msgstr "Mape Pod Nadzorom:"
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
+msgid "Not a valid Directory"
+msgstr "Ne valjana Direktorija"
+
+#: airtime_mvc/application/forms/BillingClient.php:126
+msgid "What is the name of your favorite childhood friend?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:127
+msgid "What school did you attend for sixth grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:128
+msgid "In what city did you meet your spouse/significant other?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:129
+msgid "What street did you live on in third grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:130
+msgid "What is the first name of the boy or girl that you first kissed?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:131
+msgid "In what city or town was your first job?"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
+msgid "Default License:"
+msgstr "Zadana Dozvola:"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
+msgid "All rights are reserved"
+msgstr "Sva prava pridržana"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
+msgid "The work is in the public domain"
+msgstr "Rad je u javnoj domeni"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
+msgid "Creative Commons Attribution"
+msgstr "Creative Commons Imenovanje"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
+msgid "Creative Commons Attribution Noncommercial"
+msgstr "Creative Commons Imenovanje Nekomercijalno"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
+msgid "Creative Commons Attribution No Derivative Works"
+msgstr "Creative Commons Imenovanje Bez Izvedenih Djela"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
+msgid "Creative Commons Attribution Share Alike"
+msgstr "Creative Commons Imenovanje Dijeli Pod Istim Uvjetima"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
+msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
+msgstr "Creative Commons Imenovanje Nekomercijalno Bez Izvedenih Djela"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
+msgid "Creative Commons Attribution Noncommercial Share Alike"
+msgstr "Creative Commons Imenovanje Nekomercijalno Dijeli Pod Istim Uvjetima"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
+msgid "Default Sharing Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
+msgid "Public"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
+msgid "Private"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditUser.php:129
+msgid "Interface Timezone:"
+msgstr "Vremenska Zona Sučelja:"
+
+#: airtime_mvc/application/forms/Player.php:14
+msgid "Now Playing"
+msgstr "Trenutno Izvođena"
+
+#: airtime_mvc/application/forms/Player.php:25
+msgid "Select Stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:28
+msgid "Auto detect the most appropriate stream to use."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:29
+msgid "Select a stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:41
+msgid " - Mobile friendly"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:45
+msgid " - The player does not support Opus streams."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:71
+msgid "Embeddable code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:72
+msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
+#: airtime_mvc/application/models/Block.php:1351
+msgid "Select criteria"
+msgstr "Odaberi kriterije"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
+#: airtime_mvc/application/models/Block.php:1353
+msgid "Bit Rate (Kbps)"
+msgstr "Brzina u Bitovima (Kbps)"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
+#: airtime_mvc/application/models/Block.php:1374
+msgid "Sample Rate (kHz)"
+msgstr "Uzorak Stopa (kHz)"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
+msgid "hours"
+msgstr "sati"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
+msgid "minutes"
+msgstr "minuti"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
+#: airtime_mvc/application/models/Block.php:333
+msgid "items"
+msgstr "elementi"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
+msgid "Randomly"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
+msgid "Newest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
+msgid "Oldest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
+msgid "Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
+msgid "Static"
+msgstr "Statički"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
+msgid "Dynamic"
+msgstr "Dinamički"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
+msgid "Allow Repeated Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
+msgid "Sort Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
+msgid "Limit to:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
+msgid "Generate playlist content and save criteria"
+msgstr "Generiranje popisa pjesama i spremanje sadržaja kriterije"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
+msgid "Generate"
+msgstr "Generiraj"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
+msgid "Shuffle playlist content"
+msgstr "Sadržaj slučajni izbor popis pjesama"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
+msgid "Limit cannot be empty or smaller than 0"
+msgstr "Ograničenje ne može biti prazan ili manji od 0"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
+msgid "Limit cannot be more than 24 hrs"
+msgstr "Ograničenje ne može biti više od 24 sati"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
+msgid "The value should be an integer"
+msgstr "Vrijednost mora biti cijeli broj"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
+msgid "500 is the max item limit value you can set"
+msgstr "500 je max stavku graničnu vrijednost moguće je podesiti"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
+msgid "You must select Criteria and Modifier"
+msgstr "Moraš odabrati Kriteriju i Modifikaciju"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
+msgid "'Length' should be in '00:00:00' format"
+msgstr "'Dužina' trebala biti u '00:00:00' obliku"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
+msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)"
+msgstr "Vrijednost mora biti u obliku vremenske oznake (npr. 0000-00-00 ili 0000-00-00 00:00:00)"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:594
+msgid "The value has to be numeric"
+msgstr "Vrijednost mora biti numerička"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
+msgid "The value should be less then 2147483648"
+msgstr "Vrijednost bi trebala biti manja od 2147483648"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
+#, php-format
+msgid "The value should be less than %s characters"
+msgstr "Vrijednost mora biti manja od %s znakova"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
+msgid "Value cannot be empty"
+msgstr "Vrijednost ne može biti prazna"
+
+#: airtime_mvc/application/forms/StreamSetting.php:26
+msgid "Icecast Vorbis Metadata"
+msgstr "Icecast Vorbis Metapodaci"
+
+#: airtime_mvc/application/forms/StreamSetting.php:36
+msgid "Stream Label:"
+msgstr "Vidljivi Podaci:"
+
+#: airtime_mvc/application/forms/StreamSetting.php:37
+msgid "Artist - Title"
+msgstr "Autor - Naziv"
+
+#: airtime_mvc/application/forms/StreamSetting.php:38
+msgid "Show - Artist - Title"
+msgstr "Program - Autor - Naziv"
+
+#: airtime_mvc/application/forms/StreamSetting.php:39
+msgid "Station name - Show name"
+msgstr "Naziv postaje - Naziv programa"
+
+#: airtime_mvc/application/forms/StreamSetting.php:45
+msgid "Off Air Metadata"
+msgstr "Off Air Metapodaci"
+
+#: airtime_mvc/application/forms/StreamSetting.php:51
+msgid "Enable Replay Gain"
+msgstr "Omogući Replay Gain"
+
+#: airtime_mvc/application/forms/StreamSetting.php:57
+msgid "Replay Gain Modifier"
+msgstr "Replay Gain Modifikator"
+
+#: airtime_mvc/application/forms/StreamSetting.php:65
+msgid "Streaming Server:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Airtime Pro Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Custom / 3rd Party Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordChange.php:17
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
+msgid "Password"
+msgstr "Lozinka"
-#~ msgid "enter a time in seconds 0{.0}"
-#~ msgstr "unesi vrijeme u sekundama 0{.0}"
+#: airtime_mvc/application/forms/PasswordChange.php:28
+msgid "Confirm new password"
+msgstr "Potvrdi novu lozinku"
-#~ msgid "Allow Remote Websites To Access \"Schedule\" Info?%s (Enable this to make front-end widgets work.)"
-#~ msgstr "Dopusti daljinske Web stranice za pristup \"Raspored\" Info?%s (Omogući ovo da bi front-end widgets rad.)"
+#: airtime_mvc/application/forms/PasswordChange.php:36
+msgid "Password confirmation does not match your password."
+msgstr "Lozinke koje ste unijeli ne podudaraju se."
-#~ msgid "Default Interface Language"
-#~ msgstr "Zadani Jezik Sučelja"
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
+msgid "Station Language"
+msgstr ""
-#~ msgid "Get new password"
-#~ msgstr "Nabavi novu lozinku"
-
-#~ msgid "Set smart block type:"
-#~ msgstr "Postavi smart block tipa:"
-
-#~ msgid "Allow Repeat Tracks:"
-#~ msgstr "Dopusti Ponavljanje Pjesama:"
-
-#~ msgid "Limit to"
-#~ msgstr "Ograničeno na"
-
-#~ msgid "Auto Switch Off"
-#~ msgstr "Automatsko Isključivanje"
-
-#~ msgid "Auto Switch On"
-#~ msgstr "Automatsko Uključivanje"
-
-#~ msgid "Switch Transition Fade (s)"
-#~ msgstr "Prijelazni Fade Prekidač (s)"
-
-#~ msgid "enter a time in seconds 00{.000000}"
-#~ msgstr "unesi vrijeme u sekundama 00{.000000}"
-
-#~ msgid "Master Username"
-#~ msgstr "Majstorsko Kor. Ime"
-
-#~ msgid "Master Password"
-#~ msgstr "Majstorska Lozinka"
-
-#~ msgid "Master Source Connection URL"
-#~ msgstr "URL veza Majstorskog izvora"
-
-#~ msgid "Show Source Connection URL"
-#~ msgstr "URL veza Programskog izvora"
-
-#~ msgid "Master Source Port"
-#~ msgstr "Port Majstorskog Izvora"
-
-#~ msgid "Master Source Mount Point"
-#~ msgstr "Točka Majstorskog Izvora"
-
-#~ msgid "Show Source Port"
-#~ msgstr "Port Programskog Izvora"
-
-#~ msgid "Show Source Mount Point"
-#~ msgstr "Točka Programskog Izvora"
-
-#~ msgid "You cannot use same port as Master DJ port."
-#~ msgstr "Ne možeš koristiti isti port kao Majstor DJ priključak."
-
-#~ msgid "Port %s is not available"
-#~ msgstr "Port %s nije dostupan"
-
-#~ msgid "E-mail"
-#~ msgstr "E-mail"
-
-#~ msgid "Restore password"
-#~ msgstr "Vraćanje lozinke"
-
-#~ msgid "Hardware Audio Output"
-#~ msgstr "Hardver Audio Izlaz"
-
-#~ msgid "Output Type"
-#~ msgstr "Tip Izlaza"
-
-#~ msgid "Date/Time Start:"
-#~ msgstr "Datum/Vrijeme Početka:"
-
-#~ msgid "Date/Time End:"
-#~ msgstr "Datum/Vrijeme Završetka:"
-
-#~ msgid "Automatically Upload Recorded Shows"
-#~ msgstr "Automatski Prijenos (Upload) Snimljene Emisije"
-
-#~ msgid "Enable SoundCloud Upload"
-#~ msgstr "Omogući SoundCloud Prijenos"
-
-#~ msgid "Automatically Mark Files \"Downloadable\" on SoundCloud"
-#~ msgstr "Automatski Obilježeni Fajlovi \"može se preuzeti\" sa SoundCloud"
-
-#~ msgid "SoundCloud Email"
-#~ msgstr "SoundCloud E-mail"
-
-#~ msgid "SoundCloud Password"
-#~ msgstr "SoundCloud Lozinka"
-
-#~ msgid "SoundCloud Tags: (separate tags with spaces)"
-#~ msgstr "SoundCloud Tagovi: (zasebne oznake s razmacima)"
-
-#~ msgid "Default Genre:"
-#~ msgstr "Zadani Žanr:"
-
-#~ msgid "Default Track Type:"
-#~ msgstr "Zadana Vrsta Pjesme:"
-
-#~ msgid "Original"
-#~ msgstr "Izvorni"
-
-#~ msgid "Remix"
-#~ msgstr "Remix"
-
-#~ msgid "Live"
-#~ msgstr "Uživo"
-
-#~ msgid "Recording"
-#~ msgstr "Snimanje"
-
-#~ msgid "Spoken"
-#~ msgstr "Govorni"
-
-#~ msgid "Podcast"
-#~ msgstr "Podcast"
-
-#~ msgid "Demo"
-#~ msgstr "Ogledni"
-
-#~ msgid "Work in progress"
-#~ msgstr "Radovi su u tijeku"
-
-#~ msgid "Stem"
-#~ msgstr "Podrijetlo"
-
-#~ msgid "Loop"
-#~ msgstr "Petlja"
-
-#~ msgid "Sound Effect"
-#~ msgstr "Zvučni Efekt"
-
-#~ msgid "One Shot Sample"
-#~ msgstr "Jedan Metak Uzorak"
-
-#~ msgid "Other"
-#~ msgstr "Ostalo"
-
-#~ msgid "Enable System Emails (Password Reset)"
-#~ msgstr "Omogućavanje sustava e-pošte (Ponovno postavljanje zaporke)"
-
-#~ msgid "Reset Password 'From' Email"
-#~ msgstr "Ponovno postavi zaporku 'iz' e-pošte"
-
-#~ msgid "Configure Mail Server"
-#~ msgstr "Konfiguriranje Mail poslužitelja"
-
-#~ msgid "Requires Authentication"
-#~ msgstr "Zahtijeva Provjeru Autentičnosti"
-
-#~ msgid "Mail Server"
-#~ msgstr "Mail Poslužitelj"
-
-#~ msgid "Email Address"
-#~ msgstr "E-mail Adresa"
-
-#~ msgid "Please enter your user name and password"
-#~ msgstr "Molimo unesi svoje korisničko ime i lozinku"
-
-#~ msgid "Given email not found."
-#~ msgstr "S obzirom e-mail nije pronađen."
-
-#~ msgid "Page not found"
-#~ msgstr "Stranica nije pronađena"
-
-#~ msgid "Application error"
-#~ msgstr "Pogreška aplikacije"
-
-#~ msgid "Playlist / Block"
-#~ msgstr "Playlista / Block"
-
-#~ msgid "If you change the username or password values for an enabled stream the playout engine will be rebooted and your listeners will hear silence for 5-10 seconds. Changing the following fields will NOT cause a reboot: Stream Label (Global Settings), and Switch Transition Fade(s), Master Username, and Master Password (Input Stream Settings). If Airtime is recording, and if the change causes a playout engine restart, the recording will be interrupted."
-#~ msgstr "Oprezno pri ažuriranju podataka!"
-
-#~ msgid "today"
-#~ msgstr "danas"
-
-#~ msgid "day"
-#~ msgstr "dan"
-
-#~ msgid "week"
-#~ msgstr "tjedan"
-
-#~ msgid "month"
-#~ msgstr "mjesec"
-
-#~ msgid "Remove overbooked tracks"
-#~ msgstr "Ukloni prebukirane pjesme"
-
-#~ msgid "Soundcloud"
-#~ msgstr "Soundcloud"
-
-#~ msgid "View on Soundcloud"
-#~ msgstr "Prikaz na Soundcloud"
-
-#~ msgid "Re-upload to SoundCloud"
-#~ msgstr "Ponovno-prenijeti na Soundcloud"
-
-#~ msgid "Upload to SoundCloud"
-#~ msgstr "Prijenos na Soundcloud"
-
-#~ msgid "Could not delete some scheduled files."
-#~ msgstr "Ne može se izbrisati neke zakazane datoteke."
-
-#~ msgid "Add Media"
-#~ msgstr "Dodaj Medije"
-
-#~ msgid "Library"
-#~ msgstr "Knjižnica"
-
-#~ msgid "System"
-#~ msgstr "Sustav"
-
-#~ msgid "Preferences"
-#~ msgstr "Postavke"
-
-#~ msgid "Media Folders"
-#~ msgstr "Medijska Mapa"
-
-#~ msgid "History"
-#~ msgstr "Povijest"
-
-#~ msgid "Service"
-#~ msgstr "Usluga"
-
-#~ msgid "Uptime"
-#~ msgstr "Radno Vrijeme"
-
-#~ msgid "CPU"
-#~ msgstr "CPU"
-
-#~ msgid "Memory"
-#~ msgstr "Memorija"
-
-#~ msgid "Email / Mail Server Settings"
-#~ msgstr "Postavka E-mail / Mail Poslužitelja"
-
-#~ msgid "Connection URL: "
-#~ msgstr "Priključni URL:"
-
-#~ msgid "Input Stream Settings"
-#~ msgstr "Postavke Ulaznog Signala"
-
-#~ msgid "Master Source Connection URL:"
-#~ msgstr "URL veza Majstorskog izvora:"
-
-#~ msgid "Override"
-#~ msgstr "Nadjačaj"
-
-#~ msgid "RESET"
-#~ msgstr "Resetiranje"
-
-#~ msgid "Show Source Connection URL:"
-#~ msgstr "URL veza Programskog izvora:"
-
-#~ msgid "Filter By Show:"
-#~ msgstr "Po Emisiji:"
-
-#~ msgid "%s's Settings"
-#~ msgstr "%s Postavke"
-
-#~ msgid "Sourcefabric Privacy Policy"
-#~ msgstr "Sourcefabric Pravila o Privatnosti"
-
-#~ msgid "Smart Block Options"
-#~ msgstr "Smart Block Opcije"
-
-#~ msgid "file meet the criteria"
-#~ msgstr "datoteka zadovoljava kriterije"
-
-#~ msgid "New"
-#~ msgstr "Novi"
-
-#~ msgid "New Playlist"
-#~ msgstr "Novi Popis Pjesama"
-
-#~ msgid "New Smart Block"
-#~ msgstr "Novi Pametni Blok"
-
-#~ msgid "New Webstream"
-#~ msgstr "Novi Prijenos"
-
-#~ msgid "View / edit description"
-#~ msgstr "Pregled / ured opisa"
-
-#~ msgid "Global Settings"
-#~ msgstr "Globalne Postavke"
-
-#~ msgid "Output Stream Settings"
-#~ msgstr "Izlazne Prijenosne Postavke"
-
-#~ msgid "Listener Count Over Time"
-#~ msgstr "Statistika Slušalaca"
-
-#~ msgid "Begin by adding your files to the library using the 'Add Media' menu button. You can drag and drop your files to this window too."
-#~ msgstr "Započni dodavanjem datoteke u knjižnicu pomoću 'Dodaj Medije' meni tipkom. Možeš povući i ispustiti datoteke na ovom prozoru."
-
-#~ msgid "Create a show by going to 'Calendar' in the menu bar, and then clicking the '+ Show' icon. This can be either a one-time or repeating show. Only admins and program managers can add shows."
-#~ msgstr "Kreiraj jednu emisiju tako da ideš na 'Kalendar' na traci izbornika, a zatim klikom na '+ Emisija' ikonu. One mogu biti bilo jednokratne ili ponavljajuće emisije. Samo administratori i urednici mogu dodati emisije."
-
-#~ msgid "Add media to the show by going to your show in the Schedule calendar, left-clicking on it and selecting 'Add / Remove Content'"
-#~ msgstr "Dodaj medije za emisiju u kalendaru, klikni sa lijevom klikom na njega i izaberi opciju 'Dodaj / Ukloni sadržaj'"
-
-#~ msgid "Select your media from the left pane and drag them to your show in the right pane."
-#~ msgstr "Odaberi svoje medije na lijevom oknu i povuci ih na svoju emisiju u desnom oknu."
-
-#~ msgid "Then you're good to go!"
-#~ msgstr "I već je završeno!"
-
-#~ msgid "Please enter your account e-mail address. You will receive a link to create a new password via e-mail."
-#~ msgstr "Unesi svoju e-mail adresu računa. Primit ćeš link za novu lozinku putem e-maila."
-
-#~ msgid "Email sent"
-#~ msgstr "E-mail je poslan"
-
-#~ msgid "An email has been sent"
-#~ msgstr "E-mail je poslan"
-
-#~ msgid "Back to login screen"
-#~ msgstr "Povratak na zaslon za prijavu"
-
-#~ msgid "Scheduled Play"
-#~ msgstr "Zakazana Predstava"
-
-#~ msgid "Station time"
-#~ msgstr "Glavno vrijeme"
-
-#~ msgid "Zend Framework Default Application"
-#~ msgstr "Zend Framework Zadana Aplikacija"
-
-#~ msgid "Empty smart block"
-#~ msgstr "Prazan pametni blok"
-
-#~ msgid "Empty playlist"
-#~ msgstr "Prazan popis pjesama"
-
-#~ msgid "Empty smart block content"
-#~ msgstr "Prazan sadržaj pametnog bloka"
-
-#~ msgid "No open smart block"
-#~ msgstr "Nema otvoreni pametni blok"
-
-#~ msgid "Record & Rebroadcast"
-#~ msgstr "Snimanje & Reemitiranje"
-
-#~ msgid "Failed to create 'organize' directory."
-#~ msgstr "Nije uspjelo stvaranje 'organiziranje' direktorija."
-
-#~ msgid "The file was not uploaded, there is %s MB of disk space left and the file you are uploading has a size of %s MB."
-#~ msgstr "Prijenos datoteke nije uspio jer je slobodan prostor je samo %s MB od željenih datoteke veličine od %s MB."
-
-#~ msgid "This file appears to be corrupted and will not be added to media library."
-#~ msgstr "Ova datoteka čini se da je oštećena i neće biti dodana u medijskoj knjižnici."
-
-#~ msgid "The file was not uploaded, this error can occur if the computer hard drive does not have enough disk space or the stor directory does not have correct write permissions."
-#~ msgstr "Datoteka nije poslana, ova pogreška može se pojaviti ako hard disk računala nema dovoljno prostora na disku ili stor direktorija nema ispravnih ovlasti za zapisivanje."
-
-#~ msgid ""
-#~ "Hi %s, \n"
-#~ "\n"
-#~ "Click this link to reset your password: "
-#~ msgstr ""
-#~ "Bok %s, \n"
-#~ "\n"
-#~ "Klikni na ovaj link kako bi poništio lozinku: "
-
-#~ msgid "Show Content"
-#~ msgstr "Programski Sadržaj"
-
-#~ msgid "Remove All Content"
-#~ msgstr "Ukloni Sve Sadržaje"
-
-#~ msgid "Cancel Current Show"
-#~ msgstr "Prekid Programa"
-
-#~ msgid "Edit This Instance"
-#~ msgstr "Uredi u tom slučaju"
-
-#~ msgid "Delete This Instance"
-#~ msgstr "Izbriši u tom slučaju"
-
-#~ msgid "Delete This Instance and All Following"
-#~ msgstr "Izbriši u tom slučaju i svi prateći"
-
-#~ msgid "Please selection an option"
-#~ msgstr "Molimo, odaberi opciju"
-
-#~ msgid "No Records"
-#~ msgstr "Nema Zapisa"
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
+msgid "Enabled:"
+msgstr "Omogućeno:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
+msgid "Mobile:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
+msgid "Stream Type:"
+msgstr "Prijenos Tipa:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
+msgid "Service Type:"
+msgstr "Tip Usluge:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
+msgid "Channels:"
+msgstr "Kanali:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "1 - Mono"
+msgstr "1 - Mono"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "2 - Stereo"
+msgstr "2 - Stereo"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
+msgid "Server"
+msgstr "Poslužitelj"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
+msgid "Port"
+msgstr "Port"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
+msgid "Only numbers are allowed."
+msgstr "Dopušteni su samo brojevi."
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
+msgid "URL"
+msgstr "URL"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
+msgid "Mount Point"
+msgstr "Točka Montiranja"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
+msgid "Admin User"
+msgstr "Admin Korisnik"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
+msgid "Admin Password"
+msgstr "Admin Lozinka"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
+msgid "Server cannot be empty."
+msgstr "Poslužitelj ne može biti prazan."
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
+msgid "Port cannot be empty."
+msgstr "Port ne može biti prazan."
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
+msgid "Mount cannot be empty with Icecast server."
+msgstr "Montiranje ne može biti prazna s Icecast poslužiteljem."
+
+#: airtime_mvc/application/forms/AddShowWhen.php:16
+msgid "'%value%' does not fit the time format 'HH:mm'"
+msgstr "'%value%' se ne uklapa u vremenskom formatu 'HH:mm'"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:22
+msgid "Start Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:37
+msgid "In the Future:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:64
+msgid "End Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:98
+msgid "Timezone:"
+msgstr "Vremenska Zona:"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:107
+msgid "Repeats?"
+msgstr "Ponavljanje?"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:139
+msgid "Cannot create show in the past"
+msgstr "Ne može se stvoriti emisije u prošlosti"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:147
+msgid "Cannot modify start date/time of the show that is already started"
+msgstr "Ne možeš mijenjati datum/vrijeme početak emisije, ako je već počela"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:156
+#: airtime_mvc/application/models/Show.php:282
+msgid "End date/time cannot be in the past"
+msgstr "Datum završetka i vrijeme ne može biti u prošlosti"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:164
+msgid "Cannot have duration < 0m"
+msgstr "Ne može trajati < 0m"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:168
+msgid "Cannot have duration 00h 00m"
+msgstr "Ne može trajati 00h 00m"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:175
+msgid "Cannot have duration greater than 24h"
+msgstr "Ne može trajati više od 24h"
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:19
+msgid "Push metadata to your station on TuneIn?"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:24
+msgid "Station ID:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:30
+msgid "Partner Key:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:36
+msgid "Partner Id:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:77
+#: airtime_mvc/application/forms/TuneInPreferences.php:86
+msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:10
+#, php-format
+msgid "Use %s Authentication:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:16
+msgid "Use Custom Authentication:"
+msgstr "Koristi Prilagođeno provjeru autentičnosti:"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:25
+msgid "Custom Username"
+msgstr "Prilagođeno Korisničko Ime"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:37
+msgid "Custom Password"
+msgstr "Prilagođena Lozinka"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:48
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
+msgid "Host:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
+msgid "Port:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:60
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
+msgid "Mount:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:77
+msgid "Username field cannot be empty."
+msgstr "'Korisničko Ime' polja ne smije ostati prazno."
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:82
+msgid "Password field cannot be empty."
+msgstr "'Lozinka' polja ne smije ostati prazno."
+
+#: airtime_mvc/application/forms/AddShowStyle.php:12
+msgid "Background Colour:"
+msgstr "Boja Pozadine:"
+
+#: airtime_mvc/application/forms/AddShowStyle.php:31
+msgid "Text Colour:"
+msgstr "Boja Teksta:"
+
+#: airtime_mvc/application/forms/AddShowStyle.php:49
+msgid "Current Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:72
+msgid "Show Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:87
+msgid "Logo Preview:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Login.php:102
+msgid "Type the characters you see in the picture below."
+msgstr "Upiši znakove koje vidiš na slici u nastavku."
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
+msgid "Auto Switch Off:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
+msgid "Auto Switch On:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
+msgid "Switch Transition Fade (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:10
+msgid "Link:"
+msgstr "Link:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:16
+msgid "Repeat Type:"
+msgstr "Tip Ponavljanje:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:19
+msgid "weekly"
+msgstr "tjedno"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:20
+msgid "every 2 weeks"
+msgstr "svaka 2 tjedna"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:21
+msgid "every 3 weeks"
+msgstr "svaka 3 tjedna"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:22
+msgid "every 4 weeks"
+msgstr "svaka 4 tjedna"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:23
+msgid "monthly"
+msgstr "mjesečno"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:32
+msgid "Select Days:"
+msgstr "Odaberi Dane:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:47
+msgid "Repeat By:"
+msgstr "Ponavljanje Po:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the month"
+msgstr "dan u mjesecu"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the week"
+msgstr "dan u tjednu"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:69
+msgid "No End?"
+msgstr "Nema Kraja?"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:106
+msgid "End date must be after start date"
+msgstr "Datum završetka mora biti nakon datuma početka"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:113
+msgid "Please select a repeat day"
+msgstr "Molimo, odaberi kojeg dana"
+
+#: airtime_mvc/application/configs/navigation.php:12
+msgid "Radio Page"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:19
+msgid "Calendar"
+msgstr "Kalendar"
+
+#: airtime_mvc/application/configs/navigation.php:26
+msgid "Widgets"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:48
+msgid "Settings"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:67
+msgid "Users"
+msgstr "Korisnici"
+
+#: airtime_mvc/application/configs/navigation.php:74
+msgid "Streams"
+msgstr "Prijenosi"
+
+#: airtime_mvc/application/configs/navigation.php:82
+msgid "Analytics"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:90
+msgid "Listener Stats"
+msgstr "Slušateljska Statistika"
+
+#: airtime_mvc/application/configs/navigation.php:104
+msgid "History Templates"
+msgstr "Povijesni Predlošci"
+
+#: airtime_mvc/application/configs/navigation.php:113
+msgid "Billing"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:120
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:127
+msgid "Account Details"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:134
+msgid "View Invoices"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:150
+msgid "Getting Started"
+msgstr "Početak Korištenja"
+
+#: airtime_mvc/application/configs/navigation.php:157
+msgid "FAQ"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:162
+msgid "User Manual"
+msgstr "Priručnik"
+
+#: airtime_mvc/application/configs/navigation.php:167
+msgid "File a Support Ticket"
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:833
+#: airtime_mvc/application/models/Playlist.php:812
+msgid "Cue in and cue out are null."
+msgstr "Cue in i cue out su nule."
+
+#: airtime_mvc/application/models/Block.php:868
+#: airtime_mvc/application/models/Block.php:924
+#: airtime_mvc/application/models/Playlist.php:851
+#: airtime_mvc/application/models/Playlist.php:895
+msgid "Can't set cue out to be greater than file length."
+msgstr "Ne možeš postaviti da će 'cue out' biti veće od duljine datoteke."
+
+#: airtime_mvc/application/models/Block.php:879
+#: airtime_mvc/application/models/Block.php:900
+#: airtime_mvc/application/models/Playlist.php:843
+#: airtime_mvc/application/models/Playlist.php:868
+msgid "Can't set cue in to be larger than cue out."
+msgstr "Ne možeš postaviti da će 'cue in' biti veće od 'cue out'."
+
+#: airtime_mvc/application/models/Block.php:935
+#: airtime_mvc/application/models/Playlist.php:887
+msgid "Can't set cue out to be smaller than cue in."
+msgstr "Ne mogu se postaviti da će 'cue out' biti manje od 'cue in'."
+
+#: airtime_mvc/application/models/Block.php:1366
+msgid "Upload Time"
+msgstr ""
+
+#: airtime_mvc/application/models/ShowBuilder.php:212
+#, php-format
+msgid "Rebroadcast of %s from %s"
+msgstr "Reemitiranje od %s od %s"
+
+#: airtime_mvc/application/models/Preference.php:460
+#, php-format
+msgid "Powered by %s"
+msgstr ""
+
+#: airtime_mvc/application/models/Preference.php:588
+msgid "Select Country"
+msgstr "Odaberi Državu"
+
+#: airtime_mvc/application/models/MusicDir.php:160
+#, php-format
+msgid "%s is already watched."
+msgstr "%s je već nadziran."
+
+#: airtime_mvc/application/models/MusicDir.php:164
+#, php-format
+msgid "%s contains nested watched directory: %s"
+msgstr "%s sadržava ugniježđene nadzirane direktorije: %s"
+
+#: airtime_mvc/application/models/MusicDir.php:168
+#, php-format
+msgid "%s is nested within existing watched directory: %s"
+msgstr "%s se nalazi unutar u postojeći nadzirani direktoriji: %s"
+
+#: airtime_mvc/application/models/MusicDir.php:189
+#: airtime_mvc/application/models/MusicDir.php:370
+#, php-format
+msgid "%s is not a valid directory."
+msgstr "%s nije valjana direktorija."
+
+#: airtime_mvc/application/models/MusicDir.php:232
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list"
+msgstr "%s je već postavljena kao mapa za pohranu ili je između popisa praćene mape"
+
+#: airtime_mvc/application/models/MusicDir.php:388
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list."
+msgstr "%s je već postavljena kao mapa za pohranu ili je između popisa praćene mape."
+
+#: airtime_mvc/application/models/MusicDir.php:431
+#, php-format
+msgid "%s doesn't exist in the watched list."
+msgstr "%s ne postoji u popisu nadziranih lokacija."
+
+#: airtime_mvc/application/models/Auth.php:33
+#, php-format
+msgid ""
+"Hi %s, \n"
+"\n"
+"Please click this link to reset your password: "
+msgstr ""
+
+#: airtime_mvc/application/models/Auth.php:38
+#, php-format
+msgid "%s Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/models/Show.php:184
+msgid "Shows can have a max length of 24 hours."
+msgstr "Emisija može imati najveću duljinu od 24 sata."
+
+#: airtime_mvc/application/models/Show.php:293
+msgid ""
+"Cannot schedule overlapping shows.\n"
+"Note: Resizing a repeating show affects all of its repeats."
+msgstr ""
+"Ne može se zakazati preklapajuće emisije.\n"
+"Napomena: Promjena veličine ponovljene emisije utječe na sve njene ponavljanje"
+
+#: airtime_mvc/application/models/Scheduler.php:73
+msgid "Cannot move items out of linked shows"
+msgstr "Ne možeš premjestiti stavke iz povezanih emisija"
+
+#: airtime_mvc/application/models/Scheduler.php:119
+msgid "The schedule you're viewing is out of date! (sched mismatch)"
+msgstr "Zastario se pregledan raspored! (nevažeći raspored)"
+
+#: airtime_mvc/application/models/Scheduler.php:124
+msgid "The schedule you're viewing is out of date! (instance mismatch)"
+msgstr "Zastario se pregledan raspored! (primjer neusklađenost)"
+
+#: airtime_mvc/application/models/Scheduler.php:132
+#: airtime_mvc/application/models/Scheduler.php:458
+#: airtime_mvc/application/models/Scheduler.php:490
+msgid "The schedule you're viewing is out of date!"
+msgstr "Zastario se pregledan raspored!"
+
+#: airtime_mvc/application/models/Scheduler.php:142
+#, php-format
+msgid "You are not allowed to schedule show %s."
+msgstr "Ne smijes zakazati rasporednu emisiju %s."
+
+#: airtime_mvc/application/models/Scheduler.php:146
+msgid "You cannot add files to recording shows."
+msgstr "Ne možeš dodavati datoteke za snimljene emisije."
+
+#: airtime_mvc/application/models/Scheduler.php:152
+#, php-format
+msgid "The show %s is over and cannot be scheduled."
+msgstr "Emisija %s je gotova i ne mogu biti zakazana."
+
+#: airtime_mvc/application/models/Scheduler.php:159
+#, php-format
+msgid "The show %s has been previously updated!"
+msgstr "Ranije je %s emisija već bila ažurirana!"
+
+#: airtime_mvc/application/models/Scheduler.php:178
+msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
+msgstr "Sadržaj u povezanim emisijama mora biti zakazan prije ili poslije bilo koje emisije"
+
+#: airtime_mvc/application/models/Scheduler.php:195
+msgid "Cannot schedule a playlist that contains missing files."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:216
+#: airtime_mvc/application/models/Scheduler.php:305
+msgid "A selected File does not exist!"
+msgstr "Odabrana Datoteka ne postoji!"
+
+#: airtime_mvc/application/models/Schedule.php:206
+msgid "livestream"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:166
+msgid "Length needs to be greater than 0 minutes"
+msgstr "Duljina mora biti veća od 0 minuta"
+
+#: airtime_mvc/application/models/Webstream.php:171
+msgid "Length should be of form \"00h 00m\""
+msgstr "Duljina mora biti u obliku \"00h 00m\""
+
+#: airtime_mvc/application/models/Webstream.php:184
+msgid "URL should be of form \"http://domain\""
+msgstr "URL mora biti u obliku \"http://domain\""
+
+#: airtime_mvc/application/models/Webstream.php:187
+msgid "URL should be 512 characters or less"
+msgstr "URL mora biti 512 znakova ili manje"
+
+#: airtime_mvc/application/models/Webstream.php:193
+msgid "No MIME type found for webstream."
+msgstr "Ne postoji MIME tip za prijenos."
+
+#: airtime_mvc/application/models/Webstream.php:209
+msgid "Webstream name cannot be empty"
+msgstr "Ime prijenosa ne može biti prazno"
+
+#: airtime_mvc/application/models/Webstream.php:278
+msgid "Could not parse XSPF playlist"
+msgstr "Nismo mogli analizirati XSPF popis pjesama"
+
+#: airtime_mvc/application/models/Webstream.php:298
+msgid "Could not parse PLS playlist"
+msgstr "Nismo mogli analizirati PLS popis pjesama"
+
+#: airtime_mvc/application/models/Webstream.php:318
+msgid "Could not parse M3U playlist"
+msgstr "Nismo mogli analizirati M3U popis pjesama"
+
+#: airtime_mvc/application/models/Webstream.php:332
+msgid "Invalid webstream - This appears to be a file download."
+msgstr "Nevažeći prijenos - Čini se da je ovo preuzimanje datoteka."
+
+#: airtime_mvc/application/models/Webstream.php:336
+#, php-format
+msgid "Unrecognized stream type: %s"
+msgstr "Nepoznati prijenosni tip: %s"
+
+#: airtime_mvc/public/setup/rabbitmq-setup.php:78
+msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
+msgstr ""
+
+#~ msgid "My Account"
+#~ msgstr "Moj Račun"
diff --git a/airtime_mvc/locale/hr_HR/LC_MESSAGES/pro.po b/airtime_mvc/locale/hr_HR/LC_MESSAGES/pro.po
index 866ee0acb..f59b52c3d 100644
--- a/airtime_mvc/locale/hr_HR/LC_MESSAGES/pro.po
+++ b/airtime_mvc/locale/hr_HR/LC_MESSAGES/pro.po
@@ -1,3 +1,139 @@
+#: airtime_mvc/application/controllers/LoginController.php:170
+#, php-format
+msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
+#, php-format
+msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
+#, php-format
+msgid "If you are the primary owner of this station, please reset your password here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
+msgid "Thank you!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
+msgid "Your station has been upgraded successfully."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
+msgid "Return to Airtime"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+#, php-format
+msgid "Purchase an %s plan!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+msgid "My Account"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
+msgid "Upgrade today to get more listeners and storage space!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
+msgid "View Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:257
+msgid "Your Current Plan:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:291
+msgid "Please enter your payment details:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
+msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
+msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:17
+msgid "First Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:26
+msgid "Last Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:35
+msgid "Company Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:44
+msgid "Email Address:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:54
+msgid "Address 1:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:63
+msgid "Address 2:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:70
+msgid "City:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:80
+msgid "State/Region:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:89
+msgid "Zip Code / Postal Code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:102
+msgid "Country:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:112
+msgid "Phone Number:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:121
+msgid "Please choose a security question:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:135
+msgid "Please enter an answer:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:152
+msgid "VAT/Tax ID (EU only)"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:162
+msgid "Subscribe to Sourcefabric newsletter"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:172
+msgid "Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:181
+msgid "Verify Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:193
+msgid "Save"
+msgstr ""
+
#: airtime_mvc/application/models/Auth.php:35
#, php-format
msgid ""
@@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
-msgid "Thank you!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
-msgid "Your station has been upgraded successfully."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
-msgid "Return to Airtime"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
-#, php-format
-msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
-msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
-msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
-#, php-format
-msgid "If you are the primary owner of this station, please reset your password here."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:170
-#, php-format
-msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
-msgstr ""
diff --git a/airtime_mvc/locale/hu_HU/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/hu_HU/LC_MESSAGES/airtime.mo
index 3b32d7908..b6c18f617 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 b1fd1e67e..e6c8746c9 100644
--- a/airtime_mvc/locale/hu_HU/LC_MESSAGES/airtime.po
+++ b/airtime_mvc/locale/hu_HU/LC_MESSAGES/airtime.po
@@ -11,9 +11,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Airtime\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-09-03 10:24-0400\n"
-"PO-Revision-Date: 2015-05-07 08:03+0000\n"
-"Last-Translator: Zsolt Magyar \n"
+"POT-Creation-Date: 2015-09-04 11:17-0400\n"
+"PO-Revision-Date: 2015-09-04 08:15+0000\n"
+"Last-Translator: Daniel James \n"
"Language-Team: Hungarian (Hungary) (http://www.transifex.com/sourcefabric/airtime/language/hu_HU/)\n"
"Language: hu_HU\n"
"MIME-Version: 1.0\n"
@@ -21,132 +21,6 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: airtime_mvc/public/setup/rabbitmq-setup.php:78
-msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1117
-#: airtime_mvc/application/services/HistoryService.php:1157
-#: airtime_mvc/application/services/HistoryService.php:1174
-#: airtime_mvc/application/models/Block.php:1375
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
-#: airtime_mvc/application/controllers/LocaleController.php:76
-msgid "Title"
-msgstr "Cím"
-
-#: airtime_mvc/application/services/HistoryService.php:1118
-#: airtime_mvc/application/services/HistoryService.php:1158
-#: airtime_mvc/application/services/HistoryService.php:1175
-#: airtime_mvc/application/models/Block.php:1360
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
-#: airtime_mvc/application/controllers/LocaleController.php:77
-msgid "Creator"
-msgstr "Előadó/Szerző"
-
-#: airtime_mvc/application/services/HistoryService.php:1119
-#: airtime_mvc/application/models/Block.php:1352
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
-#: airtime_mvc/application/controllers/LocaleController.php:78
-msgid "Album"
-msgstr "Album"
-
-#: airtime_mvc/application/services/HistoryService.php:1120
-#: airtime_mvc/application/services/HistoryService.php:1177
-#: airtime_mvc/application/models/Block.php:1369
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
-#: airtime_mvc/application/controllers/LocaleController.php:91
-msgid "Length"
-msgstr "Hossz"
-
-#: airtime_mvc/application/services/HistoryService.php:1121
-#: airtime_mvc/application/models/Block.php:1362
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
-#: airtime_mvc/application/controllers/LocaleController.php:85
-msgid "Genre"
-msgstr "Műfaj"
-
-#: airtime_mvc/application/services/HistoryService.php:1122
-#: airtime_mvc/application/models/Block.php:1371
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
-#: airtime_mvc/application/controllers/LocaleController.php:93
-msgid "Mood"
-msgstr "Hangulat"
-
-#: airtime_mvc/application/services/HistoryService.php:1123
-#: airtime_mvc/application/models/Block.php:1364
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
-#: airtime_mvc/application/controllers/LocaleController.php:87
-msgid "Label"
-msgstr "Címke"
-
-#: airtime_mvc/application/services/HistoryService.php:1124
-#: airtime_mvc/application/services/HistoryService.php:1178
-#: airtime_mvc/application/models/Block.php:1355
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
-#: airtime_mvc/application/controllers/LocaleController.php:81
-msgid "Composer"
-msgstr "Zeneszerző"
-
-#: airtime_mvc/application/services/HistoryService.php:1125
-#: airtime_mvc/application/models/Block.php:1363
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
-#: airtime_mvc/application/controllers/LocaleController.php:86
-msgid "ISRC"
-msgstr "ISRC"
-
-#: airtime_mvc/application/services/HistoryService.php:1126
-#: airtime_mvc/application/services/HistoryService.php:1179
-#: airtime_mvc/application/models/Block.php:1357
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
-#: airtime_mvc/application/controllers/LocaleController.php:83
-msgid "Copyright"
-msgstr "Szerzői jog"
-
-#: airtime_mvc/application/services/HistoryService.php:1127
-#: airtime_mvc/application/models/Block.php:1379
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
-#: airtime_mvc/application/controllers/LocaleController.php:100
-msgid "Year"
-msgstr "Év"
-
-#: airtime_mvc/application/services/HistoryService.php:1128
-msgid "Track"
-msgstr "Dalszám"
-
-#: airtime_mvc/application/services/HistoryService.php:1129
-#: airtime_mvc/application/models/Block.php:1356
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
-#: airtime_mvc/application/controllers/LocaleController.php:82
-msgid "Conductor"
-msgstr "Karmester"
-
-#: airtime_mvc/application/services/HistoryService.php:1130
-#: airtime_mvc/application/models/Block.php:1365
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
-#: airtime_mvc/application/controllers/LocaleController.php:88
-msgid "Language"
-msgstr "Nyelv"
-
-#: airtime_mvc/application/services/HistoryService.php:1155
-#: airtime_mvc/application/forms/EditHistoryItem.php:32
-msgid "Start Time"
-msgstr "Kezdési Idő"
-
-#: airtime_mvc/application/services/HistoryService.php:1156
-#: airtime_mvc/application/forms/EditHistoryItem.php:44
-msgid "End Time"
-msgstr "Fejezési Idő"
-
-#: airtime_mvc/application/services/HistoryService.php:1176
-msgid "Played"
-msgstr "Lejátszva"
-
#: airtime_mvc/application/services/CalendarService.php:50
msgid "Record file doesn't exist"
msgstr "Rögzített fájl nem létezik"
@@ -242,2604 +116,381 @@ msgstr "A műsor törlésre került, mert a rögzített műsor nem létezik!"
msgid "Must wait 1 hour to rebroadcast."
msgstr "Az adás újbóli közvetítésére 1 órát kell várni."
-#: airtime_mvc/application/models/Schedule.php:206
-msgid "livestream"
+#: airtime_mvc/application/services/HistoryService.php:1117
+#: airtime_mvc/application/services/HistoryService.php:1157
+#: airtime_mvc/application/services/HistoryService.php:1174
+#: airtime_mvc/application/controllers/LocaleController.php:76
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
+#: airtime_mvc/application/models/Block.php:1375
+msgid "Title"
+msgstr "Cím"
+
+#: airtime_mvc/application/services/HistoryService.php:1118
+#: airtime_mvc/application/services/HistoryService.php:1158
+#: airtime_mvc/application/services/HistoryService.php:1175
+#: airtime_mvc/application/controllers/LocaleController.php:77
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
+#: airtime_mvc/application/models/Block.php:1360
+msgid "Creator"
+msgstr "Előadó/Szerző"
+
+#: airtime_mvc/application/services/HistoryService.php:1119
+#: airtime_mvc/application/controllers/LocaleController.php:78
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
+#: airtime_mvc/application/models/Block.php:1352
+msgid "Album"
+msgstr "Album"
+
+#: airtime_mvc/application/services/HistoryService.php:1120
+#: airtime_mvc/application/services/HistoryService.php:1177
+#: airtime_mvc/application/controllers/LocaleController.php:91
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
+#: airtime_mvc/application/models/Block.php:1369
+msgid "Length"
+msgstr "Hossz"
+
+#: airtime_mvc/application/services/HistoryService.php:1121
+#: airtime_mvc/application/controllers/LocaleController.php:85
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
+#: airtime_mvc/application/models/Block.php:1362
+msgid "Genre"
+msgstr "Műfaj"
+
+#: airtime_mvc/application/services/HistoryService.php:1122
+#: airtime_mvc/application/controllers/LocaleController.php:93
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
+#: airtime_mvc/application/models/Block.php:1371
+msgid "Mood"
+msgstr "Hangulat"
+
+#: airtime_mvc/application/services/HistoryService.php:1123
+#: airtime_mvc/application/controllers/LocaleController.php:87
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
+#: airtime_mvc/application/models/Block.php:1364
+msgid "Label"
+msgstr "Címke"
+
+#: airtime_mvc/application/services/HistoryService.php:1124
+#: airtime_mvc/application/services/HistoryService.php:1178
+#: airtime_mvc/application/controllers/LocaleController.php:81
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
+#: airtime_mvc/application/models/Block.php:1355
+msgid "Composer"
+msgstr "Zeneszerző"
+
+#: airtime_mvc/application/services/HistoryService.php:1125
+#: airtime_mvc/application/controllers/LocaleController.php:86
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
+#: airtime_mvc/application/models/Block.php:1363
+msgid "ISRC"
+msgstr "ISRC"
+
+#: airtime_mvc/application/services/HistoryService.php:1126
+#: airtime_mvc/application/services/HistoryService.php:1179
+#: airtime_mvc/application/controllers/LocaleController.php:83
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
+#: airtime_mvc/application/models/Block.php:1357
+msgid "Copyright"
+msgstr "Szerzői jog"
+
+#: airtime_mvc/application/services/HistoryService.php:1127
+#: airtime_mvc/application/controllers/LocaleController.php:100
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
+#: airtime_mvc/application/models/Block.php:1379
+msgid "Year"
+msgstr "Év"
+
+#: airtime_mvc/application/services/HistoryService.php:1128
+msgid "Track"
+msgstr "Dalszám"
+
+#: airtime_mvc/application/services/HistoryService.php:1129
+#: airtime_mvc/application/controllers/LocaleController.php:82
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
+#: airtime_mvc/application/models/Block.php:1356
+msgid "Conductor"
+msgstr "Karmester"
+
+#: airtime_mvc/application/services/HistoryService.php:1130
+#: airtime_mvc/application/controllers/LocaleController.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
+#: airtime_mvc/application/models/Block.php:1365
+msgid "Language"
+msgstr "Nyelv"
+
+#: airtime_mvc/application/services/HistoryService.php:1155
+#: airtime_mvc/application/forms/EditHistoryItem.php:32
+msgid "Start Time"
+msgstr "Kezdési Idő"
+
+#: airtime_mvc/application/services/HistoryService.php:1156
+#: airtime_mvc/application/forms/EditHistoryItem.php:44
+msgid "End Time"
+msgstr "Fejezési Idő"
+
+#: airtime_mvc/application/services/HistoryService.php:1176
+msgid "Played"
+msgstr "Lejátszva"
+
+#: airtime_mvc/application/controllers/LibraryController.php:31
+#: airtime_mvc/application/controllers/PlaylistController.php:147
+#, php-format
+msgid "%s not found"
+msgstr "%s nem található"
+
+#: airtime_mvc/application/controllers/LibraryController.php:40
+#: airtime_mvc/application/controllers/PlaylistController.php:168
+msgid "Something went wrong."
+msgstr "Valami hiba történt."
+
+#: airtime_mvc/application/controllers/LibraryController.php:95
+#: airtime_mvc/application/controllers/ShowbuilderController.php:136
+msgid "Preview"
+msgstr "Előnézet"
+
+#: airtime_mvc/application/controllers/LibraryController.php:115
+#: airtime_mvc/application/controllers/LibraryController.php:177
+#: airtime_mvc/application/controllers/LibraryController.php:200
+msgid "Add to Playlist"
+msgstr "Hozzáadás a Lejátszási listához"
+
+#: airtime_mvc/application/controllers/LibraryController.php:117
+msgid "Add to Smart Block"
+msgstr "Hozzáadás az Okos Táblához"
+
+#: airtime_mvc/application/controllers/LibraryController.php:123
+#: airtime_mvc/application/controllers/LocaleController.php:66
+msgid "Edit Metadata"
+msgstr "Metaadatok Szerkesztése"
+
+#: airtime_mvc/application/controllers/LibraryController.php:131
+#: airtime_mvc/application/controllers/ScheduleController.php:712
+msgid "Download"
+msgstr "Letöltés"
+
+#: airtime_mvc/application/controllers/LibraryController.php:147
+msgid "View track"
msgstr ""
-#: airtime_mvc/application/models/ShowBuilder.php:212
-#, php-format
-msgid "Rebroadcast of %s from %s"
-msgstr "Úrjaközvetítés %s -tól/-től %s"
-
-#: airtime_mvc/application/models/Webstream.php:166
-msgid "Length needs to be greater than 0 minutes"
-msgstr "A hosszúság értékének nagyobb kell lennie, mint 0 perc"
-
-#: airtime_mvc/application/models/Webstream.php:171
-msgid "Length should be of form \"00h 00m\""
-msgstr "A hosszúság formája \"00ó 00p\""
-
-#: airtime_mvc/application/models/Webstream.php:184
-msgid "URL should be of form \"http://domain\""
-msgstr "Az URL-nek így kell kinéznie \"http://domain\""
-
-#: airtime_mvc/application/models/Webstream.php:187
-msgid "URL should be 512 characters or less"
-msgstr "Az URL-nek rövidebbnek kell lennie 512 karakternél"
-
-#: airtime_mvc/application/models/Webstream.php:193
-msgid "No MIME type found for webstream."
-msgstr "Nem található MIME típus az adásfolyamhoz."
-
-#: airtime_mvc/application/models/Webstream.php:209
-msgid "Webstream name cannot be empty"
-msgstr "Az adásfolyam neve maradhat üresen"
-
-#: airtime_mvc/application/models/Webstream.php:278
-msgid "Could not parse XSPF playlist"
-msgstr "Nem sikerült értelmezni a XSDF lejátszási listát"
-
-#: airtime_mvc/application/models/Webstream.php:298
-msgid "Could not parse PLS playlist"
-msgstr "Nem sikerült értelmezni a PLS lejátszási listát"
-
-#: airtime_mvc/application/models/Webstream.php:318
-msgid "Could not parse M3U playlist"
-msgstr "Nem sikerült értelmezni a M3U lejátszási listát"
-
-#: airtime_mvc/application/models/Webstream.php:332
-msgid "Invalid webstream - This appears to be a file download."
-msgstr "Érvénytelen adásfolyam - Úgy néz ki, hogy ez egy fájl letöltés."
-
-#: airtime_mvc/application/models/Webstream.php:336
-#, php-format
-msgid "Unrecognized stream type: %s"
-msgstr "Ismeretlen típusú adásfolyam: %s"
-
-#: airtime_mvc/application/models/Preference.php:460
-#, php-format
-msgid "Powered by %s"
+#: airtime_mvc/application/controllers/LibraryController.php:148
+msgid "Remove track"
msgstr ""
-#: airtime_mvc/application/models/Preference.php:588
-msgid "Select Country"
-msgstr "Ország Kiválasztása"
+#: airtime_mvc/application/controllers/LibraryController.php:154
+#: airtime_mvc/application/controllers/LibraryController.php:159
+msgid "Upload track"
+msgstr ""
-#: airtime_mvc/application/models/MusicDir.php:160
+#: airtime_mvc/application/controllers/LibraryController.php:169
+msgid "Duplicate Playlist"
+msgstr "Lejátszási lista másolatának elkészítése"
+
+#: airtime_mvc/application/controllers/LibraryController.php:213
+msgid "No action available"
+msgstr "Nincs elérhető művelet"
+
+#: airtime_mvc/application/controllers/LibraryController.php:233
+msgid "You don't have permission to delete selected items."
+msgstr "Nincs engedélye, hogy törölje a kiválasztott elemeket."
+
+#: airtime_mvc/application/controllers/LibraryController.php:279
+msgid "Could not delete file because it is scheduled in the future."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:282
+msgid "Could not delete file(s)."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:322
#, php-format
-msgid "%s is already watched."
-msgstr "%s már figyelve van."
+msgid "Copy of %s"
+msgstr "Másolás %s"
-#: airtime_mvc/application/models/MusicDir.php:164
-#, php-format
-msgid "%s contains nested watched directory: %s"
-msgstr "%s tartalmazza a beágyazott figyelt könyvtárat: %s"
+#: airtime_mvc/application/controllers/WebstreamController.php:28
+#: airtime_mvc/application/controllers/WebstreamController.php:32
+msgid "Untitled Webstream"
+msgstr "Névtelen Adásfolyam"
-#: airtime_mvc/application/models/MusicDir.php:168
-#, php-format
-msgid "%s is nested within existing watched directory: %s"
-msgstr "%s beágyazva a létező figyelt mappán belül: %s"
+#: airtime_mvc/application/controllers/WebstreamController.php:150
+msgid "Webstream saved."
+msgstr "Adásfolyam mentve."
-#: airtime_mvc/application/models/MusicDir.php:189
-#: airtime_mvc/application/models/MusicDir.php:370
-#, php-format
-msgid "%s is not a valid directory."
-msgstr "%s nem létező könyvtár."
+#: airtime_mvc/application/controllers/WebstreamController.php:158
+msgid "Invalid form values."
+msgstr "Érvénytelen érték forma."
-#: airtime_mvc/application/models/MusicDir.php:232
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list"
-msgstr "%s már be van állítva, mint a jelenlegi tároló elérési útvonala vagy a figyelt mappák listája"
-
-#: airtime_mvc/application/models/MusicDir.php:388
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list."
-msgstr "%s már be van állítva, mint jelenlegi tároló elérési útvonala vagy, a figyelt mappák listájában."
-
-#: airtime_mvc/application/models/MusicDir.php:431
-#, php-format
-msgid "%s doesn't exist in the watched list."
-msgstr "%s nem szerepel a figyeltek listáján."
-
-#: airtime_mvc/application/models/Show.php:184
-msgid "Shows can have a max length of 24 hours."
-msgstr "A műsorok maximum 24 óra hosszúságúak lehetnek."
-
-#: airtime_mvc/application/models/Show.php:282
-#: airtime_mvc/application/forms/AddShowWhen.php:156
-msgid "End date/time cannot be in the past"
-msgstr "A befejezési dátum/idő nem lehet a múltban"
-
-#: airtime_mvc/application/models/Show.php:293
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
msgid ""
-"Cannot schedule overlapping shows.\n"
-"Note: Resizing a repeating show affects all of its repeats."
+"To configure and use the embeddable player you must:
\n"
+" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
+" 2. Enable the Public Airtime API under System -> Preferences"
msgstr ""
-"Az ütemzés nem fedheti át a műsorokat.\n"
-"Megjegyzés: Az ismételt műsorok átméretezése kavarodást okozhat."
-#: airtime_mvc/application/models/Auth.php:33
-#, php-format
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
msgid ""
-"Hi %s, \n"
-"\n"
-"Please click this link to reset your password: "
+"To use the embeddable weekly schedule widget you must:
\n"
+" Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/models/Auth.php:38
+#: airtime_mvc/application/controllers/ListenerstatController.php:51
+msgid "Please make sure admin user/password is correct on System->Streams page."
+msgstr "Kérjük, győződjön meg arról, hogy az admin felhasználónév/jelszó helyes-e a Rendszer-> Adásfolyamok oldalon."
+
+#: airtime_mvc/application/controllers/UserController.php:86
+msgid "User added successfully!"
+msgstr "Felhasználó sikeresen hozzáadva!"
+
+#: airtime_mvc/application/controllers/UserController.php:88
+msgid "User updated successfully!"
+msgstr "Felhasználó sikeresen módosítva!"
+
+#: airtime_mvc/application/controllers/UserController.php:187
+msgid "Settings updated successfully!"
+msgstr "Beállítások sikeresen módosítva!"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:53
#, php-format
-msgid "%s Password Reset"
-msgstr "%s Jelszó Visszaállítás"
+msgid "You are viewing an older version of %s"
+msgstr "Ön egy régebbi verziót tekint meg %s"
-#: airtime_mvc/application/models/Block.php:333
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
-msgid "items"
-msgstr "elemek"
+#: airtime_mvc/application/controllers/PlaylistController.php:140
+msgid "You cannot add tracks to dynamic blocks."
+msgstr "Nem adhat hozzá dalszámokat a dinamikus táblákhoz."
-#: airtime_mvc/application/models/Block.php:833
-#: airtime_mvc/application/models/Playlist.php:812
-msgid "Cue in and cue out are null."
-msgstr "A fel- és a lekeverés értékei nullák."
-
-#: airtime_mvc/application/models/Block.php:868
-#: airtime_mvc/application/models/Block.php:924
-#: airtime_mvc/application/models/Playlist.php:851
-#: airtime_mvc/application/models/Playlist.php:895
-msgid "Can't set cue out to be greater than file length."
-msgstr "Nem lehet beállítani, mert a lekeverési idő nem lehet nagyobb a fájl hosszánál."
-
-#: airtime_mvc/application/models/Block.php:879
-#: airtime_mvc/application/models/Block.php:900
-#: airtime_mvc/application/models/Playlist.php:843
-#: airtime_mvc/application/models/Playlist.php:868
-msgid "Can't set cue in to be larger than cue out."
-msgstr "Nem lehet beállítani, hogy a felkeverés hosszabb legyen, mint a lekeverés."
-
-#: airtime_mvc/application/models/Block.php:935
-#: airtime_mvc/application/models/Playlist.php:887
-msgid "Can't set cue out to be smaller than cue in."
-msgstr "Nem lehet a lekeverés rövidebb, mint a felkeverés."
-
-#: airtime_mvc/application/models/Block.php:1351
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
-msgid "Select criteria"
-msgstr "A feltételek megadása"
-
-#: airtime_mvc/application/models/Block.php:1353
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
-msgid "Bit Rate (Kbps)"
-msgstr "Bitráta (Kbps)"
-
-#: airtime_mvc/application/models/Block.php:1354
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
-#: airtime_mvc/application/controllers/LocaleController.php:80
-msgid "BPM"
-msgstr "BPM"
-
-#: airtime_mvc/application/models/Block.php:1358
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
-#: airtime_mvc/application/controllers/LocaleController.php:281
-#: airtime_mvc/application/layouts/scripts/layout.phtml:140
-msgid "Cue In"
-msgstr "Felkeverés"
-
-#: airtime_mvc/application/models/Block.php:1359
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:282
-#: airtime_mvc/application/layouts/scripts/layout.phtml:147
-msgid "Cue Out"
-msgstr "Lekeverés"
-
-#: airtime_mvc/application/models/Block.php:1361
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
-#: airtime_mvc/application/controllers/LocaleController.php:84
-msgid "Encoded By"
-msgstr "Kódolva"
-
-#: airtime_mvc/application/models/Block.php:1366
-msgid "Upload Time"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1367
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
-#: airtime_mvc/application/controllers/LocaleController.php:89
-msgid "Last Modified"
-msgstr "Utoljára Módosítva"
-
-#: airtime_mvc/application/models/Block.php:1368
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
-#: airtime_mvc/application/controllers/LocaleController.php:90
-msgid "Last Played"
-msgstr "Utoljára Játszott"
-
-#: airtime_mvc/application/models/Block.php:1370
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
-#: airtime_mvc/application/controllers/LocaleController.php:92
-msgid "Mime"
-msgstr "Mimika"
-
-#: airtime_mvc/application/models/Block.php:1372
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
-#: airtime_mvc/application/controllers/LocaleController.php:94
-msgid "Owner"
-msgstr "Tulajdonos"
-
-#: airtime_mvc/application/models/Block.php:1373
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
-#: airtime_mvc/application/controllers/LocaleController.php:95
-msgid "Replay Gain"
-msgstr "Replay Gain"
-
-#: airtime_mvc/application/models/Block.php:1374
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
-msgid "Sample Rate (kHz)"
-msgstr "Mintavételi Ráta (kHz)"
-
-#: airtime_mvc/application/models/Block.php:1376
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
-#: airtime_mvc/application/controllers/LocaleController.php:97
-msgid "Track Number"
-msgstr "Dalsorszám"
-
-#: airtime_mvc/application/models/Block.php:1377
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
-#: airtime_mvc/application/controllers/LocaleController.php:98
-msgid "Uploaded"
-msgstr "Feltöltve"
-
-#: airtime_mvc/application/models/Block.php:1378
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
-#: airtime_mvc/application/controllers/LocaleController.php:99
-msgid "Website"
-msgstr "Honlap"
-
-#: airtime_mvc/application/models/Block.php:1383
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
-#: airtime_mvc/application/controllers/LocaleController.php:151
-msgid "Select modifier"
-msgstr "Módosítás választása"
-
-#: airtime_mvc/application/models/Block.php:1384
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
-#: airtime_mvc/application/controllers/LocaleController.php:152
-msgid "contains"
-msgstr "tartalmaz"
-
-#: airtime_mvc/application/models/Block.php:1385
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
-#: airtime_mvc/application/controllers/LocaleController.php:153
-msgid "does not contain"
-msgstr "nem tartalmaz"
-
-#: airtime_mvc/application/models/Block.php:1386
-#: airtime_mvc/application/models/Block.php:1390
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
-#: airtime_mvc/application/controllers/LocaleController.php:154
-msgid "is"
-msgstr "az"
-
-#: airtime_mvc/application/models/Block.php:1387
-#: airtime_mvc/application/models/Block.php:1391
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
-#: airtime_mvc/application/controllers/LocaleController.php:155
-msgid "is not"
-msgstr "nem az"
-
-#: airtime_mvc/application/models/Block.php:1388
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
-#: airtime_mvc/application/controllers/LocaleController.php:156
-msgid "starts with"
-msgstr "vele kezdődik"
-
-#: airtime_mvc/application/models/Block.php:1389
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
-#: airtime_mvc/application/controllers/LocaleController.php:157
-msgid "ends with"
-msgstr "vele végződik"
-
-#: airtime_mvc/application/models/Block.php:1392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
-#: airtime_mvc/application/controllers/LocaleController.php:158
-msgid "is greater than"
-msgstr "több, mint"
-
-#: airtime_mvc/application/models/Block.php:1393
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
-#: airtime_mvc/application/controllers/LocaleController.php:159
-msgid "is less than"
-msgstr "kevesebb, mint"
-
-#: airtime_mvc/application/models/Block.php:1394
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
-#: airtime_mvc/application/controllers/LocaleController.php:160
-msgid "is in the range"
-msgstr "közötti tartományban"
-
-#: airtime_mvc/application/models/Scheduler.php:73
-msgid "Cannot move items out of linked shows"
-msgstr "Nem tud áthelyezni elemeket a kapcsolódó műsorokból"
-
-#: airtime_mvc/application/models/Scheduler.php:119
-msgid "The schedule you're viewing is out of date! (sched mismatch)"
-msgstr "A megtekintett ütemterv elavult! (ütem eltérés)"
-
-#: airtime_mvc/application/models/Scheduler.php:124
-msgid "The schedule you're viewing is out of date! (instance mismatch)"
-msgstr "A megtekintett ütemterv elavult! (például eltérés)"
-
-#: airtime_mvc/application/models/Scheduler.php:132
-#: airtime_mvc/application/models/Scheduler.php:458
-#: airtime_mvc/application/models/Scheduler.php:490
-msgid "The schedule you're viewing is out of date!"
-msgstr "A megtekintett ütemterv időpontja elavult!"
-
-#: airtime_mvc/application/models/Scheduler.php:142
+#: airtime_mvc/application/controllers/PlaylistController.php:161
#, php-format
-msgid "You are not allowed to schedule show %s."
-msgstr "Nincs jogosultsága az ütemezett műsorhoz %s."
+msgid "You don't have permission to delete selected %s(s)."
+msgstr "Nincs engedélye, hogy törölje a kiválasztott %s."
-#: airtime_mvc/application/models/Scheduler.php:146
-msgid "You cannot add files to recording shows."
-msgstr "Nem adhat hozzá fájlokat a rögzített műsorokhoz."
+#: airtime_mvc/application/controllers/PlaylistController.php:174
+msgid "You can only add tracks to smart block."
+msgstr "Csak dalszámokat lehet hozzáadni okos táblához."
-#: airtime_mvc/application/models/Scheduler.php:152
+#: airtime_mvc/application/controllers/PlaylistController.php:180
+#: airtime_mvc/application/controllers/LocaleController.php:50
+msgid "You can only add tracks, smart blocks, and webstreams to playlists."
+msgstr "Csak dalszámokat, okos táblákat és adásfolyamokat adhatunk a lejátszási listákhoz."
+
+#: airtime_mvc/application/controllers/PlaylistController.php:192
+msgid "Untitled Playlist"
+msgstr "Névtelen Lejátszási Lista"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:194
+msgid "Untitled Smart Block"
+msgstr "Névtelen Okos Tábla"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:522
+msgid "Unknown Playlist"
+msgstr "Ismeretlen Lejátszási Lista"
+
+#: airtime_mvc/application/controllers/ErrorController.php:78
+msgid "Page not found."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:87
+msgid "The requested action is not supported."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:98
+msgid "You do not have permission to access this resource."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:109
+msgid "An internal application error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/controllers/Apiv2Controller.php:77
+#: airtime_mvc/application/controllers/ApiController.php:79
+msgid "You are not allowed to access this resource."
+msgstr "Az Ön számára nem érhető el az alábbi erőforrás."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:72
+msgid "Preferences updated."
+msgstr "Beállítások frissítve."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:115
+msgid "Support setting updated."
+msgstr "Támogatási beállítások frissítve."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:123
+msgid "Support Feedback"
+msgstr "Támogatási Visszajelzés"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:251
+msgid "Stream Setting Updated."
+msgstr "Adásfolyam Beállítások Frissítve."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:342
+msgid "path should be specified"
+msgstr "az útvonalat meg kell határozni"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:437
+msgid "Problem with Liquidsoap..."
+msgstr "Probléma lépett fel a Liquidsoap-al..."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:493
+msgid "Request method not accepted"
+msgstr ""
+
+#: airtime_mvc/application/controllers/DashboardController.php:35
+#: airtime_mvc/application/controllers/DashboardController.php:84
+msgid "You don't have permission to disconnect source."
+msgstr "Nincs jogosúltsága a forrás bontásához."
+
+#: airtime_mvc/application/controllers/DashboardController.php:37
+#: airtime_mvc/application/controllers/DashboardController.php:86
+msgid "There is no source connected to this input."
+msgstr "Nem csatlakozik forrás az alábbi bemenethez."
+
+#: airtime_mvc/application/controllers/DashboardController.php:81
+msgid "You don't have permission to switch source."
+msgstr "Nincs jogosúltsága a forrás megváltoztatásához."
+
+#: airtime_mvc/application/controllers/LoginController.php:43
+msgid "Please enter your username and password."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:93
+msgid "Wrong username or password provided. Please try again."
+msgstr "Hibás felhasználónév vagy jelszó. Kérjük, próbálja meg újra."
+
+#: airtime_mvc/application/controllers/LoginController.php:167
+msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
+msgstr "Az e-mailt nem lehetett elküldeni. Ellenőrizze a levelező kiszolgáló beállításait."
+
+#: airtime_mvc/application/controllers/LoginController.php:173
+msgid "There was a problem with the username or email address you entered."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ApiController.php:244
+#: airtime_mvc/application/controllers/ApiController.php:317
+#: airtime_mvc/application/controllers/ApiController.php:392
+#: airtime_mvc/application/controllers/ApiController.php:435
+#: airtime_mvc/application/controllers/ApiController.php:474
+#: airtime_mvc/application/controllers/ApiController.php:507
+msgid "You are not allowed to access this resource. "
+msgstr "Az Ön számára nem érhető el az alábbi erőforrás."
+
+#: airtime_mvc/application/controllers/ApiController.php:698
+#: airtime_mvc/application/controllers/ApiController.php:718
+#: airtime_mvc/application/controllers/ApiController.php:730
#, php-format
-msgid "The show %s is over and cannot be scheduled."
-msgstr "A műsor %s véget ért és nem lehet ütemezni."
+msgid "File does not exist in %s"
+msgstr "A fájl nem elérhető itt: %s"
-#: airtime_mvc/application/models/Scheduler.php:159
-#, php-format
-msgid "The show %s has been previously updated!"
-msgstr "A műsor %s már korábban frissítve lett!"
+#: airtime_mvc/application/controllers/ApiController.php:781
+msgid "Bad request. no 'mode' parameter passed."
+msgstr "Helytelen kérés. nincs 'mód' paraméter lett átadva."
-#: airtime_mvc/application/models/Scheduler.php:178
-msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
-msgstr "A kapcsolódó műsorok tartalmait bármelyik adás előtt vagy után kell ütemezni"
-
-#: airtime_mvc/application/models/Scheduler.php:195
-msgid "Cannot schedule a playlist that contains missing files."
-msgstr "Nem lehet ütemezni olyan lejátszási listát, amely tartalmaz hiányzó fájlokat."
-
-#: airtime_mvc/application/models/Scheduler.php:216
-#: airtime_mvc/application/models/Scheduler.php:305
-msgid "A selected File does not exist!"
-msgstr "A kiválasztott fájl nem létezik!"
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
-#: airtime_mvc/application/configs/navigation.php:40
-msgid "Weekly Schedule"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
-#: airtime_mvc/application/forms/Player.php:77
-msgid "Preview:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
-#: airtime_mvc/application/configs/navigation.php:34
-msgid "Player"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
-#: airtime_mvc/application/controllers/LocaleController.php:362
-#: airtime_mvc/application/controllers/LocaleController.php:390
-msgid "Close"
-msgstr "Bezárás"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Add this show"
-msgstr "Adja hozzá ezt a műsort"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Update show"
-msgstr "A műsor frissítése"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
-msgid "What"
-msgstr "Mi"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
-msgid "When"
-msgstr "Mikor"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
-msgid "Live Stream Input"
-msgstr "Élő Adásfolyam Bemenet"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
-msgid "Who"
-msgstr "Kicsoda"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
-msgid "Style"
-msgstr "Stílus"
-
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
-#: airtime_mvc/application/controllers/LocaleController.php:273
-msgid "Start"
-msgstr "Kezdése"
-
-#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
-msgid "Password Reset"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
-msgid "Email Sent!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
-msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
-msgid "Back"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
-msgid "New password"
-msgstr "Új jelszó"
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
-msgid "Please enter and confirm your new password in the fields below."
-msgstr "Kérjük, adja meg és erősítse meg az új jelszavát az alábbi mezőkben."
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:3
-#: airtime_mvc/application/forms/Login.php:83
-msgid "Login"
-msgstr "Bejelentkezés"
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:7
-#, php-format
-msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
-msgstr "Üdvözöljük az %s demó változatában! Jelentkezzen be 'admin' felhasználónévvel és 'admin' jelszóval."
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:97
-msgid "Playout History"
-msgstr "Lejátszási Előzmények"
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
-msgid "Log Sheet"
-msgstr "Napló"
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
-msgid "File Summary"
-msgstr "Fájl Összegző"
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
-msgid "Show Summary"
-msgstr "Műsor Összegző"
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
-msgid "Your trial expires in"
-msgstr "Az Ön próba ideje lejár"
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
-msgid "days"
-msgstr "napok"
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-#, php-format
-msgid "Purchase an %s Pro plan!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-msgid "My Account"
-msgstr "Saját Fiókom"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
-msgid "Previous:"
-msgstr "Előző:"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
-msgid "Next:"
-msgstr "Következő:"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
-msgid "Source Streams"
-msgstr "Az Adásfolyam Forrásai"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
-msgid "Master Source"
-msgstr "Mester Forrás"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
-msgid "Show Source"
-msgstr "Műsor Forrás"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
-msgid "ON AIR"
-msgstr "ADÁSBAN"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
-msgid "Listen"
-msgstr "Hallgat"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
-msgid "Logout"
-msgstr "Kijelentkezés"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
-msgid "Drop files here or click to browse your computer."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
-#: airtime_mvc/application/controllers/LocaleController.php:314
-msgid "in use"
-msgstr "használatban van"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
-#: airtime_mvc/application/controllers/LocaleController.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:401
-msgid "All"
-msgstr "Összes"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
-msgid "Failed"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
-msgid "Pending"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
-msgid "Recent Uploads"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
-#: airtime_mvc/application/configs/navigation.php:120
-msgid "Account Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
-msgid "Upgrade today to get more listeners and storage space!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
-msgid "View Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
-msgid "About"
-msgstr "Rólunk"
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
-#, php-format
-msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
-msgstr "%1$s %2$s, a nyitott rádiós szoftver, az ütemezett és távoli állomás menedzsment."
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
-#, php-format
-msgid "%1$s %2$s is distributed under the %3$s"
-msgstr "%1$s %2$s-ot %3$s mellett terjesztik"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
-#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
-msgid "Live stream"
-msgstr "Élő adásfolyam"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
-msgid "Share"
-msgstr "Megosztás"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
-msgid "Select stream:"
-msgstr "Adásfolyam:"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
-msgid "mute"
-msgstr "elnémítás"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
-msgid "unmute"
-msgstr "elnémítás megszüntetése"
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
-#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
-#, php-format
-msgid "Welcome to %s!"
-msgstr "Üdvözöljük az %s-nál!"
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
-#, php-format
-msgid "Here's how you can get started using %s to automate your broadcasts: "
-msgstr "Itt van, hogyan tudod elindítani adásaid automatizálását használva az %s-t:"
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
-msgid "Upload audio tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
-msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
-msgid "Schedule a show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
-msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
-msgid "Add tracks to your show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
-msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
-msgid "Now you're good to go!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
-#, php-format
-msgid "For more detailed help, read the %suser manual%s."
-msgstr "További segítségért, olvassa el a %shasználati útmutatót%s."
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
-msgid "Listeners"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
-msgid "Stream Data Collection Status"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
-#: airtime_mvc/application/views/scripts/error/error.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
-msgid "An error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
-msgid "Access Denied!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
-msgid "You do not have permission to access this page!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
-#: airtime_mvc/application/views/scripts/error/error.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
-#: airtime_mvc/application/configs/navigation.php:143
-msgid "Help"
-msgstr "Segítség"
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
-msgid "Page not found!"
-msgstr "Az oldal nem található!"
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
-msgid "We couldn't find the page you were looking for."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error.phtml:12
-msgid "Looks like the page you were looking for doesn't exist!"
-msgstr "Úgy néz ki, az oldal, amit keresett nem létezik!"
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
-msgid "Oops!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
-msgid "Something went wrong!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
-msgid "Bad Request!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
-msgid "The requested action is not supported!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
-msgid "Viewing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
-msgid "Editing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:3
-msgid "File import in progress..."
-msgstr "Fájl importálása folyamatban..."
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:10
-#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
-msgid "Advanced Search Options"
-msgstr "Speciális Keresési Beállítások"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
-#: airtime_mvc/application/forms/Player.php:15
-#: airtime_mvc/application/forms/EditAudioMD.php:24
-msgid "Title:"
-msgstr "Cím:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
-#: airtime_mvc/application/forms/EditAudioMD.php:34
-msgid "Creator:"
-msgstr "Előadó/Szerző:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
-#: airtime_mvc/application/forms/EditAudioMD.php:44
-msgid "Album:"
-msgstr "Album:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
-msgid "Track:"
-msgstr "Dalszám:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
-msgid "Length:"
-msgstr "Hossz:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
-msgid "Sample Rate:"
-msgstr "Mintavételi Ráta:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
-msgid "Bit Rate:"
-msgstr "Bitráta:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
-#: airtime_mvc/application/forms/EditAudioMD.php:115
-msgid "Mood:"
-msgstr "Hangulat:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
-#: airtime_mvc/application/forms/EditAudioMD.php:62
-#: airtime_mvc/application/forms/AddShowWhat.php:45
-msgid "Genre:"
-msgstr "Műfaj:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
-#: airtime_mvc/application/forms/EditAudioMD.php:72
-msgid "Year:"
-msgstr "Év:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
-#: airtime_mvc/application/forms/EditAudioMD.php:85
-msgid "Label:"
-msgstr "Kiadó:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
-#: airtime_mvc/application/forms/EditAudioMD.php:125
-msgid "BPM:"
-msgstr "BPM:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
-#: airtime_mvc/application/forms/EditAudioMD.php:95
-msgid "Composer:"
-msgstr "Zeneszerző:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
-#: airtime_mvc/application/forms/EditAudioMD.php:105
-msgid "Conductor:"
-msgstr "Vezénylő:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
-#: airtime_mvc/application/forms/EditAudioMD.php:135
-msgid "Copyright:"
-msgstr "Szerzői jog:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
-msgid "Isrc Number:"
-msgstr "Isrc Szám:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
-#: airtime_mvc/application/forms/EditAudioMD.php:155
-msgid "Website:"
-msgstr "Honlap:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
-#: airtime_mvc/application/forms/EditUser.php:119
-#: airtime_mvc/application/forms/EditAudioMD.php:165
-#: airtime_mvc/application/forms/Login.php:68
-msgid "Language:"
-msgstr "Nyelv:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
-msgid "File Path:"
-msgstr "Fájl Elérési Útvonal:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
-#: airtime_mvc/application/forms/AddShowWhat.php:26
-msgid "Name:"
-msgstr "Név:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
-#: airtime_mvc/application/forms/AddShowWhat.php:54
-msgid "Description:"
-msgstr "Leírás:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
-msgid "Web Stream"
-msgstr "Adásfolyam"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
-msgid "Dynamic Smart Block"
-msgstr "Dinamikus Okos Tábla"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
-msgid "Static Smart Block"
-msgstr "Statikus Okos Tábla"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
-msgid "Audio Track"
-msgstr "Audió Sáv"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
-msgid "Playlist Contents: "
-msgstr "Lejátszási Lista Tartalmak:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
-msgid "Static Smart Block Contents: "
-msgstr "Statikus Okos Tábla Tartalmak:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
-msgid "Dynamic Smart Block Criteria: "
-msgstr "Dinamikus Okos Tábla Kritériumok:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
-msgid "Limit to "
-msgstr "Korlátozva"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
-#: airtime_mvc/application/forms/AddShowWhat.php:36
-msgid "URL:"
-msgstr "URL:"
-
-#: airtime_mvc/application/views/scripts/form/login.phtml:41
-msgid "Forgot your password?"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
-#, php-format
-msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
-#, php-format
-msgid "Click the box below to promote your station on %s."
-msgstr "Jelöld be a mezőt az állomásod közzétételéhez a %s-on."
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
-msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
-msgstr "(Annak érdekében, hogy hírdetni tudja az állomását, a 'Támogatási Visszajelzés Küldését' engedélyeznie kell.)"
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
-msgid "(Required)"
-msgstr "(Kötelező)"
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
-msgid "(for verification purposes only, will not be published)"
-msgstr "(csupán ellenőrzés céljából, nem kerül közzétételre)"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
-msgid "Choose folder"
-msgstr "Válasszon mappát"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
-msgid "Set"
-msgstr "Beállítás"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
-msgid "Current Import Folder:"
-msgstr "Jelenlegi Tároló Mappa:"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
-msgid "Add"
-msgstr "Hozzáadás"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
-#, php-format
-msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
-msgstr "A figyelt mappa újraellenőrzése (Ez akkor hasznos, ha a hálózati csatolás nincs szinkronban az %s-al)"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
-msgid "Remove watched directory"
-msgstr "A figyelt mappa eltávolítása"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
-msgid "You are not watching any media folders."
-msgstr "Ön nem figyel minden média mappát."
-
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
-msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
-msgid "Live Broadcasting"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
-msgid "Use these settings in your broadcasting software to stream live at any time."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
-msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
-msgid "Choose Show Instance"
-msgstr "Adjon hozzá több elemet"
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
-#: airtime_mvc/application/forms/EditHistoryItem.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:400
-msgid "No Show"
-msgstr "Nincs Műsor"
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
-msgid "Find"
-msgstr "Találat"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
-msgid "Choose Days:"
-msgstr "Válasszon Napot:"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
-#: airtime_mvc/application/forms/AddShowStyle.php:64
-#: airtime_mvc/application/forms/GeneralPreferences.php:53
-msgid "Remove"
-msgstr "Eltávolítás"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
-msgid "Stream "
-msgstr "Adásfolyam"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
-msgid "Additional Options"
-msgstr "További Lehetőségek"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
-msgid "The following info will be displayed to listeners in their media player:"
-msgstr "A következő információk megjelennek a hallgatók számára, a saját média lejátszóikban:"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
-msgid "(Your radio station website)"
-msgstr "(A rádióállomás honlapja)"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
-msgid "Stream URL: "
-msgstr "Adásfolyam URL:"
-
-#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
-msgid "Find Shows"
-msgstr "Műsorok Keresése"
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
-msgid "TuneIn Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
-msgid "SoundCloud Settings"
-msgstr "SoundCloud Beállítások"
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
-msgid "Dangerous Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
-msgid "Search Criteria:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
-msgid "New Criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
-msgid "or"
-msgstr "vagy"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
-msgid "and"
-msgstr "és"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
-msgid "New Modifier"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
-msgid " to "
-msgstr "-ig"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
-msgid "files meet the criteria"
-msgstr "fájl megfelel a kritériumoknak"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
-msgid "file meets the criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
-msgid "Filter History"
-msgstr "Előzmények Szűrése"
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
-#: airtime_mvc/application/configs/navigation.php:61
-msgid "My Profile"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
-#, php-format
-msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
-#: airtime_mvc/application/forms/Preferences.php:40
-#: airtime_mvc/application/forms/PasswordChange.php:43
-#: airtime_mvc/application/forms/AddUser.php:110
-#: airtime_mvc/application/forms/BillingClient.php:193
-#: airtime_mvc/application/forms/SupportSettings.php:131
-#: airtime_mvc/application/forms/EditHistory.php:131
-#: airtime_mvc/application/controllers/LocaleController.php:294
-msgid "Save"
-msgstr "Mentés"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
-msgid "Repeat Days:"
-msgstr "Ismétlések Napjai:"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
-msgid "Register Airtime"
-msgstr "Airtime Regisztráció"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
-#: airtime_mvc/application/forms/GeneralPreferences.php:43
-msgid "Note: Anything larger than 600x600 will be resized."
-msgstr "Megjegyzés: Bármi, ami kisebb nagyobb, mint 600x600, átméretezésre kerül."
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
-msgid "Show me what I am sending "
-msgstr "Mutasd meg, hogy mit küldök"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
-msgid "Terms and Conditions"
-msgstr "Felhasználási Feltételek"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
-msgid "Creating File Summary Template"
-msgstr "Összegzési Sablon Fájl Létrehozása"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
-msgid "Creating Log Sheet Template"
-msgstr "Naplózási Sablon Létrehozása"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
-msgid "Name"
-msgstr "Név"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
-msgid "Add more elements"
-msgstr "Adjon hozzá több elemet"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
-msgid "Add New Field"
-msgstr "Új Mező Hozzáadása"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
-msgid "Set Default Template"
-msgstr "Alapértelmezett Sablon"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
-msgid "Playout History Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
-msgid "Log Sheet Templates"
-msgstr "Naplózási Sablonok"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
-msgid "New Log Sheet Template"
-msgstr "Új Naplózási Sablon"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
-msgid "No Log Sheet Templates"
-msgstr "Nincsenek Naplózási Sablonok"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
-#: airtime_mvc/application/controllers/LocaleController.php:397
-msgid "Set Default"
-msgstr "Alapértelmezett"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
-msgid "File Summary Templates"
-msgstr "Összegzési Sablon Fájlok"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
-msgid "New File Summary Template"
-msgstr "Új Összegzési Sablon Fájl"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
-msgid "No File Summary Templates"
-msgstr "Nincsenek Összegzési Sablon Fájlok"
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
-msgid "Disk Space"
-msgstr "Lemezterület"
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
-#: airtime_mvc/application/controllers/LocaleController.php:315
-msgid "Disk"
-msgstr "Lemez"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
-#: airtime_mvc/application/forms/AddShowWhen.php:89
-msgid "Duration:"
-msgstr "Időtartam:"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
-msgid "Toggle Details"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
-msgid "Playlist crossfade"
-msgstr "Lejátszási lista átúsztatása"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-msgid "Remove all content from this smart block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Clear"
-msgstr "Törlés"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "Fade in: "
-msgstr "Felúsztatás:"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "(ss.t)"
-msgstr "(mm.t)"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-msgid "Fade out: "
-msgstr "Leúsztatás:"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
-#: airtime_mvc/application/forms/EditAudioMD.php:186
-#: airtime_mvc/application/forms/EditHistory.php:141
-#: airtime_mvc/application/controllers/LocaleController.php:295
-#: airtime_mvc/application/controllers/LocaleController.php:318
-msgid "Cancel"
-msgstr "Mégse"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
-msgid "No smart block currently open"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
-msgid "Show Waveform"
-msgstr "Mutasd a Hullámalakot"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-msgid "Cue In: "
-msgstr "Felkeverés:"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "(hh:mm:ss.t)"
-msgstr "(óó:pp:mm.t)"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "Cue Out: "
-msgstr "Lekeverés:"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
-msgid "Original Length:"
-msgstr "Eredeti Hossz:"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
-msgid "Expand Static Block"
-msgstr "Statikus Tábla Kibővítése"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
-msgid "Expand Dynamic Block"
-msgstr "Dinamikus Tábla Kibővítése"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
-msgid "Choose some search criteria above and click Generate to create this playlist."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
-msgid "A track list will be generated when you schedule this smart block into a show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
-msgid "Drag tracks here from your library to add them to the playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-msgid "Shuffle playlist"
-msgstr "Véletlenszerű lejátszási lista"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
-msgid "Shuffle"
-msgstr "Véletlenszerű"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Empty playlist content"
-msgstr "Üres lejátszási lista tartalom"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-msgid "Save playlist"
-msgstr "Lejátszási lista mentése"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
-msgid "No open playlist"
-msgstr "Nincs megnyitott lejátszási lista"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
-msgid "previous"
-msgstr "előző"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
-msgid "play"
-msgstr "lejátszás"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
-msgid "pause"
-msgstr "szünet"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
-msgid "next"
-msgstr "következő"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
-msgid "stop"
-msgstr "leállítás"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
-msgid "max volume"
-msgstr "max hangerő"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
-msgid "Update Required"
-msgstr "Frissítés Szükséges"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
-#, php-format
-msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
-msgstr "A lejátszáshoz média szükséges, és frissítenie kell a böngészőjét egy újabb verzióra, vagy frissítse a %sFlash bővítményt%s."
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
-msgid "Stream Settings"
-msgstr "Adásfolyam/Patak Beállítások"
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
-msgid "Global"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
-msgid "dB"
-msgstr "dB"
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
-msgid "Output Streams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
-#: airtime_mvc/application/controllers/LocaleController.php:166
-msgid "Manage Media Folders"
-msgstr "Média Mappák Kezelése"
-
-#: airtime_mvc/application/views/scripts/preference/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:56
-msgid "General"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
-msgid "Description"
-msgstr "Leírás"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
-msgid "Stream URL:"
-msgstr "Adásfolyam URL:"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
-msgid "Default Length:"
-msgstr "Alapértelmezett Hossz:"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
-msgid "No webstream"
-msgstr "Nincs adásfolyam"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
-msgid "Manage Users"
-msgstr "A Felhasználók Kezelése"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
-msgid "New User"
-msgstr "Új Felhasználó"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
-msgid "id"
-msgstr "id"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
-#: airtime_mvc/application/forms/PasswordRestore.php:25
-msgid "Username"
-msgstr "Felhasználónév"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
-msgid "First Name"
-msgstr "Vezetéknév"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
-msgid "Last Name"
-msgstr "Keresztnév"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
-msgid "User Type"
-msgstr "Felhasználói Típus"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
-#, php-format
-msgid "Super Admin details can be changed in your Billing Settings."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
-#: airtime_mvc/application/controllers/LocaleController.php:74
-#: airtime_mvc/application/layouts/scripts/layout.phtml:78
-msgid "Tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
-#: airtime_mvc/application/controllers/LocaleController.php:104
-#: airtime_mvc/application/layouts/scripts/layout.phtml:80
-msgid "Playlists"
-msgstr "Lejátszási listák"
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
-#: airtime_mvc/application/controllers/LocaleController.php:105
-#: airtime_mvc/application/layouts/scripts/layout.phtml:82
-msgid "Smart Blocks"
-msgstr "Okos Táblák"
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
-#: airtime_mvc/application/layouts/scripts/layout.phtml:84
-msgid "Webstreams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
-#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
-#: airtime_mvc/application/layouts/scripts/layout.phtml:76
-msgid "Dashboard"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:12
-msgid "Radio Page"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:19
-msgid "Calendar"
-msgstr "Naptár"
-
-#: airtime_mvc/application/configs/navigation.php:26
-msgid "Widgets"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:48
-msgid "Settings"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:67
-msgid "Users"
-msgstr "Felhasználók"
-
-#: airtime_mvc/application/configs/navigation.php:74
-msgid "Streams"
-msgstr "Adásfolyamok"
-
-#: airtime_mvc/application/configs/navigation.php:82
-msgid "Analytics"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:90
-msgid "Listener Stats"
-msgstr "Hallgatói Statisztikák"
-
-#: airtime_mvc/application/configs/navigation.php:104
-msgid "History Templates"
-msgstr "Naplózási Sablonok"
-
-#: airtime_mvc/application/configs/navigation.php:113
-msgid "Billing"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:127
-msgid "Account Details"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:134
-msgid "View Invoices"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:150
-msgid "Getting Started"
-msgstr "Első Lépések"
-
-#: airtime_mvc/application/configs/navigation.php:157
-msgid "FAQ"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:162
-msgid "User Manual"
-msgstr "Felhasználói Kézikönyv"
-
-#: airtime_mvc/application/configs/navigation.php:167
-msgid "File a Support Ticket"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:12
-msgid "Background Colour:"
-msgstr "Háttérszín:"
-
-#: airtime_mvc/application/forms/AddShowStyle.php:31
-msgid "Text Colour:"
-msgstr "Szövegszín:"
-
-#: airtime_mvc/application/forms/AddShowStyle.php:49
-msgid "Current Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:72
-msgid "Show Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:87
-msgid "Logo Preview:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:19
-msgid "Push metadata to your station on TuneIn?"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:24
-msgid "Station ID:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:30
-msgid "Partner Key:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:36
-msgid "Partner Id:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:77
-#: airtime_mvc/application/forms/TuneInPreferences.php:86
-msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:14
-msgid "Now Playing"
-msgstr "Most Játszott"
-
-#: airtime_mvc/application/forms/Player.php:25
-msgid "Select Stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:28
-msgid "Auto detect the most appropriate stream to use."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:29
-msgid "Select a stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:41
-msgid " - Mobile friendly"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:45
-msgid " - The player does not support Opus streams."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:71
-msgid "Embeddable code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:72
-msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:37
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
-#: airtime_mvc/application/forms/Login.php:41
-#: airtime_mvc/application/forms/AddUser.php:29
-msgid "Username:"
-msgstr "Felhasználónév:"
-
-#: airtime_mvc/application/forms/EditUser.php:48
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
-#: airtime_mvc/application/forms/Login.php:54
-#: airtime_mvc/application/forms/AddUser.php:38
-#: airtime_mvc/application/forms/BillingClient.php:172
-msgid "Password:"
-msgstr "Jelszó:"
-
-#: airtime_mvc/application/forms/EditUser.php:57
-#: airtime_mvc/application/forms/AddUser.php:46
-#: airtime_mvc/application/forms/BillingClient.php:181
-msgid "Verify Password:"
-msgstr "Jelszó Ellenőrzés:"
-
-#: airtime_mvc/application/forms/EditUser.php:67
-#: airtime_mvc/application/forms/AddUser.php:55
-msgid "Firstname:"
-msgstr "Vezetéknév:"
-
-#: airtime_mvc/application/forms/EditUser.php:75
-#: airtime_mvc/application/forms/AddUser.php:61
-msgid "Lastname:"
-msgstr "Keresztnév:"
-
-#: airtime_mvc/application/forms/EditUser.php:83
-#: airtime_mvc/application/forms/RegisterAirtime.php:51
-#: airtime_mvc/application/forms/AddUser.php:67
-#: airtime_mvc/application/forms/SupportSettings.php:43
-msgid "Email:"
-msgstr "E-mail:"
-
-#: airtime_mvc/application/forms/EditUser.php:94
-#: airtime_mvc/application/forms/AddUser.php:76
-msgid "Mobile Phone:"
-msgstr "Mobiltelefon:"
-
-#: airtime_mvc/application/forms/EditUser.php:102
-#: airtime_mvc/application/forms/AddUser.php:82
-msgid "Skype:"
-msgstr "Skype:"
-
-#: airtime_mvc/application/forms/EditUser.php:110
-#: airtime_mvc/application/forms/AddUser.php:88
-msgid "Jabber:"
-msgstr "Jabber:"
-
-#: airtime_mvc/application/forms/EditUser.php:129
-msgid "Interface Timezone:"
-msgstr "Felületi Időzóna:"
-
-#: airtime_mvc/application/forms/EditUser.php:155
-#: airtime_mvc/application/forms/AddUser.php:120
-msgid "Login name is not unique."
-msgstr "A login név nem egyedi."
-
-#: airtime_mvc/application/forms/AddShowRR.php:10
-msgid "Record from Line In?"
-msgstr "Felvétel a vonalbemenetről?"
-
-#: airtime_mvc/application/forms/AddShowRR.php:16
-msgid "Rebroadcast?"
-msgstr "Újraközvetítés?"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:16
-msgid "'%value%' does not fit the time format 'HH:mm'"
-msgstr "'%value%' az időformátum nem illeszkedik 'ÓÓ:pp'"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:22
-msgid "Start Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:37
-msgid "In the Future:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:64
-msgid "End Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:98
-msgid "Timezone:"
-msgstr "Időzóna:"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:107
-msgid "Repeats?"
-msgstr "Ismétlések?"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:139
-msgid "Cannot create show in the past"
-msgstr "Műsort nem lehet a múltban létrehozni"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:147
-msgid "Cannot modify start date/time of the show that is already started"
-msgstr "Nem lehet módosítani a műsor kezdési időpontját, ha a műsor már elindult"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:164
-msgid "Cannot have duration < 0m"
-msgstr "Nem lehet <0p időtartam"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:168
-msgid "Cannot have duration 00h 00m"
-msgstr "Nem lehet 00ó 00p időtartam"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:175
-msgid "Cannot have duration greater than 24h"
-msgstr "Nem tarthat tovább, mint 24h"
-
-#: airtime_mvc/application/forms/AddShowWho.php:10
-msgid "Search Users:"
-msgstr "Felhasználók Keresése:"
-
-#: airtime_mvc/application/forms/AddShowWho.php:24
-msgid "DJs:"
-msgstr "DJ-k:"
-
-#: airtime_mvc/application/forms/PasswordChange.php:17
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
-msgid "Password"
-msgstr "Jelszó"
-
-#: airtime_mvc/application/forms/PasswordChange.php:28
-msgid "Confirm new password"
-msgstr "Új jelszó megerősítése"
-
-#: airtime_mvc/application/forms/PasswordChange.php:36
-msgid "Password confirmation does not match your password."
-msgstr "A megadott jelszavak nem egyeznek meg."
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
-msgid "Station Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
-#: airtime_mvc/application/forms/GeneralPreferences.php:127
-msgid "Station Timezone"
-msgstr "Állomási Időzóna:"
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
-msgid "Auto Switch Off:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
-msgid "Auto Switch On:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
-msgid "Switch Transition Fade (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
-#: airtime_mvc/application/forms/GeneralPreferences.php:68
-#: airtime_mvc/application/forms/GeneralPreferences.php:82
-#: airtime_mvc/application/forms/GeneralPreferences.php:96
-msgid "Please enter a time in seconds (eg. 0.5)"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
-#: airtime_mvc/application/forms/AddShowLiveStream.php:48
-msgid "Host:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
-#: airtime_mvc/application/forms/AddShowLiveStream.php:54
-msgid "Port:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
-#: airtime_mvc/application/forms/AddShowLiveStream.php:60
-msgid "Mount:"
-msgstr ""
-
-#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
-msgid "Value is required and can't be empty"
-msgstr "Adjon meg egy értéket, nem lehet üres"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:25
-#: airtime_mvc/application/forms/RegisterAirtime.php:30
-#: airtime_mvc/application/forms/SupportSettings.php:18
-msgid "Station Name"
-msgstr "Állomás Név"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:33
-msgid "Station Description"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:42
-#: airtime_mvc/application/forms/RegisterAirtime.php:106
-msgid "Station Logo:"
-msgstr "Állomás Logó:"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:62
-msgid "Default Crossfade Duration (s):"
-msgstr "Alapértelmezett Áttünési Időtartam (mp):"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:76
-msgid "Default Fade In (s):"
-msgstr "Alapértelmezett Felúsztatás (mp)"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:90
-msgid "Default Fade Out (s):"
-msgstr "Alapértelmezett Leúsztatás (mp)"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:102
-msgid "Public Airtime API"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:103
-msgid "Required for embeddable schedule widget."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:105
-msgid "Disabled"
-msgstr "Letiltva"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:106
-msgid "Enabled"
-msgstr "Engedélyezve"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:109
-msgid ""
-"Enabling this feature will allow Airtime to provide schedule data\n"
-" to external widgets that can be embedded in your website."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:120
-msgid "Default Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:134
-msgid "Week Starts On"
-msgstr "A Hét Indul"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:150
-msgid "Display login button on your Radio Page?"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:158
-#: airtime_mvc/application/controllers/LocaleController.php:249
-msgid "Sunday"
-msgstr "Vasárnap"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:159
-#: airtime_mvc/application/controllers/LocaleController.php:250
-msgid "Monday"
-msgstr "Hétfő"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:160
-#: airtime_mvc/application/controllers/LocaleController.php:251
-msgid "Tuesday"
-msgstr "Kedd"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:161
-#: airtime_mvc/application/controllers/LocaleController.php:252
-msgid "Wednesday"
-msgstr "Szerda"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:162
-#: airtime_mvc/application/controllers/LocaleController.php:253
-msgid "Thursday"
-msgstr "Csütörtök"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:163
-#: airtime_mvc/application/controllers/LocaleController.php:254
-msgid "Friday"
-msgstr "Péntek"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:164
-#: airtime_mvc/application/controllers/LocaleController.php:255
-msgid "Saturday"
-msgstr "Szombat"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
-msgid "Default License:"
-msgstr "Alapértelmezett Liszensz:"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
-msgid "All rights are reserved"
-msgstr "Minden jog fenntartva"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
-msgid "The work is in the public domain"
-msgstr "A munka a nyilvános felületen folyik"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
-msgid "Creative Commons Attribution"
-msgstr "Creative Commons Tulajdonjog"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
-msgid "Creative Commons Attribution Noncommercial"
-msgstr "Creative Commons Nem Kereskedelmi Tulajdonjog"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
-msgid "Creative Commons Attribution No Derivative Works"
-msgstr "Creative Commons Nem Feldolgozható Tulajdonjog"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
-msgid "Creative Commons Attribution Share Alike"
-msgstr "Creative Commons Eredményeket Megosztó Tulajdonjog"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
-msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
-msgstr "Creative Commons Nem Kereskedelmi Nem Feldolgozható Tulajdonjog"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
-msgid "Creative Commons Attribution Noncommercial Share Alike"
-msgstr "Creative Commons Nem Kereskedelmi Megosztó Tulajdonjog"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
-msgid "Default Sharing Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
-msgid "Public"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
-msgid "Private"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:18
-#: airtime_mvc/application/forms/DateRange.php:16
-msgid "Date Start:"
-msgstr "Kezdés Ideje:"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:37
-#: airtime_mvc/application/forms/ShowBuilder.php:65
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
-#: airtime_mvc/application/forms/DateRange.php:35
-#: airtime_mvc/application/forms/DateRange.php:63
-msgid "Invalid character entered"
-msgstr "Érvénytelen bevitt karakterek"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:46
-#: airtime_mvc/application/forms/AddShowRepeats.php:56
-#: airtime_mvc/application/forms/DateRange.php:44
-msgid "Date End:"
-msgstr "Végzés Ideje:"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:72
-#: airtime_mvc/application/forms/ShowBuilder.php:88
-msgid "Filter by Show"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:80
-msgid "All My Shows:"
-msgstr "Összes Műsorom:"
-
-#: airtime_mvc/application/forms/EditAudioMD.php:145
-msgid "ISRC Number:"
-msgstr "ISRC Szám:"
-
-#: airtime_mvc/application/forms/EditAudioMD.php:176
-msgid "OK"
-msgstr "OK"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
-msgid "Day must be specified"
-msgstr "A napot meg kell határoznia"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
-msgid "Time must be specified"
-msgstr "Az időt meg kell határoznia"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
-msgid "Must wait at least 1 hour to rebroadcast"
-msgstr "Az újraközvetítésre legalább 1 órát kell várni"
-
-#: airtime_mvc/application/forms/AddShowWhat.php:30
-msgid "Untitled Show"
-msgstr "Névtelen Műsor"
-
-#: airtime_mvc/application/forms/AddShowWhat.php:69
-msgid "Instance Description:"
-msgstr ""
-
-#: airtime_mvc/application/forms/DangerousPreferences.php:12
-msgid "Delete All Tracks in Library"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:39
-#: airtime_mvc/application/forms/SupportSettings.php:31
-msgid "Phone:"
-msgstr "Telefon:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:62
-#: airtime_mvc/application/forms/SupportSettings.php:54
-msgid "Station Web Site:"
-msgstr "Az Állomás Honlapja:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:73
-#: airtime_mvc/application/forms/BillingClient.php:102
-#: airtime_mvc/application/forms/SupportSettings.php:65
-msgid "Country:"
-msgstr "Ország:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:84
-#: airtime_mvc/application/forms/BillingClient.php:70
-#: airtime_mvc/application/forms/SupportSettings.php:76
-msgid "City:"
-msgstr "Város:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:96
-#: airtime_mvc/application/forms/SupportSettings.php:88
-msgid "Station Description:"
-msgstr "Állomás Leírás: (lehetőség szerint angolul)"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:116
-#: airtime_mvc/application/forms/SupportSettings.php:98
-#: airtime_mvc/application/controllers/LocaleController.php:341
-msgid "Send support feedback"
-msgstr "Támogatási Visszajelzés Küldése"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:126
-#: airtime_mvc/application/forms/SupportSettings.php:108
-#, php-format
-msgid "Promote my station on %s"
-msgstr "Az állomásom közzététele a %s-on"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:151
-#: airtime_mvc/application/forms/SupportSettings.php:120
-#, php-format
-msgid "By checking this box, I agree to %s's %sprivacy policy%s."
-msgstr "A mező bejelölésével, elfogadom a %s %sadatvédelmi irányelveit%s."
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:169
-#: airtime_mvc/application/forms/SupportSettings.php:143
-msgid "You have to agree to privacy policy."
-msgstr "El kell fogadnia az adatvédelmi irányelveket."
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:10
-msgid "Link:"
-msgstr "Hivatkozás:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:16
-msgid "Repeat Type:"
-msgstr "Ismétlés Típusa:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:19
-msgid "weekly"
-msgstr "hetente"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:20
-msgid "every 2 weeks"
-msgstr "minden második héten"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:21
-msgid "every 3 weeks"
-msgstr "minden harmadik héten"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:22
-msgid "every 4 weeks"
-msgstr "minden negyedik héten"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:23
-msgid "monthly"
-msgstr "havonta"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:32
-msgid "Select Days:"
-msgstr "Napok Kiválasztása:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:35
-#: airtime_mvc/application/controllers/LocaleController.php:256
-msgid "Sun"
-msgstr "Va"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:36
-#: airtime_mvc/application/controllers/LocaleController.php:257
-msgid "Mon"
-msgstr "Hé"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:37
-#: airtime_mvc/application/controllers/LocaleController.php:258
-msgid "Tue"
-msgstr "Ke"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:38
-#: airtime_mvc/application/controllers/LocaleController.php:259
-msgid "Wed"
-msgstr "Sz"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:39
-#: airtime_mvc/application/controllers/LocaleController.php:260
-msgid "Thu"
-msgstr "Cs"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:40
-#: airtime_mvc/application/controllers/LocaleController.php:261
-msgid "Fri"
-msgstr "Pé"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:41
-#: airtime_mvc/application/controllers/LocaleController.php:262
-msgid "Sat"
-msgstr "Sz"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:47
-msgid "Repeat By:"
-msgstr "Által Ismételt:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the month"
-msgstr "a hónap napja"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the week"
-msgstr "a hét napja"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:69
-msgid "No End?"
-msgstr "Nincs Vége?"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:106
-msgid "End date must be after start date"
-msgstr "A befejezési idő után kell, hogy legyen kezdési idő is."
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:113
-msgid "Please select a repeat day"
-msgstr "Kérjük, válasszon egy ismétlési napot"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:10
-#, php-format
-msgid "Use %s Authentication:"
-msgstr "%s Hitelesítés Használata:"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:16
-msgid "Use Custom Authentication:"
-msgstr "Egyéni Hitelesítés Használata:"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:25
-msgid "Custom Username"
-msgstr "Egyéni Felhasználónév"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:37
-msgid "Custom Password"
-msgstr "Egyéni Jelszó"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:77
-msgid "Username field cannot be empty."
-msgstr "A felhasználónév nem lehet üres."
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:82
-msgid "Password field cannot be empty."
-msgstr "A jelszó nem lehet üres."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
-msgid "Enabled:"
-msgstr "Engedélyezett:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
-msgid "Mobile:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
-msgid "Stream Type:"
-msgstr "Adatfolyam Típus:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
-msgid "Service Type:"
-msgstr "Kiszolgálói Típus:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
-msgid "Channels:"
-msgstr "Csatornák:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "1 - Mono"
-msgstr "1 - Monó"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "2 - Stereo"
-msgstr "2 - Sztereó"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
-msgid "Server"
-msgstr "Szerver"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
-msgid "Port"
-msgstr "Port"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
-msgid "Only numbers are allowed."
-msgstr "Csak számok adhatók meg."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
-msgid "URL"
-msgstr "URL"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
-msgid "Mount Point"
-msgstr "Csatolási Pont"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
-msgid "Admin User"
-msgstr "Admin Felhasználó"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
-msgid "Admin Password"
-msgstr "Admin Jelszó"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
-#: airtime_mvc/application/controllers/LocaleController.php:173
-msgid "Getting information from the server..."
-msgstr "Információk lekérdezése a kiszolgálóról..."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
-msgid "Server cannot be empty."
-msgstr "A szerver nem lehet üres."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
-msgid "Port cannot be empty."
-msgstr "A port nem lehet üres."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
-msgid "Mount cannot be empty with Icecast server."
-msgstr "A csatolási pont nem lehet üres Icecast szerver esetében."
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
-msgid "'%value%' is no valid email address in the basic format local-part@hostname"
-msgstr "'%value%' érvénytelen formátum (név@hosztnév)"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
-msgid "'%value%' does not fit the date format '%format%'"
-msgstr "'%value%' nem illeszkedik a dátum formához '%format%'"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
-msgid "'%value%' is less than %min% characters long"
-msgstr "'%value%' rövidebb, mint %min% karakter"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
-msgid "'%value%' is more than %max% characters long"
-msgstr "'% value%' több mint, a %max% karakter"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
-msgid "'%value%' is not between '%min%' and '%max%', inclusively"
-msgstr "'%value%' nem szerepel '%min%' és '%max%', értékek között"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
-msgid "Passwords do not match"
-msgstr "A jelszavak nem egyeznek meg"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
-msgid "hours"
-msgstr "órák"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
-msgid "minutes"
-msgstr "percek"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
-msgid "Randomly"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
-msgid "Newest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
-msgid "Oldest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
-msgid "Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
-msgid "Static"
-msgstr "Statikus"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
-msgid "Dynamic"
-msgstr "Dinamikus"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
-msgid "Allow Repeated Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
-msgid "Sort Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
-msgid "Limit to:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
-msgid "Generate playlist content and save criteria"
-msgstr "Lejátszási lista tartalom létrehozása és kritériumok mentése"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
-msgid "Generate"
-msgstr "Létrehozás"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
-msgid "Shuffle playlist content"
-msgstr "Véletlenszerű lejátszási lista tartalom"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
-msgid "Limit cannot be empty or smaller than 0"
-msgstr "A határérték nem lehet üres vagy kisebb, mint 0"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
-msgid "Limit cannot be more than 24 hrs"
-msgstr "A határérték nem lehet hosszabb, mint 24 óra"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
-msgid "The value should be an integer"
-msgstr "Az érték csak egész szám lehet"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
-msgid "500 is the max item limit value you can set"
-msgstr "Maximum 500 elem állítható be"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
-msgid "You must select Criteria and Modifier"
-msgstr "Ki kell választania a Kritériumot és a Módosítót"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
-msgid "'Length' should be in '00:00:00' format"
-msgstr "'Hosszúság' '00:00:00' formában lehet"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
-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:594
-msgid "The value has to be numeric"
-msgstr "Az értéknek numerikusnak kell lennie"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
-msgid "The value should be less then 2147483648"
-msgstr "Az érték lehet kevesebb, mint 2147483648"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
-#, php-format
-msgid "The value should be less than %s characters"
-msgstr "Az értéknek rövidebb kell lennie, mint %s karakter"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
-msgid "Value cannot be empty"
-msgstr "Az érték nem lehet üres"
-
-#: airtime_mvc/application/forms/Login.php:102
-msgid "Type the characters you see in the picture below."
-msgstr "Gépelje be a képen látható karaktereket."
-
-#: airtime_mvc/application/forms/StreamSetting.php:26
-msgid "Icecast Vorbis Metadata"
-msgstr "Icecast Vorbis Metaadatok"
-
-#: airtime_mvc/application/forms/StreamSetting.php:36
-msgid "Stream Label:"
-msgstr "Adás Címke:"
-
-#: airtime_mvc/application/forms/StreamSetting.php:37
-msgid "Artist - Title"
-msgstr "Előadó - Cím"
-
-#: airtime_mvc/application/forms/StreamSetting.php:38
-msgid "Show - Artist - Title"
-msgstr "Műsor - Előadó - Cím"
-
-#: airtime_mvc/application/forms/StreamSetting.php:39
-msgid "Station name - Show name"
-msgstr "Állomásnév - Műsornév"
-
-#: airtime_mvc/application/forms/StreamSetting.php:45
-msgid "Off Air Metadata"
-msgstr "Adáson Kívüli - Metaadat"
-
-#: airtime_mvc/application/forms/StreamSetting.php:51
-msgid "Enable Replay Gain"
-msgstr "Replay Gain Engedélyezése"
-
-#: airtime_mvc/application/forms/StreamSetting.php:57
-msgid "Replay Gain Modifier"
-msgstr "Replay Gain Módosító"
-
-#: airtime_mvc/application/forms/StreamSetting.php:65
-msgid "Streaming Server:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Airtime Pro Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Custom / 3rd Party Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:95
-msgid "User Type:"
-msgstr "Felhasználói Típus:"
-
-#: airtime_mvc/application/forms/AddUser.php:99
-#: airtime_mvc/application/controllers/LocaleController.php:324
-msgid "Guest"
-msgstr "Vendég"
-
-#: airtime_mvc/application/forms/AddUser.php:100
-#: airtime_mvc/application/controllers/LocaleController.php:322
-msgid "DJ"
-msgstr "DJ"
-
-#: airtime_mvc/application/forms/AddUser.php:101
-#: airtime_mvc/application/controllers/LocaleController.php:323
-msgid "Program Manager"
-msgstr "Programkezelő"
-
-#: airtime_mvc/application/forms/AddUser.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:321
-msgid "Admin"
-msgstr "Admin"
-
-#: airtime_mvc/application/forms/BillingClient.php:17
-msgid "First Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:26
-msgid "Last Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:35
-msgid "Company Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:44
-msgid "Email Address:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:54
-msgid "Address 1:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:63
-msgid "Address 2:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:80
-msgid "State/Region:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:89
-msgid "Zip Code / Postal Code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:112
-msgid "Phone Number:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:121
-msgid "Please choose a security question:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:126
-msgid "What is the name of your favorite childhood friend?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:127
-msgid "What school did you attend for sixth grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:128
-msgid "In what city did you meet your spouse/significant other?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:129
-msgid "What street did you live on in third grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:130
-msgid "What is the first name of the boy or girl that you first kissed?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:131
-msgid "In what city or town was your first job?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:135
-msgid "Please enter an answer:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:152
-msgid "VAT/Tax ID (EU only)"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:162
-msgid "Subscribe to Sourcefabric newsletter"
-msgstr ""
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
-msgid "Import Folder:"
-msgstr "Tároló Mappa:"
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
-msgid "Watched Folders:"
-msgstr "Figyelt Mappák:"
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
-msgid "Not a valid Directory"
-msgstr "Érvénytelen Könyvtár"
-
-#: airtime_mvc/application/forms/PasswordRestore.php:14
-msgid "Email"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordRestore.php:36
-msgid "Reset password"
-msgstr "A jelszó visszaállítása"
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
-msgid "Plan type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
-msgid "Billing cycle:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
-msgid "Payment method:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
-msgid "PayPal"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
-msgid "Credit Card via 2Checkout"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:213
-#, php-format
-msgid "The year %s must be within the range of 1753 - 9999"
-msgstr "Az évnek %s 1753 - 9999 közötti tartományban kell lennie"
-
-#: airtime_mvc/application/common/DateHelper.php:216
-#, php-format
-msgid "%s-%s-%s is not a valid date"
-msgstr "%s-%s-%s érvénytelen dátum"
-
-#: airtime_mvc/application/common/DateHelper.php:240
-#, php-format
-msgid "%s:%s:%s is not a valid time"
-msgstr "%s:%s:%s érvénytelen időpont"
-
-#: airtime_mvc/application/common/UsabilityHints.php:55
-msgid "Upload some tracks below to add them to your library!"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:57
-#, php-format
-msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:63
-msgid "Click the 'New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:65
-#, php-format
-msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:73
-msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:75
-#, php-format
-msgid ""
-"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
-" %sCreate an unlinked show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:80
-msgid "To start broadcasting, click on the current show and select 'Schedule Show'"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:82
-#, php-format
-msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:89
-msgid "Click on the show starting next and select 'Schedule Show'"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:91
-#, php-format
-msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
-msgstr ""
+#: airtime_mvc/application/controllers/ApiController.php:791
+msgid "Bad request. 'mode' parameter is invalid"
+msgstr "Helytelen kérés. 'mód' paraméter érvénytelen."
#: airtime_mvc/application/controllers/LocaleController.php:30
#: airtime_mvc/application/layouts/scripts/audio-player.phtml:5
@@ -2911,11 +562,6 @@ msgstr "%s Elem Hozzáadása"
msgid "You can only add tracks to smart blocks."
msgstr "Csak dalszámokat adhat hozzá az okos táblákhoz."
-#: airtime_mvc/application/controllers/LocaleController.php:50
-#: airtime_mvc/application/controllers/PlaylistController.php:180
-msgid "You can only add tracks, smart blocks, and webstreams to playlists."
-msgstr "Csak dalszámokat, okos táblákat és adásfolyamokat adhatunk a lejátszási listákhoz."
-
#: airtime_mvc/application/controllers/LocaleController.php:53
msgid "Please select a cursor position on timeline."
msgstr "Kérjük, válasszon kurzor pozíciót az idővonalon."
@@ -2956,11 +602,6 @@ msgstr ""
msgid "Click 'New' to create one."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:66
-#: airtime_mvc/application/controllers/LibraryController.php:123
-msgid "Edit Metadata"
-msgstr "Metaadatok Szerkesztése"
-
#: airtime_mvc/application/controllers/LocaleController.php:67
msgid "Add to selected show"
msgstr "Adja hozzá a kiválasztott műsort"
@@ -2989,6 +630,12 @@ msgstr "Biztos benne, hogy törli a kijelölt eleme(ke)t?"
msgid "Scheduled"
msgstr "Ütemezett"
+#: airtime_mvc/application/controllers/LocaleController.php:74
+#: airtime_mvc/application/layouts/scripts/layout.phtml:78
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
+msgid "Tracks"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:75
#: airtime_mvc/application/layouts/scripts/layout.phtml:60
msgid "Playlist"
@@ -2998,18 +645,96 @@ msgstr ""
msgid "Bit Rate"
msgstr "Bitráta"
+#: airtime_mvc/application/controllers/LocaleController.php:80
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
+#: airtime_mvc/application/models/Block.php:1354
+msgid "BPM"
+msgstr "BPM"
+
+#: airtime_mvc/application/controllers/LocaleController.php:84
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
+#: airtime_mvc/application/models/Block.php:1361
+msgid "Encoded By"
+msgstr "Kódolva"
+
+#: airtime_mvc/application/controllers/LocaleController.php:89
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
+#: airtime_mvc/application/models/Block.php:1367
+msgid "Last Modified"
+msgstr "Utoljára Módosítva"
+
+#: airtime_mvc/application/controllers/LocaleController.php:90
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
+#: airtime_mvc/application/models/Block.php:1368
+msgid "Last Played"
+msgstr "Utoljára Játszott"
+
+#: airtime_mvc/application/controllers/LocaleController.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
+#: airtime_mvc/application/models/Block.php:1370
+msgid "Mime"
+msgstr "Mimika"
+
+#: airtime_mvc/application/controllers/LocaleController.php:94
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
+#: airtime_mvc/application/models/Block.php:1372
+msgid "Owner"
+msgstr "Tulajdonos"
+
+#: airtime_mvc/application/controllers/LocaleController.php:95
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
+#: airtime_mvc/application/models/Block.php:1373
+msgid "Replay Gain"
+msgstr "Replay Gain"
+
#: airtime_mvc/application/controllers/LocaleController.php:96
msgid "Sample Rate"
msgstr "Mintavétel"
+#: airtime_mvc/application/controllers/LocaleController.php:97
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
+#: airtime_mvc/application/models/Block.php:1376
+msgid "Track Number"
+msgstr "Dalsorszám"
+
+#: airtime_mvc/application/controllers/LocaleController.php:98
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
+#: airtime_mvc/application/models/Block.php:1377
+msgid "Uploaded"
+msgstr "Feltöltve"
+
+#: airtime_mvc/application/controllers/LocaleController.php:99
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
+#: airtime_mvc/application/models/Block.php:1378
+msgid "Website"
+msgstr "Honlap"
+
#: airtime_mvc/application/controllers/LocaleController.php:101
msgid "Loading..."
msgstr "Betöltés..."
+#: airtime_mvc/application/controllers/LocaleController.php:102
+#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
+msgid "All"
+msgstr "Összes"
+
#: airtime_mvc/application/controllers/LocaleController.php:103
msgid "Files"
msgstr "Fájlok"
+#: airtime_mvc/application/controllers/LocaleController.php:104
+#: airtime_mvc/application/layouts/scripts/layout.phtml:80
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
+msgid "Playlists"
+msgstr "Lejátszási listák"
+
+#: airtime_mvc/application/controllers/LocaleController.php:105
+#: airtime_mvc/application/layouts/scripts/layout.phtml:82
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
+msgid "Smart Blocks"
+msgstr "Okos Táblák"
+
#: airtime_mvc/application/controllers/LocaleController.php:106
msgid "Web Streams"
msgstr "Adásfolyamok"
@@ -3154,6 +879,74 @@ msgstr "Okos tábla elmentve"
msgid "Processing..."
msgstr "Feldolgozás..."
+#: airtime_mvc/application/controllers/LocaleController.php:151
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
+#: airtime_mvc/application/models/Block.php:1383
+msgid "Select modifier"
+msgstr "Módosítás választása"
+
+#: airtime_mvc/application/controllers/LocaleController.php:152
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
+#: airtime_mvc/application/models/Block.php:1384
+msgid "contains"
+msgstr "tartalmaz"
+
+#: airtime_mvc/application/controllers/LocaleController.php:153
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
+#: airtime_mvc/application/models/Block.php:1385
+msgid "does not contain"
+msgstr "nem tartalmaz"
+
+#: airtime_mvc/application/controllers/LocaleController.php:154
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
+#: airtime_mvc/application/models/Block.php:1386
+#: airtime_mvc/application/models/Block.php:1390
+msgid "is"
+msgstr "az"
+
+#: airtime_mvc/application/controllers/LocaleController.php:155
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
+#: airtime_mvc/application/models/Block.php:1387
+#: airtime_mvc/application/models/Block.php:1391
+msgid "is not"
+msgstr "nem az"
+
+#: airtime_mvc/application/controllers/LocaleController.php:156
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
+#: airtime_mvc/application/models/Block.php:1388
+msgid "starts with"
+msgstr "vele kezdődik"
+
+#: airtime_mvc/application/controllers/LocaleController.php:157
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
+#: airtime_mvc/application/models/Block.php:1389
+msgid "ends with"
+msgstr "vele végződik"
+
+#: airtime_mvc/application/controllers/LocaleController.php:158
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
+#: airtime_mvc/application/models/Block.php:1392
+msgid "is greater than"
+msgstr "több, mint"
+
+#: airtime_mvc/application/controllers/LocaleController.php:159
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
+#: airtime_mvc/application/models/Block.php:1393
+msgid "is less than"
+msgstr "kevesebb, mint"
+
+#: airtime_mvc/application/controllers/LocaleController.php:160
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
+#: airtime_mvc/application/models/Block.php:1394
+msgid "is in the range"
+msgstr "közötti tartományban"
+
#: airtime_mvc/application/controllers/LocaleController.php:162
msgid "Choose Storage Folder"
msgstr "Válasszon Tároló Mappát"
@@ -3170,6 +963,11 @@ msgstr ""
"Biztos benne, hogy meg akarja változtatni a tároló mappát?\n"
"Ezzel eltávolítja a fájlokat az Airtime médiatárából!"
+#: airtime_mvc/application/controllers/LocaleController.php:166
+#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
+msgid "Manage Media Folders"
+msgstr "Média Mappák Kezelése"
+
#: airtime_mvc/application/controllers/LocaleController.php:167
msgid "Are you sure you want to remove the watched folder?"
msgstr "Biztos benne, hogy el akarja távolítani a figyelt mappát?"
@@ -3191,6 +989,11 @@ msgstr "Csatlakozva az adás kiszolgálóhoz"
msgid "The stream is disabled"
msgstr "Az adásfolyam ki van kapcsolva"
+#: airtime_mvc/application/controllers/LocaleController.php:173
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
+msgid "Getting information from the server..."
+msgstr "Információk lekérdezése a kiszolgálóról..."
+
#: airtime_mvc/application/controllers/LocaleController.php:174
msgid "Can not connect to the streaming server"
msgstr "Nem lehet kapcsolódni az adásfolyam kiszolgálójához"
@@ -3418,6 +1221,76 @@ msgstr ""
msgid "Month"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:249
+#: airtime_mvc/application/forms/GeneralPreferences.php:158
+msgid "Sunday"
+msgstr "Vasárnap"
+
+#: airtime_mvc/application/controllers/LocaleController.php:250
+#: airtime_mvc/application/forms/GeneralPreferences.php:159
+msgid "Monday"
+msgstr "Hétfő"
+
+#: airtime_mvc/application/controllers/LocaleController.php:251
+#: airtime_mvc/application/forms/GeneralPreferences.php:160
+msgid "Tuesday"
+msgstr "Kedd"
+
+#: airtime_mvc/application/controllers/LocaleController.php:252
+#: airtime_mvc/application/forms/GeneralPreferences.php:161
+msgid "Wednesday"
+msgstr "Szerda"
+
+#: airtime_mvc/application/controllers/LocaleController.php:253
+#: airtime_mvc/application/forms/GeneralPreferences.php:162
+msgid "Thursday"
+msgstr "Csütörtök"
+
+#: airtime_mvc/application/controllers/LocaleController.php:254
+#: airtime_mvc/application/forms/GeneralPreferences.php:163
+msgid "Friday"
+msgstr "Péntek"
+
+#: airtime_mvc/application/controllers/LocaleController.php:255
+#: airtime_mvc/application/forms/GeneralPreferences.php:164
+msgid "Saturday"
+msgstr "Szombat"
+
+#: airtime_mvc/application/controllers/LocaleController.php:256
+#: airtime_mvc/application/forms/AddShowRepeats.php:35
+msgid "Sun"
+msgstr "Va"
+
+#: airtime_mvc/application/controllers/LocaleController.php:257
+#: airtime_mvc/application/forms/AddShowRepeats.php:36
+msgid "Mon"
+msgstr "Hé"
+
+#: airtime_mvc/application/controllers/LocaleController.php:258
+#: airtime_mvc/application/forms/AddShowRepeats.php:37
+msgid "Tue"
+msgstr "Ke"
+
+#: airtime_mvc/application/controllers/LocaleController.php:259
+#: airtime_mvc/application/forms/AddShowRepeats.php:38
+msgid "Wed"
+msgstr "Sz"
+
+#: airtime_mvc/application/controllers/LocaleController.php:260
+#: airtime_mvc/application/forms/AddShowRepeats.php:39
+msgid "Thu"
+msgstr "Cs"
+
+#: airtime_mvc/application/controllers/LocaleController.php:261
+#: airtime_mvc/application/forms/AddShowRepeats.php:40
+msgid "Fri"
+msgstr "Pé"
+
+#: airtime_mvc/application/controllers/LocaleController.php:262
+#: airtime_mvc/application/forms/AddShowRepeats.php:41
+msgid "Sat"
+msgstr "Sz"
+
#: airtime_mvc/application/controllers/LocaleController.php:263
msgid "Shows longer than their scheduled time will be cut off by a following show."
msgstr "Ha egy műsor hosszabb az ütemezett időnél, meg lesz vágva és követi azt a következő műsor."
@@ -3427,7 +1300,7 @@ msgid "Cancel Current Show?"
msgstr "A Jelenlegi Műsor Megszakítása?"
#: airtime_mvc/application/controllers/LocaleController.php:265
-#: airtime_mvc/application/controllers/LocaleController.php:309
+#: airtime_mvc/application/controllers/LocaleController.php:312
msgid "Stop recording current show?"
msgstr "A jelenlegi műsor rögzítésének félbeszakítása?"
@@ -3447,6 +1320,11 @@ msgstr "Az összes tartalom eltávolítása?"
msgid "Delete selected item(s)?"
msgstr "Törli a kiválasztott elem(ek)et?"
+#: airtime_mvc/application/controllers/LocaleController.php:273
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
+msgid "Start"
+msgstr "Kezdése"
+
#: airtime_mvc/application/controllers/LocaleController.php:274
msgid "End"
msgstr "Vége"
@@ -3455,580 +1333,467 @@ msgstr "Vége"
msgid "Duration"
msgstr "Időtartam"
-#: airtime_mvc/application/controllers/LocaleController.php:283
+#: airtime_mvc/application/controllers/LocaleController.php:276
+msgid "Filtering out "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:277
+msgid " of "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:278
+msgid " records"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/layouts/scripts/layout.phtml:140
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
+#: airtime_mvc/application/models/Block.php:1358
+msgid "Cue In"
+msgstr "Felkeverés"
+
+#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/layouts/scripts/layout.phtml:147
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
+#: airtime_mvc/application/models/Block.php:1359
+msgid "Cue Out"
+msgstr "Lekeverés"
+
+#: airtime_mvc/application/controllers/LocaleController.php:286
#: airtime_mvc/application/layouts/scripts/layout.phtml:167
msgid "Fade In"
msgstr "Felúsztatás"
-#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/controllers/LocaleController.php:287
#: airtime_mvc/application/layouts/scripts/layout.phtml:168
msgid "Fade Out"
msgstr "Leúsztatás"
-#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/controllers/LocaleController.php:288
msgid "Show Empty"
msgstr "Üres Műsor"
-#: airtime_mvc/application/controllers/LocaleController.php:286
+#: airtime_mvc/application/controllers/LocaleController.php:289
msgid "Recording From Line In"
msgstr "Rögzítés a Hangbemenetről"
-#: airtime_mvc/application/controllers/LocaleController.php:287
+#: airtime_mvc/application/controllers/LocaleController.php:290
msgid "Track preview"
msgstr "Belehallgatás a számba"
-#: airtime_mvc/application/controllers/LocaleController.php:291
+#: airtime_mvc/application/controllers/LocaleController.php:294
msgid "Cannot schedule outside a show."
msgstr "Nem lehet ütemezni a műsoron kívül."
-#: airtime_mvc/application/controllers/LocaleController.php:292
+#: airtime_mvc/application/controllers/LocaleController.php:295
msgid "Moving 1 Item"
msgstr "1 Elem Áthelyezése"
-#: airtime_mvc/application/controllers/LocaleController.php:293
+#: airtime_mvc/application/controllers/LocaleController.php:296
#, php-format
msgid "Moving %s Items"
msgstr "%s Elemek Áthelyezése"
-#: airtime_mvc/application/controllers/LocaleController.php:296
+#: airtime_mvc/application/controllers/LocaleController.php:297
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
+#: airtime_mvc/application/forms/Preferences.php:40
+#: airtime_mvc/application/forms/EditHistory.php:131
+#: airtime_mvc/application/forms/AddUser.php:110
+#: airtime_mvc/application/forms/PasswordChange.php:43
+#: airtime_mvc/application/forms/SupportSettings.php:131
+msgid "Save"
+msgstr "Mentés"
+
+#: airtime_mvc/application/controllers/LocaleController.php:298
+#: airtime_mvc/application/controllers/LocaleController.php:321
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
+#: airtime_mvc/application/forms/EditHistory.php:141
+#: airtime_mvc/application/forms/EditAudioMD.php:186
+msgid "Cancel"
+msgstr "Mégse"
+
+#: airtime_mvc/application/controllers/LocaleController.php:299
msgid "Fade Editor"
msgstr "Úsztatási Szerkesztő"
-#: airtime_mvc/application/controllers/LocaleController.php:297
+#: airtime_mvc/application/controllers/LocaleController.php:300
msgid "Cue Editor"
msgstr "Keverési Szerkesztő"
-#: airtime_mvc/application/controllers/LocaleController.php:298
+#: airtime_mvc/application/controllers/LocaleController.php:301
msgid "Waveform features are available in a browser supporting the Web Audio API"
msgstr "Hullámalak funkciók állnak rendelkezésre a böngészőben, támogatja a Web Audio API-t"
-#: airtime_mvc/application/controllers/LocaleController.php:301
+#: airtime_mvc/application/controllers/LocaleController.php:304
msgid "Select all"
msgstr "Az összes kijelölése"
-#: airtime_mvc/application/controllers/LocaleController.php:302
+#: airtime_mvc/application/controllers/LocaleController.php:305
msgid "Select none"
msgstr "Egyet sem jelöl ki"
-#: airtime_mvc/application/controllers/LocaleController.php:303
+#: airtime_mvc/application/controllers/LocaleController.php:306
msgid "Trim overbooked shows"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:304
+#: airtime_mvc/application/controllers/LocaleController.php:307
msgid "Remove selected scheduled items"
msgstr "A kijelölt ütemezett elemek eltávolítása"
-#: airtime_mvc/application/controllers/LocaleController.php:305
+#: airtime_mvc/application/controllers/LocaleController.php:308
msgid "Jump to the current playing track"
msgstr "Ugrás a jelenleg hallható számra"
-#: airtime_mvc/application/controllers/LocaleController.php:306
+#: airtime_mvc/application/controllers/LocaleController.php:309
msgid "Cancel current show"
msgstr "A jelenlegi műsor megszakítása"
-#: airtime_mvc/application/controllers/LocaleController.php:311
+#: airtime_mvc/application/controllers/LocaleController.php:314
msgid "Open library to add or remove content"
msgstr "A médiatár megnyitása az elemek hozzáadásához vagy eltávolításához"
-#: airtime_mvc/application/controllers/LocaleController.php:312
+#: airtime_mvc/application/controllers/LocaleController.php:315
msgid "Add / Remove Content"
msgstr "Elemek Hozzáadása / Eltávolítása"
#: airtime_mvc/application/controllers/LocaleController.php:317
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
+msgid "in use"
+msgstr "használatban van"
+
+#: airtime_mvc/application/controllers/LocaleController.php:318
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
+msgid "Disk"
+msgstr "Lemez"
+
+#: airtime_mvc/application/controllers/LocaleController.php:320
msgid "Look in"
msgstr "Nézze meg"
-#: airtime_mvc/application/controllers/LocaleController.php:319
+#: airtime_mvc/application/controllers/LocaleController.php:322
msgid "Open"
msgstr "Megnyitás"
+#: airtime_mvc/application/controllers/LocaleController.php:324
+#: airtime_mvc/application/forms/AddUser.php:102
+msgid "Admin"
+msgstr "Admin"
+
#: airtime_mvc/application/controllers/LocaleController.php:325
+#: airtime_mvc/application/forms/AddUser.php:100
+msgid "DJ"
+msgstr "DJ"
+
+#: airtime_mvc/application/controllers/LocaleController.php:326
+#: airtime_mvc/application/forms/AddUser.php:101
+msgid "Program Manager"
+msgstr "Programkezelő"
+
+#: airtime_mvc/application/controllers/LocaleController.php:327
+#: airtime_mvc/application/forms/AddUser.php:99
+msgid "Guest"
+msgstr "Vendég"
+
+#: airtime_mvc/application/controllers/LocaleController.php:328
msgid "Guests can do the following:"
msgstr "A vendégek a kővetkezőket tehetik:"
-#: airtime_mvc/application/controllers/LocaleController.php:326
+#: airtime_mvc/application/controllers/LocaleController.php:329
msgid "View schedule"
msgstr "Az ütemezés megtekintése"
-#: airtime_mvc/application/controllers/LocaleController.php:327
+#: airtime_mvc/application/controllers/LocaleController.php:330
msgid "View show content"
msgstr "A műsor tartalmának megtekintése"
-#: airtime_mvc/application/controllers/LocaleController.php:328
+#: airtime_mvc/application/controllers/LocaleController.php:331
msgid "DJs can do the following:"
msgstr "A DJ-k a következőket tehetik:"
-#: airtime_mvc/application/controllers/LocaleController.php:329
+#: airtime_mvc/application/controllers/LocaleController.php:332
msgid "Manage assigned show content"
msgstr "Minden kijelölt műsor tartalom kezelése"
-#: airtime_mvc/application/controllers/LocaleController.php:330
+#: airtime_mvc/application/controllers/LocaleController.php:333
msgid "Import media files"
msgstr "Médiafájlok hozzáadása"
-#: airtime_mvc/application/controllers/LocaleController.php:331
+#: airtime_mvc/application/controllers/LocaleController.php:334
msgid "Create playlists, smart blocks, and webstreams"
msgstr "Lejátszási listák, okos táblák és adatfolyamok létrehozása"
-#: airtime_mvc/application/controllers/LocaleController.php:332
+#: airtime_mvc/application/controllers/LocaleController.php:335
msgid "Manage their own library content"
msgstr "Saját médiatár tartalmának kezelése"
-#: airtime_mvc/application/controllers/LocaleController.php:333
+#: airtime_mvc/application/controllers/LocaleController.php:336
msgid "Progam Managers can do the following:"
msgstr "A Program Vezetők a következőket tehetik:"
-#: airtime_mvc/application/controllers/LocaleController.php:334
+#: airtime_mvc/application/controllers/LocaleController.php:337
msgid "View and manage show content"
msgstr "Minden tartalom megtekintése és kezelése"
-#: airtime_mvc/application/controllers/LocaleController.php:335
+#: airtime_mvc/application/controllers/LocaleController.php:338
msgid "Schedule shows"
msgstr "A műsorok ütemzései"
-#: airtime_mvc/application/controllers/LocaleController.php:336
+#: airtime_mvc/application/controllers/LocaleController.php:339
msgid "Manage all library content"
msgstr "A teljes médiatár tartalmának kezelése"
-#: airtime_mvc/application/controllers/LocaleController.php:337
+#: airtime_mvc/application/controllers/LocaleController.php:340
msgid "Admins can do the following:"
msgstr "Az Adminok a következőket tehetik:"
-#: airtime_mvc/application/controllers/LocaleController.php:338
+#: airtime_mvc/application/controllers/LocaleController.php:341
msgid "Manage preferences"
msgstr "Beállítások kezelései"
-#: airtime_mvc/application/controllers/LocaleController.php:339
+#: airtime_mvc/application/controllers/LocaleController.php:342
msgid "Manage users"
msgstr "A felhasználók kezelése"
-#: airtime_mvc/application/controllers/LocaleController.php:340
+#: airtime_mvc/application/controllers/LocaleController.php:343
msgid "Manage watched folders"
msgstr "A figyelt mappák kezelése"
-#: airtime_mvc/application/controllers/LocaleController.php:342
+#: airtime_mvc/application/controllers/LocaleController.php:344
+#: airtime_mvc/application/forms/RegisterAirtime.php:116
+#: airtime_mvc/application/forms/SupportSettings.php:98
+msgid "Send support feedback"
+msgstr "Támogatási Visszajelzés Küldése"
+
+#: airtime_mvc/application/controllers/LocaleController.php:345
msgid "View system status"
msgstr "A rendszer állapot megtekitnése"
-#: airtime_mvc/application/controllers/LocaleController.php:343
+#: airtime_mvc/application/controllers/LocaleController.php:346
msgid "Access playout history"
msgstr "Hozzáférés lejátszási előzményekhez"
-#: airtime_mvc/application/controllers/LocaleController.php:344
+#: airtime_mvc/application/controllers/LocaleController.php:347
msgid "View listener stats"
msgstr "A hallgatói statisztikák megtekintése"
-#: airtime_mvc/application/controllers/LocaleController.php:346
+#: airtime_mvc/application/controllers/LocaleController.php:349
msgid "Show / hide columns"
msgstr "Az oszlopok megjelenítése/elrejtése"
-#: airtime_mvc/application/controllers/LocaleController.php:348
+#: airtime_mvc/application/controllers/LocaleController.php:351
msgid "From {from} to {to}"
msgstr "{from} -tól/-től {to} -ig"
-#: airtime_mvc/application/controllers/LocaleController.php:349
+#: airtime_mvc/application/controllers/LocaleController.php:352
msgid "kbps"
msgstr "kbps"
-#: airtime_mvc/application/controllers/LocaleController.php:350
+#: airtime_mvc/application/controllers/LocaleController.php:353
msgid "yyyy-mm-dd"
msgstr "éééé-hh-nn"
-#: airtime_mvc/application/controllers/LocaleController.php:351
+#: airtime_mvc/application/controllers/LocaleController.php:354
msgid "hh:mm:ss.t"
msgstr "óó:pp:mm.t"
-#: airtime_mvc/application/controllers/LocaleController.php:352
+#: airtime_mvc/application/controllers/LocaleController.php:355
msgid "kHz"
msgstr "kHz"
-#: airtime_mvc/application/controllers/LocaleController.php:355
+#: airtime_mvc/application/controllers/LocaleController.php:358
msgid "Su"
msgstr "Va"
-#: airtime_mvc/application/controllers/LocaleController.php:356
+#: airtime_mvc/application/controllers/LocaleController.php:359
msgid "Mo"
msgstr "Hé"
-#: airtime_mvc/application/controllers/LocaleController.php:357
+#: airtime_mvc/application/controllers/LocaleController.php:360
msgid "Tu"
msgstr "Ke"
-#: airtime_mvc/application/controllers/LocaleController.php:358
+#: airtime_mvc/application/controllers/LocaleController.php:361
msgid "We"
msgstr "Sze"
-#: airtime_mvc/application/controllers/LocaleController.php:359
+#: airtime_mvc/application/controllers/LocaleController.php:362
msgid "Th"
msgstr "Cs"
-#: airtime_mvc/application/controllers/LocaleController.php:360
+#: airtime_mvc/application/controllers/LocaleController.php:363
msgid "Fr"
msgstr "Pé"
-#: airtime_mvc/application/controllers/LocaleController.php:361
+#: airtime_mvc/application/controllers/LocaleController.php:364
msgid "Sa"
msgstr "Szo"
-#: airtime_mvc/application/controllers/LocaleController.php:364
+#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
+msgid "Close"
+msgstr "Bezárás"
+
+#: airtime_mvc/application/controllers/LocaleController.php:367
msgid "Hour"
msgstr "Óra"
-#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:368
msgid "Minute"
msgstr "Perc"
-#: airtime_mvc/application/controllers/LocaleController.php:366
+#: airtime_mvc/application/controllers/LocaleController.php:369
msgid "Done"
msgstr "Kész"
-#: airtime_mvc/application/controllers/LocaleController.php:369
+#: airtime_mvc/application/controllers/LocaleController.php:372
msgid "Select files"
msgstr "Fájlok kiválasztása"
-#: airtime_mvc/application/controllers/LocaleController.php:370
-#: airtime_mvc/application/controllers/LocaleController.php:371
+#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:374
msgid "Add files to the upload queue and click the start button."
msgstr "Adja meg a fájlokat feltöltési sorrendben, majd kattintson a \"Feltöltés indítása\" gombra."
-#: airtime_mvc/application/controllers/LocaleController.php:372
-#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:376
msgid "Status"
msgstr "Állapot"
-#: airtime_mvc/application/controllers/LocaleController.php:374
+#: airtime_mvc/application/controllers/LocaleController.php:377
msgid "Add Files"
msgstr "Fájlok Hozzáadása"
-#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:378
msgid "Stop Upload"
msgstr "Feltöltés Megszakítása"
-#: airtime_mvc/application/controllers/LocaleController.php:376
+#: airtime_mvc/application/controllers/LocaleController.php:379
msgid "Start upload"
msgstr "Feltöltés indítása"
-#: airtime_mvc/application/controllers/LocaleController.php:377
+#: airtime_mvc/application/controllers/LocaleController.php:380
msgid "Add files"
msgstr "Fájlok hozzáadása"
-#: airtime_mvc/application/controllers/LocaleController.php:378
+#: airtime_mvc/application/controllers/LocaleController.php:381
#, php-format
msgid "Uploaded %d/%d files"
msgstr "Feltöltve %d/%d fájl"
-#: airtime_mvc/application/controllers/LocaleController.php:379
+#: airtime_mvc/application/controllers/LocaleController.php:382
msgid "N/A"
msgstr "N/A"
-#: airtime_mvc/application/controllers/LocaleController.php:380
+#: airtime_mvc/application/controllers/LocaleController.php:383
msgid "Drag files here."
msgstr "Húzza a fájlokat ide."
-#: airtime_mvc/application/controllers/LocaleController.php:381
+#: airtime_mvc/application/controllers/LocaleController.php:384
msgid "File extension error."
msgstr "Fájlkiterjesztési hiba."
-#: airtime_mvc/application/controllers/LocaleController.php:382
+#: airtime_mvc/application/controllers/LocaleController.php:385
msgid "File size error."
msgstr "Fájlméreti hiba."
-#: airtime_mvc/application/controllers/LocaleController.php:383
+#: airtime_mvc/application/controllers/LocaleController.php:386
msgid "File count error."
msgstr "Fájl számi hiba."
-#: airtime_mvc/application/controllers/LocaleController.php:384
+#: airtime_mvc/application/controllers/LocaleController.php:387
msgid "Init error."
msgstr "Init hiba."
-#: airtime_mvc/application/controllers/LocaleController.php:385
+#: airtime_mvc/application/controllers/LocaleController.php:388
msgid "HTTP Error."
msgstr "HTTP Hiba."
-#: airtime_mvc/application/controllers/LocaleController.php:386
+#: airtime_mvc/application/controllers/LocaleController.php:389
msgid "Security error."
msgstr "Biztonsági hiba."
-#: airtime_mvc/application/controllers/LocaleController.php:387
+#: airtime_mvc/application/controllers/LocaleController.php:390
msgid "Generic error."
msgstr "Általános hiba."
-#: airtime_mvc/application/controllers/LocaleController.php:388
+#: airtime_mvc/application/controllers/LocaleController.php:391
msgid "IO error."
msgstr "IO hiba."
-#: airtime_mvc/application/controllers/LocaleController.php:389
+#: airtime_mvc/application/controllers/LocaleController.php:392
#, php-format
msgid "File: %s"
msgstr "Fájl: %s"
-#: airtime_mvc/application/controllers/LocaleController.php:391
+#: airtime_mvc/application/controllers/LocaleController.php:394
#, php-format
msgid "%d files queued"
msgstr "%d várakozó fájl"
-#: airtime_mvc/application/controllers/LocaleController.php:392
+#: airtime_mvc/application/controllers/LocaleController.php:395
msgid "File: %f, size: %s, max file size: %m"
msgstr "Fájl: %f,méret: %s, max fájl méret: %m"
-#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/controllers/LocaleController.php:396
msgid "Upload URL might be wrong or doesn't exist"
msgstr "URL feltöltése esetén, felléphet hiba, esetleg nem létezik"
-#: airtime_mvc/application/controllers/LocaleController.php:394
+#: airtime_mvc/application/controllers/LocaleController.php:397
msgid "Error: File too large: "
msgstr "Hiba: A fájl túl nagy:"
-#: airtime_mvc/application/controllers/LocaleController.php:395
+#: airtime_mvc/application/controllers/LocaleController.php:398
msgid "Error: Invalid file extension: "
msgstr "Hiba: Érvénytelen fájl kiterjesztés:"
-#: airtime_mvc/application/controllers/LocaleController.php:398
+#: airtime_mvc/application/controllers/LocaleController.php:400
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
+msgid "Set Default"
+msgstr "Alapértelmezett"
+
+#: airtime_mvc/application/controllers/LocaleController.php:401
msgid "Create Entry"
msgstr "Napló Létrehozása"
-#: airtime_mvc/application/controllers/LocaleController.php:399
+#: airtime_mvc/application/controllers/LocaleController.php:402
msgid "Edit History Record"
msgstr "Előzmények Szerkesztése"
-#: airtime_mvc/application/controllers/LocaleController.php:402
+#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
+#: airtime_mvc/application/forms/EditHistoryItem.php:57
+msgid "No Show"
+msgstr "Nincs Műsor"
+
+#: airtime_mvc/application/controllers/LocaleController.php:405
#, php-format
msgid "Copied %s row%s to the clipboard"
msgstr "%s sor%s van másolva a vágólapra"
-#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/controllers/LocaleController.php:406
#, php-format
msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished."
msgstr "%sNyomtatási előnézet%sKérjük, használja böngészője nyomtatási beállításait. Nyomja meg az Esc-t ha végzett."
-#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/controllers/LocaleController.php:407
msgid "New Show"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:405
+#: airtime_mvc/application/controllers/LocaleController.php:408
msgid "New Log Entry"
msgstr ""
-#: airtime_mvc/application/controllers/ScheduleController.php:389
-#, php-format
-msgid "Rebroadcast of show %s from %s at %s"
-msgstr "A műsor újraközvetítése %s -tól/-től %s a %s"
-
-#: airtime_mvc/application/controllers/ScheduleController.php:712
-#: airtime_mvc/application/controllers/LibraryController.php:131
-msgid "Download"
-msgstr "Letöltés"
-
-#: airtime_mvc/application/controllers/ErrorController.php:78
-msgid "Page not found."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:87
-msgid "The requested action is not supported."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:98
-msgid "You do not have permission to access this resource."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:109
-msgid "An internal application error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ListenerstatController.php:51
-msgid "Please make sure admin user/password is correct on System->Streams page."
-msgstr "Kérjük, győződjön meg arról, hogy az admin felhasználónév/jelszó helyes-e a Rendszer-> Adásfolyamok oldalon."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:53
-#, php-format
-msgid "You are viewing an older version of %s"
-msgstr "Ön egy régebbi verziót tekint meg %s"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:140
-msgid "You cannot add tracks to dynamic blocks."
-msgstr "Nem adhat hozzá dalszámokat a dinamikus táblákhoz."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:147
-#: airtime_mvc/application/controllers/LibraryController.php:31
-#, php-format
-msgid "%s not found"
-msgstr "%s nem található"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:161
-#, php-format
-msgid "You don't have permission to delete selected %s(s)."
-msgstr "Nincs engedélye, hogy törölje a kiválasztott %s."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:168
-#: airtime_mvc/application/controllers/LibraryController.php:40
-msgid "Something went wrong."
-msgstr "Valami hiba történt."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:174
-msgid "You can only add tracks to smart block."
-msgstr "Csak dalszámokat lehet hozzáadni okos táblához."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:192
-msgid "Untitled Playlist"
-msgstr "Névtelen Lejátszási Lista"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:194
-msgid "Untitled Smart Block"
-msgstr "Névtelen Okos Tábla"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:522
-msgid "Unknown Playlist"
-msgstr "Ismeretlen Lejátszási Lista"
-
-#: airtime_mvc/application/controllers/LoginController.php:43
-msgid "Please enter your username and password."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:93
-msgid "Wrong username or password provided. Please try again."
-msgstr "Hibás felhasználónév vagy jelszó. Kérjük, próbálja meg újra."
-
-#: airtime_mvc/application/controllers/LoginController.php:167
-msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
-msgstr "Az e-mailt nem lehetett elküldeni. Ellenőrizze a levelező kiszolgáló beállításait."
-
-#: airtime_mvc/application/controllers/LoginController.php:173
-msgid "There was a problem with the username or email address you entered."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:35
-#: airtime_mvc/application/controllers/DashboardController.php:84
-msgid "You don't have permission to disconnect source."
-msgstr "Nincs jogosúltsága a forrás bontásához."
-
-#: airtime_mvc/application/controllers/DashboardController.php:37
-#: airtime_mvc/application/controllers/DashboardController.php:86
-msgid "There is no source connected to this input."
-msgstr "Nem csatlakozik forrás az alábbi bemenethez."
-
-#: airtime_mvc/application/controllers/DashboardController.php:81
-msgid "You don't have permission to switch source."
-msgstr "Nincs jogosúltsága a forrás megváltoztatásához."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:72
-msgid "Preferences updated."
-msgstr "Beállítások frissítve."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:115
-msgid "Support setting updated."
-msgstr "Támogatási beállítások frissítve."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:123
-msgid "Support Feedback"
-msgstr "Támogatási Visszajelzés"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:251
-msgid "Stream Setting Updated."
-msgstr "Adásfolyam Beállítások Frissítve."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:342
-msgid "path should be specified"
-msgstr "az útvonalat meg kell határozni"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:437
-msgid "Problem with Liquidsoap..."
-msgstr "Probléma lépett fel a Liquidsoap-al..."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:493
-msgid "Request method not accepted"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:86
-msgid "User added successfully!"
-msgstr "Felhasználó sikeresen hozzáadva!"
-
-#: airtime_mvc/application/controllers/UserController.php:88
-msgid "User updated successfully!"
-msgstr "Felhasználó sikeresen módosítva!"
-
-#: airtime_mvc/application/controllers/UserController.php:187
-msgid "Settings updated successfully!"
-msgstr "Beállítások sikeresen módosítva!"
-
-#: airtime_mvc/application/controllers/WebstreamController.php:28
-#: airtime_mvc/application/controllers/WebstreamController.php:32
-msgid "Untitled Webstream"
-msgstr "Névtelen Adásfolyam"
-
-#: airtime_mvc/application/controllers/WebstreamController.php:150
-msgid "Webstream saved."
-msgstr "Adásfolyam mentve."
-
-#: airtime_mvc/application/controllers/WebstreamController.php:158
-msgid "Invalid form values."
-msgstr "Érvénytelen érték forma."
-
-#: airtime_mvc/application/controllers/LibraryController.php:95
-#: airtime_mvc/application/controllers/ShowbuilderController.php:136
-msgid "Preview"
-msgstr "Előnézet"
-
-#: airtime_mvc/application/controllers/LibraryController.php:115
-#: airtime_mvc/application/controllers/LibraryController.php:177
-#: airtime_mvc/application/controllers/LibraryController.php:200
-msgid "Add to Playlist"
-msgstr "Hozzáadás a Lejátszási listához"
-
-#: airtime_mvc/application/controllers/LibraryController.php:117
-msgid "Add to Smart Block"
-msgstr "Hozzáadás az Okos Táblához"
-
-#: airtime_mvc/application/controllers/LibraryController.php:147
-msgid "View track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:148
-msgid "Remove track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:154
-#: airtime_mvc/application/controllers/LibraryController.php:159
-msgid "Upload track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:169
-msgid "Duplicate Playlist"
-msgstr "Lejátszási lista másolatának elkészítése"
-
-#: airtime_mvc/application/controllers/LibraryController.php:213
-msgid "No action available"
-msgstr "Nincs elérhető művelet"
-
-#: airtime_mvc/application/controllers/LibraryController.php:233
-msgid "You don't have permission to delete selected items."
-msgstr "Nincs engedélye, hogy törölje a kiválasztott elemeket."
-
-#: airtime_mvc/application/controllers/LibraryController.php:279
-msgid "Could not delete file because it is scheduled in the future."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:282
-msgid "Could not delete file(s)."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:322
-#, php-format
-msgid "Copy of %s"
-msgstr "Másolás %s"
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
-msgid ""
-"To configure and use the embeddable player you must:
\n"
-" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
-" 2. Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
-msgid ""
-"To use the embeddable weekly schedule widget you must:
\n"
-" Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
#: airtime_mvc/application/controllers/ShowbuilderController.php:138
msgid "Select cursor"
msgstr "Kurzor kiválasztása"
@@ -4041,39 +1806,78 @@ msgstr "Kurzor eltávolítása"
msgid "show does not exist"
msgstr "a műsor nem található"
-#: airtime_mvc/application/controllers/ApiController.php:79
-msgid "You are not allowed to access this resource."
-msgstr "Az Ön számára nem érhető el az alábbi erőforrás."
-
-#: airtime_mvc/application/controllers/ApiController.php:244
-#: airtime_mvc/application/controllers/ApiController.php:317
-#: airtime_mvc/application/controllers/ApiController.php:392
-#: airtime_mvc/application/controllers/ApiController.php:435
-#: airtime_mvc/application/controllers/ApiController.php:474
-#: airtime_mvc/application/controllers/ApiController.php:507
-msgid "You are not allowed to access this resource. "
-msgstr "Az Ön számára nem érhető el az alábbi erőforrás."
-
-#: airtime_mvc/application/controllers/ApiController.php:698
-#: airtime_mvc/application/controllers/ApiController.php:718
-#: airtime_mvc/application/controllers/ApiController.php:730
+#: airtime_mvc/application/controllers/ScheduleController.php:389
#, php-format
-msgid "File does not exist in %s"
-msgstr "A fájl nem elérhető itt: %s"
+msgid "Rebroadcast of show %s from %s at %s"
+msgstr "A műsor újraközvetítése %s -tól/-től %s a %s"
-#: airtime_mvc/application/controllers/ApiController.php:781
-msgid "Bad request. no 'mode' parameter passed."
-msgstr "Helytelen kérés. nincs 'mód' paraméter lett átadva."
-
-#: airtime_mvc/application/controllers/ApiController.php:791
-msgid "Bad request. 'mode' parameter is invalid"
-msgstr "Helytelen kérés. 'mód' paraméter érvénytelen."
-
-#: airtime_mvc/application/layouts/scripts/login.phtml:24
-#, php-format
-msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+#: airtime_mvc/application/common/UsabilityHints.php:55
+msgid "Upload some tracks below to add them to your library!"
msgstr ""
+#: airtime_mvc/application/common/UsabilityHints.php:57
+#, php-format
+msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:63
+msgid "Click the 'New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:65
+#, php-format
+msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:73
+msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:75
+#, php-format
+msgid ""
+"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
+" %sCreate an unlinked show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:80
+msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:82
+#, php-format
+msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:89
+msgid "Click on the show starting next and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:91
+#, php-format
+msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/DateHelper.php:213
+#, php-format
+msgid "The year %s must be within the range of 1753 - 9999"
+msgstr "Az évnek %s 1753 - 9999 közötti tartományban kell lennie"
+
+#: airtime_mvc/application/common/DateHelper.php:216
+#, php-format
+msgid "%s-%s-%s is not a valid date"
+msgstr "%s-%s-%s érvénytelen dátum"
+
+#: airtime_mvc/application/common/DateHelper.php:240
+#, php-format
+msgid "%s:%s:%s is not a valid time"
+msgstr "%s:%s:%s érvénytelen időpont"
+
+#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
+msgid "Live stream"
+msgstr "Élő adásfolyam"
+
#: airtime_mvc/application/layouts/scripts/layout.phtml:63
msgid "Smart Block"
msgstr ""
@@ -4086,6 +1890,17 @@ msgstr ""
msgid "Upload"
msgstr ""
+#: airtime_mvc/application/layouts/scripts/layout.phtml:76
+#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
+msgid "Dashboard"
+msgstr ""
+
+#: airtime_mvc/application/layouts/scripts/layout.phtml:84
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
+msgid "Webstreams"
+msgstr ""
+
#: airtime_mvc/application/layouts/scripts/layout.phtml:135
#: airtime_mvc/application/layouts/scripts/layout.phtml:161
msgid "Play"
@@ -4108,416 +1923,2128 @@ msgstr "Lekeverés Beállítása"
msgid "Cursor"
msgstr "Kurzor"
-#~ msgid "%1$s copyright © %2$s All rights reserved.%3$sMaintained and distributed under the %4$s by %5$s"
-#~ msgstr "%1$s szerzői & másolási jog; %2$s Minden jog fenntartva.%3$sFejleszti és forgalmazza %4$s alatt a %5$s"
+#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#, php-format
+msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
+msgid "Drop files here or click to browse your computer."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
+msgid "Failed"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
+msgid "Pending"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
+msgid "Recent Uploads"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
+msgid "Share"
+msgstr "Megosztás"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
+msgid "Select stream:"
+msgstr "Adásfolyam:"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
+msgid "mute"
+msgstr "elnémítás"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
+msgid "unmute"
+msgstr "elnémítás megszüntetése"
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
+msgid "About"
+msgstr "Rólunk"
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
+#, php-format
+msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
+msgstr "%1$s %2$s, a nyitott rádiós szoftver, az ütemezett és távoli állomás menedzsment."
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
+#, php-format
+msgid "%1$s %2$s is distributed under the %3$s"
+msgstr "%1$s %2$s-ot %3$s mellett terjesztik"
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
+#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
+#, php-format
+msgid "Welcome to %s!"
+msgstr "Üdvözöljük az %s-nál!"
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
+#, php-format
+msgid "Here's how you can get started using %s to automate your broadcasts: "
+msgstr "Itt van, hogyan tudod elindítani adásaid automatizálását használva az %s-t:"
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
+msgid "Upload audio tracks"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
+msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
+msgid "Schedule a show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
+msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
+msgid "Add tracks to your show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
+msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
+msgid "Now you're good to go!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
+#, php-format
+msgid "For more detailed help, read the %suser manual%s."
+msgstr "További segítségért, olvassa el a %shasználati útmutatót%s."
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
+#: airtime_mvc/application/configs/navigation.php:40
+msgid "Weekly Schedule"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
+#: airtime_mvc/application/forms/Player.php:77
+msgid "Preview:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
+#: airtime_mvc/application/configs/navigation.php:34
+msgid "Player"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:97
+msgid "Playout History"
+msgstr "Lejátszási Előzmények"
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
+msgid "Log Sheet"
+msgstr "Napló"
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
+msgid "File Summary"
+msgstr "Fájl Összegző"
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
+msgid "Show Summary"
+msgstr "Műsor Összegző"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
+msgid "Expand Static Block"
+msgstr "Statikus Tábla Kibővítése"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
+msgid "Expand Dynamic Block"
+msgstr "Dinamikus Tábla Kibővítése"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
+msgid "Choose some search criteria above and click Generate to create this playlist."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
+msgid "A track list will be generated when you schedule this smart block into a show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
+msgid "Drag tracks here from your library to add them to the playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
+msgid "Editing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:26
+msgid "Name:"
+msgstr "Név:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
+#: airtime_mvc/application/forms/AddShowWhat.php:54
+msgid "Description:"
+msgstr "Leírás:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
+#: airtime_mvc/application/forms/AddShowWhen.php:89
+msgid "Duration:"
+msgstr "Időtartam:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
+msgid "Toggle Details"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+msgid "Shuffle playlist"
+msgstr "Véletlenszerű lejátszási lista"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
+msgid "Shuffle"
+msgstr "Véletlenszerű"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
+msgid "Playlist crossfade"
+msgstr "Lejátszási lista átúsztatása"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+msgid "Empty playlist content"
+msgstr "Üres lejátszási lista tartalom"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Clear"
+msgstr "Törlés"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+msgid "Fade in: "
+msgstr "Felúsztatás:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "Fade out: "
+msgstr "Leúsztatás:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+msgid "Save playlist"
+msgstr "Lejátszási lista mentése"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
+msgid "No open playlist"
+msgstr "Nincs megnyitott lejátszási lista"
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
+msgid "Show Waveform"
+msgstr "Mutasd a Hullámalakot"
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "(ss.t)"
+msgstr "(mm.t)"
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Remove all content from this smart block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
+msgid "No smart block currently open"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+msgid "Cue In: "
+msgstr "Felkeverés:"
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "(hh:mm:ss.t)"
+msgstr "(óó:pp:mm.t)"
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "Cue Out: "
+msgstr "Lekeverés:"
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
+msgid "Original Length:"
+msgstr "Eredeti Hossz:"
+
+#: airtime_mvc/application/views/scripts/preference/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:56
+msgid "General"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
+msgid "Stream Settings"
+msgstr "Adásfolyam/Patak Beállítások"
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
+msgid "Global"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
+msgid "dB"
+msgstr "dB"
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
+msgid "Output Streams"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:3
+#: airtime_mvc/application/forms/Login.php:83
+msgid "Login"
+msgstr "Bejelentkezés"
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:7
+#, php-format
+msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
+msgstr "Üdvözöljük az %s demó változatában! Jelentkezzen be 'admin' felhasználónévvel és 'admin' jelszóval."
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
+msgid "Email Sent!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
+msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
+msgid "Back"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
+msgid "Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
+msgid "New password"
+msgstr "Új jelszó"
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
+msgid "Please enter and confirm your new password in the fields below."
+msgstr "Kérjük, adja meg és erősítse meg az új jelszavát az alábbi mezőkben."
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
+msgid "Manage Users"
+msgstr "A Felhasználók Kezelése"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
+msgid "New User"
+msgstr "Új Felhasználó"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
+msgid "id"
+msgstr "id"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
+#: airtime_mvc/application/forms/PasswordRestore.php:25
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
+msgid "Username"
+msgstr "Felhasználónév"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
+msgid "First Name"
+msgstr "Vezetéknév"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
+msgid "Last Name"
+msgstr "Keresztnév"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
+msgid "User Type"
+msgstr "Felhasználói Típus"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
+#, php-format
+msgid "Super Admin details can be changed in your Billing Settings."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
+msgid "Find Shows"
+msgstr "Műsorok Keresése"
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
+msgid "Choose Show Instance"
+msgstr "Adjon hozzá több elemet"
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
+msgid "Find"
+msgstr "Találat"
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
+#: airtime_mvc/application/configs/navigation.php:61
+msgid "My Profile"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
+#, php-format
+msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
+msgid "Repeat Days:"
+msgstr "Ismétlések Napjai:"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
+#: airtime_mvc/application/forms/GeneralPreferences.php:53
+#: airtime_mvc/application/forms/AddShowStyle.php:64
+msgid "Remove"
+msgstr "Eltávolítás"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
+msgid "Add"
+msgstr "Hozzáadás"
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
+msgid "Show Source"
+msgstr "Műsor Forrás"
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
+msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
+msgid "Register Airtime"
+msgstr "Airtime Regisztráció"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
+#, php-format
+msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
+#, php-format
+msgid "Click the box below to promote your station on %s."
+msgstr "Jelöld be a mezőt az állomásod közzétételéhez a %s-on."
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
+msgid "(Required)"
+msgstr "(Kötelező)"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
+msgid "(for verification purposes only, will not be published)"
+msgstr "(csupán ellenőrzés céljából, nem kerül közzétételre)"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
+#: airtime_mvc/application/forms/GeneralPreferences.php:43
+msgid "Note: Anything larger than 600x600 will be resized."
+msgstr "Megjegyzés: Bármi, ami kisebb nagyobb, mint 600x600, átméretezésre kerül."
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
+msgid "Show me what I am sending "
+msgstr "Mutasd meg, hogy mit küldök"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
+msgid "Terms and Conditions"
+msgstr "Felhasználási Feltételek"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
+msgid "Choose Days:"
+msgstr "Válasszon Napot:"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
+msgid "Search Criteria:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
+msgid "New Criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
+msgid "or"
+msgstr "vagy"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
+msgid "and"
+msgstr "és"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
+msgid "New Modifier"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
+msgid " to "
+msgstr "-ig"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
+msgid "files meet the criteria"
+msgstr "fájl megfelel a kritériumoknak"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
+msgid "file meets the criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
+msgid "Filter History"
+msgstr "Előzmények Szűrése"
+
+#: airtime_mvc/application/views/scripts/form/login.phtml:41
+msgid "Forgot your password?"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
+msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
+msgstr "(Annak érdekében, hogy hírdetni tudja az állomását, a 'Támogatási Visszajelzés Küldését' engedélyeznie kell.)"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
+msgid "Stream "
+msgstr "Adásfolyam"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
+msgid "Additional Options"
+msgstr "További Lehetőségek"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
+msgid "The following info will be displayed to listeners in their media player:"
+msgstr "A következő információk megjelennek a hallgatók számára, a saját média lejátszóikban:"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
+msgid "(Your radio station website)"
+msgstr "(A rádióállomás honlapja)"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
+msgid "Stream URL: "
+msgstr "Adásfolyam URL:"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
+msgid "Choose folder"
+msgstr "Válasszon mappát"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
+msgid "Set"
+msgstr "Beállítás"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
+msgid "Current Import Folder:"
+msgstr "Jelenlegi Tároló Mappa:"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
+#, php-format
+msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
+msgstr "A figyelt mappa újraellenőrzése (Ez akkor hasznos, ha a hálózati csatolás nincs szinkronban az %s-al)"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
+msgid "Remove watched directory"
+msgstr "A figyelt mappa eltávolítása"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
+msgid "You are not watching any media folders."
+msgstr "Ön nem figyel minden média mappát."
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
+msgid "Live Broadcasting"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
+msgid "Master Source"
+msgstr "Mester Forrás"
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
+msgid "Use these settings in your broadcasting software to stream live at any time."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
+msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
+msgid "TuneIn Settings"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
+msgid "SoundCloud Settings"
+msgstr "SoundCloud Beállítások"
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
+msgid "Dangerous Options"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Add this show"
+msgstr "Adja hozzá ezt a műsort"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Update show"
+msgstr "A műsor frissítése"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
+msgid "What"
+msgstr "Mi"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
+msgid "When"
+msgstr "Mikor"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
+msgid "Live Stream Input"
+msgstr "Élő Adásfolyam Bemenet"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
+msgid "Who"
+msgstr "Kicsoda"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
+msgid "Style"
+msgstr "Stílus"
+
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
+msgid "Disk Space"
+msgstr "Lemezterület"
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:3
+msgid "File import in progress..."
+msgstr "Fájl importálása folyamatban..."
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:10
+#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
+msgid "Advanced Search Options"
+msgstr "Speciális Keresési Beállítások"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
+#: airtime_mvc/application/forms/EditAudioMD.php:24
+#: airtime_mvc/application/forms/Player.php:15
+msgid "Title:"
+msgstr "Cím:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
+#: airtime_mvc/application/forms/EditAudioMD.php:34
+msgid "Creator:"
+msgstr "Előadó/Szerző:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
+#: airtime_mvc/application/forms/EditAudioMD.php:44
+msgid "Album:"
+msgstr "Album:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
+msgid "Track:"
+msgstr "Dalszám:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
+msgid "Length:"
+msgstr "Hossz:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
+msgid "Sample Rate:"
+msgstr "Mintavételi Ráta:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
+msgid "Bit Rate:"
+msgstr "Bitráta:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
+#: airtime_mvc/application/forms/EditAudioMD.php:115
+msgid "Mood:"
+msgstr "Hangulat:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:45
+#: airtime_mvc/application/forms/EditAudioMD.php:62
+msgid "Genre:"
+msgstr "Műfaj:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
+#: airtime_mvc/application/forms/EditAudioMD.php:72
+msgid "Year:"
+msgstr "Év:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
+#: airtime_mvc/application/forms/EditAudioMD.php:85
+msgid "Label:"
+msgstr "Kiadó:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
+#: airtime_mvc/application/forms/EditAudioMD.php:125
+msgid "BPM:"
+msgstr "BPM:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
+#: airtime_mvc/application/forms/EditAudioMD.php:95
+msgid "Composer:"
+msgstr "Zeneszerző:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
+#: airtime_mvc/application/forms/EditAudioMD.php:105
+msgid "Conductor:"
+msgstr "Vezénylő:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
+#: airtime_mvc/application/forms/EditAudioMD.php:135
+msgid "Copyright:"
+msgstr "Szerzői jog:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
+msgid "Isrc Number:"
+msgstr "Isrc Szám:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
+#: airtime_mvc/application/forms/EditAudioMD.php:155
+msgid "Website:"
+msgstr "Honlap:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
+#: airtime_mvc/application/forms/EditAudioMD.php:165
+#: airtime_mvc/application/forms/EditUser.php:119
+#: airtime_mvc/application/forms/Login.php:68
+msgid "Language:"
+msgstr "Nyelv:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
+msgid "File Path:"
+msgstr "Fájl Elérési Útvonal:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
+msgid "Web Stream"
+msgstr "Adásfolyam"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
+msgid "Dynamic Smart Block"
+msgstr "Dinamikus Okos Tábla"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
+msgid "Static Smart Block"
+msgstr "Statikus Okos Tábla"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
+msgid "Audio Track"
+msgstr "Audió Sáv"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
+msgid "Playlist Contents: "
+msgstr "Lejátszási Lista Tartalmak:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
+msgid "Static Smart Block Contents: "
+msgstr "Statikus Okos Tábla Tartalmak:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
+msgid "Dynamic Smart Block Criteria: "
+msgstr "Dinamikus Okos Tábla Kritériumok:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
+msgid "Limit to "
+msgstr "Korlátozva"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
+#: airtime_mvc/application/forms/AddShowWhat.php:36
+msgid "URL:"
+msgstr "URL:"
+
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
+msgid "Viewing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
+msgid "Listeners"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
+msgid "Stream Data Collection Status"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
+msgid "Your trial expires in"
+msgstr "Az Ön próba ideje lejár"
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
+msgid "days"
+msgstr "napok"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
+msgid "Previous:"
+msgstr "Előző:"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
+msgid "Next:"
+msgstr "Következő:"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
+msgid "Source Streams"
+msgstr "Az Adásfolyam Forrásai"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
+msgid "ON AIR"
+msgstr "ADÁSBAN"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
+msgid "Listen"
+msgstr "Hallgat"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
+msgid "Logout"
+msgstr "Kijelentkezés"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
+msgid "Playout History Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
+msgid "Log Sheet Templates"
+msgstr "Naplózási Sablonok"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
+msgid "New Log Sheet Template"
+msgstr "Új Naplózási Sablon"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
+msgid "No Log Sheet Templates"
+msgstr "Nincsenek Naplózási Sablonok"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
+msgid "File Summary Templates"
+msgstr "Összegzési Sablon Fájlok"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
+msgid "New File Summary Template"
+msgstr "Új Összegzési Sablon Fájl"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
+msgid "No File Summary Templates"
+msgstr "Nincsenek Összegzési Sablon Fájlok"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
+msgid "Creating File Summary Template"
+msgstr "Összegzési Sablon Fájl Létrehozása"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
+msgid "Creating Log Sheet Template"
+msgstr "Naplózási Sablon Létrehozása"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
+msgid "Name"
+msgstr "Név"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
+msgid "Add more elements"
+msgstr "Adjon hozzá több elemet"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
+msgid "Add New Field"
+msgstr "Új Mező Hozzáadása"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
+msgid "Set Default Template"
+msgstr "Alapértelmezett Sablon"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
+msgid "Description"
+msgstr "Leírás"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
+msgid "Stream URL:"
+msgstr "Adásfolyam URL:"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
+msgid "Default Length:"
+msgstr "Alapértelmezett Hossz:"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
+msgid "No webstream"
+msgstr "Nincs adásfolyam"
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
+#: airtime_mvc/application/views/scripts/error/error.phtml:6
+msgid "An error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
+msgid "Access Denied!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
+msgid "You do not have permission to access this page!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
+#: airtime_mvc/application/views/scripts/error/error.phtml:14
+#: airtime_mvc/application/configs/navigation.php:143
+msgid "Help"
+msgstr "Segítség"
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
+msgid "Oops!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
+msgid "Something went wrong!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
+msgid "Bad Request!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
+msgid "The requested action is not supported!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
+msgid "Page not found!"
+msgstr "Az oldal nem található!"
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
+msgid "We couldn't find the page you were looking for."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error.phtml:12
+msgid "Looks like the page you were looking for doesn't exist!"
+msgstr "Úgy néz ki, az oldal, amit keresett nem létezik!"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
+msgid "previous"
+msgstr "előző"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
+msgid "play"
+msgstr "lejátszás"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
+msgid "pause"
+msgstr "szünet"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
+msgid "next"
+msgstr "következő"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
+msgid "stop"
+msgstr "leállítás"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
+msgid "max volume"
+msgstr "max hangerő"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
+msgid "Update Required"
+msgstr "Frissítés Szükséges"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
+#, php-format
+msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
+msgstr "A lejátszáshoz média szükséges, és frissítenie kell a böngészőjét egy újabb verzióra, vagy frissítse a %sFlash bővítményt%s."
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
+msgid "Plan type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
+msgid "Billing cycle:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
+msgid "Payment method:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
+msgid "PayPal"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
+msgid "Credit Card via 2Checkout"
+msgstr ""
+
+#: airtime_mvc/application/forms/DateRange.php:16
+#: airtime_mvc/application/forms/ShowBuilder.php:18
+msgid "Date Start:"
+msgstr "Kezdés Ideje:"
+
+#: airtime_mvc/application/forms/DateRange.php:35
+#: airtime_mvc/application/forms/DateRange.php:63
+#: airtime_mvc/application/forms/ShowBuilder.php:37
+#: airtime_mvc/application/forms/ShowBuilder.php:65
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
+msgid "Invalid character entered"
+msgstr "Érvénytelen bevitt karakterek"
+
+#: airtime_mvc/application/forms/DateRange.php:44
+#: airtime_mvc/application/forms/ShowBuilder.php:46
+#: airtime_mvc/application/forms/AddShowRepeats.php:56
+msgid "Date End:"
+msgstr "Végzés Ideje:"
+
+#: airtime_mvc/application/forms/ShowBuilder.php:72
+#: airtime_mvc/application/forms/ShowBuilder.php:88
+msgid "Filter by Show"
+msgstr ""
+
+#: airtime_mvc/application/forms/ShowBuilder.php:80
+msgid "All My Shows:"
+msgstr "Összes Műsorom:"
+
+#: airtime_mvc/application/forms/AddShowWho.php:10
+msgid "Search Users:"
+msgstr "Felhasználók Keresése:"
+
+#: airtime_mvc/application/forms/AddShowWho.php:24
+msgid "DJs:"
+msgstr "DJ-k:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:30
+#: airtime_mvc/application/forms/GeneralPreferences.php:25
+#: airtime_mvc/application/forms/SupportSettings.php:18
+msgid "Station Name"
+msgstr "Állomás Név"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:39
+#: airtime_mvc/application/forms/SupportSettings.php:31
+msgid "Phone:"
+msgstr "Telefon:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:51
+#: airtime_mvc/application/forms/AddUser.php:67
+#: airtime_mvc/application/forms/EditUser.php:83
+#: airtime_mvc/application/forms/SupportSettings.php:43
+msgid "Email:"
+msgstr "E-mail:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:62
+#: airtime_mvc/application/forms/SupportSettings.php:54
+msgid "Station Web Site:"
+msgstr "Az Állomás Honlapja:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:73
+#: airtime_mvc/application/forms/SupportSettings.php:65
+msgid "Country:"
+msgstr "Ország:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:84
+#: airtime_mvc/application/forms/SupportSettings.php:76
+msgid "City:"
+msgstr "Város:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:96
+#: airtime_mvc/application/forms/SupportSettings.php:88
+msgid "Station Description:"
+msgstr "Állomás Leírás: (lehetőség szerint angolul)"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:106
+#: airtime_mvc/application/forms/GeneralPreferences.php:42
+msgid "Station Logo:"
+msgstr "Állomás Logó:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:126
+#: airtime_mvc/application/forms/SupportSettings.php:108
+#, php-format
+msgid "Promote my station on %s"
+msgstr "Az állomásom közzététele a %s-on"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:151
+#: airtime_mvc/application/forms/SupportSettings.php:120
+#, php-format
+msgid "By checking this box, I agree to %s's %sprivacy policy%s."
+msgstr "A mező bejelölésével, elfogadom a %s %sadatvédelmi irányelveit%s."
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:169
+#: airtime_mvc/application/forms/SupportSettings.php:143
+msgid "You have to agree to privacy policy."
+msgstr "El kell fogadnia az adatvédelmi irányelveket."
+
+#: airtime_mvc/application/forms/AddShowRR.php:10
+msgid "Record from Line In?"
+msgstr "Felvétel a vonalbemenetről?"
+
+#: airtime_mvc/application/forms/AddShowRR.php:16
+msgid "Rebroadcast?"
+msgstr "Újraközvetítés?"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
+#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
+msgid "Value is required and can't be empty"
+msgstr "Adjon meg egy értéket, nem lehet üres"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
+msgid "'%value%' is no valid email address in the basic format local-part@hostname"
+msgstr "'%value%' érvénytelen formátum (név@hosztnév)"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
+msgid "'%value%' does not fit the date format '%format%'"
+msgstr "'%value%' nem illeszkedik a dátum formához '%format%'"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
+msgid "'%value%' is less than %min% characters long"
+msgstr "'%value%' rövidebb, mint %min% karakter"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
+msgid "'%value%' is more than %max% characters long"
+msgstr "'% value%' több mint, a %max% karakter"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
+msgid "'%value%' is not between '%min%' and '%max%', inclusively"
+msgstr "'%value%' nem szerepel '%min%' és '%max%', értékek között"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
+msgid "Passwords do not match"
+msgstr "A jelszavak nem egyeznek meg"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
+msgid "Day must be specified"
+msgstr "A napot meg kell határoznia"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
+msgid "Time must be specified"
+msgstr "Az időt meg kell határoznia"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
+msgid "Must wait at least 1 hour to rebroadcast"
+msgstr "Az újraközvetítésre legalább 1 órát kell várni"
+
+#: airtime_mvc/application/forms/PasswordRestore.php:14
+msgid "Email"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordRestore.php:36
+msgid "Reset password"
+msgstr "A jelszó visszaállítása"
+
+#: airtime_mvc/application/forms/AddShowWhat.php:30
+msgid "Untitled Show"
+msgstr "Névtelen Műsor"
+
+#: airtime_mvc/application/forms/AddShowWhat.php:69
+msgid "Instance Description:"
+msgstr ""
+
+#: airtime_mvc/application/forms/DangerousPreferences.php:12
+msgid "Delete All Tracks in Library"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditAudioMD.php:145
+msgid "ISRC Number:"
+msgstr "ISRC Szám:"
+
+#: airtime_mvc/application/forms/EditAudioMD.php:176
+msgid "OK"
+msgstr "OK"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:33
+msgid "Station Description"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:62
+msgid "Default Crossfade Duration (s):"
+msgstr "Alapértelmezett Áttünési Időtartam (mp):"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:68
+#: airtime_mvc/application/forms/GeneralPreferences.php:82
+#: airtime_mvc/application/forms/GeneralPreferences.php:96
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
+msgid "Please enter a time in seconds (eg. 0.5)"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:76
+msgid "Default Fade In (s):"
+msgstr "Alapértelmezett Felúsztatás (mp)"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:90
+msgid "Default Fade Out (s):"
+msgstr "Alapértelmezett Leúsztatás (mp)"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:102
+msgid "Public Airtime API"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:103
+msgid "Required for embeddable schedule widget."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:105
+msgid "Disabled"
+msgstr "Letiltva"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:106
+msgid "Enabled"
+msgstr "Engedélyezve"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:109
+msgid ""
+"Enabling this feature will allow Airtime to provide schedule data\n"
+" to external widgets that can be embedded in your website."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:120
+msgid "Default Language"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:127
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
+msgid "Station Timezone"
+msgstr "Állomási Időzóna:"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:134
+msgid "Week Starts On"
+msgstr "A Hét Indul"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:150
+msgid "Display login button on your Radio Page?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:29
+#: airtime_mvc/application/forms/EditUser.php:37
+#: airtime_mvc/application/forms/Login.php:41
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
+msgid "Username:"
+msgstr "Felhasználónév:"
+
+#: airtime_mvc/application/forms/AddUser.php:38
+#: airtime_mvc/application/forms/EditUser.php:48
+#: airtime_mvc/application/forms/Login.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
+msgid "Password:"
+msgstr "Jelszó:"
+
+#: airtime_mvc/application/forms/AddUser.php:46
+#: airtime_mvc/application/forms/EditUser.php:57
+msgid "Verify Password:"
+msgstr "Jelszó Ellenőrzés:"
+
+#: airtime_mvc/application/forms/AddUser.php:55
+#: airtime_mvc/application/forms/EditUser.php:67
+msgid "Firstname:"
+msgstr "Vezetéknév:"
+
+#: airtime_mvc/application/forms/AddUser.php:61
+#: airtime_mvc/application/forms/EditUser.php:75
+msgid "Lastname:"
+msgstr "Keresztnév:"
+
+#: airtime_mvc/application/forms/AddUser.php:76
+#: airtime_mvc/application/forms/EditUser.php:94
+msgid "Mobile Phone:"
+msgstr "Mobiltelefon:"
+
+#: airtime_mvc/application/forms/AddUser.php:82
+#: airtime_mvc/application/forms/EditUser.php:102
+msgid "Skype:"
+msgstr "Skype:"
+
+#: airtime_mvc/application/forms/AddUser.php:88
+#: airtime_mvc/application/forms/EditUser.php:110
+msgid "Jabber:"
+msgstr "Jabber:"
+
+#: airtime_mvc/application/forms/AddUser.php:95
+msgid "User Type:"
+msgstr "Felhasználói Típus:"
+
+#: airtime_mvc/application/forms/AddUser.php:120
+#: airtime_mvc/application/forms/EditUser.php:155
+msgid "Login name is not unique."
+msgstr "A login név nem egyedi."
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
+msgid "Import Folder:"
+msgstr "Tároló Mappa:"
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
+msgid "Watched Folders:"
+msgstr "Figyelt Mappák:"
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
+msgid "Not a valid Directory"
+msgstr "Érvénytelen Könyvtár"
+
+#: airtime_mvc/application/forms/BillingClient.php:126
+msgid "What is the name of your favorite childhood friend?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:127
+msgid "What school did you attend for sixth grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:128
+msgid "In what city did you meet your spouse/significant other?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:129
+msgid "What street did you live on in third grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:130
+msgid "What is the first name of the boy or girl that you first kissed?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:131
+msgid "In what city or town was your first job?"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
+msgid "Default License:"
+msgstr "Alapértelmezett Liszensz:"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
+msgid "All rights are reserved"
+msgstr "Minden jog fenntartva"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
+msgid "The work is in the public domain"
+msgstr "A munka a nyilvános felületen folyik"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
+msgid "Creative Commons Attribution"
+msgstr "Creative Commons Tulajdonjog"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
+msgid "Creative Commons Attribution Noncommercial"
+msgstr "Creative Commons Nem Kereskedelmi Tulajdonjog"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
+msgid "Creative Commons Attribution No Derivative Works"
+msgstr "Creative Commons Nem Feldolgozható Tulajdonjog"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
+msgid "Creative Commons Attribution Share Alike"
+msgstr "Creative Commons Eredményeket Megosztó Tulajdonjog"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
+msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
+msgstr "Creative Commons Nem Kereskedelmi Nem Feldolgozható Tulajdonjog"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
+msgid "Creative Commons Attribution Noncommercial Share Alike"
+msgstr "Creative Commons Nem Kereskedelmi Megosztó Tulajdonjog"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
+msgid "Default Sharing Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
+msgid "Public"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
+msgid "Private"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditUser.php:129
+msgid "Interface Timezone:"
+msgstr "Felületi Időzóna:"
+
+#: airtime_mvc/application/forms/Player.php:14
+msgid "Now Playing"
+msgstr "Most Játszott"
+
+#: airtime_mvc/application/forms/Player.php:25
+msgid "Select Stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:28
+msgid "Auto detect the most appropriate stream to use."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:29
+msgid "Select a stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:41
+msgid " - Mobile friendly"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:45
+msgid " - The player does not support Opus streams."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:71
+msgid "Embeddable code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:72
+msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
+#: airtime_mvc/application/models/Block.php:1351
+msgid "Select criteria"
+msgstr "A feltételek megadása"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
+#: airtime_mvc/application/models/Block.php:1353
+msgid "Bit Rate (Kbps)"
+msgstr "Bitráta (Kbps)"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
+#: airtime_mvc/application/models/Block.php:1374
+msgid "Sample Rate (kHz)"
+msgstr "Mintavételi Ráta (kHz)"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
+msgid "hours"
+msgstr "órák"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
+msgid "minutes"
+msgstr "percek"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
+#: airtime_mvc/application/models/Block.php:333
+msgid "items"
+msgstr "elemek"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
+msgid "Randomly"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
+msgid "Newest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
+msgid "Oldest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
+msgid "Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
+msgid "Static"
+msgstr "Statikus"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
+msgid "Dynamic"
+msgstr "Dinamikus"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
+msgid "Allow Repeated Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
+msgid "Sort Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
+msgid "Limit to:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
+msgid "Generate playlist content and save criteria"
+msgstr "Lejátszási lista tartalom létrehozása és kritériumok mentése"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
+msgid "Generate"
+msgstr "Létrehozás"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
+msgid "Shuffle playlist content"
+msgstr "Véletlenszerű lejátszási lista tartalom"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
+msgid "Limit cannot be empty or smaller than 0"
+msgstr "A határérték nem lehet üres vagy kisebb, mint 0"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
+msgid "Limit cannot be more than 24 hrs"
+msgstr "A határérték nem lehet hosszabb, mint 24 óra"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
+msgid "The value should be an integer"
+msgstr "Az érték csak egész szám lehet"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
+msgid "500 is the max item limit value you can set"
+msgstr "Maximum 500 elem állítható be"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
+msgid "You must select Criteria and Modifier"
+msgstr "Ki kell választania a Kritériumot és a Módosítót"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
+msgid "'Length' should be in '00:00:00' format"
+msgstr "'Hosszúság' '00:00:00' formában lehet"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
+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:594
+msgid "The value has to be numeric"
+msgstr "Az értéknek numerikusnak kell lennie"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
+msgid "The value should be less then 2147483648"
+msgstr "Az érték lehet kevesebb, mint 2147483648"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
+#, php-format
+msgid "The value should be less than %s characters"
+msgstr "Az értéknek rövidebb kell lennie, mint %s karakter"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
+msgid "Value cannot be empty"
+msgstr "Az érték nem lehet üres"
+
+#: airtime_mvc/application/forms/StreamSetting.php:26
+msgid "Icecast Vorbis Metadata"
+msgstr "Icecast Vorbis Metaadatok"
+
+#: airtime_mvc/application/forms/StreamSetting.php:36
+msgid "Stream Label:"
+msgstr "Adás Címke:"
+
+#: airtime_mvc/application/forms/StreamSetting.php:37
+msgid "Artist - Title"
+msgstr "Előadó - Cím"
+
+#: airtime_mvc/application/forms/StreamSetting.php:38
+msgid "Show - Artist - Title"
+msgstr "Műsor - Előadó - Cím"
+
+#: airtime_mvc/application/forms/StreamSetting.php:39
+msgid "Station name - Show name"
+msgstr "Állomásnév - Műsornév"
+
+#: airtime_mvc/application/forms/StreamSetting.php:45
+msgid "Off Air Metadata"
+msgstr "Adáson Kívüli - Metaadat"
+
+#: airtime_mvc/application/forms/StreamSetting.php:51
+msgid "Enable Replay Gain"
+msgstr "Replay Gain Engedélyezése"
+
+#: airtime_mvc/application/forms/StreamSetting.php:57
+msgid "Replay Gain Modifier"
+msgstr "Replay Gain Módosító"
+
+#: airtime_mvc/application/forms/StreamSetting.php:65
+msgid "Streaming Server:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Airtime Pro Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Custom / 3rd Party Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordChange.php:17
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
+msgid "Password"
+msgstr "Jelszó"
-#~ msgid "Show:"
-#~ msgstr "Műsor:"
+#: airtime_mvc/application/forms/PasswordChange.php:28
+msgid "Confirm new password"
+msgstr "Új jelszó megerősítése"
-#~ msgid "enter a time in seconds 0{.0}"
-#~ msgstr "adja meg másodpercben 0{0,0}"
+#: airtime_mvc/application/forms/PasswordChange.php:36
+msgid "Password confirmation does not match your password."
+msgstr "A megadott jelszavak nem egyeznek meg."
-#~ msgid "Allow Remote Websites To Access \"Schedule\" Info?%s (Enable this to make front-end widgets work.)"
-#~ msgstr "Távoli Weboldalak Engedélyezése \"Ütemzés\" Info?%s (Engedélyezi vele a front-end alkalmazás-kiegészítő munkáját.)"
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
+msgid "Station Language"
+msgstr ""
-#~ msgid "Default Interface Language"
-#~ msgstr "Alapértelmezett Nyelvi Felület"
-
-#~ msgid "Get new password"
-#~ msgstr "Új jelszó igénylése"
-
-#~ msgid "Set smart block type:"
-#~ msgstr "Okos tábla típusa:"
-
-#~ msgid "Allow Repeat Tracks:"
-#~ msgstr "A Dalszámok Ismétlődhetnek:"
-
-#~ msgid "Limit to"
-#~ msgstr "Korlátozva"
-
-#~ msgid "Auto Switch Off"
-#~ msgstr "Auto Kikapcs."
-
-#~ msgid "Auto Switch On"
-#~ msgstr "Auto Bekapcs."
-
-#~ msgid "Switch Transition Fade (s)"
-#~ msgstr "Úsztatási Átmenet Kapcsoló"
-
-#~ msgid "enter a time in seconds 00{.000000}"
-#~ msgstr "adja meg az időt másodpercekben 00{.000000}"
-
-#~ msgid "Master Username"
-#~ msgstr "Mester Felhasználónév"
-
-#~ msgid "Master Password"
-#~ msgstr "Mester Jelszó"
-
-#~ msgid "Master Source Connection URL"
-#~ msgstr "Mester Csatlakozás Forrása URL"
-
-#~ msgid "Show Source Connection URL"
-#~ msgstr "Műsor Csatlakozás Forrása URL"
-
-#~ msgid "Master Source Port"
-#~ msgstr "Mester Forrás Port"
-
-#~ msgid "Master Source Mount Point"
-#~ msgstr "Mester Forrási Csatolási Pont"
-
-#~ msgid "Show Source Port"
-#~ msgstr "Műsor Forrás Port"
-
-#~ msgid "Show Source Mount Point"
-#~ msgstr "Műsor Forrási Csatolási Pont"
-
-#~ msgid "You cannot use same port as Master DJ port."
-#~ msgstr "Nem használhatja ugyanazt a portot, mint a Master DJ."
-
-#~ msgid "Port %s is not available"
-#~ msgstr "A Port %s jelenleg nem elérhető"
-
-#~ msgid "E-mail"
-#~ msgstr "E-mail"
-
-#~ msgid "Restore password"
-#~ msgstr "Jelszó visszaállítás"
-
-#~ msgid "Hardware Audio Output"
-#~ msgstr "Hardver Hangkimenet"
-
-#~ msgid "Output Type"
-#~ msgstr "Kimenet Típusa"
-
-#~ msgid "Date/Time Start:"
-#~ msgstr "Dátum/Idő Kezdés:"
-
-#~ msgid "Date/Time End:"
-#~ msgstr "Dátum/Idő Végzés:"
-
-#~ msgid "Automatically Upload Recorded Shows"
-#~ msgstr "Rögzített Műsorok Automatikus Feltöltése"
-
-#~ msgid "Enable SoundCloud Upload"
-#~ msgstr "SoundCloud Feltöltés Engedélyezése"
-
-#~ msgid "Automatically Mark Files \"Downloadable\" on SoundCloud"
-#~ msgstr "Automatikusan Megjelölt Fájlok \"Letölthetőek\" a SoundCloud-on"
-
-#~ msgid "SoundCloud Email"
-#~ msgstr "SoundCloud E-mail"
-
-#~ msgid "SoundCloud Password"
-#~ msgstr "SoundCloud Jelszó"
-
-#~ msgid "SoundCloud Tags: (separate tags with spaces)"
-#~ msgstr "SoundCloud Címkék: (a címkék elválasztása szóközökkel)"
-
-#~ msgid "Default Genre:"
-#~ msgstr "Alapértelmezett Műfaj:"
-
-#~ msgid "Default Track Type:"
-#~ msgstr "Alapértelmezett Szám Típus:"
-
-#~ msgid "Original"
-#~ msgstr "Eredeti"
-
-#~ msgid "Remix"
-#~ msgstr "Remix"
-
-#~ msgid "Live"
-#~ msgstr "Élő"
-
-#~ msgid "Recording"
-#~ msgstr "Rögzített"
-
-#~ msgid "Spoken"
-#~ msgstr "Beszélt"
-
-#~ msgid "Podcast"
-#~ msgstr "Podcast"
-
-#~ msgid "Demo"
-#~ msgstr "Demó"
-
-#~ msgid "Work in progress"
-#~ msgstr "Munka folyamatban"
-
-#~ msgid "Stem"
-#~ msgstr "Eredet"
-
-#~ msgid "Loop"
-#~ msgstr "Hurok"
-
-#~ msgid "Sound Effect"
-#~ msgstr "Hang Hatás"
-
-#~ msgid "One Shot Sample"
-#~ msgstr "Egy Lövés Minta"
-
-#~ msgid "Other"
-#~ msgstr "Más egyéb"
-
-#~ msgid "Enable System Emails (Password Reset)"
-#~ msgstr "E-mail Rendszer Engedélyezése (Jelszó Visszaállítás)"
-
-#~ msgid "Reset Password 'From' Email"
-#~ msgstr "Jelszó Visszaállítási E-mail"
-
-#~ msgid "Configure Mail Server"
-#~ msgstr "Levelezési Kiszolgáló Beállítása"
-
-#~ msgid "Requires Authentication"
-#~ msgstr "Hitelesítést Igényel"
-
-#~ msgid "Mail Server"
-#~ msgstr "Levelezési Kiszolgáló"
-
-#~ msgid "Email Address"
-#~ msgstr "E-mail Cím"
-
-#~ msgid "Please enter your user name and password"
-#~ msgstr "Kérjük, adja meg felhasználónevét és jelszavát"
-
-#~ msgid "Given email not found."
-#~ msgstr "Tekintve, hogy e-mail nem található."
-
-#~ msgid "Page not found"
-#~ msgstr "Az oldal nem található"
-
-#~ msgid "Application error"
-#~ msgstr "Alkalmazás hiba"
-
-#~ msgid "Playlist / Block"
-#~ msgstr "Lejátszási lista / Tábla"
-
-#~ msgid "If you change the username or password values for an enabled stream the playout engine will be rebooted and your listeners will hear silence for 5-10 seconds. Changing the following fields will NOT cause a reboot: Stream Label (Global Settings), and Switch Transition Fade(s), Master Username, and Master Password (Input Stream Settings). If Airtime is recording, and if the change causes a playout engine restart, the recording will be interrupted."
-#~ msgstr "Ha megváltoztatja a felhasználónév vagy a jelszó értékeit, az engedélyezett adatfolyam és a lejátszási motor újraindul, és a hallgatók 5-10 másodpercig csendet fognak hallani. Módosítása az alábbi mezőket, ez NEM okoz újraindítást: Adásfolyam Címke (Általános Beállítások), és a Úsztatási Átmenet Kapcsoló, Mester Felhasználónév, Mester Jelszó (Bejövő Adatfolyam Beállítások). Ha az Airtime éppen rögzít, és ha a változás miatt újra kell indítani a lejátszási motort, akkor a vételezés megszakad."
-
-#~ msgid "today"
-#~ msgstr "ma"
-
-#~ msgid "day"
-#~ msgstr "nap"
-
-#~ msgid "week"
-#~ msgstr "hét"
-
-#~ msgid "month"
-#~ msgstr "hónap"
-
-#~ msgid "Remove overbooked tracks"
-#~ msgstr "A túlzsúfolt dalszámok eltávolítása"
-
-#~ msgid "Soundcloud"
-#~ msgstr "Soundcloud"
-
-#~ msgid "View on Soundcloud"
-#~ msgstr "Megtekintés a SoundCloud-on"
-
-#~ msgid "Re-upload to SoundCloud"
-#~ msgstr "Újra-feltöltés a SoundCloud-ra"
-
-#~ msgid "Upload to SoundCloud"
-#~ msgstr "Feltöltés a SoundCloud-ra"
-
-#~ msgid "Could not delete some scheduled files."
-#~ msgstr "Nem sikerült törölni néhány ütemezett fájlt."
-
-#~ msgid "Add Media"
-#~ msgstr "Média Hozzáadása"
-
-#~ msgid "Library"
-#~ msgstr "Médiatár"
-
-#~ msgid "System"
-#~ msgstr "Rendszer"
-
-#~ msgid "Preferences"
-#~ msgstr "Beállítások"
-
-#~ msgid "Media Folders"
-#~ msgstr "Média Mappák"
-
-#~ msgid "History"
-#~ msgstr "Előzmények"
-
-#~ msgid "Service"
-#~ msgstr "Szolgáltatás"
-
-#~ msgid "Uptime"
-#~ msgstr "Üzemidő"
-
-#~ msgid "CPU"
-#~ msgstr "CPU"
-
-#~ msgid "Memory"
-#~ msgstr "Memória"
-
-#~ msgid "%s Version"
-#~ msgstr "%s Verzió"
-
-#~ msgid "Email / Mail Server Settings"
-#~ msgstr "E-mail / Levelezési Kiszolgáló Beállítások"
-
-#~ msgid "Connection URL: "
-#~ msgstr "Kapcsolati URL:"
-
-#~ msgid "Input Stream Settings"
-#~ msgstr "Bemeneti Adásfolyam Beállítások"
-
-#~ msgid "Master Source Connection URL:"
-#~ msgstr "Mester Forrási URL Kapcsolat:"
-
-#~ msgid "Override"
-#~ msgstr "Felülírás"
-
-#~ msgid "RESET"
-#~ msgstr "NULLÁZÁS"
-
-#~ msgid "Show Source Connection URL:"
-#~ msgstr "Műsor Forrási URL Kapcsolat:"
-
-#~ msgid "Help %1$s improve by letting us know how you are using it. This info will be collected regularly in order to enhance your user experience.%2$sClick 'Yes, help %1$s' and we'll make sure the features you use are constantly improving."
-#~ msgstr "Segítsen az %1$s fejlesztésében, tudassa velünk az ötleteit. Az információk gyűjtése fokozza a felhasználás élményét.%2$sKlikk 'Igen, segítek az %1$s-nak' fejlesztésében, és igyekszek folyamatosan a funkciók használatának javításain fáradozni. "
-
-#~ msgid "Filter By Show:"
-#~ msgstr "Műsor Alapján:"
-
-#~ msgid "%s's Settings"
-#~ msgstr "%s Beállítások"
-
-#~ msgid "Help %s improve by letting %s know how you are using it. This information will be collected regularly in order to enhance your user experience.%sClick the 'Send support feedback' box and we'll make sure the features you use are constantly improving."
-#~ msgstr "Segítse az %s fejlesztését azáltal, hogy a %s tudja, hogy Ön, hogyan használja azt. Információk összegyűjtése céljából, rendszerezve azokat, hogy fokozza a felhasználás élményét.%sKlikkeljen a 'Támogatási Visszajelzés Küldése' mezőbe és győződjön meg arról, hogy a funkciók használatának minősége folyamatosan javul."
-
-#~ msgid "Sourcefabric Privacy Policy"
-#~ msgstr "Sourcefabric Adatvédelem"
-
-#~ msgid "Smart Block Options"
-#~ msgstr "Okos Tábla Beállításai"
-
-#~ msgid "file meet the criteria"
-#~ msgstr "a fájl megfelenek a kritériumoknak"
-
-#~ msgid "New"
-#~ msgstr "Új"
-
-#~ msgid "New Playlist"
-#~ msgstr "Új Lejátszási Lista"
-
-#~ msgid "New Smart Block"
-#~ msgstr "Új Okos Tábla"
-
-#~ msgid "New Webstream"
-#~ msgstr "Új Adásfolyam"
-
-#~ msgid "View / edit description"
-#~ msgstr "A leíás megtekíntése / szerkesztése"
-
-#~ msgid "Global Settings"
-#~ msgstr "Általános Beállítások"
-
-#~ msgid "Output Stream Settings"
-#~ msgstr "Kimenő Adásfolyam Beállítások"
-
-#~ msgid "Listener Count Over Time"
-#~ msgstr "Hallgatói Statisztika"
-
-#~ msgid "Begin by adding your files to the library using the 'Add Media' menu button. You can drag and drop your files to this window too."
-#~ msgstr "Kezdje médiafájlok hozzáadásával a 'Média Hozzáadása' menü gombon. A \"hozd és vidd\" fájlokat ugyanebben az ablakban szerkesztheti."
-
-#~ msgid "Create a show by going to 'Calendar' in the menu bar, and then clicking the '+ Show' icon. This can be either a one-time or repeating show. Only admins and program managers can add shows."
-#~ msgstr "Hozzon létre egy műsort a 'Naptár' menüpontban, a '+ Műsor' gombra kattintva. Ez lehet alkalmi vagy ismétlődő műsor. Csak az adminisztrátorok és a programkezelők hozhatnak létre műsort."
-
-#~ msgid "Add media to the show by going to your show in the Schedule calendar, left-clicking on it and selecting 'Add / Remove Content'"
-#~ msgstr "Adjon hozzá médiatartalmakat, hogy műsorokat tudjon ütemezni, a 'Naptár' menüponton belül, a bal egérgombra való kattintás után válassza ki a 'Tartalom Hozzáadása/Eltávolítása' nevű opciót"
-
-#~ msgid "Select your media from the left pane and drag them to your show in the right pane."
-#~ msgstr "Válassza ki a média tartalmat a bal oldali panelen, és húzza azt a műsorba, a jobb oldali panelre."
-
-#~ msgid "Then you're good to go!"
-#~ msgstr "És már készen is van!"
-
-#~ msgid "Please enter your account e-mail address. You will receive a link to create a new password via e-mail."
-#~ msgstr "Kérjük, írja be a fiókja e-mail címét. Kap majd egy linket, új jelszó létrehozásához, e-mailen keresztül."
-
-#~ msgid "Email sent"
-#~ msgstr "E-mail elküldve"
-
-#~ msgid "An email has been sent"
-#~ msgstr "Egy e-mailt elküldtünk"
-
-#~ msgid "Back to login screen"
-#~ msgstr "Vissza a belépéshez"
-
-#~ msgid "Scheduled Play"
-#~ msgstr "Ütemezett Lejátszás"
-
-#~ msgid "Station time"
-#~ msgstr "Állomás idő"
-
-#~ msgid "Purchase your copy of %s"
-#~ msgstr "Vásárolja meg az Ön %s másolatát"
-
-#~ msgid "Zend Framework Default Application"
-#~ msgstr "Zend Keretrendszeres Alapértelmezett Alkalmazás"
-
-#~ msgid "Empty smart block"
-#~ msgstr "Üres okos tábla"
-
-#~ msgid "Empty playlist"
-#~ msgstr "Üres lejátszási lista"
-
-#~ msgid "Empty smart block content"
-#~ msgstr "Üres okos tábla tartalom"
-
-#~ msgid "No open smart block"
-#~ msgstr "Nincs megnyitott okos tábla"
-
-#~ msgid "Record & Rebroadcast"
-#~ msgstr "Rögzítés & Ismétlés"
-
-#~ msgid "Failed to create 'organize' directory."
-#~ msgstr "Nem sikerült létrehozni 'szervező' könyvtárat."
-
-#~ msgid "The file was not uploaded, there is %s MB of disk space left and the file you are uploading has a size of %s MB."
-#~ msgstr "A fájl feltöltése sikertelen, mert a szabad lemezterület már csak %s MB a feltöltött fájl mérete pedig %s MB."
-
-#~ msgid "This file appears to be corrupted and will not be added to media library."
-#~ msgstr "A fájl úgy tűnik sérült, nem került be a médiatárba."
-
-#~ msgid "The file was not uploaded, this error can occur if the computer hard drive does not have enough disk space or the stor directory does not have correct write permissions."
-#~ msgstr "A fájl feltöltése sikertelen, valószínű, hogy a számítógép merevlemezén nincs elég hely, vagy a tárolási könyvtár nem rendelkezik megfelelő írási engedélyekkel."
-
-#~ msgid ""
-#~ "Hi %s, \n"
-#~ "\n"
-#~ "Click this link to reset your password: "
-#~ msgstr ""
-#~ "Üdv. %s, \n"
-#~ "\n"
-#~ "Erre a hivatkozásra kattintva visszaállíthatja a jelszavát: "
-
-#~ msgid "Show Content"
-#~ msgstr "Műsor Tartalom"
-
-#~ msgid "Remove All Content"
-#~ msgstr "Minden Tartalom Eltávolítása"
-
-#~ msgid "Cancel Current Show"
-#~ msgstr "Jelenlegi Műsor Megszakítása"
-
-#~ msgid "Edit This Instance"
-#~ msgstr "Szerkesztés Ebben az Esetben"
-
-#~ msgid "Delete This Instance"
-#~ msgstr "Törlés Ebben az Esetben"
-
-#~ msgid "Delete This Instance and All Following"
-#~ msgstr "Törlés Ebben és Minden Más Esetben"
-
-#~ msgid "Please selection an option"
-#~ msgstr "Kérjük, válasszon egy lehetőséget"
-
-#~ msgid "No Records"
-#~ msgstr "Nincsennek Nyilvántartások"
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
+msgid "Enabled:"
+msgstr "Engedélyezett:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
+msgid "Mobile:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
+msgid "Stream Type:"
+msgstr "Adatfolyam Típus:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
+msgid "Service Type:"
+msgstr "Kiszolgálói Típus:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
+msgid "Channels:"
+msgstr "Csatornák:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "1 - Mono"
+msgstr "1 - Monó"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "2 - Stereo"
+msgstr "2 - Sztereó"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
+msgid "Server"
+msgstr "Szerver"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
+msgid "Port"
+msgstr "Port"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
+msgid "Only numbers are allowed."
+msgstr "Csak számok adhatók meg."
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
+msgid "URL"
+msgstr "URL"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
+msgid "Mount Point"
+msgstr "Csatolási Pont"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
+msgid "Admin User"
+msgstr "Admin Felhasználó"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
+msgid "Admin Password"
+msgstr "Admin Jelszó"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
+msgid "Server cannot be empty."
+msgstr "A szerver nem lehet üres."
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
+msgid "Port cannot be empty."
+msgstr "A port nem lehet üres."
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
+msgid "Mount cannot be empty with Icecast server."
+msgstr "A csatolási pont nem lehet üres Icecast szerver esetében."
+
+#: airtime_mvc/application/forms/AddShowWhen.php:16
+msgid "'%value%' does not fit the time format 'HH:mm'"
+msgstr "'%value%' az időformátum nem illeszkedik 'ÓÓ:pp'"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:22
+msgid "Start Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:37
+msgid "In the Future:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:64
+msgid "End Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:98
+msgid "Timezone:"
+msgstr "Időzóna:"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:107
+msgid "Repeats?"
+msgstr "Ismétlések?"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:139
+msgid "Cannot create show in the past"
+msgstr "Műsort nem lehet a múltban létrehozni"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:147
+msgid "Cannot modify start date/time of the show that is already started"
+msgstr "Nem lehet módosítani a műsor kezdési időpontját, ha a műsor már elindult"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:156
+#: airtime_mvc/application/models/Show.php:282
+msgid "End date/time cannot be in the past"
+msgstr "A befejezési dátum/idő nem lehet a múltban"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:164
+msgid "Cannot have duration < 0m"
+msgstr "Nem lehet <0p időtartam"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:168
+msgid "Cannot have duration 00h 00m"
+msgstr "Nem lehet 00ó 00p időtartam"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:175
+msgid "Cannot have duration greater than 24h"
+msgstr "Nem tarthat tovább, mint 24h"
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:19
+msgid "Push metadata to your station on TuneIn?"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:24
+msgid "Station ID:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:30
+msgid "Partner Key:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:36
+msgid "Partner Id:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:77
+#: airtime_mvc/application/forms/TuneInPreferences.php:86
+msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:10
+#, php-format
+msgid "Use %s Authentication:"
+msgstr "%s Hitelesítés Használata:"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:16
+msgid "Use Custom Authentication:"
+msgstr "Egyéni Hitelesítés Használata:"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:25
+msgid "Custom Username"
+msgstr "Egyéni Felhasználónév"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:37
+msgid "Custom Password"
+msgstr "Egyéni Jelszó"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:48
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
+msgid "Host:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
+msgid "Port:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:60
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
+msgid "Mount:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:77
+msgid "Username field cannot be empty."
+msgstr "A felhasználónév nem lehet üres."
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:82
+msgid "Password field cannot be empty."
+msgstr "A jelszó nem lehet üres."
+
+#: airtime_mvc/application/forms/AddShowStyle.php:12
+msgid "Background Colour:"
+msgstr "Háttérszín:"
+
+#: airtime_mvc/application/forms/AddShowStyle.php:31
+msgid "Text Colour:"
+msgstr "Szövegszín:"
+
+#: airtime_mvc/application/forms/AddShowStyle.php:49
+msgid "Current Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:72
+msgid "Show Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:87
+msgid "Logo Preview:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Login.php:102
+msgid "Type the characters you see in the picture below."
+msgstr "Gépelje be a képen látható karaktereket."
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
+msgid "Auto Switch Off:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
+msgid "Auto Switch On:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
+msgid "Switch Transition Fade (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:10
+msgid "Link:"
+msgstr "Hivatkozás:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:16
+msgid "Repeat Type:"
+msgstr "Ismétlés Típusa:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:19
+msgid "weekly"
+msgstr "hetente"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:20
+msgid "every 2 weeks"
+msgstr "minden második héten"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:21
+msgid "every 3 weeks"
+msgstr "minden harmadik héten"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:22
+msgid "every 4 weeks"
+msgstr "minden negyedik héten"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:23
+msgid "monthly"
+msgstr "havonta"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:32
+msgid "Select Days:"
+msgstr "Napok Kiválasztása:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:47
+msgid "Repeat By:"
+msgstr "Által Ismételt:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the month"
+msgstr "a hónap napja"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the week"
+msgstr "a hét napja"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:69
+msgid "No End?"
+msgstr "Nincs Vége?"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:106
+msgid "End date must be after start date"
+msgstr "A befejezési idő után kell, hogy legyen kezdési idő is."
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:113
+msgid "Please select a repeat day"
+msgstr "Kérjük, válasszon egy ismétlési napot"
+
+#: airtime_mvc/application/configs/navigation.php:12
+msgid "Radio Page"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:19
+msgid "Calendar"
+msgstr "Naptár"
+
+#: airtime_mvc/application/configs/navigation.php:26
+msgid "Widgets"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:48
+msgid "Settings"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:67
+msgid "Users"
+msgstr "Felhasználók"
+
+#: airtime_mvc/application/configs/navigation.php:74
+msgid "Streams"
+msgstr "Adásfolyamok"
+
+#: airtime_mvc/application/configs/navigation.php:82
+msgid "Analytics"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:90
+msgid "Listener Stats"
+msgstr "Hallgatói Statisztikák"
+
+#: airtime_mvc/application/configs/navigation.php:104
+msgid "History Templates"
+msgstr "Naplózási Sablonok"
+
+#: airtime_mvc/application/configs/navigation.php:113
+msgid "Billing"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:120
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:127
+msgid "Account Details"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:134
+msgid "View Invoices"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:150
+msgid "Getting Started"
+msgstr "Első Lépések"
+
+#: airtime_mvc/application/configs/navigation.php:157
+msgid "FAQ"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:162
+msgid "User Manual"
+msgstr "Felhasználói Kézikönyv"
+
+#: airtime_mvc/application/configs/navigation.php:167
+msgid "File a Support Ticket"
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:833
+#: airtime_mvc/application/models/Playlist.php:812
+msgid "Cue in and cue out are null."
+msgstr "A fel- és a lekeverés értékei nullák."
+
+#: airtime_mvc/application/models/Block.php:868
+#: airtime_mvc/application/models/Block.php:924
+#: airtime_mvc/application/models/Playlist.php:851
+#: airtime_mvc/application/models/Playlist.php:895
+msgid "Can't set cue out to be greater than file length."
+msgstr "Nem lehet beállítani, mert a lekeverési idő nem lehet nagyobb a fájl hosszánál."
+
+#: airtime_mvc/application/models/Block.php:879
+#: airtime_mvc/application/models/Block.php:900
+#: airtime_mvc/application/models/Playlist.php:843
+#: airtime_mvc/application/models/Playlist.php:868
+msgid "Can't set cue in to be larger than cue out."
+msgstr "Nem lehet beállítani, hogy a felkeverés hosszabb legyen, mint a lekeverés."
+
+#: airtime_mvc/application/models/Block.php:935
+#: airtime_mvc/application/models/Playlist.php:887
+msgid "Can't set cue out to be smaller than cue in."
+msgstr "Nem lehet a lekeverés rövidebb, mint a felkeverés."
+
+#: airtime_mvc/application/models/Block.php:1366
+msgid "Upload Time"
+msgstr ""
+
+#: airtime_mvc/application/models/ShowBuilder.php:212
+#, php-format
+msgid "Rebroadcast of %s from %s"
+msgstr "Úrjaközvetítés %s -tól/-től %s"
+
+#: airtime_mvc/application/models/Preference.php:460
+#, php-format
+msgid "Powered by %s"
+msgstr ""
+
+#: airtime_mvc/application/models/Preference.php:588
+msgid "Select Country"
+msgstr "Ország Kiválasztása"
+
+#: airtime_mvc/application/models/MusicDir.php:160
+#, php-format
+msgid "%s is already watched."
+msgstr "%s már figyelve van."
+
+#: airtime_mvc/application/models/MusicDir.php:164
+#, php-format
+msgid "%s contains nested watched directory: %s"
+msgstr "%s tartalmazza a beágyazott figyelt könyvtárat: %s"
+
+#: airtime_mvc/application/models/MusicDir.php:168
+#, php-format
+msgid "%s is nested within existing watched directory: %s"
+msgstr "%s beágyazva a létező figyelt mappán belül: %s"
+
+#: airtime_mvc/application/models/MusicDir.php:189
+#: airtime_mvc/application/models/MusicDir.php:370
+#, php-format
+msgid "%s is not a valid directory."
+msgstr "%s nem létező könyvtár."
+
+#: airtime_mvc/application/models/MusicDir.php:232
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list"
+msgstr "%s már be van állítva, mint a jelenlegi tároló elérési útvonala vagy a figyelt mappák listája"
+
+#: airtime_mvc/application/models/MusicDir.php:388
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list."
+msgstr "%s már be van állítva, mint jelenlegi tároló elérési útvonala vagy, a figyelt mappák listájában."
+
+#: airtime_mvc/application/models/MusicDir.php:431
+#, php-format
+msgid "%s doesn't exist in the watched list."
+msgstr "%s nem szerepel a figyeltek listáján."
+
+#: airtime_mvc/application/models/Auth.php:33
+#, php-format
+msgid ""
+"Hi %s, \n"
+"\n"
+"Please click this link to reset your password: "
+msgstr ""
+
+#: airtime_mvc/application/models/Auth.php:38
+#, php-format
+msgid "%s Password Reset"
+msgstr "%s Jelszó Visszaállítás"
+
+#: airtime_mvc/application/models/Show.php:184
+msgid "Shows can have a max length of 24 hours."
+msgstr "A műsorok maximum 24 óra hosszúságúak lehetnek."
+
+#: airtime_mvc/application/models/Show.php:293
+msgid ""
+"Cannot schedule overlapping shows.\n"
+"Note: Resizing a repeating show affects all of its repeats."
+msgstr ""
+"Az ütemzés nem fedheti át a műsorokat.\n"
+"Megjegyzés: Az ismételt műsorok átméretezése kavarodást okozhat."
+
+#: airtime_mvc/application/models/Scheduler.php:73
+msgid "Cannot move items out of linked shows"
+msgstr "Nem tud áthelyezni elemeket a kapcsolódó műsorokból"
+
+#: airtime_mvc/application/models/Scheduler.php:119
+msgid "The schedule you're viewing is out of date! (sched mismatch)"
+msgstr "A megtekintett ütemterv elavult! (ütem eltérés)"
+
+#: airtime_mvc/application/models/Scheduler.php:124
+msgid "The schedule you're viewing is out of date! (instance mismatch)"
+msgstr "A megtekintett ütemterv elavult! (például eltérés)"
+
+#: airtime_mvc/application/models/Scheduler.php:132
+#: airtime_mvc/application/models/Scheduler.php:458
+#: airtime_mvc/application/models/Scheduler.php:490
+msgid "The schedule you're viewing is out of date!"
+msgstr "A megtekintett ütemterv időpontja elavult!"
+
+#: airtime_mvc/application/models/Scheduler.php:142
+#, php-format
+msgid "You are not allowed to schedule show %s."
+msgstr "Nincs jogosultsága az ütemezett műsorhoz %s."
+
+#: airtime_mvc/application/models/Scheduler.php:146
+msgid "You cannot add files to recording shows."
+msgstr "Nem adhat hozzá fájlokat a rögzített műsorokhoz."
+
+#: airtime_mvc/application/models/Scheduler.php:152
+#, php-format
+msgid "The show %s is over and cannot be scheduled."
+msgstr "A műsor %s véget ért és nem lehet ütemezni."
+
+#: airtime_mvc/application/models/Scheduler.php:159
+#, php-format
+msgid "The show %s has been previously updated!"
+msgstr "A műsor %s már korábban frissítve lett!"
+
+#: airtime_mvc/application/models/Scheduler.php:178
+msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
+msgstr "A kapcsolódó műsorok tartalmait bármelyik adás előtt vagy után kell ütemezni"
+
+#: airtime_mvc/application/models/Scheduler.php:195
+msgid "Cannot schedule a playlist that contains missing files."
+msgstr "Nem lehet ütemezni olyan lejátszási listát, amely tartalmaz hiányzó fájlokat."
+
+#: airtime_mvc/application/models/Scheduler.php:216
+#: airtime_mvc/application/models/Scheduler.php:305
+msgid "A selected File does not exist!"
+msgstr "A kiválasztott fájl nem létezik!"
+
+#: airtime_mvc/application/models/Schedule.php:206
+msgid "livestream"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:166
+msgid "Length needs to be greater than 0 minutes"
+msgstr "A hosszúság értékének nagyobb kell lennie, mint 0 perc"
+
+#: airtime_mvc/application/models/Webstream.php:171
+msgid "Length should be of form \"00h 00m\""
+msgstr "A hosszúság formája \"00ó 00p\""
+
+#: airtime_mvc/application/models/Webstream.php:184
+msgid "URL should be of form \"http://domain\""
+msgstr "Az URL-nek így kell kinéznie \"http://domain\""
+
+#: airtime_mvc/application/models/Webstream.php:187
+msgid "URL should be 512 characters or less"
+msgstr "Az URL-nek rövidebbnek kell lennie 512 karakternél"
+
+#: airtime_mvc/application/models/Webstream.php:193
+msgid "No MIME type found for webstream."
+msgstr "Nem található MIME típus az adásfolyamhoz."
+
+#: airtime_mvc/application/models/Webstream.php:209
+msgid "Webstream name cannot be empty"
+msgstr "Az adásfolyam neve maradhat üresen"
+
+#: airtime_mvc/application/models/Webstream.php:278
+msgid "Could not parse XSPF playlist"
+msgstr "Nem sikerült értelmezni a XSDF lejátszási listát"
+
+#: airtime_mvc/application/models/Webstream.php:298
+msgid "Could not parse PLS playlist"
+msgstr "Nem sikerült értelmezni a PLS lejátszási listát"
+
+#: airtime_mvc/application/models/Webstream.php:318
+msgid "Could not parse M3U playlist"
+msgstr "Nem sikerült értelmezni a M3U lejátszási listát"
+
+#: airtime_mvc/application/models/Webstream.php:332
+msgid "Invalid webstream - This appears to be a file download."
+msgstr "Érvénytelen adásfolyam - Úgy néz ki, hogy ez egy fájl letöltés."
+
+#: airtime_mvc/application/models/Webstream.php:336
+#, php-format
+msgid "Unrecognized stream type: %s"
+msgstr "Ismeretlen típusú adásfolyam: %s"
+
+#: airtime_mvc/public/setup/rabbitmq-setup.php:78
+msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
+msgstr ""
+
+#~ msgid "My Account"
+#~ msgstr "Saját Fiókom"
diff --git a/airtime_mvc/locale/hu_HU/LC_MESSAGES/pro.po b/airtime_mvc/locale/hu_HU/LC_MESSAGES/pro.po
index 866ee0acb..f59b52c3d 100644
--- a/airtime_mvc/locale/hu_HU/LC_MESSAGES/pro.po
+++ b/airtime_mvc/locale/hu_HU/LC_MESSAGES/pro.po
@@ -1,3 +1,139 @@
+#: airtime_mvc/application/controllers/LoginController.php:170
+#, php-format
+msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
+#, php-format
+msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
+#, php-format
+msgid "If you are the primary owner of this station, please reset your password here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
+msgid "Thank you!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
+msgid "Your station has been upgraded successfully."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
+msgid "Return to Airtime"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+#, php-format
+msgid "Purchase an %s plan!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+msgid "My Account"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
+msgid "Upgrade today to get more listeners and storage space!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
+msgid "View Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:257
+msgid "Your Current Plan:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:291
+msgid "Please enter your payment details:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
+msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
+msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:17
+msgid "First Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:26
+msgid "Last Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:35
+msgid "Company Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:44
+msgid "Email Address:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:54
+msgid "Address 1:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:63
+msgid "Address 2:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:70
+msgid "City:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:80
+msgid "State/Region:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:89
+msgid "Zip Code / Postal Code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:102
+msgid "Country:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:112
+msgid "Phone Number:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:121
+msgid "Please choose a security question:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:135
+msgid "Please enter an answer:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:152
+msgid "VAT/Tax ID (EU only)"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:162
+msgid "Subscribe to Sourcefabric newsletter"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:172
+msgid "Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:181
+msgid "Verify Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:193
+msgid "Save"
+msgstr ""
+
#: airtime_mvc/application/models/Auth.php:35
#, php-format
msgid ""
@@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
-msgid "Thank you!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
-msgid "Your station has been upgraded successfully."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
-msgid "Return to Airtime"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
-#, php-format
-msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
-msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
-msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
-#, php-format
-msgid "If you are the primary owner of this station, please reset your password here."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:170
-#, php-format
-msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
-msgstr ""
diff --git a/airtime_mvc/locale/hy/LC_MESSAGES/airtime.po b/airtime_mvc/locale/hy/LC_MESSAGES/airtime.po
index 9d20818d4..e5c81e8dd 100644
--- a/airtime_mvc/locale/hy/LC_MESSAGES/airtime.po
+++ b/airtime_mvc/locale/hy/LC_MESSAGES/airtime.po
@@ -4,7 +4,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Airtime\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-09-03 10:24-0400\n"
+"POT-Creation-Date: 2015-09-04 11:17-0400\n"
"PO-Revision-Date: 2014-07-28 11:49+0000\n"
"Last-Translator: Daniel James \n"
"Language-Team: Armenian (http://www.transifex.com/projects/p/airtime/language/hy/)\n"
@@ -14,132 +14,6 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: airtime_mvc/public/setup/rabbitmq-setup.php:78
-msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1117
-#: airtime_mvc/application/services/HistoryService.php:1157
-#: airtime_mvc/application/services/HistoryService.php:1174
-#: airtime_mvc/application/models/Block.php:1375
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
-#: airtime_mvc/application/controllers/LocaleController.php:76
-msgid "Title"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1118
-#: airtime_mvc/application/services/HistoryService.php:1158
-#: airtime_mvc/application/services/HistoryService.php:1175
-#: airtime_mvc/application/models/Block.php:1360
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
-#: airtime_mvc/application/controllers/LocaleController.php:77
-msgid "Creator"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1119
-#: airtime_mvc/application/models/Block.php:1352
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
-#: airtime_mvc/application/controllers/LocaleController.php:78
-msgid "Album"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1120
-#: airtime_mvc/application/services/HistoryService.php:1177
-#: airtime_mvc/application/models/Block.php:1369
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
-#: airtime_mvc/application/controllers/LocaleController.php:91
-msgid "Length"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1121
-#: airtime_mvc/application/models/Block.php:1362
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
-#: airtime_mvc/application/controllers/LocaleController.php:85
-msgid "Genre"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1122
-#: airtime_mvc/application/models/Block.php:1371
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
-#: airtime_mvc/application/controllers/LocaleController.php:93
-msgid "Mood"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1123
-#: airtime_mvc/application/models/Block.php:1364
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
-#: airtime_mvc/application/controllers/LocaleController.php:87
-msgid "Label"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1124
-#: airtime_mvc/application/services/HistoryService.php:1178
-#: airtime_mvc/application/models/Block.php:1355
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
-#: airtime_mvc/application/controllers/LocaleController.php:81
-msgid "Composer"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1125
-#: airtime_mvc/application/models/Block.php:1363
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
-#: airtime_mvc/application/controllers/LocaleController.php:86
-msgid "ISRC"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1126
-#: airtime_mvc/application/services/HistoryService.php:1179
-#: airtime_mvc/application/models/Block.php:1357
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
-#: airtime_mvc/application/controllers/LocaleController.php:83
-msgid "Copyright"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1127
-#: airtime_mvc/application/models/Block.php:1379
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
-#: airtime_mvc/application/controllers/LocaleController.php:100
-msgid "Year"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1128
-msgid "Track"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1129
-#: airtime_mvc/application/models/Block.php:1356
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
-#: airtime_mvc/application/controllers/LocaleController.php:82
-msgid "Conductor"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1130
-#: airtime_mvc/application/models/Block.php:1365
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
-#: airtime_mvc/application/controllers/LocaleController.php:88
-msgid "Language"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1155
-#: airtime_mvc/application/forms/EditHistoryItem.php:32
-msgid "Start Time"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1156
-#: airtime_mvc/application/forms/EditHistoryItem.php:44
-msgid "End Time"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1176
-msgid "Played"
-msgstr ""
-
#: airtime_mvc/application/services/CalendarService.php:50
msgid "Record file doesn't exist"
msgstr ""
@@ -235,2601 +109,380 @@ msgstr ""
msgid "Must wait 1 hour to rebroadcast."
msgstr ""
-#: airtime_mvc/application/models/Schedule.php:206
-msgid "livestream"
+#: airtime_mvc/application/services/HistoryService.php:1117
+#: airtime_mvc/application/services/HistoryService.php:1157
+#: airtime_mvc/application/services/HistoryService.php:1174
+#: airtime_mvc/application/controllers/LocaleController.php:76
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
+#: airtime_mvc/application/models/Block.php:1375
+msgid "Title"
msgstr ""
-#: airtime_mvc/application/models/ShowBuilder.php:212
+#: airtime_mvc/application/services/HistoryService.php:1118
+#: airtime_mvc/application/services/HistoryService.php:1158
+#: airtime_mvc/application/services/HistoryService.php:1175
+#: airtime_mvc/application/controllers/LocaleController.php:77
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
+#: airtime_mvc/application/models/Block.php:1360
+msgid "Creator"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1119
+#: airtime_mvc/application/controllers/LocaleController.php:78
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
+#: airtime_mvc/application/models/Block.php:1352
+msgid "Album"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1120
+#: airtime_mvc/application/services/HistoryService.php:1177
+#: airtime_mvc/application/controllers/LocaleController.php:91
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
+#: airtime_mvc/application/models/Block.php:1369
+msgid "Length"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1121
+#: airtime_mvc/application/controllers/LocaleController.php:85
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
+#: airtime_mvc/application/models/Block.php:1362
+msgid "Genre"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1122
+#: airtime_mvc/application/controllers/LocaleController.php:93
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
+#: airtime_mvc/application/models/Block.php:1371
+msgid "Mood"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1123
+#: airtime_mvc/application/controllers/LocaleController.php:87
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
+#: airtime_mvc/application/models/Block.php:1364
+msgid "Label"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1124
+#: airtime_mvc/application/services/HistoryService.php:1178
+#: airtime_mvc/application/controllers/LocaleController.php:81
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
+#: airtime_mvc/application/models/Block.php:1355
+msgid "Composer"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1125
+#: airtime_mvc/application/controllers/LocaleController.php:86
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
+#: airtime_mvc/application/models/Block.php:1363
+msgid "ISRC"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1126
+#: airtime_mvc/application/services/HistoryService.php:1179
+#: airtime_mvc/application/controllers/LocaleController.php:83
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
+#: airtime_mvc/application/models/Block.php:1357
+msgid "Copyright"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1127
+#: airtime_mvc/application/controllers/LocaleController.php:100
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
+#: airtime_mvc/application/models/Block.php:1379
+msgid "Year"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1128
+msgid "Track"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1129
+#: airtime_mvc/application/controllers/LocaleController.php:82
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
+#: airtime_mvc/application/models/Block.php:1356
+msgid "Conductor"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1130
+#: airtime_mvc/application/controllers/LocaleController.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
+#: airtime_mvc/application/models/Block.php:1365
+msgid "Language"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1155
+#: airtime_mvc/application/forms/EditHistoryItem.php:32
+msgid "Start Time"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1156
+#: airtime_mvc/application/forms/EditHistoryItem.php:44
+msgid "End Time"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1176
+msgid "Played"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:31
+#: airtime_mvc/application/controllers/PlaylistController.php:147
#, php-format
-msgid "Rebroadcast of %s from %s"
+msgid "%s not found"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:166
-msgid "Length needs to be greater than 0 minutes"
+#: airtime_mvc/application/controllers/LibraryController.php:40
+#: airtime_mvc/application/controllers/PlaylistController.php:168
+msgid "Something went wrong."
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:171
-msgid "Length should be of form \"00h 00m\""
+#: airtime_mvc/application/controllers/LibraryController.php:95
+#: airtime_mvc/application/controllers/ShowbuilderController.php:136
+msgid "Preview"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:184
-msgid "URL should be of form \"http://domain\""
+#: airtime_mvc/application/controllers/LibraryController.php:115
+#: airtime_mvc/application/controllers/LibraryController.php:177
+#: airtime_mvc/application/controllers/LibraryController.php:200
+msgid "Add to Playlist"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:187
-msgid "URL should be 512 characters or less"
+#: airtime_mvc/application/controllers/LibraryController.php:117
+msgid "Add to Smart Block"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:193
-msgid "No MIME type found for webstream."
+#: airtime_mvc/application/controllers/LibraryController.php:123
+#: airtime_mvc/application/controllers/LocaleController.php:66
+msgid "Edit Metadata"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:209
-msgid "Webstream name cannot be empty"
+#: airtime_mvc/application/controllers/LibraryController.php:131
+#: airtime_mvc/application/controllers/ScheduleController.php:712
+msgid "Download"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:278
-msgid "Could not parse XSPF playlist"
+#: airtime_mvc/application/controllers/LibraryController.php:147
+msgid "View track"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:298
-msgid "Could not parse PLS playlist"
+#: airtime_mvc/application/controllers/LibraryController.php:148
+msgid "Remove track"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:318
-msgid "Could not parse M3U playlist"
+#: airtime_mvc/application/controllers/LibraryController.php:154
+#: airtime_mvc/application/controllers/LibraryController.php:159
+msgid "Upload track"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:332
-msgid "Invalid webstream - This appears to be a file download."
+#: airtime_mvc/application/controllers/LibraryController.php:169
+msgid "Duplicate Playlist"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:336
+#: airtime_mvc/application/controllers/LibraryController.php:213
+msgid "No action available"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:233
+msgid "You don't have permission to delete selected items."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:279
+msgid "Could not delete file because it is scheduled in the future."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:282
+msgid "Could not delete file(s)."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:322
#, php-format
-msgid "Unrecognized stream type: %s"
+msgid "Copy of %s"
msgstr ""
-#: airtime_mvc/application/models/Preference.php:460
-#, php-format
-msgid "Powered by %s"
+#: airtime_mvc/application/controllers/WebstreamController.php:28
+#: airtime_mvc/application/controllers/WebstreamController.php:32
+msgid "Untitled Webstream"
msgstr ""
-#: airtime_mvc/application/models/Preference.php:588
-msgid "Select Country"
+#: airtime_mvc/application/controllers/WebstreamController.php:150
+msgid "Webstream saved."
msgstr ""
-#: airtime_mvc/application/models/MusicDir.php:160
-#, php-format
-msgid "%s is already watched."
+#: airtime_mvc/application/controllers/WebstreamController.php:158
+msgid "Invalid form values."
msgstr ""
-#: airtime_mvc/application/models/MusicDir.php:164
-#, php-format
-msgid "%s contains nested watched directory: %s"
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:168
-#, php-format
-msgid "%s is nested within existing watched directory: %s"
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:189
-#: airtime_mvc/application/models/MusicDir.php:370
-#, php-format
-msgid "%s is not a valid directory."
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:232
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list"
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:388
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list."
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:431
-#, php-format
-msgid "%s doesn't exist in the watched list."
-msgstr ""
-
-#: airtime_mvc/application/models/Show.php:184
-msgid "Shows can have a max length of 24 hours."
-msgstr ""
-
-#: airtime_mvc/application/models/Show.php:282
-#: airtime_mvc/application/forms/AddShowWhen.php:156
-msgid "End date/time cannot be in the past"
-msgstr ""
-
-#: airtime_mvc/application/models/Show.php:293
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
msgid ""
-"Cannot schedule overlapping shows.\n"
-"Note: Resizing a repeating show affects all of its repeats."
+"To configure and use the embeddable player you must:
\n"
+" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
+" 2. Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/models/Auth.php:33
-#, php-format
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
msgid ""
-"Hi %s, \n"
-"\n"
-"Please click this link to reset your password: "
+"To use the embeddable weekly schedule widget you must:
\n"
+" Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/models/Auth.php:38
+#: airtime_mvc/application/controllers/ListenerstatController.php:51
+msgid "Please make sure admin user/password is correct on System->Streams page."
+msgstr ""
+
+#: airtime_mvc/application/controllers/UserController.php:86
+msgid "User added successfully!"
+msgstr ""
+
+#: airtime_mvc/application/controllers/UserController.php:88
+msgid "User updated successfully!"
+msgstr ""
+
+#: airtime_mvc/application/controllers/UserController.php:187
+msgid "Settings updated successfully!"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PlaylistController.php:53
#, php-format
-msgid "%s Password Reset"
+msgid "You are viewing an older version of %s"
msgstr ""
-#: airtime_mvc/application/models/Block.php:333
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
-msgid "items"
+#: airtime_mvc/application/controllers/PlaylistController.php:140
+msgid "You cannot add tracks to dynamic blocks."
msgstr ""
-#: airtime_mvc/application/models/Block.php:833
-#: airtime_mvc/application/models/Playlist.php:812
-msgid "Cue in and cue out are null."
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:868
-#: airtime_mvc/application/models/Block.php:924
-#: airtime_mvc/application/models/Playlist.php:851
-#: airtime_mvc/application/models/Playlist.php:895
-msgid "Can't set cue out to be greater than file length."
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:879
-#: airtime_mvc/application/models/Block.php:900
-#: airtime_mvc/application/models/Playlist.php:843
-#: airtime_mvc/application/models/Playlist.php:868
-msgid "Can't set cue in to be larger than cue out."
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:935
-#: airtime_mvc/application/models/Playlist.php:887
-msgid "Can't set cue out to be smaller than cue in."
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1351
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
-msgid "Select criteria"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1353
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
-msgid "Bit Rate (Kbps)"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1354
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
-#: airtime_mvc/application/controllers/LocaleController.php:80
-msgid "BPM"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1358
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
-#: airtime_mvc/application/controllers/LocaleController.php:281
-#: airtime_mvc/application/layouts/scripts/layout.phtml:140
-msgid "Cue In"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1359
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:282
-#: airtime_mvc/application/layouts/scripts/layout.phtml:147
-msgid "Cue Out"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1361
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
-#: airtime_mvc/application/controllers/LocaleController.php:84
-msgid "Encoded By"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1366
-msgid "Upload Time"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1367
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
-#: airtime_mvc/application/controllers/LocaleController.php:89
-msgid "Last Modified"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1368
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
-#: airtime_mvc/application/controllers/LocaleController.php:90
-msgid "Last Played"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1370
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
-#: airtime_mvc/application/controllers/LocaleController.php:92
-msgid "Mime"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1372
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
-#: airtime_mvc/application/controllers/LocaleController.php:94
-msgid "Owner"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1373
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
-#: airtime_mvc/application/controllers/LocaleController.php:95
-msgid "Replay Gain"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1374
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
-msgid "Sample Rate (kHz)"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1376
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
-#: airtime_mvc/application/controllers/LocaleController.php:97
-msgid "Track Number"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1377
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
-#: airtime_mvc/application/controllers/LocaleController.php:98
-msgid "Uploaded"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1378
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
-#: airtime_mvc/application/controllers/LocaleController.php:99
-msgid "Website"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1383
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
-#: airtime_mvc/application/controllers/LocaleController.php:151
-msgid "Select modifier"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1384
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
-#: airtime_mvc/application/controllers/LocaleController.php:152
-msgid "contains"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1385
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
-#: airtime_mvc/application/controllers/LocaleController.php:153
-msgid "does not contain"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1386
-#: airtime_mvc/application/models/Block.php:1390
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
-#: airtime_mvc/application/controllers/LocaleController.php:154
-msgid "is"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1387
-#: airtime_mvc/application/models/Block.php:1391
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
-#: airtime_mvc/application/controllers/LocaleController.php:155
-msgid "is not"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1388
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
-#: airtime_mvc/application/controllers/LocaleController.php:156
-msgid "starts with"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1389
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
-#: airtime_mvc/application/controllers/LocaleController.php:157
-msgid "ends with"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
-#: airtime_mvc/application/controllers/LocaleController.php:158
-msgid "is greater than"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1393
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
-#: airtime_mvc/application/controllers/LocaleController.php:159
-msgid "is less than"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1394
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
-#: airtime_mvc/application/controllers/LocaleController.php:160
-msgid "is in the range"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:73
-msgid "Cannot move items out of linked shows"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:119
-msgid "The schedule you're viewing is out of date! (sched mismatch)"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:124
-msgid "The schedule you're viewing is out of date! (instance mismatch)"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:132
-#: airtime_mvc/application/models/Scheduler.php:458
-#: airtime_mvc/application/models/Scheduler.php:490
-msgid "The schedule you're viewing is out of date!"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:142
+#: airtime_mvc/application/controllers/PlaylistController.php:161
#, php-format
-msgid "You are not allowed to schedule show %s."
+msgid "You don't have permission to delete selected %s(s)."
msgstr ""
-#: airtime_mvc/application/models/Scheduler.php:146
-msgid "You cannot add files to recording shows."
+#: airtime_mvc/application/controllers/PlaylistController.php:174
+msgid "You can only add tracks to smart block."
msgstr ""
-#: airtime_mvc/application/models/Scheduler.php:152
+#: airtime_mvc/application/controllers/PlaylistController.php:180
+#: airtime_mvc/application/controllers/LocaleController.php:50
+msgid "You can only add tracks, smart blocks, and webstreams to playlists."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PlaylistController.php:192
+msgid "Untitled Playlist"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PlaylistController.php:194
+msgid "Untitled Smart Block"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PlaylistController.php:522
+msgid "Unknown Playlist"
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:78
+msgid "Page not found."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:87
+msgid "The requested action is not supported."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:98
+msgid "You do not have permission to access this resource."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:109
+msgid "An internal application error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/controllers/Apiv2Controller.php:77
+#: airtime_mvc/application/controllers/ApiController.php:79
+msgid "You are not allowed to access this resource."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:72
+msgid "Preferences updated."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:115
+msgid "Support setting updated."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:123
+msgid "Support Feedback"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:251
+msgid "Stream Setting Updated."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:342
+msgid "path should be specified"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:437
+msgid "Problem with Liquidsoap..."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:493
+msgid "Request method not accepted"
+msgstr ""
+
+#: airtime_mvc/application/controllers/DashboardController.php:35
+#: airtime_mvc/application/controllers/DashboardController.php:84
+msgid "You don't have permission to disconnect source."
+msgstr ""
+
+#: airtime_mvc/application/controllers/DashboardController.php:37
+#: airtime_mvc/application/controllers/DashboardController.php:86
+msgid "There is no source connected to this input."
+msgstr ""
+
+#: airtime_mvc/application/controllers/DashboardController.php:81
+msgid "You don't have permission to switch source."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:43
+msgid "Please enter your username and password."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:93
+msgid "Wrong username or password provided. Please try again."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:167
+msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:173
+msgid "There was a problem with the username or email address you entered."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ApiController.php:244
+#: airtime_mvc/application/controllers/ApiController.php:317
+#: airtime_mvc/application/controllers/ApiController.php:392
+#: airtime_mvc/application/controllers/ApiController.php:435
+#: airtime_mvc/application/controllers/ApiController.php:474
+#: airtime_mvc/application/controllers/ApiController.php:507
+msgid "You are not allowed to access this resource. "
+msgstr ""
+
+#: airtime_mvc/application/controllers/ApiController.php:698
+#: airtime_mvc/application/controllers/ApiController.php:718
+#: airtime_mvc/application/controllers/ApiController.php:730
#, php-format
-msgid "The show %s is over and cannot be scheduled."
+msgid "File does not exist in %s"
msgstr ""
-#: airtime_mvc/application/models/Scheduler.php:159
-#, php-format
-msgid "The show %s has been previously updated!"
+#: airtime_mvc/application/controllers/ApiController.php:781
+msgid "Bad request. no 'mode' parameter passed."
msgstr ""
-#: airtime_mvc/application/models/Scheduler.php:178
-msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:195
-msgid "Cannot schedule a playlist that contains missing files."
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:216
-#: airtime_mvc/application/models/Scheduler.php:305
-msgid "A selected File does not exist!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
-#: airtime_mvc/application/configs/navigation.php:40
-msgid "Weekly Schedule"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
-#: airtime_mvc/application/forms/Player.php:77
-msgid "Preview:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
-#: airtime_mvc/application/configs/navigation.php:34
-msgid "Player"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
-#: airtime_mvc/application/controllers/LocaleController.php:362
-#: airtime_mvc/application/controllers/LocaleController.php:390
-msgid "Close"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Add this show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Update show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
-msgid "What"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
-msgid "When"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
-msgid "Live Stream Input"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
-msgid "Who"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
-msgid "Style"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
-#: airtime_mvc/application/controllers/LocaleController.php:273
-msgid "Start"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
-msgid "Password Reset"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
-msgid "Email Sent!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
-msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
-msgid "Back"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
-msgid "New password"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
-msgid "Please enter and confirm your new password in the fields below."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:3
-#: airtime_mvc/application/forms/Login.php:83
-msgid "Login"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:7
-#, php-format
-msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:97
-msgid "Playout History"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
-msgid "Log Sheet"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
-msgid "File Summary"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
-msgid "Show Summary"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
-msgid "Your trial expires in"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
-msgid "days"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-#, php-format
-msgid "Purchase an %s Pro plan!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-msgid "My Account"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
-msgid "Previous:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
-msgid "Next:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
-msgid "Source Streams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
-msgid "Master Source"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
-msgid "Show Source"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
-msgid "ON AIR"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
-msgid "Listen"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
-msgid "Logout"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
-msgid "Drop files here or click to browse your computer."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
-#: airtime_mvc/application/controllers/LocaleController.php:314
-msgid "in use"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
-#: airtime_mvc/application/controllers/LocaleController.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:401
-msgid "All"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
-msgid "Failed"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
-msgid "Pending"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
-msgid "Recent Uploads"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
-#: airtime_mvc/application/configs/navigation.php:120
-msgid "Account Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
-msgid "Upgrade today to get more listeners and storage space!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
-msgid "View Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
-msgid "About"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
-#, php-format
-msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
-#, php-format
-msgid "%1$s %2$s is distributed under the %3$s"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
-#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
-msgid "Live stream"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
-msgid "Share"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
-msgid "Select stream:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
-msgid "mute"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
-msgid "unmute"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
-#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
-#, php-format
-msgid "Welcome to %s!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
-#, php-format
-msgid "Here's how you can get started using %s to automate your broadcasts: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
-msgid "Upload audio tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
-msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
-msgid "Schedule a show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
-msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
-msgid "Add tracks to your show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
-msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
-msgid "Now you're good to go!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
-#, php-format
-msgid "For more detailed help, read the %suser manual%s."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
-msgid "Listeners"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
-msgid "Stream Data Collection Status"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
-#: airtime_mvc/application/views/scripts/error/error.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
-msgid "An error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
-msgid "Access Denied!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
-msgid "You do not have permission to access this page!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
-#: airtime_mvc/application/views/scripts/error/error.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
-#: airtime_mvc/application/configs/navigation.php:143
-msgid "Help"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
-msgid "Page not found!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
-msgid "We couldn't find the page you were looking for."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error.phtml:12
-msgid "Looks like the page you were looking for doesn't exist!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
-msgid "Oops!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
-msgid "Something went wrong!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
-msgid "Bad Request!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
-msgid "The requested action is not supported!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
-msgid "Viewing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
-msgid "Editing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:3
-msgid "File import in progress..."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:10
-#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
-msgid "Advanced Search Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
-#: airtime_mvc/application/forms/Player.php:15
-#: airtime_mvc/application/forms/EditAudioMD.php:24
-msgid "Title:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
-#: airtime_mvc/application/forms/EditAudioMD.php:34
-msgid "Creator:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
-#: airtime_mvc/application/forms/EditAudioMD.php:44
-msgid "Album:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
-msgid "Track:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
-msgid "Length:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
-msgid "Sample Rate:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
-msgid "Bit Rate:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
-#: airtime_mvc/application/forms/EditAudioMD.php:115
-msgid "Mood:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
-#: airtime_mvc/application/forms/EditAudioMD.php:62
-#: airtime_mvc/application/forms/AddShowWhat.php:45
-msgid "Genre:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
-#: airtime_mvc/application/forms/EditAudioMD.php:72
-msgid "Year:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
-#: airtime_mvc/application/forms/EditAudioMD.php:85
-msgid "Label:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
-#: airtime_mvc/application/forms/EditAudioMD.php:125
-msgid "BPM:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
-#: airtime_mvc/application/forms/EditAudioMD.php:95
-msgid "Composer:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
-#: airtime_mvc/application/forms/EditAudioMD.php:105
-msgid "Conductor:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
-#: airtime_mvc/application/forms/EditAudioMD.php:135
-msgid "Copyright:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
-msgid "Isrc Number:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
-#: airtime_mvc/application/forms/EditAudioMD.php:155
-msgid "Website:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
-#: airtime_mvc/application/forms/EditUser.php:119
-#: airtime_mvc/application/forms/EditAudioMD.php:165
-#: airtime_mvc/application/forms/Login.php:68
-msgid "Language:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
-msgid "File Path:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
-#: airtime_mvc/application/forms/AddShowWhat.php:26
-msgid "Name:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
-#: airtime_mvc/application/forms/AddShowWhat.php:54
-msgid "Description:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
-msgid "Web Stream"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
-msgid "Dynamic Smart Block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
-msgid "Static Smart Block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
-msgid "Audio Track"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
-msgid "Playlist Contents: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
-msgid "Static Smart Block Contents: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
-msgid "Dynamic Smart Block Criteria: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
-msgid "Limit to "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
-#: airtime_mvc/application/forms/AddShowWhat.php:36
-msgid "URL:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/login.phtml:41
-msgid "Forgot your password?"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
-#, php-format
-msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
-#, php-format
-msgid "Click the box below to promote your station on %s."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
-msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
-msgid "(Required)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
-msgid "(for verification purposes only, will not be published)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
-msgid "Choose folder"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
-msgid "Set"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
-msgid "Current Import Folder:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
-msgid "Add"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
-#, php-format
-msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
-msgid "Remove watched directory"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
-msgid "You are not watching any media folders."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
-msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
-msgid "Live Broadcasting"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
-msgid "Use these settings in your broadcasting software to stream live at any time."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
-msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
-msgid "Choose Show Instance"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
-#: airtime_mvc/application/forms/EditHistoryItem.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:400
-msgid "No Show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
-msgid "Find"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
-msgid "Choose Days:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
-#: airtime_mvc/application/forms/AddShowStyle.php:64
-#: airtime_mvc/application/forms/GeneralPreferences.php:53
-msgid "Remove"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
-msgid "Stream "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
-msgid "Additional Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
-msgid "The following info will be displayed to listeners in their media player:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
-msgid "(Your radio station website)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
-msgid "Stream URL: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
-msgid "Find Shows"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
-msgid "TuneIn Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
-msgid "SoundCloud Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
-msgid "Dangerous Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
-msgid "Search Criteria:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
-msgid "New Criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
-msgid "or"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
-msgid "and"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
-msgid "New Modifier"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
-msgid " to "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
-msgid "files meet the criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
-msgid "file meets the criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
-msgid "Filter History"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
-#: airtime_mvc/application/configs/navigation.php:61
-msgid "My Profile"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
-#, php-format
-msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
-#: airtime_mvc/application/forms/Preferences.php:40
-#: airtime_mvc/application/forms/PasswordChange.php:43
-#: airtime_mvc/application/forms/AddUser.php:110
-#: airtime_mvc/application/forms/BillingClient.php:193
-#: airtime_mvc/application/forms/SupportSettings.php:131
-#: airtime_mvc/application/forms/EditHistory.php:131
-#: airtime_mvc/application/controllers/LocaleController.php:294
-msgid "Save"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
-msgid "Repeat Days:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
-msgid "Register Airtime"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
-#: airtime_mvc/application/forms/GeneralPreferences.php:43
-msgid "Note: Anything larger than 600x600 will be resized."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
-msgid "Show me what I am sending "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
-msgid "Terms and Conditions"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
-msgid "Creating File Summary Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
-msgid "Creating Log Sheet Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
-msgid "Name"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
-msgid "Add more elements"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
-msgid "Add New Field"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
-msgid "Set Default Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
-msgid "Playout History Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
-msgid "Log Sheet Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
-msgid "New Log Sheet Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
-msgid "No Log Sheet Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
-#: airtime_mvc/application/controllers/LocaleController.php:397
-msgid "Set Default"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
-msgid "File Summary Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
-msgid "New File Summary Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
-msgid "No File Summary Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
-msgid "Disk Space"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
-#: airtime_mvc/application/controllers/LocaleController.php:315
-msgid "Disk"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
-#: airtime_mvc/application/forms/AddShowWhen.php:89
-msgid "Duration:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
-msgid "Toggle Details"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
-msgid "Playlist crossfade"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-msgid "Remove all content from this smart block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Clear"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "Fade in: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "(ss.t)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-msgid "Fade out: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
-#: airtime_mvc/application/forms/EditAudioMD.php:186
-#: airtime_mvc/application/forms/EditHistory.php:141
-#: airtime_mvc/application/controllers/LocaleController.php:295
-#: airtime_mvc/application/controllers/LocaleController.php:318
-msgid "Cancel"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
-msgid "No smart block currently open"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
-msgid "Show Waveform"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-msgid "Cue In: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "(hh:mm:ss.t)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "Cue Out: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
-msgid "Original Length:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
-msgid "Expand Static Block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
-msgid "Expand Dynamic Block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
-msgid "Choose some search criteria above and click Generate to create this playlist."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
-msgid "A track list will be generated when you schedule this smart block into a show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
-msgid "Drag tracks here from your library to add them to the playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-msgid "Shuffle playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
-msgid "Shuffle"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Empty playlist content"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-msgid "Save playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
-msgid "No open playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
-msgid "previous"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
-msgid "play"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
-msgid "pause"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
-msgid "next"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
-msgid "stop"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
-msgid "max volume"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
-msgid "Update Required"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
-#, php-format
-msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
-msgid "Stream Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
-msgid "Global"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
-msgid "dB"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
-msgid "Output Streams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
-#: airtime_mvc/application/controllers/LocaleController.php:166
-msgid "Manage Media Folders"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:56
-msgid "General"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
-msgid "Description"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
-msgid "Stream URL:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
-msgid "Default Length:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
-msgid "No webstream"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
-msgid "Manage Users"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
-msgid "New User"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
-msgid "id"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
-#: airtime_mvc/application/forms/PasswordRestore.php:25
-msgid "Username"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
-msgid "First Name"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
-msgid "Last Name"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
-msgid "User Type"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
-#, php-format
-msgid "Super Admin details can be changed in your Billing Settings."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
-#: airtime_mvc/application/controllers/LocaleController.php:74
-#: airtime_mvc/application/layouts/scripts/layout.phtml:78
-msgid "Tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
-#: airtime_mvc/application/controllers/LocaleController.php:104
-#: airtime_mvc/application/layouts/scripts/layout.phtml:80
-msgid "Playlists"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
-#: airtime_mvc/application/controllers/LocaleController.php:105
-#: airtime_mvc/application/layouts/scripts/layout.phtml:82
-msgid "Smart Blocks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
-#: airtime_mvc/application/layouts/scripts/layout.phtml:84
-msgid "Webstreams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
-#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
-#: airtime_mvc/application/layouts/scripts/layout.phtml:76
-msgid "Dashboard"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:12
-msgid "Radio Page"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:19
-msgid "Calendar"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:26
-msgid "Widgets"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:48
-msgid "Settings"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:67
-msgid "Users"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:74
-msgid "Streams"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:82
-msgid "Analytics"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:90
-msgid "Listener Stats"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:104
-msgid "History Templates"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:113
-msgid "Billing"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:127
-msgid "Account Details"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:134
-msgid "View Invoices"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:150
-msgid "Getting Started"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:157
-msgid "FAQ"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:162
-msgid "User Manual"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:167
-msgid "File a Support Ticket"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:12
-msgid "Background Colour:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:31
-msgid "Text Colour:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:49
-msgid "Current Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:72
-msgid "Show Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:87
-msgid "Logo Preview:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:19
-msgid "Push metadata to your station on TuneIn?"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:24
-msgid "Station ID:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:30
-msgid "Partner Key:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:36
-msgid "Partner Id:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:77
-#: airtime_mvc/application/forms/TuneInPreferences.php:86
-msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:14
-msgid "Now Playing"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:25
-msgid "Select Stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:28
-msgid "Auto detect the most appropriate stream to use."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:29
-msgid "Select a stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:41
-msgid " - Mobile friendly"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:45
-msgid " - The player does not support Opus streams."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:71
-msgid "Embeddable code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:72
-msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:37
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
-#: airtime_mvc/application/forms/Login.php:41
-#: airtime_mvc/application/forms/AddUser.php:29
-msgid "Username:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:48
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
-#: airtime_mvc/application/forms/Login.php:54
-#: airtime_mvc/application/forms/AddUser.php:38
-#: airtime_mvc/application/forms/BillingClient.php:172
-msgid "Password:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:57
-#: airtime_mvc/application/forms/AddUser.php:46
-#: airtime_mvc/application/forms/BillingClient.php:181
-msgid "Verify Password:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:67
-#: airtime_mvc/application/forms/AddUser.php:55
-msgid "Firstname:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:75
-#: airtime_mvc/application/forms/AddUser.php:61
-msgid "Lastname:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:83
-#: airtime_mvc/application/forms/RegisterAirtime.php:51
-#: airtime_mvc/application/forms/AddUser.php:67
-#: airtime_mvc/application/forms/SupportSettings.php:43
-msgid "Email:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:94
-#: airtime_mvc/application/forms/AddUser.php:76
-msgid "Mobile Phone:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:102
-#: airtime_mvc/application/forms/AddUser.php:82
-msgid "Skype:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:110
-#: airtime_mvc/application/forms/AddUser.php:88
-msgid "Jabber:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:129
-msgid "Interface Timezone:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:155
-#: airtime_mvc/application/forms/AddUser.php:120
-msgid "Login name is not unique."
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRR.php:10
-msgid "Record from Line In?"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRR.php:16
-msgid "Rebroadcast?"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:16
-msgid "'%value%' does not fit the time format 'HH:mm'"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:22
-msgid "Start Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:37
-msgid "In the Future:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:64
-msgid "End Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:98
-msgid "Timezone:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:107
-msgid "Repeats?"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:139
-msgid "Cannot create show in the past"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:147
-msgid "Cannot modify start date/time of the show that is already started"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:164
-msgid "Cannot have duration < 0m"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:168
-msgid "Cannot have duration 00h 00m"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:175
-msgid "Cannot have duration greater than 24h"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWho.php:10
-msgid "Search Users:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWho.php:24
-msgid "DJs:"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordChange.php:17
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
-msgid "Password"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordChange.php:28
-msgid "Confirm new password"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordChange.php:36
-msgid "Password confirmation does not match your password."
-msgstr ""
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
-msgid "Station Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
-#: airtime_mvc/application/forms/GeneralPreferences.php:127
-msgid "Station Timezone"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
-msgid "Auto Switch Off:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
-msgid "Auto Switch On:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
-msgid "Switch Transition Fade (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
-#: airtime_mvc/application/forms/GeneralPreferences.php:68
-#: airtime_mvc/application/forms/GeneralPreferences.php:82
-#: airtime_mvc/application/forms/GeneralPreferences.php:96
-msgid "Please enter a time in seconds (eg. 0.5)"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
-#: airtime_mvc/application/forms/AddShowLiveStream.php:48
-msgid "Host:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
-#: airtime_mvc/application/forms/AddShowLiveStream.php:54
-msgid "Port:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
-#: airtime_mvc/application/forms/AddShowLiveStream.php:60
-msgid "Mount:"
-msgstr ""
-
-#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
-msgid "Value is required and can't be empty"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:25
-#: airtime_mvc/application/forms/RegisterAirtime.php:30
-#: airtime_mvc/application/forms/SupportSettings.php:18
-msgid "Station Name"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:33
-msgid "Station Description"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:42
-#: airtime_mvc/application/forms/RegisterAirtime.php:106
-msgid "Station Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:62
-msgid "Default Crossfade Duration (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:76
-msgid "Default Fade In (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:90
-msgid "Default Fade Out (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:102
-msgid "Public Airtime API"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:103
-msgid "Required for embeddable schedule widget."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:105
-msgid "Disabled"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:106
-msgid "Enabled"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:109
-msgid ""
-"Enabling this feature will allow Airtime to provide schedule data\n"
-" to external widgets that can be embedded in your website."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:120
-msgid "Default Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:134
-msgid "Week Starts On"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:150
-msgid "Display login button on your Radio Page?"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:158
-#: airtime_mvc/application/controllers/LocaleController.php:249
-msgid "Sunday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:159
-#: airtime_mvc/application/controllers/LocaleController.php:250
-msgid "Monday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:160
-#: airtime_mvc/application/controllers/LocaleController.php:251
-msgid "Tuesday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:161
-#: airtime_mvc/application/controllers/LocaleController.php:252
-msgid "Wednesday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:162
-#: airtime_mvc/application/controllers/LocaleController.php:253
-msgid "Thursday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:163
-#: airtime_mvc/application/controllers/LocaleController.php:254
-msgid "Friday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:164
-#: airtime_mvc/application/controllers/LocaleController.php:255
-msgid "Saturday"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
-msgid "Default License:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
-msgid "All rights are reserved"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
-msgid "The work is in the public domain"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
-msgid "Creative Commons Attribution"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
-msgid "Creative Commons Attribution Noncommercial"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
-msgid "Creative Commons Attribution No Derivative Works"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
-msgid "Creative Commons Attribution Share Alike"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
-msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
-msgid "Creative Commons Attribution Noncommercial Share Alike"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
-msgid "Default Sharing Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
-msgid "Public"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
-msgid "Private"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:18
-#: airtime_mvc/application/forms/DateRange.php:16
-msgid "Date Start:"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:37
-#: airtime_mvc/application/forms/ShowBuilder.php:65
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
-#: airtime_mvc/application/forms/DateRange.php:35
-#: airtime_mvc/application/forms/DateRange.php:63
-msgid "Invalid character entered"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:46
-#: airtime_mvc/application/forms/AddShowRepeats.php:56
-#: airtime_mvc/application/forms/DateRange.php:44
-msgid "Date End:"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:72
-#: airtime_mvc/application/forms/ShowBuilder.php:88
-msgid "Filter by Show"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:80
-msgid "All My Shows:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditAudioMD.php:145
-msgid "ISRC Number:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditAudioMD.php:176
-msgid "OK"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
-msgid "Day must be specified"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
-msgid "Time must be specified"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
-msgid "Must wait at least 1 hour to rebroadcast"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhat.php:30
-msgid "Untitled Show"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhat.php:69
-msgid "Instance Description:"
-msgstr ""
-
-#: airtime_mvc/application/forms/DangerousPreferences.php:12
-msgid "Delete All Tracks in Library"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:39
-#: airtime_mvc/application/forms/SupportSettings.php:31
-msgid "Phone:"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:62
-#: airtime_mvc/application/forms/SupportSettings.php:54
-msgid "Station Web Site:"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:73
-#: airtime_mvc/application/forms/BillingClient.php:102
-#: airtime_mvc/application/forms/SupportSettings.php:65
-msgid "Country:"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:84
-#: airtime_mvc/application/forms/BillingClient.php:70
-#: airtime_mvc/application/forms/SupportSettings.php:76
-msgid "City:"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:96
-#: airtime_mvc/application/forms/SupportSettings.php:88
-msgid "Station Description:"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:116
-#: airtime_mvc/application/forms/SupportSettings.php:98
-#: airtime_mvc/application/controllers/LocaleController.php:341
-msgid "Send support feedback"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:126
-#: airtime_mvc/application/forms/SupportSettings.php:108
-#, php-format
-msgid "Promote my station on %s"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:151
-#: airtime_mvc/application/forms/SupportSettings.php:120
-#, php-format
-msgid "By checking this box, I agree to %s's %sprivacy policy%s."
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:169
-#: airtime_mvc/application/forms/SupportSettings.php:143
-msgid "You have to agree to privacy policy."
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:10
-msgid "Link:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:16
-msgid "Repeat Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:19
-msgid "weekly"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:20
-msgid "every 2 weeks"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:21
-msgid "every 3 weeks"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:22
-msgid "every 4 weeks"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:23
-msgid "monthly"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:32
-msgid "Select Days:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:35
-#: airtime_mvc/application/controllers/LocaleController.php:256
-msgid "Sun"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:36
-#: airtime_mvc/application/controllers/LocaleController.php:257
-msgid "Mon"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:37
-#: airtime_mvc/application/controllers/LocaleController.php:258
-msgid "Tue"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:38
-#: airtime_mvc/application/controllers/LocaleController.php:259
-msgid "Wed"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:39
-#: airtime_mvc/application/controllers/LocaleController.php:260
-msgid "Thu"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:40
-#: airtime_mvc/application/controllers/LocaleController.php:261
-msgid "Fri"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:41
-#: airtime_mvc/application/controllers/LocaleController.php:262
-msgid "Sat"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:47
-msgid "Repeat By:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the month"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the week"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:69
-msgid "No End?"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:106
-msgid "End date must be after start date"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:113
-msgid "Please select a repeat day"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:10
-#, php-format
-msgid "Use %s Authentication:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:16
-msgid "Use Custom Authentication:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:25
-msgid "Custom Username"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:37
-msgid "Custom Password"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:77
-msgid "Username field cannot be empty."
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:82
-msgid "Password field cannot be empty."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
-msgid "Enabled:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
-msgid "Mobile:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
-msgid "Stream Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
-msgid "Service Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
-msgid "Channels:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "1 - Mono"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "2 - Stereo"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
-msgid "Server"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
-msgid "Port"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
-msgid "Only numbers are allowed."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
-msgid "URL"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
-msgid "Mount Point"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
-msgid "Admin User"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
-msgid "Admin Password"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
-#: airtime_mvc/application/controllers/LocaleController.php:173
-msgid "Getting information from the server..."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
-msgid "Server cannot be empty."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
-msgid "Port cannot be empty."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
-msgid "Mount cannot be empty with Icecast server."
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
-msgid "'%value%' is no valid email address in the basic format local-part@hostname"
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
-msgid "'%value%' does not fit the date format '%format%'"
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
-msgid "'%value%' is less than %min% characters long"
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
-msgid "'%value%' is more than %max% characters long"
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
-msgid "'%value%' is not between '%min%' and '%max%', inclusively"
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
-msgid "Passwords do not match"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
-msgid "hours"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
-msgid "minutes"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
-msgid "Randomly"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
-msgid "Newest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
-msgid "Oldest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
-msgid "Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
-msgid "Static"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
-msgid "Dynamic"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
-msgid "Allow Repeated Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
-msgid "Sort Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
-msgid "Limit to:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
-msgid "Generate playlist content and save criteria"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
-msgid "Generate"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
-msgid "Shuffle playlist content"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
-msgid "Limit cannot be empty or smaller than 0"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
-msgid "Limit cannot be more than 24 hrs"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
-msgid "The value should be an integer"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
-msgid "500 is the max item limit value you can set"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
-msgid "You must select Criteria and Modifier"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
-msgid "'Length' should be in '00:00:00' format"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
-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:594
-msgid "The value has to be numeric"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
-msgid "The value should be less then 2147483648"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
-#, php-format
-msgid "The value should be less than %s characters"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
-msgid "Value cannot be empty"
-msgstr ""
-
-#: airtime_mvc/application/forms/Login.php:102
-msgid "Type the characters you see in the picture below."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:26
-msgid "Icecast Vorbis Metadata"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:36
-msgid "Stream Label:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:37
-msgid "Artist - Title"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:38
-msgid "Show - Artist - Title"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:39
-msgid "Station name - Show name"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:45
-msgid "Off Air Metadata"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:51
-msgid "Enable Replay Gain"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:57
-msgid "Replay Gain Modifier"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:65
-msgid "Streaming Server:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Airtime Pro Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Custom / 3rd Party Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:95
-msgid "User Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:99
-#: airtime_mvc/application/controllers/LocaleController.php:324
-msgid "Guest"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:100
-#: airtime_mvc/application/controllers/LocaleController.php:322
-msgid "DJ"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:101
-#: airtime_mvc/application/controllers/LocaleController.php:323
-msgid "Program Manager"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:321
-msgid "Admin"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:17
-msgid "First Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:26
-msgid "Last Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:35
-msgid "Company Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:44
-msgid "Email Address:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:54
-msgid "Address 1:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:63
-msgid "Address 2:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:80
-msgid "State/Region:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:89
-msgid "Zip Code / Postal Code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:112
-msgid "Phone Number:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:121
-msgid "Please choose a security question:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:126
-msgid "What is the name of your favorite childhood friend?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:127
-msgid "What school did you attend for sixth grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:128
-msgid "In what city did you meet your spouse/significant other?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:129
-msgid "What street did you live on in third grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:130
-msgid "What is the first name of the boy or girl that you first kissed?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:131
-msgid "In what city or town was your first job?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:135
-msgid "Please enter an answer:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:152
-msgid "VAT/Tax ID (EU only)"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:162
-msgid "Subscribe to Sourcefabric newsletter"
-msgstr ""
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
-msgid "Import Folder:"
-msgstr ""
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
-msgid "Watched Folders:"
-msgstr ""
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
-msgid "Not a valid Directory"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordRestore.php:14
-msgid "Email"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordRestore.php:36
-msgid "Reset password"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
-msgid "Plan type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
-msgid "Billing cycle:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
-msgid "Payment method:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
-msgid "PayPal"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
-msgid "Credit Card via 2Checkout"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:213
-#, php-format
-msgid "The year %s must be within the range of 1753 - 9999"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:216
-#, php-format
-msgid "%s-%s-%s is not a valid date"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:240
-#, php-format
-msgid "%s:%s:%s is not a valid time"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:55
-msgid "Upload some tracks below to add them to your library!"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:57
-#, php-format
-msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:63
-msgid "Click the 'New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:65
-#, php-format
-msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:73
-msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:75
-#, php-format
-msgid ""
-"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
-" %sCreate an unlinked show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:80
-msgid "To start broadcasting, click on the current show and select 'Schedule Show'"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:82
-#, php-format
-msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:89
-msgid "Click on the show starting next and select 'Schedule Show'"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:91
-#, php-format
-msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+#: airtime_mvc/application/controllers/ApiController.php:791
+msgid "Bad request. 'mode' parameter is invalid"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:30
@@ -2902,11 +555,6 @@ msgstr ""
msgid "You can only add tracks to smart blocks."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:50
-#: airtime_mvc/application/controllers/PlaylistController.php:180
-msgid "You can only add tracks, smart blocks, and webstreams to playlists."
-msgstr ""
-
#: airtime_mvc/application/controllers/LocaleController.php:53
msgid "Please select a cursor position on timeline."
msgstr ""
@@ -2947,11 +595,6 @@ msgstr ""
msgid "Click 'New' to create one."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:66
-#: airtime_mvc/application/controllers/LibraryController.php:123
-msgid "Edit Metadata"
-msgstr ""
-
#: airtime_mvc/application/controllers/LocaleController.php:67
msgid "Add to selected show"
msgstr ""
@@ -2980,6 +623,12 @@ msgstr ""
msgid "Scheduled"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:74
+#: airtime_mvc/application/layouts/scripts/layout.phtml:78
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
+msgid "Tracks"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:75
#: airtime_mvc/application/layouts/scripts/layout.phtml:60
msgid "Playlist"
@@ -2989,18 +638,96 @@ msgstr ""
msgid "Bit Rate"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:80
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
+#: airtime_mvc/application/models/Block.php:1354
+msgid "BPM"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:84
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
+#: airtime_mvc/application/models/Block.php:1361
+msgid "Encoded By"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:89
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
+#: airtime_mvc/application/models/Block.php:1367
+msgid "Last Modified"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:90
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
+#: airtime_mvc/application/models/Block.php:1368
+msgid "Last Played"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
+#: airtime_mvc/application/models/Block.php:1370
+msgid "Mime"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:94
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
+#: airtime_mvc/application/models/Block.php:1372
+msgid "Owner"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:95
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
+#: airtime_mvc/application/models/Block.php:1373
+msgid "Replay Gain"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:96
msgid "Sample Rate"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:97
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
+#: airtime_mvc/application/models/Block.php:1376
+msgid "Track Number"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:98
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
+#: airtime_mvc/application/models/Block.php:1377
+msgid "Uploaded"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:99
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
+#: airtime_mvc/application/models/Block.php:1378
+msgid "Website"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:101
msgid "Loading..."
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:102
+#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
+msgid "All"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:103
msgid "Files"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:104
+#: airtime_mvc/application/layouts/scripts/layout.phtml:80
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
+msgid "Playlists"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:105
+#: airtime_mvc/application/layouts/scripts/layout.phtml:82
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
+msgid "Smart Blocks"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:106
msgid "Web Streams"
msgstr ""
@@ -3145,6 +872,74 @@ msgstr ""
msgid "Processing..."
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:151
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
+#: airtime_mvc/application/models/Block.php:1383
+msgid "Select modifier"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:152
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
+#: airtime_mvc/application/models/Block.php:1384
+msgid "contains"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:153
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
+#: airtime_mvc/application/models/Block.php:1385
+msgid "does not contain"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:154
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
+#: airtime_mvc/application/models/Block.php:1386
+#: airtime_mvc/application/models/Block.php:1390
+msgid "is"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:155
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
+#: airtime_mvc/application/models/Block.php:1387
+#: airtime_mvc/application/models/Block.php:1391
+msgid "is not"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:156
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
+#: airtime_mvc/application/models/Block.php:1388
+msgid "starts with"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:157
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
+#: airtime_mvc/application/models/Block.php:1389
+msgid "ends with"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:158
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
+#: airtime_mvc/application/models/Block.php:1392
+msgid "is greater than"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:159
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
+#: airtime_mvc/application/models/Block.php:1393
+msgid "is less than"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:160
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
+#: airtime_mvc/application/models/Block.php:1394
+msgid "is in the range"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:162
msgid "Choose Storage Folder"
msgstr ""
@@ -3159,6 +954,11 @@ msgid ""
"This will remove the files from your Airtime library!"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:166
+#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
+msgid "Manage Media Folders"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:167
msgid "Are you sure you want to remove the watched folder?"
msgstr ""
@@ -3180,6 +980,11 @@ msgstr ""
msgid "The stream is disabled"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:173
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
+msgid "Getting information from the server..."
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:174
msgid "Can not connect to the streaming server"
msgstr ""
@@ -3407,6 +1212,76 @@ msgstr ""
msgid "Month"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:249
+#: airtime_mvc/application/forms/GeneralPreferences.php:158
+msgid "Sunday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:250
+#: airtime_mvc/application/forms/GeneralPreferences.php:159
+msgid "Monday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:251
+#: airtime_mvc/application/forms/GeneralPreferences.php:160
+msgid "Tuesday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:252
+#: airtime_mvc/application/forms/GeneralPreferences.php:161
+msgid "Wednesday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:253
+#: airtime_mvc/application/forms/GeneralPreferences.php:162
+msgid "Thursday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:254
+#: airtime_mvc/application/forms/GeneralPreferences.php:163
+msgid "Friday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:255
+#: airtime_mvc/application/forms/GeneralPreferences.php:164
+msgid "Saturday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:256
+#: airtime_mvc/application/forms/AddShowRepeats.php:35
+msgid "Sun"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:257
+#: airtime_mvc/application/forms/AddShowRepeats.php:36
+msgid "Mon"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:258
+#: airtime_mvc/application/forms/AddShowRepeats.php:37
+msgid "Tue"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:259
+#: airtime_mvc/application/forms/AddShowRepeats.php:38
+msgid "Wed"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:260
+#: airtime_mvc/application/forms/AddShowRepeats.php:39
+msgid "Thu"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:261
+#: airtime_mvc/application/forms/AddShowRepeats.php:40
+msgid "Fri"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:262
+#: airtime_mvc/application/forms/AddShowRepeats.php:41
+msgid "Sat"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:263
msgid "Shows longer than their scheduled time will be cut off by a following show."
msgstr ""
@@ -3416,7 +1291,7 @@ msgid "Cancel Current Show?"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:265
-#: airtime_mvc/application/controllers/LocaleController.php:309
+#: airtime_mvc/application/controllers/LocaleController.php:312
msgid "Stop recording current show?"
msgstr ""
@@ -3436,6 +1311,11 @@ msgstr ""
msgid "Delete selected item(s)?"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:273
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
+msgid "Start"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:274
msgid "End"
msgstr ""
@@ -3444,580 +1324,467 @@ msgstr ""
msgid "Duration"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:283
+#: airtime_mvc/application/controllers/LocaleController.php:276
+msgid "Filtering out "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:277
+msgid " of "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:278
+msgid " records"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/layouts/scripts/layout.phtml:140
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
+#: airtime_mvc/application/models/Block.php:1358
+msgid "Cue In"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/layouts/scripts/layout.phtml:147
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
+#: airtime_mvc/application/models/Block.php:1359
+msgid "Cue Out"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:286
#: airtime_mvc/application/layouts/scripts/layout.phtml:167
msgid "Fade In"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/controllers/LocaleController.php:287
#: airtime_mvc/application/layouts/scripts/layout.phtml:168
msgid "Fade Out"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/controllers/LocaleController.php:288
msgid "Show Empty"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:286
+#: airtime_mvc/application/controllers/LocaleController.php:289
msgid "Recording From Line In"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:287
+#: airtime_mvc/application/controllers/LocaleController.php:290
msgid "Track preview"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:291
+#: airtime_mvc/application/controllers/LocaleController.php:294
msgid "Cannot schedule outside a show."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:292
+#: airtime_mvc/application/controllers/LocaleController.php:295
msgid "Moving 1 Item"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:293
+#: airtime_mvc/application/controllers/LocaleController.php:296
#, php-format
msgid "Moving %s Items"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:296
-msgid "Fade Editor"
-msgstr ""
-
#: airtime_mvc/application/controllers/LocaleController.php:297
-msgid "Cue Editor"
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
+#: airtime_mvc/application/forms/Preferences.php:40
+#: airtime_mvc/application/forms/EditHistory.php:131
+#: airtime_mvc/application/forms/AddUser.php:110
+#: airtime_mvc/application/forms/PasswordChange.php:43
+#: airtime_mvc/application/forms/SupportSettings.php:131
+msgid "Save"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:298
-msgid "Waveform features are available in a browser supporting the Web Audio API"
+#: airtime_mvc/application/controllers/LocaleController.php:321
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
+#: airtime_mvc/application/forms/EditHistory.php:141
+#: airtime_mvc/application/forms/EditAudioMD.php:186
+msgid "Cancel"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:299
+msgid "Fade Editor"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:300
+msgid "Cue Editor"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:301
-msgid "Select all"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LocaleController.php:302
-msgid "Select none"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LocaleController.php:303
-msgid "Trim overbooked shows"
+msgid "Waveform features are available in a browser supporting the Web Audio API"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:304
-msgid "Remove selected scheduled items"
+msgid "Select all"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:305
-msgid "Jump to the current playing track"
+msgid "Select none"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:306
+msgid "Trim overbooked shows"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:307
+msgid "Remove selected scheduled items"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:308
+msgid "Jump to the current playing track"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:309
msgid "Cancel current show"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:311
+#: airtime_mvc/application/controllers/LocaleController.php:314
msgid "Open library to add or remove content"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:312
+#: airtime_mvc/application/controllers/LocaleController.php:315
msgid "Add / Remove Content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:317
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
+msgid "in use"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:318
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
+msgid "Disk"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:320
msgid "Look in"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:319
+#: airtime_mvc/application/controllers/LocaleController.php:322
msgid "Open"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:324
+#: airtime_mvc/application/forms/AddUser.php:102
+msgid "Admin"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:325
-msgid "Guests can do the following:"
+#: airtime_mvc/application/forms/AddUser.php:100
+msgid "DJ"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:326
-msgid "View schedule"
+#: airtime_mvc/application/forms/AddUser.php:101
+msgid "Program Manager"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:327
-msgid "View show content"
+#: airtime_mvc/application/forms/AddUser.php:99
+msgid "Guest"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:328
-msgid "DJs can do the following:"
+msgid "Guests can do the following:"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:329
-msgid "Manage assigned show content"
+msgid "View schedule"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:330
-msgid "Import media files"
+msgid "View show content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:331
-msgid "Create playlists, smart blocks, and webstreams"
+msgid "DJs can do the following:"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:332
-msgid "Manage their own library content"
+msgid "Manage assigned show content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:333
-msgid "Progam Managers can do the following:"
+msgid "Import media files"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:334
-msgid "View and manage show content"
+msgid "Create playlists, smart blocks, and webstreams"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:335
-msgid "Schedule shows"
+msgid "Manage their own library content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:336
-msgid "Manage all library content"
+msgid "Progam Managers can do the following:"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:337
-msgid "Admins can do the following:"
+msgid "View and manage show content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:338
-msgid "Manage preferences"
+msgid "Schedule shows"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:339
-msgid "Manage users"
+msgid "Manage all library content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:340
-msgid "Manage watched folders"
+msgid "Admins can do the following:"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:341
+msgid "Manage preferences"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:342
-msgid "View system status"
+msgid "Manage users"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:343
-msgid "Access playout history"
+msgid "Manage watched folders"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:344
-msgid "View listener stats"
+#: airtime_mvc/application/forms/RegisterAirtime.php:116
+#: airtime_mvc/application/forms/SupportSettings.php:98
+msgid "Send support feedback"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:345
+msgid "View system status"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:346
-msgid "Show / hide columns"
+msgid "Access playout history"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:348
-msgid "From {from} to {to}"
+#: airtime_mvc/application/controllers/LocaleController.php:347
+msgid "View listener stats"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:349
-msgid "kbps"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LocaleController.php:350
-msgid "yyyy-mm-dd"
+msgid "Show / hide columns"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:351
-msgid "hh:mm:ss.t"
+msgid "From {from} to {to}"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:352
-msgid "kHz"
+msgid "kbps"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:353
+msgid "yyyy-mm-dd"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:354
+msgid "hh:mm:ss.t"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:355
-msgid "Su"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LocaleController.php:356
-msgid "Mo"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LocaleController.php:357
-msgid "Tu"
+msgid "kHz"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:358
-msgid "We"
+msgid "Su"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:359
-msgid "Th"
+msgid "Mo"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:360
-msgid "Fr"
+msgid "Tu"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:361
-msgid "Sa"
+msgid "We"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:362
+msgid "Th"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:363
+msgid "Fr"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:364
-msgid "Hour"
+msgid "Sa"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
+msgid "Close"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:367
+msgid "Hour"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:368
msgid "Minute"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:366
+#: airtime_mvc/application/controllers/LocaleController.php:369
msgid "Done"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:369
+#: airtime_mvc/application/controllers/LocaleController.php:372
msgid "Select files"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:370
-#: airtime_mvc/application/controllers/LocaleController.php:371
+#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:374
msgid "Add files to the upload queue and click the start button."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:372
-#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:376
msgid "Status"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:374
+#: airtime_mvc/application/controllers/LocaleController.php:377
msgid "Add Files"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:378
msgid "Stop Upload"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:376
+#: airtime_mvc/application/controllers/LocaleController.php:379
msgid "Start upload"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:377
+#: airtime_mvc/application/controllers/LocaleController.php:380
msgid "Add files"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:378
+#: airtime_mvc/application/controllers/LocaleController.php:381
#, php-format
msgid "Uploaded %d/%d files"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:379
+#: airtime_mvc/application/controllers/LocaleController.php:382
msgid "N/A"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:380
+#: airtime_mvc/application/controllers/LocaleController.php:383
msgid "Drag files here."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:381
+#: airtime_mvc/application/controllers/LocaleController.php:384
msgid "File extension error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:382
+#: airtime_mvc/application/controllers/LocaleController.php:385
msgid "File size error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:383
+#: airtime_mvc/application/controllers/LocaleController.php:386
msgid "File count error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:384
+#: airtime_mvc/application/controllers/LocaleController.php:387
msgid "Init error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:385
+#: airtime_mvc/application/controllers/LocaleController.php:388
msgid "HTTP Error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:386
+#: airtime_mvc/application/controllers/LocaleController.php:389
msgid "Security error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:387
+#: airtime_mvc/application/controllers/LocaleController.php:390
msgid "Generic error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:388
+#: airtime_mvc/application/controllers/LocaleController.php:391
msgid "IO error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:389
+#: airtime_mvc/application/controllers/LocaleController.php:392
#, php-format
msgid "File: %s"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:391
+#: airtime_mvc/application/controllers/LocaleController.php:394
#, php-format
msgid "%d files queued"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:392
+#: airtime_mvc/application/controllers/LocaleController.php:395
msgid "File: %f, size: %s, max file size: %m"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/controllers/LocaleController.php:396
msgid "Upload URL might be wrong or doesn't exist"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:394
+#: airtime_mvc/application/controllers/LocaleController.php:397
msgid "Error: File too large: "
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:395
+#: airtime_mvc/application/controllers/LocaleController.php:398
msgid "Error: Invalid file extension: "
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:398
+#: airtime_mvc/application/controllers/LocaleController.php:400
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
+msgid "Set Default"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:401
msgid "Create Entry"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:399
+#: airtime_mvc/application/controllers/LocaleController.php:402
msgid "Edit History Record"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:402
+#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
+#: airtime_mvc/application/forms/EditHistoryItem.php:57
+msgid "No Show"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:405
#, php-format
msgid "Copied %s row%s to the clipboard"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/controllers/LocaleController.php:406
#, php-format
msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/controllers/LocaleController.php:407
msgid "New Show"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:405
+#: airtime_mvc/application/controllers/LocaleController.php:408
msgid "New Log Entry"
msgstr ""
-#: airtime_mvc/application/controllers/ScheduleController.php:389
-#, php-format
-msgid "Rebroadcast of show %s from %s at %s"
-msgstr ""
-
-#: airtime_mvc/application/controllers/ScheduleController.php:712
-#: airtime_mvc/application/controllers/LibraryController.php:131
-msgid "Download"
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:78
-msgid "Page not found."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:87
-msgid "The requested action is not supported."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:98
-msgid "You do not have permission to access this resource."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:109
-msgid "An internal application error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ListenerstatController.php:51
-msgid "Please make sure admin user/password is correct on System->Streams page."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:53
-#, php-format
-msgid "You are viewing an older version of %s"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:140
-msgid "You cannot add tracks to dynamic blocks."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:147
-#: airtime_mvc/application/controllers/LibraryController.php:31
-#, php-format
-msgid "%s not found"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:161
-#, php-format
-msgid "You don't have permission to delete selected %s(s)."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:168
-#: airtime_mvc/application/controllers/LibraryController.php:40
-msgid "Something went wrong."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:174
-msgid "You can only add tracks to smart block."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:192
-msgid "Untitled Playlist"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:194
-msgid "Untitled Smart Block"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:522
-msgid "Unknown Playlist"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:43
-msgid "Please enter your username and password."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:93
-msgid "Wrong username or password provided. Please try again."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:167
-msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:173
-msgid "There was a problem with the username or email address you entered."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:35
-#: airtime_mvc/application/controllers/DashboardController.php:84
-msgid "You don't have permission to disconnect source."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:37
-#: airtime_mvc/application/controllers/DashboardController.php:86
-msgid "There is no source connected to this input."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:81
-msgid "You don't have permission to switch source."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:72
-msgid "Preferences updated."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:115
-msgid "Support setting updated."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:123
-msgid "Support Feedback"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:251
-msgid "Stream Setting Updated."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:342
-msgid "path should be specified"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:437
-msgid "Problem with Liquidsoap..."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:493
-msgid "Request method not accepted"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:86
-msgid "User added successfully!"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:88
-msgid "User updated successfully!"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:187
-msgid "Settings updated successfully!"
-msgstr ""
-
-#: airtime_mvc/application/controllers/WebstreamController.php:28
-#: airtime_mvc/application/controllers/WebstreamController.php:32
-msgid "Untitled Webstream"
-msgstr ""
-
-#: airtime_mvc/application/controllers/WebstreamController.php:150
-msgid "Webstream saved."
-msgstr ""
-
-#: airtime_mvc/application/controllers/WebstreamController.php:158
-msgid "Invalid form values."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:95
-#: airtime_mvc/application/controllers/ShowbuilderController.php:136
-msgid "Preview"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:115
-#: airtime_mvc/application/controllers/LibraryController.php:177
-#: airtime_mvc/application/controllers/LibraryController.php:200
-msgid "Add to Playlist"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:117
-msgid "Add to Smart Block"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:147
-msgid "View track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:148
-msgid "Remove track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:154
-#: airtime_mvc/application/controllers/LibraryController.php:159
-msgid "Upload track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:169
-msgid "Duplicate Playlist"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:213
-msgid "No action available"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:233
-msgid "You don't have permission to delete selected items."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:279
-msgid "Could not delete file because it is scheduled in the future."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:282
-msgid "Could not delete file(s)."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:322
-#, php-format
-msgid "Copy of %s"
-msgstr ""
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
-msgid ""
-"To configure and use the embeddable player you must:
\n"
-" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
-" 2. Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
-msgid ""
-"To use the embeddable weekly schedule widget you must:
\n"
-" Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
#: airtime_mvc/application/controllers/ShowbuilderController.php:138
msgid "Select cursor"
msgstr ""
@@ -4030,37 +1797,76 @@ msgstr ""
msgid "show does not exist"
msgstr ""
-#: airtime_mvc/application/controllers/ApiController.php:79
-msgid "You are not allowed to access this resource."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ApiController.php:244
-#: airtime_mvc/application/controllers/ApiController.php:317
-#: airtime_mvc/application/controllers/ApiController.php:392
-#: airtime_mvc/application/controllers/ApiController.php:435
-#: airtime_mvc/application/controllers/ApiController.php:474
-#: airtime_mvc/application/controllers/ApiController.php:507
-msgid "You are not allowed to access this resource. "
-msgstr ""
-
-#: airtime_mvc/application/controllers/ApiController.php:698
-#: airtime_mvc/application/controllers/ApiController.php:718
-#: airtime_mvc/application/controllers/ApiController.php:730
+#: airtime_mvc/application/controllers/ScheduleController.php:389
#, php-format
-msgid "File does not exist in %s"
+msgid "Rebroadcast of show %s from %s at %s"
msgstr ""
-#: airtime_mvc/application/controllers/ApiController.php:781
-msgid "Bad request. no 'mode' parameter passed."
+#: airtime_mvc/application/common/UsabilityHints.php:55
+msgid "Upload some tracks below to add them to your library!"
msgstr ""
-#: airtime_mvc/application/controllers/ApiController.php:791
-msgid "Bad request. 'mode' parameter is invalid"
-msgstr ""
-
-#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#: airtime_mvc/application/common/UsabilityHints.php:57
#, php-format
-msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:63
+msgid "Click the 'New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:65
+#, php-format
+msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:73
+msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:75
+#, php-format
+msgid ""
+"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
+" %sCreate an unlinked show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:80
+msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:82
+#, php-format
+msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:89
+msgid "Click on the show starting next and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:91
+#, php-format
+msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/DateHelper.php:213
+#, php-format
+msgid "The year %s must be within the range of 1753 - 9999"
+msgstr ""
+
+#: airtime_mvc/application/common/DateHelper.php:216
+#, php-format
+msgid "%s-%s-%s is not a valid date"
+msgstr ""
+
+#: airtime_mvc/application/common/DateHelper.php:240
+#, php-format
+msgid "%s:%s:%s is not a valid time"
+msgstr ""
+
+#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
+msgid "Live stream"
msgstr ""
#: airtime_mvc/application/layouts/scripts/layout.phtml:63
@@ -4075,6 +1881,17 @@ msgstr ""
msgid "Upload"
msgstr ""
+#: airtime_mvc/application/layouts/scripts/layout.phtml:76
+#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
+msgid "Dashboard"
+msgstr ""
+
+#: airtime_mvc/application/layouts/scripts/layout.phtml:84
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
+msgid "Webstreams"
+msgstr ""
+
#: airtime_mvc/application/layouts/scripts/layout.phtml:135
#: airtime_mvc/application/layouts/scripts/layout.phtml:161
msgid "Play"
@@ -4096,3 +1913,2124 @@ msgstr ""
#: airtime_mvc/application/layouts/scripts/layout.phtml:166
msgid "Cursor"
msgstr ""
+
+#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#, php-format
+msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
+msgid "Drop files here or click to browse your computer."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
+msgid "Failed"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
+msgid "Pending"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
+msgid "Recent Uploads"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
+msgid "Share"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
+msgid "Select stream:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
+msgid "mute"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
+msgid "unmute"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
+msgid "About"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
+#, php-format
+msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
+#, php-format
+msgid "%1$s %2$s is distributed under the %3$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
+#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
+#, php-format
+msgid "Welcome to %s!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
+#, php-format
+msgid "Here's how you can get started using %s to automate your broadcasts: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
+msgid "Upload audio tracks"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
+msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
+msgid "Schedule a show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
+msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
+msgid "Add tracks to your show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
+msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
+msgid "Now you're good to go!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
+#, php-format
+msgid "For more detailed help, read the %suser manual%s."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
+#: airtime_mvc/application/configs/navigation.php:40
+msgid "Weekly Schedule"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
+#: airtime_mvc/application/forms/Player.php:77
+msgid "Preview:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
+#: airtime_mvc/application/configs/navigation.php:34
+msgid "Player"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:97
+msgid "Playout History"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
+msgid "Log Sheet"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
+msgid "File Summary"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
+msgid "Show Summary"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
+msgid "Expand Static Block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
+msgid "Expand Dynamic Block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
+msgid "Choose some search criteria above and click Generate to create this playlist."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
+msgid "A track list will be generated when you schedule this smart block into a show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
+msgid "Drag tracks here from your library to add them to the playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
+msgid "Editing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:26
+msgid "Name:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
+#: airtime_mvc/application/forms/AddShowWhat.php:54
+msgid "Description:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
+#: airtime_mvc/application/forms/AddShowWhen.php:89
+msgid "Duration:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
+msgid "Toggle Details"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+msgid "Shuffle playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
+msgid "Shuffle"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
+msgid "Playlist crossfade"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+msgid "Empty playlist content"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Clear"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+msgid "Fade in: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "Fade out: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+msgid "Save playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
+msgid "No open playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
+msgid "Show Waveform"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "(ss.t)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Remove all content from this smart block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
+msgid "No smart block currently open"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+msgid "Cue In: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "(hh:mm:ss.t)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "Cue Out: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
+msgid "Original Length:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:56
+msgid "General"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
+msgid "Stream Settings"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
+msgid "Global"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
+msgid "dB"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
+msgid "Output Streams"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:3
+#: airtime_mvc/application/forms/Login.php:83
+msgid "Login"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:7
+#, php-format
+msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
+msgid "Email Sent!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
+msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
+msgid "Back"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
+msgid "Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
+msgid "New password"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
+msgid "Please enter and confirm your new password in the fields below."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
+msgid "Manage Users"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
+msgid "New User"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
+msgid "id"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
+#: airtime_mvc/application/forms/PasswordRestore.php:25
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
+msgid "Username"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
+msgid "First Name"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
+msgid "Last Name"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
+msgid "User Type"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
+#, php-format
+msgid "Super Admin details can be changed in your Billing Settings."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
+msgid "Find Shows"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
+msgid "Choose Show Instance"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
+msgid "Find"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
+#: airtime_mvc/application/configs/navigation.php:61
+msgid "My Profile"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
+#, php-format
+msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
+msgid "Repeat Days:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
+#: airtime_mvc/application/forms/GeneralPreferences.php:53
+#: airtime_mvc/application/forms/AddShowStyle.php:64
+msgid "Remove"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
+msgid "Add"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
+msgid "Show Source"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
+msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
+msgid "Register Airtime"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
+#, php-format
+msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
+#, php-format
+msgid "Click the box below to promote your station on %s."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
+msgid "(Required)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
+msgid "(for verification purposes only, will not be published)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
+#: airtime_mvc/application/forms/GeneralPreferences.php:43
+msgid "Note: Anything larger than 600x600 will be resized."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
+msgid "Show me what I am sending "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
+msgid "Terms and Conditions"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
+msgid "Choose Days:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
+msgid "Search Criteria:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
+msgid "New Criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
+msgid "or"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
+msgid "and"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
+msgid "New Modifier"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
+msgid " to "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
+msgid "files meet the criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
+msgid "file meets the criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
+msgid "Filter History"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/login.phtml:41
+msgid "Forgot your password?"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
+msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
+msgid "Stream "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
+msgid "Additional Options"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
+msgid "The following info will be displayed to listeners in their media player:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
+msgid "(Your radio station website)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
+msgid "Stream URL: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
+msgid "Choose folder"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
+msgid "Set"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
+msgid "Current Import Folder:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
+#, php-format
+msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
+msgid "Remove watched directory"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
+msgid "You are not watching any media folders."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
+msgid "Live Broadcasting"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
+msgid "Master Source"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
+msgid "Use these settings in your broadcasting software to stream live at any time."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
+msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
+msgid "TuneIn Settings"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
+msgid "SoundCloud Settings"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
+msgid "Dangerous Options"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Add this show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Update show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
+msgid "What"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
+msgid "When"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
+msgid "Live Stream Input"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
+msgid "Who"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
+msgid "Style"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
+msgid "Disk Space"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:3
+msgid "File import in progress..."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:10
+#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
+msgid "Advanced Search Options"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
+#: airtime_mvc/application/forms/EditAudioMD.php:24
+#: airtime_mvc/application/forms/Player.php:15
+msgid "Title:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
+#: airtime_mvc/application/forms/EditAudioMD.php:34
+msgid "Creator:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
+#: airtime_mvc/application/forms/EditAudioMD.php:44
+msgid "Album:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
+msgid "Track:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
+msgid "Length:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
+msgid "Sample Rate:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
+msgid "Bit Rate:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
+#: airtime_mvc/application/forms/EditAudioMD.php:115
+msgid "Mood:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:45
+#: airtime_mvc/application/forms/EditAudioMD.php:62
+msgid "Genre:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
+#: airtime_mvc/application/forms/EditAudioMD.php:72
+msgid "Year:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
+#: airtime_mvc/application/forms/EditAudioMD.php:85
+msgid "Label:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
+#: airtime_mvc/application/forms/EditAudioMD.php:125
+msgid "BPM:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
+#: airtime_mvc/application/forms/EditAudioMD.php:95
+msgid "Composer:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
+#: airtime_mvc/application/forms/EditAudioMD.php:105
+msgid "Conductor:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
+#: airtime_mvc/application/forms/EditAudioMD.php:135
+msgid "Copyright:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
+msgid "Isrc Number:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
+#: airtime_mvc/application/forms/EditAudioMD.php:155
+msgid "Website:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
+#: airtime_mvc/application/forms/EditAudioMD.php:165
+#: airtime_mvc/application/forms/EditUser.php:119
+#: airtime_mvc/application/forms/Login.php:68
+msgid "Language:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
+msgid "File Path:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
+msgid "Web Stream"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
+msgid "Dynamic Smart Block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
+msgid "Static Smart Block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
+msgid "Audio Track"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
+msgid "Playlist Contents: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
+msgid "Static Smart Block Contents: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
+msgid "Dynamic Smart Block Criteria: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
+msgid "Limit to "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
+#: airtime_mvc/application/forms/AddShowWhat.php:36
+msgid "URL:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
+msgid "Viewing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
+msgid "Listeners"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
+msgid "Stream Data Collection Status"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
+msgid "Your trial expires in"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
+msgid "days"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
+msgid "Previous:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
+msgid "Next:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
+msgid "Source Streams"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
+msgid "ON AIR"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
+msgid "Listen"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
+msgid "Logout"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
+msgid "Playout History Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
+msgid "Log Sheet Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
+msgid "New Log Sheet Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
+msgid "No Log Sheet Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
+msgid "File Summary Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
+msgid "New File Summary Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
+msgid "No File Summary Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
+msgid "Creating File Summary Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
+msgid "Creating Log Sheet Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
+msgid "Name"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
+msgid "Add more elements"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
+msgid "Add New Field"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
+msgid "Set Default Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
+msgid "Description"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
+msgid "Stream URL:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
+msgid "Default Length:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
+msgid "No webstream"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
+#: airtime_mvc/application/views/scripts/error/error.phtml:6
+msgid "An error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
+msgid "Access Denied!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
+msgid "You do not have permission to access this page!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
+#: airtime_mvc/application/views/scripts/error/error.phtml:14
+#: airtime_mvc/application/configs/navigation.php:143
+msgid "Help"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
+msgid "Oops!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
+msgid "Something went wrong!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
+msgid "Bad Request!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
+msgid "The requested action is not supported!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
+msgid "Page not found!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
+msgid "We couldn't find the page you were looking for."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error.phtml:12
+msgid "Looks like the page you were looking for doesn't exist!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
+msgid "previous"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
+msgid "play"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
+msgid "pause"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
+msgid "next"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
+msgid "stop"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
+msgid "max volume"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
+msgid "Update Required"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
+#, php-format
+msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
+msgid "Plan type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
+msgid "Billing cycle:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
+msgid "Payment method:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
+msgid "PayPal"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
+msgid "Credit Card via 2Checkout"
+msgstr ""
+
+#: airtime_mvc/application/forms/DateRange.php:16
+#: airtime_mvc/application/forms/ShowBuilder.php:18
+msgid "Date Start:"
+msgstr ""
+
+#: airtime_mvc/application/forms/DateRange.php:35
+#: airtime_mvc/application/forms/DateRange.php:63
+#: airtime_mvc/application/forms/ShowBuilder.php:37
+#: airtime_mvc/application/forms/ShowBuilder.php:65
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
+msgid "Invalid character entered"
+msgstr ""
+
+#: airtime_mvc/application/forms/DateRange.php:44
+#: airtime_mvc/application/forms/ShowBuilder.php:46
+#: airtime_mvc/application/forms/AddShowRepeats.php:56
+msgid "Date End:"
+msgstr ""
+
+#: airtime_mvc/application/forms/ShowBuilder.php:72
+#: airtime_mvc/application/forms/ShowBuilder.php:88
+msgid "Filter by Show"
+msgstr ""
+
+#: airtime_mvc/application/forms/ShowBuilder.php:80
+msgid "All My Shows:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWho.php:10
+msgid "Search Users:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWho.php:24
+msgid "DJs:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:30
+#: airtime_mvc/application/forms/GeneralPreferences.php:25
+#: airtime_mvc/application/forms/SupportSettings.php:18
+msgid "Station Name"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:39
+#: airtime_mvc/application/forms/SupportSettings.php:31
+msgid "Phone:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:51
+#: airtime_mvc/application/forms/AddUser.php:67
+#: airtime_mvc/application/forms/EditUser.php:83
+#: airtime_mvc/application/forms/SupportSettings.php:43
+msgid "Email:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:62
+#: airtime_mvc/application/forms/SupportSettings.php:54
+msgid "Station Web Site:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:73
+#: airtime_mvc/application/forms/SupportSettings.php:65
+msgid "Country:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:84
+#: airtime_mvc/application/forms/SupportSettings.php:76
+msgid "City:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:96
+#: airtime_mvc/application/forms/SupportSettings.php:88
+msgid "Station Description:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:106
+#: airtime_mvc/application/forms/GeneralPreferences.php:42
+msgid "Station Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:126
+#: airtime_mvc/application/forms/SupportSettings.php:108
+#, php-format
+msgid "Promote my station on %s"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:151
+#: airtime_mvc/application/forms/SupportSettings.php:120
+#, php-format
+msgid "By checking this box, I agree to %s's %sprivacy policy%s."
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:169
+#: airtime_mvc/application/forms/SupportSettings.php:143
+msgid "You have to agree to privacy policy."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRR.php:10
+msgid "Record from Line In?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRR.php:16
+msgid "Rebroadcast?"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
+#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
+msgid "Value is required and can't be empty"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
+msgid "'%value%' is no valid email address in the basic format local-part@hostname"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
+msgid "'%value%' does not fit the date format '%format%'"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
+msgid "'%value%' is less than %min% characters long"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
+msgid "'%value%' is more than %max% characters long"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
+msgid "'%value%' is not between '%min%' and '%max%', inclusively"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
+msgid "Passwords do not match"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
+msgid "Day must be specified"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
+msgid "Time must be specified"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
+msgid "Must wait at least 1 hour to rebroadcast"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordRestore.php:14
+msgid "Email"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordRestore.php:36
+msgid "Reset password"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhat.php:30
+msgid "Untitled Show"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhat.php:69
+msgid "Instance Description:"
+msgstr ""
+
+#: airtime_mvc/application/forms/DangerousPreferences.php:12
+msgid "Delete All Tracks in Library"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditAudioMD.php:145
+msgid "ISRC Number:"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditAudioMD.php:176
+msgid "OK"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:33
+msgid "Station Description"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:62
+msgid "Default Crossfade Duration (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:68
+#: airtime_mvc/application/forms/GeneralPreferences.php:82
+#: airtime_mvc/application/forms/GeneralPreferences.php:96
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
+msgid "Please enter a time in seconds (eg. 0.5)"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:76
+msgid "Default Fade In (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:90
+msgid "Default Fade Out (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:102
+msgid "Public Airtime API"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:103
+msgid "Required for embeddable schedule widget."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:105
+msgid "Disabled"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:106
+msgid "Enabled"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:109
+msgid ""
+"Enabling this feature will allow Airtime to provide schedule data\n"
+" to external widgets that can be embedded in your website."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:120
+msgid "Default Language"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:127
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
+msgid "Station Timezone"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:134
+msgid "Week Starts On"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:150
+msgid "Display login button on your Radio Page?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:29
+#: airtime_mvc/application/forms/EditUser.php:37
+#: airtime_mvc/application/forms/Login.php:41
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
+msgid "Username:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:38
+#: airtime_mvc/application/forms/EditUser.php:48
+#: airtime_mvc/application/forms/Login.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
+msgid "Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:46
+#: airtime_mvc/application/forms/EditUser.php:57
+msgid "Verify Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:55
+#: airtime_mvc/application/forms/EditUser.php:67
+msgid "Firstname:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:61
+#: airtime_mvc/application/forms/EditUser.php:75
+msgid "Lastname:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:76
+#: airtime_mvc/application/forms/EditUser.php:94
+msgid "Mobile Phone:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:82
+#: airtime_mvc/application/forms/EditUser.php:102
+msgid "Skype:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:88
+#: airtime_mvc/application/forms/EditUser.php:110
+msgid "Jabber:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:95
+msgid "User Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:120
+#: airtime_mvc/application/forms/EditUser.php:155
+msgid "Login name is not unique."
+msgstr ""
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
+msgid "Import Folder:"
+msgstr ""
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
+msgid "Watched Folders:"
+msgstr ""
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
+msgid "Not a valid Directory"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:126
+msgid "What is the name of your favorite childhood friend?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:127
+msgid "What school did you attend for sixth grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:128
+msgid "In what city did you meet your spouse/significant other?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:129
+msgid "What street did you live on in third grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:130
+msgid "What is the first name of the boy or girl that you first kissed?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:131
+msgid "In what city or town was your first job?"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
+msgid "Default License:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
+msgid "All rights are reserved"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
+msgid "The work is in the public domain"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
+msgid "Creative Commons Attribution"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
+msgid "Creative Commons Attribution Noncommercial"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
+msgid "Creative Commons Attribution No Derivative Works"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
+msgid "Creative Commons Attribution Share Alike"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
+msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
+msgid "Creative Commons Attribution Noncommercial Share Alike"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
+msgid "Default Sharing Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
+msgid "Public"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
+msgid "Private"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditUser.php:129
+msgid "Interface Timezone:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:14
+msgid "Now Playing"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:25
+msgid "Select Stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:28
+msgid "Auto detect the most appropriate stream to use."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:29
+msgid "Select a stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:41
+msgid " - Mobile friendly"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:45
+msgid " - The player does not support Opus streams."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:71
+msgid "Embeddable code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:72
+msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
+#: airtime_mvc/application/models/Block.php:1351
+msgid "Select criteria"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
+#: airtime_mvc/application/models/Block.php:1353
+msgid "Bit Rate (Kbps)"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
+#: airtime_mvc/application/models/Block.php:1374
+msgid "Sample Rate (kHz)"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
+msgid "hours"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
+msgid "minutes"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
+#: airtime_mvc/application/models/Block.php:333
+msgid "items"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
+msgid "Randomly"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
+msgid "Newest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
+msgid "Oldest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
+msgid "Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
+msgid "Static"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
+msgid "Dynamic"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
+msgid "Allow Repeated Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
+msgid "Sort Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
+msgid "Limit to:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
+msgid "Generate playlist content and save criteria"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
+msgid "Generate"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
+msgid "Shuffle playlist content"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
+msgid "Limit cannot be empty or smaller than 0"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
+msgid "Limit cannot be more than 24 hrs"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
+msgid "The value should be an integer"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
+msgid "500 is the max item limit value you can set"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
+msgid "You must select Criteria and Modifier"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
+msgid "'Length' should be in '00:00:00' format"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
+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:594
+msgid "The value has to be numeric"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
+msgid "The value should be less then 2147483648"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
+#, php-format
+msgid "The value should be less than %s characters"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
+msgid "Value cannot be empty"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:26
+msgid "Icecast Vorbis Metadata"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:36
+msgid "Stream Label:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:37
+msgid "Artist - Title"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:38
+msgid "Show - Artist - Title"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:39
+msgid "Station name - Show name"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:45
+msgid "Off Air Metadata"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:51
+msgid "Enable Replay Gain"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:57
+msgid "Replay Gain Modifier"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:65
+msgid "Streaming Server:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Airtime Pro Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Custom / 3rd Party Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordChange.php:17
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
+msgid "Password"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordChange.php:28
+msgid "Confirm new password"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordChange.php:36
+msgid "Password confirmation does not match your password."
+msgstr ""
+
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
+msgid "Station Language"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
+msgid "Enabled:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
+msgid "Mobile:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
+msgid "Stream Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
+msgid "Service Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
+msgid "Channels:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "1 - Mono"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "2 - Stereo"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
+msgid "Server"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
+msgid "Port"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
+msgid "Only numbers are allowed."
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
+msgid "URL"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
+msgid "Mount Point"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
+msgid "Admin User"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
+msgid "Admin Password"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
+msgid "Server cannot be empty."
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
+msgid "Port cannot be empty."
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
+msgid "Mount cannot be empty with Icecast server."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:16
+msgid "'%value%' does not fit the time format 'HH:mm'"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:22
+msgid "Start Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:37
+msgid "In the Future:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:64
+msgid "End Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:98
+msgid "Timezone:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:107
+msgid "Repeats?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:139
+msgid "Cannot create show in the past"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:147
+msgid "Cannot modify start date/time of the show that is already started"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:156
+#: airtime_mvc/application/models/Show.php:282
+msgid "End date/time cannot be in the past"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:164
+msgid "Cannot have duration < 0m"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:168
+msgid "Cannot have duration 00h 00m"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:175
+msgid "Cannot have duration greater than 24h"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:19
+msgid "Push metadata to your station on TuneIn?"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:24
+msgid "Station ID:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:30
+msgid "Partner Key:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:36
+msgid "Partner Id:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:77
+#: airtime_mvc/application/forms/TuneInPreferences.php:86
+msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:10
+#, php-format
+msgid "Use %s Authentication:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:16
+msgid "Use Custom Authentication:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:25
+msgid "Custom Username"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:37
+msgid "Custom Password"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:48
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
+msgid "Host:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
+msgid "Port:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:60
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
+msgid "Mount:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:77
+msgid "Username field cannot be empty."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:82
+msgid "Password field cannot be empty."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:12
+msgid "Background Colour:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:31
+msgid "Text Colour:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:49
+msgid "Current Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:72
+msgid "Show Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:87
+msgid "Logo Preview:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Login.php:102
+msgid "Type the characters you see in the picture below."
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
+msgid "Auto Switch Off:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
+msgid "Auto Switch On:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
+msgid "Switch Transition Fade (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:10
+msgid "Link:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:16
+msgid "Repeat Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:19
+msgid "weekly"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:20
+msgid "every 2 weeks"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:21
+msgid "every 3 weeks"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:22
+msgid "every 4 weeks"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:23
+msgid "monthly"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:32
+msgid "Select Days:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:47
+msgid "Repeat By:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the month"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the week"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:69
+msgid "No End?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:106
+msgid "End date must be after start date"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:113
+msgid "Please select a repeat day"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:12
+msgid "Radio Page"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:19
+msgid "Calendar"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:26
+msgid "Widgets"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:48
+msgid "Settings"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:67
+msgid "Users"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:74
+msgid "Streams"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:82
+msgid "Analytics"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:90
+msgid "Listener Stats"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:104
+msgid "History Templates"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:113
+msgid "Billing"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:120
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:127
+msgid "Account Details"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:134
+msgid "View Invoices"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:150
+msgid "Getting Started"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:157
+msgid "FAQ"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:162
+msgid "User Manual"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:167
+msgid "File a Support Ticket"
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:833
+#: airtime_mvc/application/models/Playlist.php:812
+msgid "Cue in and cue out are null."
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:868
+#: airtime_mvc/application/models/Block.php:924
+#: airtime_mvc/application/models/Playlist.php:851
+#: airtime_mvc/application/models/Playlist.php:895
+msgid "Can't set cue out to be greater than file length."
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:879
+#: airtime_mvc/application/models/Block.php:900
+#: airtime_mvc/application/models/Playlist.php:843
+#: airtime_mvc/application/models/Playlist.php:868
+msgid "Can't set cue in to be larger than cue out."
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:935
+#: airtime_mvc/application/models/Playlist.php:887
+msgid "Can't set cue out to be smaller than cue in."
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:1366
+msgid "Upload Time"
+msgstr ""
+
+#: airtime_mvc/application/models/ShowBuilder.php:212
+#, php-format
+msgid "Rebroadcast of %s from %s"
+msgstr ""
+
+#: airtime_mvc/application/models/Preference.php:460
+#, php-format
+msgid "Powered by %s"
+msgstr ""
+
+#: airtime_mvc/application/models/Preference.php:588
+msgid "Select Country"
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:160
+#, php-format
+msgid "%s is already watched."
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:164
+#, php-format
+msgid "%s contains nested watched directory: %s"
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:168
+#, php-format
+msgid "%s is nested within existing watched directory: %s"
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:189
+#: airtime_mvc/application/models/MusicDir.php:370
+#, php-format
+msgid "%s is not a valid directory."
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:232
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list"
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:388
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list."
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:431
+#, php-format
+msgid "%s doesn't exist in the watched list."
+msgstr ""
+
+#: airtime_mvc/application/models/Auth.php:33
+#, php-format
+msgid ""
+"Hi %s, \n"
+"\n"
+"Please click this link to reset your password: "
+msgstr ""
+
+#: airtime_mvc/application/models/Auth.php:38
+#, php-format
+msgid "%s Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/models/Show.php:184
+msgid "Shows can have a max length of 24 hours."
+msgstr ""
+
+#: airtime_mvc/application/models/Show.php:293
+msgid ""
+"Cannot schedule overlapping shows.\n"
+"Note: Resizing a repeating show affects all of its repeats."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:73
+msgid "Cannot move items out of linked shows"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:119
+msgid "The schedule you're viewing is out of date! (sched mismatch)"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:124
+msgid "The schedule you're viewing is out of date! (instance mismatch)"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:132
+#: airtime_mvc/application/models/Scheduler.php:458
+#: airtime_mvc/application/models/Scheduler.php:490
+msgid "The schedule you're viewing is out of date!"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:142
+#, php-format
+msgid "You are not allowed to schedule show %s."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:146
+msgid "You cannot add files to recording shows."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:152
+#, php-format
+msgid "The show %s is over and cannot be scheduled."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:159
+#, php-format
+msgid "The show %s has been previously updated!"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:178
+msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:195
+msgid "Cannot schedule a playlist that contains missing files."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:216
+#: airtime_mvc/application/models/Scheduler.php:305
+msgid "A selected File does not exist!"
+msgstr ""
+
+#: airtime_mvc/application/models/Schedule.php:206
+msgid "livestream"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:166
+msgid "Length needs to be greater than 0 minutes"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:171
+msgid "Length should be of form \"00h 00m\""
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:184
+msgid "URL should be of form \"http://domain\""
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:187
+msgid "URL should be 512 characters or less"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:193
+msgid "No MIME type found for webstream."
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:209
+msgid "Webstream name cannot be empty"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:278
+msgid "Could not parse XSPF playlist"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:298
+msgid "Could not parse PLS playlist"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:318
+msgid "Could not parse M3U playlist"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:332
+msgid "Invalid webstream - This appears to be a file download."
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:336
+#, php-format
+msgid "Unrecognized stream type: %s"
+msgstr ""
+
+#: airtime_mvc/public/setup/rabbitmq-setup.php:78
+msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
+msgstr ""
diff --git a/airtime_mvc/locale/hy/LC_MESSAGES/pro.po b/airtime_mvc/locale/hy/LC_MESSAGES/pro.po
index 866ee0acb..f59b52c3d 100644
--- a/airtime_mvc/locale/hy/LC_MESSAGES/pro.po
+++ b/airtime_mvc/locale/hy/LC_MESSAGES/pro.po
@@ -1,3 +1,139 @@
+#: airtime_mvc/application/controllers/LoginController.php:170
+#, php-format
+msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
+#, php-format
+msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
+#, php-format
+msgid "If you are the primary owner of this station, please reset your password here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
+msgid "Thank you!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
+msgid "Your station has been upgraded successfully."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
+msgid "Return to Airtime"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+#, php-format
+msgid "Purchase an %s plan!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+msgid "My Account"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
+msgid "Upgrade today to get more listeners and storage space!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
+msgid "View Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:257
+msgid "Your Current Plan:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:291
+msgid "Please enter your payment details:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
+msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
+msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:17
+msgid "First Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:26
+msgid "Last Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:35
+msgid "Company Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:44
+msgid "Email Address:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:54
+msgid "Address 1:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:63
+msgid "Address 2:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:70
+msgid "City:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:80
+msgid "State/Region:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:89
+msgid "Zip Code / Postal Code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:102
+msgid "Country:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:112
+msgid "Phone Number:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:121
+msgid "Please choose a security question:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:135
+msgid "Please enter an answer:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:152
+msgid "VAT/Tax ID (EU only)"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:162
+msgid "Subscribe to Sourcefabric newsletter"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:172
+msgid "Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:181
+msgid "Verify Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:193
+msgid "Save"
+msgstr ""
+
#: airtime_mvc/application/models/Auth.php:35
#, php-format
msgid ""
@@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
-msgid "Thank you!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
-msgid "Your station has been upgraded successfully."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
-msgid "Return to Airtime"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
-#, php-format
-msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
-msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
-msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
-#, php-format
-msgid "If you are the primary owner of this station, please reset your password here."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:170
-#, php-format
-msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
-msgstr ""
diff --git a/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.mo
index a7f9db82d..660a61ee9 100644
Binary files a/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.mo and b/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.mo differ
diff --git a/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.po b/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.po
index d764ecaad..3d887f3c8 100644
--- a/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.po
+++ b/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Airtime\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-09-03 10:24-0400\n"
-"PO-Revision-Date: 2015-07-02 10:11+0000\n"
+"POT-Creation-Date: 2015-09-04 11:17-0400\n"
+"PO-Revision-Date: 2015-09-04 08:15+0000\n"
"Last-Translator: Daniel James \n"
"Language-Team: Armenian (Armenia) (http://www.transifex.com/sourcefabric/airtime/language/hy_AM/)\n"
"Language: hy_AM\n"
@@ -17,132 +17,6 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: airtime_mvc/public/setup/rabbitmq-setup.php:78
-msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1117
-#: airtime_mvc/application/services/HistoryService.php:1157
-#: airtime_mvc/application/services/HistoryService.php:1174
-#: airtime_mvc/application/models/Block.php:1375
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
-#: airtime_mvc/application/controllers/LocaleController.php:76
-msgid "Title"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1118
-#: airtime_mvc/application/services/HistoryService.php:1158
-#: airtime_mvc/application/services/HistoryService.php:1175
-#: airtime_mvc/application/models/Block.php:1360
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
-#: airtime_mvc/application/controllers/LocaleController.php:77
-msgid "Creator"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1119
-#: airtime_mvc/application/models/Block.php:1352
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
-#: airtime_mvc/application/controllers/LocaleController.php:78
-msgid "Album"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1120
-#: airtime_mvc/application/services/HistoryService.php:1177
-#: airtime_mvc/application/models/Block.php:1369
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
-#: airtime_mvc/application/controllers/LocaleController.php:91
-msgid "Length"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1121
-#: airtime_mvc/application/models/Block.php:1362
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
-#: airtime_mvc/application/controllers/LocaleController.php:85
-msgid "Genre"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1122
-#: airtime_mvc/application/models/Block.php:1371
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
-#: airtime_mvc/application/controllers/LocaleController.php:93
-msgid "Mood"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1123
-#: airtime_mvc/application/models/Block.php:1364
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
-#: airtime_mvc/application/controllers/LocaleController.php:87
-msgid "Label"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1124
-#: airtime_mvc/application/services/HistoryService.php:1178
-#: airtime_mvc/application/models/Block.php:1355
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
-#: airtime_mvc/application/controllers/LocaleController.php:81
-msgid "Composer"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1125
-#: airtime_mvc/application/models/Block.php:1363
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
-#: airtime_mvc/application/controllers/LocaleController.php:86
-msgid "ISRC"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1126
-#: airtime_mvc/application/services/HistoryService.php:1179
-#: airtime_mvc/application/models/Block.php:1357
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
-#: airtime_mvc/application/controllers/LocaleController.php:83
-msgid "Copyright"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1127
-#: airtime_mvc/application/models/Block.php:1379
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
-#: airtime_mvc/application/controllers/LocaleController.php:100
-msgid "Year"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1128
-msgid "Track"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1129
-#: airtime_mvc/application/models/Block.php:1356
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
-#: airtime_mvc/application/controllers/LocaleController.php:82
-msgid "Conductor"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1130
-#: airtime_mvc/application/models/Block.php:1365
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
-#: airtime_mvc/application/controllers/LocaleController.php:88
-msgid "Language"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1155
-#: airtime_mvc/application/forms/EditHistoryItem.php:32
-msgid "Start Time"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1156
-#: airtime_mvc/application/forms/EditHistoryItem.php:44
-msgid "End Time"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1176
-msgid "Played"
-msgstr ""
-
#: airtime_mvc/application/services/CalendarService.php:50
msgid "Record file doesn't exist"
msgstr ""
@@ -238,2601 +112,380 @@ msgstr ""
msgid "Must wait 1 hour to rebroadcast."
msgstr ""
-#: airtime_mvc/application/models/Schedule.php:206
-msgid "livestream"
+#: airtime_mvc/application/services/HistoryService.php:1117
+#: airtime_mvc/application/services/HistoryService.php:1157
+#: airtime_mvc/application/services/HistoryService.php:1174
+#: airtime_mvc/application/controllers/LocaleController.php:76
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
+#: airtime_mvc/application/models/Block.php:1375
+msgid "Title"
msgstr ""
-#: airtime_mvc/application/models/ShowBuilder.php:212
+#: airtime_mvc/application/services/HistoryService.php:1118
+#: airtime_mvc/application/services/HistoryService.php:1158
+#: airtime_mvc/application/services/HistoryService.php:1175
+#: airtime_mvc/application/controllers/LocaleController.php:77
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
+#: airtime_mvc/application/models/Block.php:1360
+msgid "Creator"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1119
+#: airtime_mvc/application/controllers/LocaleController.php:78
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
+#: airtime_mvc/application/models/Block.php:1352
+msgid "Album"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1120
+#: airtime_mvc/application/services/HistoryService.php:1177
+#: airtime_mvc/application/controllers/LocaleController.php:91
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
+#: airtime_mvc/application/models/Block.php:1369
+msgid "Length"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1121
+#: airtime_mvc/application/controllers/LocaleController.php:85
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
+#: airtime_mvc/application/models/Block.php:1362
+msgid "Genre"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1122
+#: airtime_mvc/application/controllers/LocaleController.php:93
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
+#: airtime_mvc/application/models/Block.php:1371
+msgid "Mood"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1123
+#: airtime_mvc/application/controllers/LocaleController.php:87
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
+#: airtime_mvc/application/models/Block.php:1364
+msgid "Label"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1124
+#: airtime_mvc/application/services/HistoryService.php:1178
+#: airtime_mvc/application/controllers/LocaleController.php:81
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
+#: airtime_mvc/application/models/Block.php:1355
+msgid "Composer"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1125
+#: airtime_mvc/application/controllers/LocaleController.php:86
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
+#: airtime_mvc/application/models/Block.php:1363
+msgid "ISRC"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1126
+#: airtime_mvc/application/services/HistoryService.php:1179
+#: airtime_mvc/application/controllers/LocaleController.php:83
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
+#: airtime_mvc/application/models/Block.php:1357
+msgid "Copyright"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1127
+#: airtime_mvc/application/controllers/LocaleController.php:100
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
+#: airtime_mvc/application/models/Block.php:1379
+msgid "Year"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1128
+msgid "Track"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1129
+#: airtime_mvc/application/controllers/LocaleController.php:82
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
+#: airtime_mvc/application/models/Block.php:1356
+msgid "Conductor"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1130
+#: airtime_mvc/application/controllers/LocaleController.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
+#: airtime_mvc/application/models/Block.php:1365
+msgid "Language"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1155
+#: airtime_mvc/application/forms/EditHistoryItem.php:32
+msgid "Start Time"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1156
+#: airtime_mvc/application/forms/EditHistoryItem.php:44
+msgid "End Time"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1176
+msgid "Played"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:31
+#: airtime_mvc/application/controllers/PlaylistController.php:147
#, php-format
-msgid "Rebroadcast of %s from %s"
+msgid "%s not found"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:166
-msgid "Length needs to be greater than 0 minutes"
+#: airtime_mvc/application/controllers/LibraryController.php:40
+#: airtime_mvc/application/controllers/PlaylistController.php:168
+msgid "Something went wrong."
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:171
-msgid "Length should be of form \"00h 00m\""
+#: airtime_mvc/application/controllers/LibraryController.php:95
+#: airtime_mvc/application/controllers/ShowbuilderController.php:136
+msgid "Preview"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:184
-msgid "URL should be of form \"http://domain\""
+#: airtime_mvc/application/controllers/LibraryController.php:115
+#: airtime_mvc/application/controllers/LibraryController.php:177
+#: airtime_mvc/application/controllers/LibraryController.php:200
+msgid "Add to Playlist"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:187
-msgid "URL should be 512 characters or less"
+#: airtime_mvc/application/controllers/LibraryController.php:117
+msgid "Add to Smart Block"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:193
-msgid "No MIME type found for webstream."
+#: airtime_mvc/application/controllers/LibraryController.php:123
+#: airtime_mvc/application/controllers/LocaleController.php:66
+msgid "Edit Metadata"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:209
-msgid "Webstream name cannot be empty"
+#: airtime_mvc/application/controllers/LibraryController.php:131
+#: airtime_mvc/application/controllers/ScheduleController.php:712
+msgid "Download"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:278
-msgid "Could not parse XSPF playlist"
+#: airtime_mvc/application/controllers/LibraryController.php:147
+msgid "View track"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:298
-msgid "Could not parse PLS playlist"
+#: airtime_mvc/application/controllers/LibraryController.php:148
+msgid "Remove track"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:318
-msgid "Could not parse M3U playlist"
+#: airtime_mvc/application/controllers/LibraryController.php:154
+#: airtime_mvc/application/controllers/LibraryController.php:159
+msgid "Upload track"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:332
-msgid "Invalid webstream - This appears to be a file download."
+#: airtime_mvc/application/controllers/LibraryController.php:169
+msgid "Duplicate Playlist"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:336
+#: airtime_mvc/application/controllers/LibraryController.php:213
+msgid "No action available"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:233
+msgid "You don't have permission to delete selected items."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:279
+msgid "Could not delete file because it is scheduled in the future."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:282
+msgid "Could not delete file(s)."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:322
#, php-format
-msgid "Unrecognized stream type: %s"
+msgid "Copy of %s"
msgstr ""
-#: airtime_mvc/application/models/Preference.php:460
-#, php-format
-msgid "Powered by %s"
+#: airtime_mvc/application/controllers/WebstreamController.php:28
+#: airtime_mvc/application/controllers/WebstreamController.php:32
+msgid "Untitled Webstream"
msgstr ""
-#: airtime_mvc/application/models/Preference.php:588
-msgid "Select Country"
+#: airtime_mvc/application/controllers/WebstreamController.php:150
+msgid "Webstream saved."
msgstr ""
-#: airtime_mvc/application/models/MusicDir.php:160
-#, php-format
-msgid "%s is already watched."
+#: airtime_mvc/application/controllers/WebstreamController.php:158
+msgid "Invalid form values."
msgstr ""
-#: airtime_mvc/application/models/MusicDir.php:164
-#, php-format
-msgid "%s contains nested watched directory: %s"
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:168
-#, php-format
-msgid "%s is nested within existing watched directory: %s"
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:189
-#: airtime_mvc/application/models/MusicDir.php:370
-#, php-format
-msgid "%s is not a valid directory."
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:232
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list"
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:388
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list."
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:431
-#, php-format
-msgid "%s doesn't exist in the watched list."
-msgstr ""
-
-#: airtime_mvc/application/models/Show.php:184
-msgid "Shows can have a max length of 24 hours."
-msgstr ""
-
-#: airtime_mvc/application/models/Show.php:282
-#: airtime_mvc/application/forms/AddShowWhen.php:156
-msgid "End date/time cannot be in the past"
-msgstr ""
-
-#: airtime_mvc/application/models/Show.php:293
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
msgid ""
-"Cannot schedule overlapping shows.\n"
-"Note: Resizing a repeating show affects all of its repeats."
+"To configure and use the embeddable player you must:
\n"
+" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
+" 2. Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/models/Auth.php:33
-#, php-format
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
msgid ""
-"Hi %s, \n"
-"\n"
-"Please click this link to reset your password: "
+"To use the embeddable weekly schedule widget you must:
\n"
+" Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/models/Auth.php:38
+#: airtime_mvc/application/controllers/ListenerstatController.php:51
+msgid "Please make sure admin user/password is correct on System->Streams page."
+msgstr ""
+
+#: airtime_mvc/application/controllers/UserController.php:86
+msgid "User added successfully!"
+msgstr ""
+
+#: airtime_mvc/application/controllers/UserController.php:88
+msgid "User updated successfully!"
+msgstr ""
+
+#: airtime_mvc/application/controllers/UserController.php:187
+msgid "Settings updated successfully!"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PlaylistController.php:53
#, php-format
-msgid "%s Password Reset"
+msgid "You are viewing an older version of %s"
msgstr ""
-#: airtime_mvc/application/models/Block.php:333
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
-msgid "items"
+#: airtime_mvc/application/controllers/PlaylistController.php:140
+msgid "You cannot add tracks to dynamic blocks."
msgstr ""
-#: airtime_mvc/application/models/Block.php:833
-#: airtime_mvc/application/models/Playlist.php:812
-msgid "Cue in and cue out are null."
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:868
-#: airtime_mvc/application/models/Block.php:924
-#: airtime_mvc/application/models/Playlist.php:851
-#: airtime_mvc/application/models/Playlist.php:895
-msgid "Can't set cue out to be greater than file length."
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:879
-#: airtime_mvc/application/models/Block.php:900
-#: airtime_mvc/application/models/Playlist.php:843
-#: airtime_mvc/application/models/Playlist.php:868
-msgid "Can't set cue in to be larger than cue out."
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:935
-#: airtime_mvc/application/models/Playlist.php:887
-msgid "Can't set cue out to be smaller than cue in."
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1351
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
-msgid "Select criteria"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1353
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
-msgid "Bit Rate (Kbps)"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1354
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
-#: airtime_mvc/application/controllers/LocaleController.php:80
-msgid "BPM"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1358
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
-#: airtime_mvc/application/controllers/LocaleController.php:281
-#: airtime_mvc/application/layouts/scripts/layout.phtml:140
-msgid "Cue In"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1359
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:282
-#: airtime_mvc/application/layouts/scripts/layout.phtml:147
-msgid "Cue Out"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1361
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
-#: airtime_mvc/application/controllers/LocaleController.php:84
-msgid "Encoded By"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1366
-msgid "Upload Time"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1367
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
-#: airtime_mvc/application/controllers/LocaleController.php:89
-msgid "Last Modified"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1368
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
-#: airtime_mvc/application/controllers/LocaleController.php:90
-msgid "Last Played"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1370
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
-#: airtime_mvc/application/controllers/LocaleController.php:92
-msgid "Mime"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1372
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
-#: airtime_mvc/application/controllers/LocaleController.php:94
-msgid "Owner"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1373
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
-#: airtime_mvc/application/controllers/LocaleController.php:95
-msgid "Replay Gain"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1374
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
-msgid "Sample Rate (kHz)"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1376
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
-#: airtime_mvc/application/controllers/LocaleController.php:97
-msgid "Track Number"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1377
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
-#: airtime_mvc/application/controllers/LocaleController.php:98
-msgid "Uploaded"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1378
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
-#: airtime_mvc/application/controllers/LocaleController.php:99
-msgid "Website"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1383
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
-#: airtime_mvc/application/controllers/LocaleController.php:151
-msgid "Select modifier"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1384
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
-#: airtime_mvc/application/controllers/LocaleController.php:152
-msgid "contains"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1385
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
-#: airtime_mvc/application/controllers/LocaleController.php:153
-msgid "does not contain"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1386
-#: airtime_mvc/application/models/Block.php:1390
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
-#: airtime_mvc/application/controllers/LocaleController.php:154
-msgid "is"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1387
-#: airtime_mvc/application/models/Block.php:1391
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
-#: airtime_mvc/application/controllers/LocaleController.php:155
-msgid "is not"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1388
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
-#: airtime_mvc/application/controllers/LocaleController.php:156
-msgid "starts with"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1389
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
-#: airtime_mvc/application/controllers/LocaleController.php:157
-msgid "ends with"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
-#: airtime_mvc/application/controllers/LocaleController.php:158
-msgid "is greater than"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1393
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
-#: airtime_mvc/application/controllers/LocaleController.php:159
-msgid "is less than"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1394
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
-#: airtime_mvc/application/controllers/LocaleController.php:160
-msgid "is in the range"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:73
-msgid "Cannot move items out of linked shows"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:119
-msgid "The schedule you're viewing is out of date! (sched mismatch)"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:124
-msgid "The schedule you're viewing is out of date! (instance mismatch)"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:132
-#: airtime_mvc/application/models/Scheduler.php:458
-#: airtime_mvc/application/models/Scheduler.php:490
-msgid "The schedule you're viewing is out of date!"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:142
+#: airtime_mvc/application/controllers/PlaylistController.php:161
#, php-format
-msgid "You are not allowed to schedule show %s."
+msgid "You don't have permission to delete selected %s(s)."
msgstr ""
-#: airtime_mvc/application/models/Scheduler.php:146
-msgid "You cannot add files to recording shows."
+#: airtime_mvc/application/controllers/PlaylistController.php:174
+msgid "You can only add tracks to smart block."
msgstr ""
-#: airtime_mvc/application/models/Scheduler.php:152
+#: airtime_mvc/application/controllers/PlaylistController.php:180
+#: airtime_mvc/application/controllers/LocaleController.php:50
+msgid "You can only add tracks, smart blocks, and webstreams to playlists."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PlaylistController.php:192
+msgid "Untitled Playlist"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PlaylistController.php:194
+msgid "Untitled Smart Block"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PlaylistController.php:522
+msgid "Unknown Playlist"
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:78
+msgid "Page not found."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:87
+msgid "The requested action is not supported."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:98
+msgid "You do not have permission to access this resource."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:109
+msgid "An internal application error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/controllers/Apiv2Controller.php:77
+#: airtime_mvc/application/controllers/ApiController.php:79
+msgid "You are not allowed to access this resource."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:72
+msgid "Preferences updated."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:115
+msgid "Support setting updated."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:123
+msgid "Support Feedback"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:251
+msgid "Stream Setting Updated."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:342
+msgid "path should be specified"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:437
+msgid "Problem with Liquidsoap..."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:493
+msgid "Request method not accepted"
+msgstr ""
+
+#: airtime_mvc/application/controllers/DashboardController.php:35
+#: airtime_mvc/application/controllers/DashboardController.php:84
+msgid "You don't have permission to disconnect source."
+msgstr ""
+
+#: airtime_mvc/application/controllers/DashboardController.php:37
+#: airtime_mvc/application/controllers/DashboardController.php:86
+msgid "There is no source connected to this input."
+msgstr ""
+
+#: airtime_mvc/application/controllers/DashboardController.php:81
+msgid "You don't have permission to switch source."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:43
+msgid "Please enter your username and password."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:93
+msgid "Wrong username or password provided. Please try again."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:167
+msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:173
+msgid "There was a problem with the username or email address you entered."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ApiController.php:244
+#: airtime_mvc/application/controllers/ApiController.php:317
+#: airtime_mvc/application/controllers/ApiController.php:392
+#: airtime_mvc/application/controllers/ApiController.php:435
+#: airtime_mvc/application/controllers/ApiController.php:474
+#: airtime_mvc/application/controllers/ApiController.php:507
+msgid "You are not allowed to access this resource. "
+msgstr ""
+
+#: airtime_mvc/application/controllers/ApiController.php:698
+#: airtime_mvc/application/controllers/ApiController.php:718
+#: airtime_mvc/application/controllers/ApiController.php:730
#, php-format
-msgid "The show %s is over and cannot be scheduled."
+msgid "File does not exist in %s"
msgstr ""
-#: airtime_mvc/application/models/Scheduler.php:159
-#, php-format
-msgid "The show %s has been previously updated!"
+#: airtime_mvc/application/controllers/ApiController.php:781
+msgid "Bad request. no 'mode' parameter passed."
msgstr ""
-#: airtime_mvc/application/models/Scheduler.php:178
-msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:195
-msgid "Cannot schedule a playlist that contains missing files."
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:216
-#: airtime_mvc/application/models/Scheduler.php:305
-msgid "A selected File does not exist!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
-#: airtime_mvc/application/configs/navigation.php:40
-msgid "Weekly Schedule"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
-#: airtime_mvc/application/forms/Player.php:77
-msgid "Preview:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
-#: airtime_mvc/application/configs/navigation.php:34
-msgid "Player"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
-#: airtime_mvc/application/controllers/LocaleController.php:362
-#: airtime_mvc/application/controllers/LocaleController.php:390
-msgid "Close"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Add this show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Update show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
-msgid "What"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
-msgid "When"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
-msgid "Live Stream Input"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
-msgid "Who"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
-msgid "Style"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
-#: airtime_mvc/application/controllers/LocaleController.php:273
-msgid "Start"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
-msgid "Password Reset"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
-msgid "Email Sent!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
-msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
-msgid "Back"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
-msgid "New password"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
-msgid "Please enter and confirm your new password in the fields below."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:3
-#: airtime_mvc/application/forms/Login.php:83
-msgid "Login"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:7
-#, php-format
-msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:97
-msgid "Playout History"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
-msgid "Log Sheet"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
-msgid "File Summary"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
-msgid "Show Summary"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
-msgid "Your trial expires in"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
-msgid "days"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-#, php-format
-msgid "Purchase an %s Pro plan!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-msgid "My Account"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
-msgid "Previous:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
-msgid "Next:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
-msgid "Source Streams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
-msgid "Master Source"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
-msgid "Show Source"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
-msgid "ON AIR"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
-msgid "Listen"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
-msgid "Logout"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
-msgid "Drop files here or click to browse your computer."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
-#: airtime_mvc/application/controllers/LocaleController.php:314
-msgid "in use"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
-#: airtime_mvc/application/controllers/LocaleController.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:401
-msgid "All"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
-msgid "Failed"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
-msgid "Pending"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
-msgid "Recent Uploads"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
-#: airtime_mvc/application/configs/navigation.php:120
-msgid "Account Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
-msgid "Upgrade today to get more listeners and storage space!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
-msgid "View Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
-msgid "About"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
-#, php-format
-msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
-#, php-format
-msgid "%1$s %2$s is distributed under the %3$s"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
-#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
-msgid "Live stream"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
-msgid "Share"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
-msgid "Select stream:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
-msgid "mute"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
-msgid "unmute"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
-#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
-#, php-format
-msgid "Welcome to %s!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
-#, php-format
-msgid "Here's how you can get started using %s to automate your broadcasts: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
-msgid "Upload audio tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
-msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
-msgid "Schedule a show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
-msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
-msgid "Add tracks to your show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
-msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
-msgid "Now you're good to go!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
-#, php-format
-msgid "For more detailed help, read the %suser manual%s."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
-msgid "Listeners"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
-msgid "Stream Data Collection Status"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
-#: airtime_mvc/application/views/scripts/error/error.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
-msgid "An error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
-msgid "Access Denied!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
-msgid "You do not have permission to access this page!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
-#: airtime_mvc/application/views/scripts/error/error.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
-#: airtime_mvc/application/configs/navigation.php:143
-msgid "Help"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
-msgid "Page not found!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
-msgid "We couldn't find the page you were looking for."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error.phtml:12
-msgid "Looks like the page you were looking for doesn't exist!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
-msgid "Oops!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
-msgid "Something went wrong!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
-msgid "Bad Request!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
-msgid "The requested action is not supported!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
-msgid "Viewing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
-msgid "Editing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:3
-msgid "File import in progress..."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:10
-#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
-msgid "Advanced Search Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
-#: airtime_mvc/application/forms/Player.php:15
-#: airtime_mvc/application/forms/EditAudioMD.php:24
-msgid "Title:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
-#: airtime_mvc/application/forms/EditAudioMD.php:34
-msgid "Creator:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
-#: airtime_mvc/application/forms/EditAudioMD.php:44
-msgid "Album:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
-msgid "Track:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
-msgid "Length:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
-msgid "Sample Rate:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
-msgid "Bit Rate:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
-#: airtime_mvc/application/forms/EditAudioMD.php:115
-msgid "Mood:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
-#: airtime_mvc/application/forms/EditAudioMD.php:62
-#: airtime_mvc/application/forms/AddShowWhat.php:45
-msgid "Genre:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
-#: airtime_mvc/application/forms/EditAudioMD.php:72
-msgid "Year:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
-#: airtime_mvc/application/forms/EditAudioMD.php:85
-msgid "Label:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
-#: airtime_mvc/application/forms/EditAudioMD.php:125
-msgid "BPM:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
-#: airtime_mvc/application/forms/EditAudioMD.php:95
-msgid "Composer:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
-#: airtime_mvc/application/forms/EditAudioMD.php:105
-msgid "Conductor:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
-#: airtime_mvc/application/forms/EditAudioMD.php:135
-msgid "Copyright:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
-msgid "Isrc Number:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
-#: airtime_mvc/application/forms/EditAudioMD.php:155
-msgid "Website:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
-#: airtime_mvc/application/forms/EditUser.php:119
-#: airtime_mvc/application/forms/EditAudioMD.php:165
-#: airtime_mvc/application/forms/Login.php:68
-msgid "Language:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
-msgid "File Path:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
-#: airtime_mvc/application/forms/AddShowWhat.php:26
-msgid "Name:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
-#: airtime_mvc/application/forms/AddShowWhat.php:54
-msgid "Description:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
-msgid "Web Stream"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
-msgid "Dynamic Smart Block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
-msgid "Static Smart Block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
-msgid "Audio Track"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
-msgid "Playlist Contents: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
-msgid "Static Smart Block Contents: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
-msgid "Dynamic Smart Block Criteria: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
-msgid "Limit to "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
-#: airtime_mvc/application/forms/AddShowWhat.php:36
-msgid "URL:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/login.phtml:41
-msgid "Forgot your password?"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
-#, php-format
-msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
-#, php-format
-msgid "Click the box below to promote your station on %s."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
-msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
-msgid "(Required)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
-msgid "(for verification purposes only, will not be published)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
-msgid "Choose folder"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
-msgid "Set"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
-msgid "Current Import Folder:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
-msgid "Add"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
-#, php-format
-msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
-msgid "Remove watched directory"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
-msgid "You are not watching any media folders."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
-msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
-msgid "Live Broadcasting"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
-msgid "Use these settings in your broadcasting software to stream live at any time."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
-msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
-msgid "Choose Show Instance"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
-#: airtime_mvc/application/forms/EditHistoryItem.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:400
-msgid "No Show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
-msgid "Find"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
-msgid "Choose Days:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
-#: airtime_mvc/application/forms/AddShowStyle.php:64
-#: airtime_mvc/application/forms/GeneralPreferences.php:53
-msgid "Remove"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
-msgid "Stream "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
-msgid "Additional Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
-msgid "The following info will be displayed to listeners in their media player:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
-msgid "(Your radio station website)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
-msgid "Stream URL: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
-msgid "Find Shows"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
-msgid "TuneIn Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
-msgid "SoundCloud Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
-msgid "Dangerous Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
-msgid "Search Criteria:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
-msgid "New Criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
-msgid "or"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
-msgid "and"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
-msgid "New Modifier"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
-msgid " to "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
-msgid "files meet the criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
-msgid "file meets the criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
-msgid "Filter History"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
-#: airtime_mvc/application/configs/navigation.php:61
-msgid "My Profile"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
-#, php-format
-msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
-#: airtime_mvc/application/forms/Preferences.php:40
-#: airtime_mvc/application/forms/PasswordChange.php:43
-#: airtime_mvc/application/forms/AddUser.php:110
-#: airtime_mvc/application/forms/BillingClient.php:193
-#: airtime_mvc/application/forms/SupportSettings.php:131
-#: airtime_mvc/application/forms/EditHistory.php:131
-#: airtime_mvc/application/controllers/LocaleController.php:294
-msgid "Save"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
-msgid "Repeat Days:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
-msgid "Register Airtime"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
-#: airtime_mvc/application/forms/GeneralPreferences.php:43
-msgid "Note: Anything larger than 600x600 will be resized."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
-msgid "Show me what I am sending "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
-msgid "Terms and Conditions"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
-msgid "Creating File Summary Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
-msgid "Creating Log Sheet Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
-msgid "Name"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
-msgid "Add more elements"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
-msgid "Add New Field"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
-msgid "Set Default Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
-msgid "Playout History Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
-msgid "Log Sheet Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
-msgid "New Log Sheet Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
-msgid "No Log Sheet Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
-#: airtime_mvc/application/controllers/LocaleController.php:397
-msgid "Set Default"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
-msgid "File Summary Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
-msgid "New File Summary Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
-msgid "No File Summary Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
-msgid "Disk Space"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
-#: airtime_mvc/application/controllers/LocaleController.php:315
-msgid "Disk"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
-#: airtime_mvc/application/forms/AddShowWhen.php:89
-msgid "Duration:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
-msgid "Toggle Details"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
-msgid "Playlist crossfade"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-msgid "Remove all content from this smart block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Clear"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "Fade in: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "(ss.t)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-msgid "Fade out: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
-#: airtime_mvc/application/forms/EditAudioMD.php:186
-#: airtime_mvc/application/forms/EditHistory.php:141
-#: airtime_mvc/application/controllers/LocaleController.php:295
-#: airtime_mvc/application/controllers/LocaleController.php:318
-msgid "Cancel"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
-msgid "No smart block currently open"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
-msgid "Show Waveform"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-msgid "Cue In: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "(hh:mm:ss.t)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "Cue Out: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
-msgid "Original Length:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
-msgid "Expand Static Block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
-msgid "Expand Dynamic Block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
-msgid "Choose some search criteria above and click Generate to create this playlist."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
-msgid "A track list will be generated when you schedule this smart block into a show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
-msgid "Drag tracks here from your library to add them to the playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-msgid "Shuffle playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
-msgid "Shuffle"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Empty playlist content"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-msgid "Save playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
-msgid "No open playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
-msgid "previous"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
-msgid "play"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
-msgid "pause"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
-msgid "next"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
-msgid "stop"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
-msgid "max volume"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
-msgid "Update Required"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
-#, php-format
-msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
-msgid "Stream Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
-msgid "Global"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
-msgid "dB"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
-msgid "Output Streams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
-#: airtime_mvc/application/controllers/LocaleController.php:166
-msgid "Manage Media Folders"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:56
-msgid "General"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
-msgid "Description"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
-msgid "Stream URL:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
-msgid "Default Length:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
-msgid "No webstream"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
-msgid "Manage Users"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
-msgid "New User"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
-msgid "id"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
-#: airtime_mvc/application/forms/PasswordRestore.php:25
-msgid "Username"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
-msgid "First Name"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
-msgid "Last Name"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
-msgid "User Type"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
-#, php-format
-msgid "Super Admin details can be changed in your Billing Settings."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
-#: airtime_mvc/application/controllers/LocaleController.php:74
-#: airtime_mvc/application/layouts/scripts/layout.phtml:78
-msgid "Tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
-#: airtime_mvc/application/controllers/LocaleController.php:104
-#: airtime_mvc/application/layouts/scripts/layout.phtml:80
-msgid "Playlists"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
-#: airtime_mvc/application/controllers/LocaleController.php:105
-#: airtime_mvc/application/layouts/scripts/layout.phtml:82
-msgid "Smart Blocks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
-#: airtime_mvc/application/layouts/scripts/layout.phtml:84
-msgid "Webstreams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
-#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
-#: airtime_mvc/application/layouts/scripts/layout.phtml:76
-msgid "Dashboard"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:12
-msgid "Radio Page"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:19
-msgid "Calendar"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:26
-msgid "Widgets"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:48
-msgid "Settings"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:67
-msgid "Users"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:74
-msgid "Streams"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:82
-msgid "Analytics"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:90
-msgid "Listener Stats"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:104
-msgid "History Templates"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:113
-msgid "Billing"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:127
-msgid "Account Details"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:134
-msgid "View Invoices"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:150
-msgid "Getting Started"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:157
-msgid "FAQ"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:162
-msgid "User Manual"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:167
-msgid "File a Support Ticket"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:12
-msgid "Background Colour:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:31
-msgid "Text Colour:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:49
-msgid "Current Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:72
-msgid "Show Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:87
-msgid "Logo Preview:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:19
-msgid "Push metadata to your station on TuneIn?"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:24
-msgid "Station ID:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:30
-msgid "Partner Key:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:36
-msgid "Partner Id:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:77
-#: airtime_mvc/application/forms/TuneInPreferences.php:86
-msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:14
-msgid "Now Playing"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:25
-msgid "Select Stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:28
-msgid "Auto detect the most appropriate stream to use."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:29
-msgid "Select a stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:41
-msgid " - Mobile friendly"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:45
-msgid " - The player does not support Opus streams."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:71
-msgid "Embeddable code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:72
-msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:37
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
-#: airtime_mvc/application/forms/Login.php:41
-#: airtime_mvc/application/forms/AddUser.php:29
-msgid "Username:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:48
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
-#: airtime_mvc/application/forms/Login.php:54
-#: airtime_mvc/application/forms/AddUser.php:38
-#: airtime_mvc/application/forms/BillingClient.php:172
-msgid "Password:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:57
-#: airtime_mvc/application/forms/AddUser.php:46
-#: airtime_mvc/application/forms/BillingClient.php:181
-msgid "Verify Password:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:67
-#: airtime_mvc/application/forms/AddUser.php:55
-msgid "Firstname:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:75
-#: airtime_mvc/application/forms/AddUser.php:61
-msgid "Lastname:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:83
-#: airtime_mvc/application/forms/RegisterAirtime.php:51
-#: airtime_mvc/application/forms/AddUser.php:67
-#: airtime_mvc/application/forms/SupportSettings.php:43
-msgid "Email:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:94
-#: airtime_mvc/application/forms/AddUser.php:76
-msgid "Mobile Phone:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:102
-#: airtime_mvc/application/forms/AddUser.php:82
-msgid "Skype:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:110
-#: airtime_mvc/application/forms/AddUser.php:88
-msgid "Jabber:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:129
-msgid "Interface Timezone:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:155
-#: airtime_mvc/application/forms/AddUser.php:120
-msgid "Login name is not unique."
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRR.php:10
-msgid "Record from Line In?"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRR.php:16
-msgid "Rebroadcast?"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:16
-msgid "'%value%' does not fit the time format 'HH:mm'"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:22
-msgid "Start Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:37
-msgid "In the Future:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:64
-msgid "End Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:98
-msgid "Timezone:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:107
-msgid "Repeats?"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:139
-msgid "Cannot create show in the past"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:147
-msgid "Cannot modify start date/time of the show that is already started"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:164
-msgid "Cannot have duration < 0m"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:168
-msgid "Cannot have duration 00h 00m"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:175
-msgid "Cannot have duration greater than 24h"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWho.php:10
-msgid "Search Users:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWho.php:24
-msgid "DJs:"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordChange.php:17
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
-msgid "Password"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordChange.php:28
-msgid "Confirm new password"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordChange.php:36
-msgid "Password confirmation does not match your password."
-msgstr ""
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
-msgid "Station Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
-#: airtime_mvc/application/forms/GeneralPreferences.php:127
-msgid "Station Timezone"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
-msgid "Auto Switch Off:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
-msgid "Auto Switch On:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
-msgid "Switch Transition Fade (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
-#: airtime_mvc/application/forms/GeneralPreferences.php:68
-#: airtime_mvc/application/forms/GeneralPreferences.php:82
-#: airtime_mvc/application/forms/GeneralPreferences.php:96
-msgid "Please enter a time in seconds (eg. 0.5)"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
-#: airtime_mvc/application/forms/AddShowLiveStream.php:48
-msgid "Host:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
-#: airtime_mvc/application/forms/AddShowLiveStream.php:54
-msgid "Port:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
-#: airtime_mvc/application/forms/AddShowLiveStream.php:60
-msgid "Mount:"
-msgstr ""
-
-#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
-msgid "Value is required and can't be empty"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:25
-#: airtime_mvc/application/forms/RegisterAirtime.php:30
-#: airtime_mvc/application/forms/SupportSettings.php:18
-msgid "Station Name"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:33
-msgid "Station Description"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:42
-#: airtime_mvc/application/forms/RegisterAirtime.php:106
-msgid "Station Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:62
-msgid "Default Crossfade Duration (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:76
-msgid "Default Fade In (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:90
-msgid "Default Fade Out (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:102
-msgid "Public Airtime API"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:103
-msgid "Required for embeddable schedule widget."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:105
-msgid "Disabled"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:106
-msgid "Enabled"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:109
-msgid ""
-"Enabling this feature will allow Airtime to provide schedule data\n"
-" to external widgets that can be embedded in your website."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:120
-msgid "Default Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:134
-msgid "Week Starts On"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:150
-msgid "Display login button on your Radio Page?"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:158
-#: airtime_mvc/application/controllers/LocaleController.php:249
-msgid "Sunday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:159
-#: airtime_mvc/application/controllers/LocaleController.php:250
-msgid "Monday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:160
-#: airtime_mvc/application/controllers/LocaleController.php:251
-msgid "Tuesday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:161
-#: airtime_mvc/application/controllers/LocaleController.php:252
-msgid "Wednesday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:162
-#: airtime_mvc/application/controllers/LocaleController.php:253
-msgid "Thursday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:163
-#: airtime_mvc/application/controllers/LocaleController.php:254
-msgid "Friday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:164
-#: airtime_mvc/application/controllers/LocaleController.php:255
-msgid "Saturday"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
-msgid "Default License:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
-msgid "All rights are reserved"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
-msgid "The work is in the public domain"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
-msgid "Creative Commons Attribution"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
-msgid "Creative Commons Attribution Noncommercial"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
-msgid "Creative Commons Attribution No Derivative Works"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
-msgid "Creative Commons Attribution Share Alike"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
-msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
-msgid "Creative Commons Attribution Noncommercial Share Alike"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
-msgid "Default Sharing Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
-msgid "Public"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
-msgid "Private"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:18
-#: airtime_mvc/application/forms/DateRange.php:16
-msgid "Date Start:"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:37
-#: airtime_mvc/application/forms/ShowBuilder.php:65
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
-#: airtime_mvc/application/forms/DateRange.php:35
-#: airtime_mvc/application/forms/DateRange.php:63
-msgid "Invalid character entered"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:46
-#: airtime_mvc/application/forms/AddShowRepeats.php:56
-#: airtime_mvc/application/forms/DateRange.php:44
-msgid "Date End:"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:72
-#: airtime_mvc/application/forms/ShowBuilder.php:88
-msgid "Filter by Show"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:80
-msgid "All My Shows:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditAudioMD.php:145
-msgid "ISRC Number:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditAudioMD.php:176
-msgid "OK"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
-msgid "Day must be specified"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
-msgid "Time must be specified"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
-msgid "Must wait at least 1 hour to rebroadcast"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhat.php:30
-msgid "Untitled Show"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhat.php:69
-msgid "Instance Description:"
-msgstr ""
-
-#: airtime_mvc/application/forms/DangerousPreferences.php:12
-msgid "Delete All Tracks in Library"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:39
-#: airtime_mvc/application/forms/SupportSettings.php:31
-msgid "Phone:"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:62
-#: airtime_mvc/application/forms/SupportSettings.php:54
-msgid "Station Web Site:"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:73
-#: airtime_mvc/application/forms/BillingClient.php:102
-#: airtime_mvc/application/forms/SupportSettings.php:65
-msgid "Country:"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:84
-#: airtime_mvc/application/forms/BillingClient.php:70
-#: airtime_mvc/application/forms/SupportSettings.php:76
-msgid "City:"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:96
-#: airtime_mvc/application/forms/SupportSettings.php:88
-msgid "Station Description:"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:116
-#: airtime_mvc/application/forms/SupportSettings.php:98
-#: airtime_mvc/application/controllers/LocaleController.php:341
-msgid "Send support feedback"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:126
-#: airtime_mvc/application/forms/SupportSettings.php:108
-#, php-format
-msgid "Promote my station on %s"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:151
-#: airtime_mvc/application/forms/SupportSettings.php:120
-#, php-format
-msgid "By checking this box, I agree to %s's %sprivacy policy%s."
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:169
-#: airtime_mvc/application/forms/SupportSettings.php:143
-msgid "You have to agree to privacy policy."
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:10
-msgid "Link:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:16
-msgid "Repeat Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:19
-msgid "weekly"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:20
-msgid "every 2 weeks"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:21
-msgid "every 3 weeks"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:22
-msgid "every 4 weeks"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:23
-msgid "monthly"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:32
-msgid "Select Days:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:35
-#: airtime_mvc/application/controllers/LocaleController.php:256
-msgid "Sun"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:36
-#: airtime_mvc/application/controllers/LocaleController.php:257
-msgid "Mon"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:37
-#: airtime_mvc/application/controllers/LocaleController.php:258
-msgid "Tue"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:38
-#: airtime_mvc/application/controllers/LocaleController.php:259
-msgid "Wed"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:39
-#: airtime_mvc/application/controllers/LocaleController.php:260
-msgid "Thu"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:40
-#: airtime_mvc/application/controllers/LocaleController.php:261
-msgid "Fri"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:41
-#: airtime_mvc/application/controllers/LocaleController.php:262
-msgid "Sat"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:47
-msgid "Repeat By:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the month"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the week"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:69
-msgid "No End?"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:106
-msgid "End date must be after start date"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:113
-msgid "Please select a repeat day"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:10
-#, php-format
-msgid "Use %s Authentication:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:16
-msgid "Use Custom Authentication:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:25
-msgid "Custom Username"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:37
-msgid "Custom Password"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:77
-msgid "Username field cannot be empty."
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:82
-msgid "Password field cannot be empty."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
-msgid "Enabled:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
-msgid "Mobile:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
-msgid "Stream Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
-msgid "Service Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
-msgid "Channels:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "1 - Mono"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "2 - Stereo"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
-msgid "Server"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
-msgid "Port"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
-msgid "Only numbers are allowed."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
-msgid "URL"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
-msgid "Mount Point"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
-msgid "Admin User"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
-msgid "Admin Password"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
-#: airtime_mvc/application/controllers/LocaleController.php:173
-msgid "Getting information from the server..."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
-msgid "Server cannot be empty."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
-msgid "Port cannot be empty."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
-msgid "Mount cannot be empty with Icecast server."
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
-msgid "'%value%' is no valid email address in the basic format local-part@hostname"
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
-msgid "'%value%' does not fit the date format '%format%'"
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
-msgid "'%value%' is less than %min% characters long"
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
-msgid "'%value%' is more than %max% characters long"
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
-msgid "'%value%' is not between '%min%' and '%max%', inclusively"
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
-msgid "Passwords do not match"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
-msgid "hours"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
-msgid "minutes"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
-msgid "Randomly"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
-msgid "Newest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
-msgid "Oldest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
-msgid "Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
-msgid "Static"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
-msgid "Dynamic"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
-msgid "Allow Repeated Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
-msgid "Sort Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
-msgid "Limit to:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
-msgid "Generate playlist content and save criteria"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
-msgid "Generate"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
-msgid "Shuffle playlist content"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
-msgid "Limit cannot be empty or smaller than 0"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
-msgid "Limit cannot be more than 24 hrs"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
-msgid "The value should be an integer"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
-msgid "500 is the max item limit value you can set"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
-msgid "You must select Criteria and Modifier"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
-msgid "'Length' should be in '00:00:00' format"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
-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:594
-msgid "The value has to be numeric"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
-msgid "The value should be less then 2147483648"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
-#, php-format
-msgid "The value should be less than %s characters"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
-msgid "Value cannot be empty"
-msgstr ""
-
-#: airtime_mvc/application/forms/Login.php:102
-msgid "Type the characters you see in the picture below."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:26
-msgid "Icecast Vorbis Metadata"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:36
-msgid "Stream Label:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:37
-msgid "Artist - Title"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:38
-msgid "Show - Artist - Title"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:39
-msgid "Station name - Show name"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:45
-msgid "Off Air Metadata"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:51
-msgid "Enable Replay Gain"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:57
-msgid "Replay Gain Modifier"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:65
-msgid "Streaming Server:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Airtime Pro Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Custom / 3rd Party Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:95
-msgid "User Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:99
-#: airtime_mvc/application/controllers/LocaleController.php:324
-msgid "Guest"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:100
-#: airtime_mvc/application/controllers/LocaleController.php:322
-msgid "DJ"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:101
-#: airtime_mvc/application/controllers/LocaleController.php:323
-msgid "Program Manager"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:321
-msgid "Admin"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:17
-msgid "First Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:26
-msgid "Last Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:35
-msgid "Company Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:44
-msgid "Email Address:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:54
-msgid "Address 1:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:63
-msgid "Address 2:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:80
-msgid "State/Region:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:89
-msgid "Zip Code / Postal Code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:112
-msgid "Phone Number:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:121
-msgid "Please choose a security question:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:126
-msgid "What is the name of your favorite childhood friend?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:127
-msgid "What school did you attend for sixth grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:128
-msgid "In what city did you meet your spouse/significant other?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:129
-msgid "What street did you live on in third grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:130
-msgid "What is the first name of the boy or girl that you first kissed?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:131
-msgid "In what city or town was your first job?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:135
-msgid "Please enter an answer:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:152
-msgid "VAT/Tax ID (EU only)"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:162
-msgid "Subscribe to Sourcefabric newsletter"
-msgstr ""
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
-msgid "Import Folder:"
-msgstr ""
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
-msgid "Watched Folders:"
-msgstr ""
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
-msgid "Not a valid Directory"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordRestore.php:14
-msgid "Email"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordRestore.php:36
-msgid "Reset password"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
-msgid "Plan type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
-msgid "Billing cycle:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
-msgid "Payment method:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
-msgid "PayPal"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
-msgid "Credit Card via 2Checkout"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:213
-#, php-format
-msgid "The year %s must be within the range of 1753 - 9999"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:216
-#, php-format
-msgid "%s-%s-%s is not a valid date"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:240
-#, php-format
-msgid "%s:%s:%s is not a valid time"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:55
-msgid "Upload some tracks below to add them to your library!"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:57
-#, php-format
-msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:63
-msgid "Click the 'New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:65
-#, php-format
-msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:73
-msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:75
-#, php-format
-msgid ""
-"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
-" %sCreate an unlinked show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:80
-msgid "To start broadcasting, click on the current show and select 'Schedule Show'"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:82
-#, php-format
-msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:89
-msgid "Click on the show starting next and select 'Schedule Show'"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:91
-#, php-format
-msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+#: airtime_mvc/application/controllers/ApiController.php:791
+msgid "Bad request. 'mode' parameter is invalid"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:30
@@ -2905,11 +558,6 @@ msgstr ""
msgid "You can only add tracks to smart blocks."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:50
-#: airtime_mvc/application/controllers/PlaylistController.php:180
-msgid "You can only add tracks, smart blocks, and webstreams to playlists."
-msgstr ""
-
#: airtime_mvc/application/controllers/LocaleController.php:53
msgid "Please select a cursor position on timeline."
msgstr ""
@@ -2950,11 +598,6 @@ msgstr ""
msgid "Click 'New' to create one."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:66
-#: airtime_mvc/application/controllers/LibraryController.php:123
-msgid "Edit Metadata"
-msgstr ""
-
#: airtime_mvc/application/controllers/LocaleController.php:67
msgid "Add to selected show"
msgstr ""
@@ -2983,6 +626,12 @@ msgstr ""
msgid "Scheduled"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:74
+#: airtime_mvc/application/layouts/scripts/layout.phtml:78
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
+msgid "Tracks"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:75
#: airtime_mvc/application/layouts/scripts/layout.phtml:60
msgid "Playlist"
@@ -2992,18 +641,96 @@ msgstr ""
msgid "Bit Rate"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:80
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
+#: airtime_mvc/application/models/Block.php:1354
+msgid "BPM"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:84
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
+#: airtime_mvc/application/models/Block.php:1361
+msgid "Encoded By"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:89
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
+#: airtime_mvc/application/models/Block.php:1367
+msgid "Last Modified"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:90
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
+#: airtime_mvc/application/models/Block.php:1368
+msgid "Last Played"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
+#: airtime_mvc/application/models/Block.php:1370
+msgid "Mime"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:94
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
+#: airtime_mvc/application/models/Block.php:1372
+msgid "Owner"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:95
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
+#: airtime_mvc/application/models/Block.php:1373
+msgid "Replay Gain"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:96
msgid "Sample Rate"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:97
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
+#: airtime_mvc/application/models/Block.php:1376
+msgid "Track Number"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:98
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
+#: airtime_mvc/application/models/Block.php:1377
+msgid "Uploaded"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:99
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
+#: airtime_mvc/application/models/Block.php:1378
+msgid "Website"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:101
msgid "Loading..."
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:102
+#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
+msgid "All"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:103
msgid "Files"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:104
+#: airtime_mvc/application/layouts/scripts/layout.phtml:80
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
+msgid "Playlists"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:105
+#: airtime_mvc/application/layouts/scripts/layout.phtml:82
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
+msgid "Smart Blocks"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:106
msgid "Web Streams"
msgstr ""
@@ -3148,6 +875,74 @@ msgstr ""
msgid "Processing..."
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:151
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
+#: airtime_mvc/application/models/Block.php:1383
+msgid "Select modifier"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:152
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
+#: airtime_mvc/application/models/Block.php:1384
+msgid "contains"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:153
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
+#: airtime_mvc/application/models/Block.php:1385
+msgid "does not contain"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:154
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
+#: airtime_mvc/application/models/Block.php:1386
+#: airtime_mvc/application/models/Block.php:1390
+msgid "is"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:155
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
+#: airtime_mvc/application/models/Block.php:1387
+#: airtime_mvc/application/models/Block.php:1391
+msgid "is not"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:156
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
+#: airtime_mvc/application/models/Block.php:1388
+msgid "starts with"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:157
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
+#: airtime_mvc/application/models/Block.php:1389
+msgid "ends with"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:158
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
+#: airtime_mvc/application/models/Block.php:1392
+msgid "is greater than"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:159
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
+#: airtime_mvc/application/models/Block.php:1393
+msgid "is less than"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:160
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
+#: airtime_mvc/application/models/Block.php:1394
+msgid "is in the range"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:162
msgid "Choose Storage Folder"
msgstr ""
@@ -3162,6 +957,11 @@ msgid ""
"This will remove the files from your Airtime library!"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:166
+#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
+msgid "Manage Media Folders"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:167
msgid "Are you sure you want to remove the watched folder?"
msgstr ""
@@ -3183,6 +983,11 @@ msgstr ""
msgid "The stream is disabled"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:173
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
+msgid "Getting information from the server..."
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:174
msgid "Can not connect to the streaming server"
msgstr ""
@@ -3410,6 +1215,76 @@ msgstr ""
msgid "Month"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:249
+#: airtime_mvc/application/forms/GeneralPreferences.php:158
+msgid "Sunday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:250
+#: airtime_mvc/application/forms/GeneralPreferences.php:159
+msgid "Monday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:251
+#: airtime_mvc/application/forms/GeneralPreferences.php:160
+msgid "Tuesday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:252
+#: airtime_mvc/application/forms/GeneralPreferences.php:161
+msgid "Wednesday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:253
+#: airtime_mvc/application/forms/GeneralPreferences.php:162
+msgid "Thursday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:254
+#: airtime_mvc/application/forms/GeneralPreferences.php:163
+msgid "Friday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:255
+#: airtime_mvc/application/forms/GeneralPreferences.php:164
+msgid "Saturday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:256
+#: airtime_mvc/application/forms/AddShowRepeats.php:35
+msgid "Sun"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:257
+#: airtime_mvc/application/forms/AddShowRepeats.php:36
+msgid "Mon"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:258
+#: airtime_mvc/application/forms/AddShowRepeats.php:37
+msgid "Tue"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:259
+#: airtime_mvc/application/forms/AddShowRepeats.php:38
+msgid "Wed"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:260
+#: airtime_mvc/application/forms/AddShowRepeats.php:39
+msgid "Thu"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:261
+#: airtime_mvc/application/forms/AddShowRepeats.php:40
+msgid "Fri"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:262
+#: airtime_mvc/application/forms/AddShowRepeats.php:41
+msgid "Sat"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:263
msgid "Shows longer than their scheduled time will be cut off by a following show."
msgstr ""
@@ -3419,7 +1294,7 @@ msgid "Cancel Current Show?"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:265
-#: airtime_mvc/application/controllers/LocaleController.php:309
+#: airtime_mvc/application/controllers/LocaleController.php:312
msgid "Stop recording current show?"
msgstr ""
@@ -3439,6 +1314,11 @@ msgstr ""
msgid "Delete selected item(s)?"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:273
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
+msgid "Start"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:274
msgid "End"
msgstr ""
@@ -3447,580 +1327,467 @@ msgstr ""
msgid "Duration"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:283
+#: airtime_mvc/application/controllers/LocaleController.php:276
+msgid "Filtering out "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:277
+msgid " of "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:278
+msgid " records"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/layouts/scripts/layout.phtml:140
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
+#: airtime_mvc/application/models/Block.php:1358
+msgid "Cue In"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/layouts/scripts/layout.phtml:147
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
+#: airtime_mvc/application/models/Block.php:1359
+msgid "Cue Out"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:286
#: airtime_mvc/application/layouts/scripts/layout.phtml:167
msgid "Fade In"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/controllers/LocaleController.php:287
#: airtime_mvc/application/layouts/scripts/layout.phtml:168
msgid "Fade Out"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/controllers/LocaleController.php:288
msgid "Show Empty"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:286
+#: airtime_mvc/application/controllers/LocaleController.php:289
msgid "Recording From Line In"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:287
+#: airtime_mvc/application/controllers/LocaleController.php:290
msgid "Track preview"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:291
+#: airtime_mvc/application/controllers/LocaleController.php:294
msgid "Cannot schedule outside a show."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:292
+#: airtime_mvc/application/controllers/LocaleController.php:295
msgid "Moving 1 Item"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:293
+#: airtime_mvc/application/controllers/LocaleController.php:296
#, php-format
msgid "Moving %s Items"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:296
-msgid "Fade Editor"
-msgstr ""
-
#: airtime_mvc/application/controllers/LocaleController.php:297
-msgid "Cue Editor"
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
+#: airtime_mvc/application/forms/Preferences.php:40
+#: airtime_mvc/application/forms/EditHistory.php:131
+#: airtime_mvc/application/forms/AddUser.php:110
+#: airtime_mvc/application/forms/PasswordChange.php:43
+#: airtime_mvc/application/forms/SupportSettings.php:131
+msgid "Save"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:298
-msgid "Waveform features are available in a browser supporting the Web Audio API"
+#: airtime_mvc/application/controllers/LocaleController.php:321
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
+#: airtime_mvc/application/forms/EditHistory.php:141
+#: airtime_mvc/application/forms/EditAudioMD.php:186
+msgid "Cancel"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:299
+msgid "Fade Editor"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:300
+msgid "Cue Editor"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:301
-msgid "Select all"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LocaleController.php:302
-msgid "Select none"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LocaleController.php:303
-msgid "Trim overbooked shows"
+msgid "Waveform features are available in a browser supporting the Web Audio API"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:304
-msgid "Remove selected scheduled items"
+msgid "Select all"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:305
-msgid "Jump to the current playing track"
+msgid "Select none"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:306
+msgid "Trim overbooked shows"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:307
+msgid "Remove selected scheduled items"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:308
+msgid "Jump to the current playing track"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:309
msgid "Cancel current show"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:311
+#: airtime_mvc/application/controllers/LocaleController.php:314
msgid "Open library to add or remove content"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:312
+#: airtime_mvc/application/controllers/LocaleController.php:315
msgid "Add / Remove Content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:317
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
+msgid "in use"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:318
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
+msgid "Disk"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:320
msgid "Look in"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:319
+#: airtime_mvc/application/controllers/LocaleController.php:322
msgid "Open"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:324
+#: airtime_mvc/application/forms/AddUser.php:102
+msgid "Admin"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:325
-msgid "Guests can do the following:"
+#: airtime_mvc/application/forms/AddUser.php:100
+msgid "DJ"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:326
-msgid "View schedule"
+#: airtime_mvc/application/forms/AddUser.php:101
+msgid "Program Manager"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:327
-msgid "View show content"
+#: airtime_mvc/application/forms/AddUser.php:99
+msgid "Guest"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:328
-msgid "DJs can do the following:"
+msgid "Guests can do the following:"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:329
-msgid "Manage assigned show content"
+msgid "View schedule"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:330
-msgid "Import media files"
+msgid "View show content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:331
-msgid "Create playlists, smart blocks, and webstreams"
+msgid "DJs can do the following:"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:332
-msgid "Manage their own library content"
+msgid "Manage assigned show content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:333
-msgid "Progam Managers can do the following:"
+msgid "Import media files"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:334
-msgid "View and manage show content"
+msgid "Create playlists, smart blocks, and webstreams"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:335
-msgid "Schedule shows"
+msgid "Manage their own library content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:336
-msgid "Manage all library content"
+msgid "Progam Managers can do the following:"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:337
-msgid "Admins can do the following:"
+msgid "View and manage show content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:338
-msgid "Manage preferences"
+msgid "Schedule shows"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:339
-msgid "Manage users"
+msgid "Manage all library content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:340
-msgid "Manage watched folders"
+msgid "Admins can do the following:"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:341
+msgid "Manage preferences"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:342
-msgid "View system status"
+msgid "Manage users"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:343
-msgid "Access playout history"
+msgid "Manage watched folders"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:344
-msgid "View listener stats"
+#: airtime_mvc/application/forms/RegisterAirtime.php:116
+#: airtime_mvc/application/forms/SupportSettings.php:98
+msgid "Send support feedback"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:345
+msgid "View system status"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:346
-msgid "Show / hide columns"
+msgid "Access playout history"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:348
-msgid "From {from} to {to}"
+#: airtime_mvc/application/controllers/LocaleController.php:347
+msgid "View listener stats"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:349
-msgid "kbps"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LocaleController.php:350
-msgid "yyyy-mm-dd"
+msgid "Show / hide columns"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:351
-msgid "hh:mm:ss.t"
+msgid "From {from} to {to}"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:352
-msgid "kHz"
+msgid "kbps"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:353
+msgid "yyyy-mm-dd"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:354
+msgid "hh:mm:ss.t"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:355
-msgid "Su"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LocaleController.php:356
-msgid "Mo"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LocaleController.php:357
-msgid "Tu"
+msgid "kHz"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:358
-msgid "We"
+msgid "Su"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:359
-msgid "Th"
+msgid "Mo"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:360
-msgid "Fr"
+msgid "Tu"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:361
-msgid "Sa"
+msgid "We"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:362
+msgid "Th"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:363
+msgid "Fr"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:364
-msgid "Hour"
+msgid "Sa"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
+msgid "Close"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:367
+msgid "Hour"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:368
msgid "Minute"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:366
+#: airtime_mvc/application/controllers/LocaleController.php:369
msgid "Done"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:369
+#: airtime_mvc/application/controllers/LocaleController.php:372
msgid "Select files"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:370
-#: airtime_mvc/application/controllers/LocaleController.php:371
+#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:374
msgid "Add files to the upload queue and click the start button."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:372
-#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:376
msgid "Status"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:374
+#: airtime_mvc/application/controllers/LocaleController.php:377
msgid "Add Files"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:378
msgid "Stop Upload"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:376
+#: airtime_mvc/application/controllers/LocaleController.php:379
msgid "Start upload"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:377
+#: airtime_mvc/application/controllers/LocaleController.php:380
msgid "Add files"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:378
+#: airtime_mvc/application/controllers/LocaleController.php:381
#, php-format
msgid "Uploaded %d/%d files"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:379
+#: airtime_mvc/application/controllers/LocaleController.php:382
msgid "N/A"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:380
+#: airtime_mvc/application/controllers/LocaleController.php:383
msgid "Drag files here."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:381
+#: airtime_mvc/application/controllers/LocaleController.php:384
msgid "File extension error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:382
+#: airtime_mvc/application/controllers/LocaleController.php:385
msgid "File size error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:383
+#: airtime_mvc/application/controllers/LocaleController.php:386
msgid "File count error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:384
+#: airtime_mvc/application/controllers/LocaleController.php:387
msgid "Init error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:385
+#: airtime_mvc/application/controllers/LocaleController.php:388
msgid "HTTP Error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:386
+#: airtime_mvc/application/controllers/LocaleController.php:389
msgid "Security error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:387
+#: airtime_mvc/application/controllers/LocaleController.php:390
msgid "Generic error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:388
+#: airtime_mvc/application/controllers/LocaleController.php:391
msgid "IO error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:389
+#: airtime_mvc/application/controllers/LocaleController.php:392
#, php-format
msgid "File: %s"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:391
+#: airtime_mvc/application/controllers/LocaleController.php:394
#, php-format
msgid "%d files queued"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:392
+#: airtime_mvc/application/controllers/LocaleController.php:395
msgid "File: %f, size: %s, max file size: %m"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/controllers/LocaleController.php:396
msgid "Upload URL might be wrong or doesn't exist"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:394
+#: airtime_mvc/application/controllers/LocaleController.php:397
msgid "Error: File too large: "
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:395
+#: airtime_mvc/application/controllers/LocaleController.php:398
msgid "Error: Invalid file extension: "
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:398
+#: airtime_mvc/application/controllers/LocaleController.php:400
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
+msgid "Set Default"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:401
msgid "Create Entry"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:399
+#: airtime_mvc/application/controllers/LocaleController.php:402
msgid "Edit History Record"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:402
+#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
+#: airtime_mvc/application/forms/EditHistoryItem.php:57
+msgid "No Show"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:405
#, php-format
msgid "Copied %s row%s to the clipboard"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/controllers/LocaleController.php:406
#, php-format
msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/controllers/LocaleController.php:407
msgid "New Show"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:405
+#: airtime_mvc/application/controllers/LocaleController.php:408
msgid "New Log Entry"
msgstr ""
-#: airtime_mvc/application/controllers/ScheduleController.php:389
-#, php-format
-msgid "Rebroadcast of show %s from %s at %s"
-msgstr ""
-
-#: airtime_mvc/application/controllers/ScheduleController.php:712
-#: airtime_mvc/application/controllers/LibraryController.php:131
-msgid "Download"
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:78
-msgid "Page not found."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:87
-msgid "The requested action is not supported."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:98
-msgid "You do not have permission to access this resource."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:109
-msgid "An internal application error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ListenerstatController.php:51
-msgid "Please make sure admin user/password is correct on System->Streams page."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:53
-#, php-format
-msgid "You are viewing an older version of %s"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:140
-msgid "You cannot add tracks to dynamic blocks."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:147
-#: airtime_mvc/application/controllers/LibraryController.php:31
-#, php-format
-msgid "%s not found"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:161
-#, php-format
-msgid "You don't have permission to delete selected %s(s)."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:168
-#: airtime_mvc/application/controllers/LibraryController.php:40
-msgid "Something went wrong."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:174
-msgid "You can only add tracks to smart block."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:192
-msgid "Untitled Playlist"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:194
-msgid "Untitled Smart Block"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:522
-msgid "Unknown Playlist"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:43
-msgid "Please enter your username and password."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:93
-msgid "Wrong username or password provided. Please try again."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:167
-msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:173
-msgid "There was a problem with the username or email address you entered."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:35
-#: airtime_mvc/application/controllers/DashboardController.php:84
-msgid "You don't have permission to disconnect source."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:37
-#: airtime_mvc/application/controllers/DashboardController.php:86
-msgid "There is no source connected to this input."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:81
-msgid "You don't have permission to switch source."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:72
-msgid "Preferences updated."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:115
-msgid "Support setting updated."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:123
-msgid "Support Feedback"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:251
-msgid "Stream Setting Updated."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:342
-msgid "path should be specified"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:437
-msgid "Problem with Liquidsoap..."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:493
-msgid "Request method not accepted"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:86
-msgid "User added successfully!"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:88
-msgid "User updated successfully!"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:187
-msgid "Settings updated successfully!"
-msgstr ""
-
-#: airtime_mvc/application/controllers/WebstreamController.php:28
-#: airtime_mvc/application/controllers/WebstreamController.php:32
-msgid "Untitled Webstream"
-msgstr ""
-
-#: airtime_mvc/application/controllers/WebstreamController.php:150
-msgid "Webstream saved."
-msgstr ""
-
-#: airtime_mvc/application/controllers/WebstreamController.php:158
-msgid "Invalid form values."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:95
-#: airtime_mvc/application/controllers/ShowbuilderController.php:136
-msgid "Preview"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:115
-#: airtime_mvc/application/controllers/LibraryController.php:177
-#: airtime_mvc/application/controllers/LibraryController.php:200
-msgid "Add to Playlist"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:117
-msgid "Add to Smart Block"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:147
-msgid "View track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:148
-msgid "Remove track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:154
-#: airtime_mvc/application/controllers/LibraryController.php:159
-msgid "Upload track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:169
-msgid "Duplicate Playlist"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:213
-msgid "No action available"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:233
-msgid "You don't have permission to delete selected items."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:279
-msgid "Could not delete file because it is scheduled in the future."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:282
-msgid "Could not delete file(s)."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:322
-#, php-format
-msgid "Copy of %s"
-msgstr ""
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
-msgid ""
-"To configure and use the embeddable player you must:
\n"
-" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
-" 2. Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
-msgid ""
-"To use the embeddable weekly schedule widget you must:
\n"
-" Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
#: airtime_mvc/application/controllers/ShowbuilderController.php:138
msgid "Select cursor"
msgstr ""
@@ -4033,37 +1800,76 @@ msgstr ""
msgid "show does not exist"
msgstr ""
-#: airtime_mvc/application/controllers/ApiController.php:79
-msgid "You are not allowed to access this resource."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ApiController.php:244
-#: airtime_mvc/application/controllers/ApiController.php:317
-#: airtime_mvc/application/controllers/ApiController.php:392
-#: airtime_mvc/application/controllers/ApiController.php:435
-#: airtime_mvc/application/controllers/ApiController.php:474
-#: airtime_mvc/application/controllers/ApiController.php:507
-msgid "You are not allowed to access this resource. "
-msgstr ""
-
-#: airtime_mvc/application/controllers/ApiController.php:698
-#: airtime_mvc/application/controllers/ApiController.php:718
-#: airtime_mvc/application/controllers/ApiController.php:730
+#: airtime_mvc/application/controllers/ScheduleController.php:389
#, php-format
-msgid "File does not exist in %s"
+msgid "Rebroadcast of show %s from %s at %s"
msgstr ""
-#: airtime_mvc/application/controllers/ApiController.php:781
-msgid "Bad request. no 'mode' parameter passed."
+#: airtime_mvc/application/common/UsabilityHints.php:55
+msgid "Upload some tracks below to add them to your library!"
msgstr ""
-#: airtime_mvc/application/controllers/ApiController.php:791
-msgid "Bad request. 'mode' parameter is invalid"
-msgstr ""
-
-#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#: airtime_mvc/application/common/UsabilityHints.php:57
#, php-format
-msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:63
+msgid "Click the 'New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:65
+#, php-format
+msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:73
+msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:75
+#, php-format
+msgid ""
+"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
+" %sCreate an unlinked show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:80
+msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:82
+#, php-format
+msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:89
+msgid "Click on the show starting next and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:91
+#, php-format
+msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/DateHelper.php:213
+#, php-format
+msgid "The year %s must be within the range of 1753 - 9999"
+msgstr ""
+
+#: airtime_mvc/application/common/DateHelper.php:216
+#, php-format
+msgid "%s-%s-%s is not a valid date"
+msgstr ""
+
+#: airtime_mvc/application/common/DateHelper.php:240
+#, php-format
+msgid "%s:%s:%s is not a valid time"
+msgstr ""
+
+#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
+msgid "Live stream"
msgstr ""
#: airtime_mvc/application/layouts/scripts/layout.phtml:63
@@ -4078,6 +1884,17 @@ msgstr ""
msgid "Upload"
msgstr ""
+#: airtime_mvc/application/layouts/scripts/layout.phtml:76
+#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
+msgid "Dashboard"
+msgstr ""
+
+#: airtime_mvc/application/layouts/scripts/layout.phtml:84
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
+msgid "Webstreams"
+msgstr ""
+
#: airtime_mvc/application/layouts/scripts/layout.phtml:135
#: airtime_mvc/application/layouts/scripts/layout.phtml:161
msgid "Play"
@@ -4099,3 +1916,2124 @@ msgstr ""
#: airtime_mvc/application/layouts/scripts/layout.phtml:166
msgid "Cursor"
msgstr ""
+
+#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#, php-format
+msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
+msgid "Drop files here or click to browse your computer."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
+msgid "Failed"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
+msgid "Pending"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
+msgid "Recent Uploads"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
+msgid "Share"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
+msgid "Select stream:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
+msgid "mute"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
+msgid "unmute"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
+msgid "About"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
+#, php-format
+msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
+#, php-format
+msgid "%1$s %2$s is distributed under the %3$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
+#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
+#, php-format
+msgid "Welcome to %s!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
+#, php-format
+msgid "Here's how you can get started using %s to automate your broadcasts: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
+msgid "Upload audio tracks"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
+msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
+msgid "Schedule a show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
+msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
+msgid "Add tracks to your show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
+msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
+msgid "Now you're good to go!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
+#, php-format
+msgid "For more detailed help, read the %suser manual%s."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
+#: airtime_mvc/application/configs/navigation.php:40
+msgid "Weekly Schedule"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
+#: airtime_mvc/application/forms/Player.php:77
+msgid "Preview:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
+#: airtime_mvc/application/configs/navigation.php:34
+msgid "Player"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:97
+msgid "Playout History"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
+msgid "Log Sheet"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
+msgid "File Summary"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
+msgid "Show Summary"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
+msgid "Expand Static Block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
+msgid "Expand Dynamic Block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
+msgid "Choose some search criteria above and click Generate to create this playlist."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
+msgid "A track list will be generated when you schedule this smart block into a show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
+msgid "Drag tracks here from your library to add them to the playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
+msgid "Editing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:26
+msgid "Name:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
+#: airtime_mvc/application/forms/AddShowWhat.php:54
+msgid "Description:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
+#: airtime_mvc/application/forms/AddShowWhen.php:89
+msgid "Duration:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
+msgid "Toggle Details"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+msgid "Shuffle playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
+msgid "Shuffle"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
+msgid "Playlist crossfade"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+msgid "Empty playlist content"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Clear"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+msgid "Fade in: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "Fade out: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+msgid "Save playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
+msgid "No open playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
+msgid "Show Waveform"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "(ss.t)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Remove all content from this smart block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
+msgid "No smart block currently open"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+msgid "Cue In: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "(hh:mm:ss.t)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "Cue Out: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
+msgid "Original Length:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:56
+msgid "General"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
+msgid "Stream Settings"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
+msgid "Global"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
+msgid "dB"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
+msgid "Output Streams"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:3
+#: airtime_mvc/application/forms/Login.php:83
+msgid "Login"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:7
+#, php-format
+msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
+msgid "Email Sent!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
+msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
+msgid "Back"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
+msgid "Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
+msgid "New password"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
+msgid "Please enter and confirm your new password in the fields below."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
+msgid "Manage Users"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
+msgid "New User"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
+msgid "id"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
+#: airtime_mvc/application/forms/PasswordRestore.php:25
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
+msgid "Username"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
+msgid "First Name"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
+msgid "Last Name"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
+msgid "User Type"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
+#, php-format
+msgid "Super Admin details can be changed in your Billing Settings."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
+msgid "Find Shows"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
+msgid "Choose Show Instance"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
+msgid "Find"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
+#: airtime_mvc/application/configs/navigation.php:61
+msgid "My Profile"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
+#, php-format
+msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
+msgid "Repeat Days:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
+#: airtime_mvc/application/forms/GeneralPreferences.php:53
+#: airtime_mvc/application/forms/AddShowStyle.php:64
+msgid "Remove"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
+msgid "Add"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
+msgid "Show Source"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
+msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
+msgid "Register Airtime"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
+#, php-format
+msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
+#, php-format
+msgid "Click the box below to promote your station on %s."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
+msgid "(Required)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
+msgid "(for verification purposes only, will not be published)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
+#: airtime_mvc/application/forms/GeneralPreferences.php:43
+msgid "Note: Anything larger than 600x600 will be resized."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
+msgid "Show me what I am sending "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
+msgid "Terms and Conditions"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
+msgid "Choose Days:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
+msgid "Search Criteria:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
+msgid "New Criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
+msgid "or"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
+msgid "and"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
+msgid "New Modifier"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
+msgid " to "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
+msgid "files meet the criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
+msgid "file meets the criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
+msgid "Filter History"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/login.phtml:41
+msgid "Forgot your password?"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
+msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
+msgid "Stream "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
+msgid "Additional Options"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
+msgid "The following info will be displayed to listeners in their media player:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
+msgid "(Your radio station website)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
+msgid "Stream URL: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
+msgid "Choose folder"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
+msgid "Set"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
+msgid "Current Import Folder:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
+#, php-format
+msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
+msgid "Remove watched directory"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
+msgid "You are not watching any media folders."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
+msgid "Live Broadcasting"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
+msgid "Master Source"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
+msgid "Use these settings in your broadcasting software to stream live at any time."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
+msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
+msgid "TuneIn Settings"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
+msgid "SoundCloud Settings"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
+msgid "Dangerous Options"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Add this show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Update show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
+msgid "What"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
+msgid "When"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
+msgid "Live Stream Input"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
+msgid "Who"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
+msgid "Style"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
+msgid "Disk Space"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:3
+msgid "File import in progress..."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:10
+#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
+msgid "Advanced Search Options"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
+#: airtime_mvc/application/forms/EditAudioMD.php:24
+#: airtime_mvc/application/forms/Player.php:15
+msgid "Title:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
+#: airtime_mvc/application/forms/EditAudioMD.php:34
+msgid "Creator:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
+#: airtime_mvc/application/forms/EditAudioMD.php:44
+msgid "Album:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
+msgid "Track:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
+msgid "Length:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
+msgid "Sample Rate:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
+msgid "Bit Rate:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
+#: airtime_mvc/application/forms/EditAudioMD.php:115
+msgid "Mood:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:45
+#: airtime_mvc/application/forms/EditAudioMD.php:62
+msgid "Genre:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
+#: airtime_mvc/application/forms/EditAudioMD.php:72
+msgid "Year:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
+#: airtime_mvc/application/forms/EditAudioMD.php:85
+msgid "Label:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
+#: airtime_mvc/application/forms/EditAudioMD.php:125
+msgid "BPM:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
+#: airtime_mvc/application/forms/EditAudioMD.php:95
+msgid "Composer:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
+#: airtime_mvc/application/forms/EditAudioMD.php:105
+msgid "Conductor:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
+#: airtime_mvc/application/forms/EditAudioMD.php:135
+msgid "Copyright:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
+msgid "Isrc Number:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
+#: airtime_mvc/application/forms/EditAudioMD.php:155
+msgid "Website:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
+#: airtime_mvc/application/forms/EditAudioMD.php:165
+#: airtime_mvc/application/forms/EditUser.php:119
+#: airtime_mvc/application/forms/Login.php:68
+msgid "Language:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
+msgid "File Path:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
+msgid "Web Stream"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
+msgid "Dynamic Smart Block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
+msgid "Static Smart Block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
+msgid "Audio Track"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
+msgid "Playlist Contents: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
+msgid "Static Smart Block Contents: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
+msgid "Dynamic Smart Block Criteria: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
+msgid "Limit to "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
+#: airtime_mvc/application/forms/AddShowWhat.php:36
+msgid "URL:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
+msgid "Viewing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
+msgid "Listeners"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
+msgid "Stream Data Collection Status"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
+msgid "Your trial expires in"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
+msgid "days"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
+msgid "Previous:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
+msgid "Next:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
+msgid "Source Streams"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
+msgid "ON AIR"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
+msgid "Listen"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
+msgid "Logout"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
+msgid "Playout History Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
+msgid "Log Sheet Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
+msgid "New Log Sheet Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
+msgid "No Log Sheet Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
+msgid "File Summary Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
+msgid "New File Summary Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
+msgid "No File Summary Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
+msgid "Creating File Summary Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
+msgid "Creating Log Sheet Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
+msgid "Name"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
+msgid "Add more elements"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
+msgid "Add New Field"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
+msgid "Set Default Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
+msgid "Description"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
+msgid "Stream URL:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
+msgid "Default Length:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
+msgid "No webstream"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
+#: airtime_mvc/application/views/scripts/error/error.phtml:6
+msgid "An error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
+msgid "Access Denied!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
+msgid "You do not have permission to access this page!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
+#: airtime_mvc/application/views/scripts/error/error.phtml:14
+#: airtime_mvc/application/configs/navigation.php:143
+msgid "Help"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
+msgid "Oops!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
+msgid "Something went wrong!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
+msgid "Bad Request!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
+msgid "The requested action is not supported!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
+msgid "Page not found!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
+msgid "We couldn't find the page you were looking for."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error.phtml:12
+msgid "Looks like the page you were looking for doesn't exist!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
+msgid "previous"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
+msgid "play"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
+msgid "pause"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
+msgid "next"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
+msgid "stop"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
+msgid "max volume"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
+msgid "Update Required"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
+#, php-format
+msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
+msgid "Plan type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
+msgid "Billing cycle:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
+msgid "Payment method:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
+msgid "PayPal"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
+msgid "Credit Card via 2Checkout"
+msgstr ""
+
+#: airtime_mvc/application/forms/DateRange.php:16
+#: airtime_mvc/application/forms/ShowBuilder.php:18
+msgid "Date Start:"
+msgstr ""
+
+#: airtime_mvc/application/forms/DateRange.php:35
+#: airtime_mvc/application/forms/DateRange.php:63
+#: airtime_mvc/application/forms/ShowBuilder.php:37
+#: airtime_mvc/application/forms/ShowBuilder.php:65
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
+msgid "Invalid character entered"
+msgstr ""
+
+#: airtime_mvc/application/forms/DateRange.php:44
+#: airtime_mvc/application/forms/ShowBuilder.php:46
+#: airtime_mvc/application/forms/AddShowRepeats.php:56
+msgid "Date End:"
+msgstr ""
+
+#: airtime_mvc/application/forms/ShowBuilder.php:72
+#: airtime_mvc/application/forms/ShowBuilder.php:88
+msgid "Filter by Show"
+msgstr ""
+
+#: airtime_mvc/application/forms/ShowBuilder.php:80
+msgid "All My Shows:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWho.php:10
+msgid "Search Users:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWho.php:24
+msgid "DJs:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:30
+#: airtime_mvc/application/forms/GeneralPreferences.php:25
+#: airtime_mvc/application/forms/SupportSettings.php:18
+msgid "Station Name"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:39
+#: airtime_mvc/application/forms/SupportSettings.php:31
+msgid "Phone:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:51
+#: airtime_mvc/application/forms/AddUser.php:67
+#: airtime_mvc/application/forms/EditUser.php:83
+#: airtime_mvc/application/forms/SupportSettings.php:43
+msgid "Email:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:62
+#: airtime_mvc/application/forms/SupportSettings.php:54
+msgid "Station Web Site:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:73
+#: airtime_mvc/application/forms/SupportSettings.php:65
+msgid "Country:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:84
+#: airtime_mvc/application/forms/SupportSettings.php:76
+msgid "City:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:96
+#: airtime_mvc/application/forms/SupportSettings.php:88
+msgid "Station Description:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:106
+#: airtime_mvc/application/forms/GeneralPreferences.php:42
+msgid "Station Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:126
+#: airtime_mvc/application/forms/SupportSettings.php:108
+#, php-format
+msgid "Promote my station on %s"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:151
+#: airtime_mvc/application/forms/SupportSettings.php:120
+#, php-format
+msgid "By checking this box, I agree to %s's %sprivacy policy%s."
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:169
+#: airtime_mvc/application/forms/SupportSettings.php:143
+msgid "You have to agree to privacy policy."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRR.php:10
+msgid "Record from Line In?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRR.php:16
+msgid "Rebroadcast?"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
+#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
+msgid "Value is required and can't be empty"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
+msgid "'%value%' is no valid email address in the basic format local-part@hostname"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
+msgid "'%value%' does not fit the date format '%format%'"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
+msgid "'%value%' is less than %min% characters long"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
+msgid "'%value%' is more than %max% characters long"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
+msgid "'%value%' is not between '%min%' and '%max%', inclusively"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
+msgid "Passwords do not match"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
+msgid "Day must be specified"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
+msgid "Time must be specified"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
+msgid "Must wait at least 1 hour to rebroadcast"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordRestore.php:14
+msgid "Email"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordRestore.php:36
+msgid "Reset password"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhat.php:30
+msgid "Untitled Show"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhat.php:69
+msgid "Instance Description:"
+msgstr ""
+
+#: airtime_mvc/application/forms/DangerousPreferences.php:12
+msgid "Delete All Tracks in Library"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditAudioMD.php:145
+msgid "ISRC Number:"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditAudioMD.php:176
+msgid "OK"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:33
+msgid "Station Description"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:62
+msgid "Default Crossfade Duration (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:68
+#: airtime_mvc/application/forms/GeneralPreferences.php:82
+#: airtime_mvc/application/forms/GeneralPreferences.php:96
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
+msgid "Please enter a time in seconds (eg. 0.5)"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:76
+msgid "Default Fade In (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:90
+msgid "Default Fade Out (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:102
+msgid "Public Airtime API"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:103
+msgid "Required for embeddable schedule widget."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:105
+msgid "Disabled"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:106
+msgid "Enabled"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:109
+msgid ""
+"Enabling this feature will allow Airtime to provide schedule data\n"
+" to external widgets that can be embedded in your website."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:120
+msgid "Default Language"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:127
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
+msgid "Station Timezone"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:134
+msgid "Week Starts On"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:150
+msgid "Display login button on your Radio Page?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:29
+#: airtime_mvc/application/forms/EditUser.php:37
+#: airtime_mvc/application/forms/Login.php:41
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
+msgid "Username:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:38
+#: airtime_mvc/application/forms/EditUser.php:48
+#: airtime_mvc/application/forms/Login.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
+msgid "Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:46
+#: airtime_mvc/application/forms/EditUser.php:57
+msgid "Verify Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:55
+#: airtime_mvc/application/forms/EditUser.php:67
+msgid "Firstname:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:61
+#: airtime_mvc/application/forms/EditUser.php:75
+msgid "Lastname:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:76
+#: airtime_mvc/application/forms/EditUser.php:94
+msgid "Mobile Phone:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:82
+#: airtime_mvc/application/forms/EditUser.php:102
+msgid "Skype:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:88
+#: airtime_mvc/application/forms/EditUser.php:110
+msgid "Jabber:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:95
+msgid "User Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:120
+#: airtime_mvc/application/forms/EditUser.php:155
+msgid "Login name is not unique."
+msgstr ""
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
+msgid "Import Folder:"
+msgstr ""
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
+msgid "Watched Folders:"
+msgstr ""
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
+msgid "Not a valid Directory"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:126
+msgid "What is the name of your favorite childhood friend?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:127
+msgid "What school did you attend for sixth grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:128
+msgid "In what city did you meet your spouse/significant other?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:129
+msgid "What street did you live on in third grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:130
+msgid "What is the first name of the boy or girl that you first kissed?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:131
+msgid "In what city or town was your first job?"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
+msgid "Default License:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
+msgid "All rights are reserved"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
+msgid "The work is in the public domain"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
+msgid "Creative Commons Attribution"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
+msgid "Creative Commons Attribution Noncommercial"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
+msgid "Creative Commons Attribution No Derivative Works"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
+msgid "Creative Commons Attribution Share Alike"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
+msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
+msgid "Creative Commons Attribution Noncommercial Share Alike"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
+msgid "Default Sharing Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
+msgid "Public"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
+msgid "Private"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditUser.php:129
+msgid "Interface Timezone:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:14
+msgid "Now Playing"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:25
+msgid "Select Stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:28
+msgid "Auto detect the most appropriate stream to use."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:29
+msgid "Select a stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:41
+msgid " - Mobile friendly"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:45
+msgid " - The player does not support Opus streams."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:71
+msgid "Embeddable code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:72
+msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
+#: airtime_mvc/application/models/Block.php:1351
+msgid "Select criteria"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
+#: airtime_mvc/application/models/Block.php:1353
+msgid "Bit Rate (Kbps)"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
+#: airtime_mvc/application/models/Block.php:1374
+msgid "Sample Rate (kHz)"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
+msgid "hours"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
+msgid "minutes"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
+#: airtime_mvc/application/models/Block.php:333
+msgid "items"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
+msgid "Randomly"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
+msgid "Newest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
+msgid "Oldest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
+msgid "Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
+msgid "Static"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
+msgid "Dynamic"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
+msgid "Allow Repeated Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
+msgid "Sort Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
+msgid "Limit to:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
+msgid "Generate playlist content and save criteria"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
+msgid "Generate"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
+msgid "Shuffle playlist content"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
+msgid "Limit cannot be empty or smaller than 0"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
+msgid "Limit cannot be more than 24 hrs"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
+msgid "The value should be an integer"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
+msgid "500 is the max item limit value you can set"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
+msgid "You must select Criteria and Modifier"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
+msgid "'Length' should be in '00:00:00' format"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
+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:594
+msgid "The value has to be numeric"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
+msgid "The value should be less then 2147483648"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
+#, php-format
+msgid "The value should be less than %s characters"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
+msgid "Value cannot be empty"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:26
+msgid "Icecast Vorbis Metadata"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:36
+msgid "Stream Label:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:37
+msgid "Artist - Title"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:38
+msgid "Show - Artist - Title"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:39
+msgid "Station name - Show name"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:45
+msgid "Off Air Metadata"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:51
+msgid "Enable Replay Gain"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:57
+msgid "Replay Gain Modifier"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:65
+msgid "Streaming Server:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Airtime Pro Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Custom / 3rd Party Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordChange.php:17
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
+msgid "Password"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordChange.php:28
+msgid "Confirm new password"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordChange.php:36
+msgid "Password confirmation does not match your password."
+msgstr ""
+
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
+msgid "Station Language"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
+msgid "Enabled:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
+msgid "Mobile:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
+msgid "Stream Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
+msgid "Service Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
+msgid "Channels:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "1 - Mono"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "2 - Stereo"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
+msgid "Server"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
+msgid "Port"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
+msgid "Only numbers are allowed."
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
+msgid "URL"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
+msgid "Mount Point"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
+msgid "Admin User"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
+msgid "Admin Password"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
+msgid "Server cannot be empty."
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
+msgid "Port cannot be empty."
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
+msgid "Mount cannot be empty with Icecast server."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:16
+msgid "'%value%' does not fit the time format 'HH:mm'"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:22
+msgid "Start Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:37
+msgid "In the Future:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:64
+msgid "End Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:98
+msgid "Timezone:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:107
+msgid "Repeats?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:139
+msgid "Cannot create show in the past"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:147
+msgid "Cannot modify start date/time of the show that is already started"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:156
+#: airtime_mvc/application/models/Show.php:282
+msgid "End date/time cannot be in the past"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:164
+msgid "Cannot have duration < 0m"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:168
+msgid "Cannot have duration 00h 00m"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:175
+msgid "Cannot have duration greater than 24h"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:19
+msgid "Push metadata to your station on TuneIn?"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:24
+msgid "Station ID:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:30
+msgid "Partner Key:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:36
+msgid "Partner Id:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:77
+#: airtime_mvc/application/forms/TuneInPreferences.php:86
+msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:10
+#, php-format
+msgid "Use %s Authentication:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:16
+msgid "Use Custom Authentication:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:25
+msgid "Custom Username"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:37
+msgid "Custom Password"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:48
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
+msgid "Host:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
+msgid "Port:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:60
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
+msgid "Mount:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:77
+msgid "Username field cannot be empty."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:82
+msgid "Password field cannot be empty."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:12
+msgid "Background Colour:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:31
+msgid "Text Colour:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:49
+msgid "Current Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:72
+msgid "Show Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:87
+msgid "Logo Preview:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Login.php:102
+msgid "Type the characters you see in the picture below."
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
+msgid "Auto Switch Off:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
+msgid "Auto Switch On:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
+msgid "Switch Transition Fade (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:10
+msgid "Link:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:16
+msgid "Repeat Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:19
+msgid "weekly"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:20
+msgid "every 2 weeks"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:21
+msgid "every 3 weeks"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:22
+msgid "every 4 weeks"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:23
+msgid "monthly"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:32
+msgid "Select Days:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:47
+msgid "Repeat By:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the month"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the week"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:69
+msgid "No End?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:106
+msgid "End date must be after start date"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:113
+msgid "Please select a repeat day"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:12
+msgid "Radio Page"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:19
+msgid "Calendar"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:26
+msgid "Widgets"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:48
+msgid "Settings"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:67
+msgid "Users"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:74
+msgid "Streams"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:82
+msgid "Analytics"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:90
+msgid "Listener Stats"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:104
+msgid "History Templates"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:113
+msgid "Billing"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:120
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:127
+msgid "Account Details"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:134
+msgid "View Invoices"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:150
+msgid "Getting Started"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:157
+msgid "FAQ"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:162
+msgid "User Manual"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:167
+msgid "File a Support Ticket"
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:833
+#: airtime_mvc/application/models/Playlist.php:812
+msgid "Cue in and cue out are null."
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:868
+#: airtime_mvc/application/models/Block.php:924
+#: airtime_mvc/application/models/Playlist.php:851
+#: airtime_mvc/application/models/Playlist.php:895
+msgid "Can't set cue out to be greater than file length."
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:879
+#: airtime_mvc/application/models/Block.php:900
+#: airtime_mvc/application/models/Playlist.php:843
+#: airtime_mvc/application/models/Playlist.php:868
+msgid "Can't set cue in to be larger than cue out."
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:935
+#: airtime_mvc/application/models/Playlist.php:887
+msgid "Can't set cue out to be smaller than cue in."
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:1366
+msgid "Upload Time"
+msgstr ""
+
+#: airtime_mvc/application/models/ShowBuilder.php:212
+#, php-format
+msgid "Rebroadcast of %s from %s"
+msgstr ""
+
+#: airtime_mvc/application/models/Preference.php:460
+#, php-format
+msgid "Powered by %s"
+msgstr ""
+
+#: airtime_mvc/application/models/Preference.php:588
+msgid "Select Country"
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:160
+#, php-format
+msgid "%s is already watched."
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:164
+#, php-format
+msgid "%s contains nested watched directory: %s"
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:168
+#, php-format
+msgid "%s is nested within existing watched directory: %s"
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:189
+#: airtime_mvc/application/models/MusicDir.php:370
+#, php-format
+msgid "%s is not a valid directory."
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:232
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list"
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:388
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list."
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:431
+#, php-format
+msgid "%s doesn't exist in the watched list."
+msgstr ""
+
+#: airtime_mvc/application/models/Auth.php:33
+#, php-format
+msgid ""
+"Hi %s, \n"
+"\n"
+"Please click this link to reset your password: "
+msgstr ""
+
+#: airtime_mvc/application/models/Auth.php:38
+#, php-format
+msgid "%s Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/models/Show.php:184
+msgid "Shows can have a max length of 24 hours."
+msgstr ""
+
+#: airtime_mvc/application/models/Show.php:293
+msgid ""
+"Cannot schedule overlapping shows.\n"
+"Note: Resizing a repeating show affects all of its repeats."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:73
+msgid "Cannot move items out of linked shows"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:119
+msgid "The schedule you're viewing is out of date! (sched mismatch)"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:124
+msgid "The schedule you're viewing is out of date! (instance mismatch)"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:132
+#: airtime_mvc/application/models/Scheduler.php:458
+#: airtime_mvc/application/models/Scheduler.php:490
+msgid "The schedule you're viewing is out of date!"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:142
+#, php-format
+msgid "You are not allowed to schedule show %s."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:146
+msgid "You cannot add files to recording shows."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:152
+#, php-format
+msgid "The show %s is over and cannot be scheduled."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:159
+#, php-format
+msgid "The show %s has been previously updated!"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:178
+msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:195
+msgid "Cannot schedule a playlist that contains missing files."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:216
+#: airtime_mvc/application/models/Scheduler.php:305
+msgid "A selected File does not exist!"
+msgstr ""
+
+#: airtime_mvc/application/models/Schedule.php:206
+msgid "livestream"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:166
+msgid "Length needs to be greater than 0 minutes"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:171
+msgid "Length should be of form \"00h 00m\""
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:184
+msgid "URL should be of form \"http://domain\""
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:187
+msgid "URL should be 512 characters or less"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:193
+msgid "No MIME type found for webstream."
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:209
+msgid "Webstream name cannot be empty"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:278
+msgid "Could not parse XSPF playlist"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:298
+msgid "Could not parse PLS playlist"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:318
+msgid "Could not parse M3U playlist"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:332
+msgid "Invalid webstream - This appears to be a file download."
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:336
+#, php-format
+msgid "Unrecognized stream type: %s"
+msgstr ""
+
+#: airtime_mvc/public/setup/rabbitmq-setup.php:78
+msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
+msgstr ""
diff --git a/airtime_mvc/locale/hy_AM/LC_MESSAGES/pro.po b/airtime_mvc/locale/hy_AM/LC_MESSAGES/pro.po
index 866ee0acb..f59b52c3d 100644
--- a/airtime_mvc/locale/hy_AM/LC_MESSAGES/pro.po
+++ b/airtime_mvc/locale/hy_AM/LC_MESSAGES/pro.po
@@ -1,3 +1,139 @@
+#: airtime_mvc/application/controllers/LoginController.php:170
+#, php-format
+msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
+#, php-format
+msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
+#, php-format
+msgid "If you are the primary owner of this station, please reset your password here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
+msgid "Thank you!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
+msgid "Your station has been upgraded successfully."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
+msgid "Return to Airtime"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+#, php-format
+msgid "Purchase an %s plan!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+msgid "My Account"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
+msgid "Upgrade today to get more listeners and storage space!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
+msgid "View Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:257
+msgid "Your Current Plan:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:291
+msgid "Please enter your payment details:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
+msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
+msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:17
+msgid "First Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:26
+msgid "Last Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:35
+msgid "Company Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:44
+msgid "Email Address:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:54
+msgid "Address 1:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:63
+msgid "Address 2:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:70
+msgid "City:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:80
+msgid "State/Region:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:89
+msgid "Zip Code / Postal Code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:102
+msgid "Country:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:112
+msgid "Phone Number:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:121
+msgid "Please choose a security question:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:135
+msgid "Please enter an answer:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:152
+msgid "VAT/Tax ID (EU only)"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:162
+msgid "Subscribe to Sourcefabric newsletter"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:172
+msgid "Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:181
+msgid "Verify Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:193
+msgid "Save"
+msgstr ""
+
#: airtime_mvc/application/models/Auth.php:35
#, php-format
msgid ""
@@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
-msgid "Thank you!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
-msgid "Your station has been upgraded successfully."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
-msgid "Return to Airtime"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
-#, php-format
-msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
-msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
-msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
-#, php-format
-msgid "If you are the primary owner of this station, please reset your password here."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:170
-#, php-format
-msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
-msgstr ""
diff --git a/airtime_mvc/locale/id_ID/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/id_ID/LC_MESSAGES/airtime.mo
index 5f85237e6..0d154d9ff 100644
Binary files a/airtime_mvc/locale/id_ID/LC_MESSAGES/airtime.mo and b/airtime_mvc/locale/id_ID/LC_MESSAGES/airtime.mo differ
diff --git a/airtime_mvc/locale/id_ID/LC_MESSAGES/airtime.po b/airtime_mvc/locale/id_ID/LC_MESSAGES/airtime.po
index 87b63a68d..c92ebfe7e 100644
--- a/airtime_mvc/locale/id_ID/LC_MESSAGES/airtime.po
+++ b/airtime_mvc/locale/id_ID/LC_MESSAGES/airtime.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Airtime\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-09-03 10:24-0400\n"
-"PO-Revision-Date: 2014-01-27 10:20+0000\n"
-"Last-Translator: FULL NAME \n"
+"POT-Creation-Date: 2015-09-04 11:17-0400\n"
+"PO-Revision-Date: 2015-09-04 08:15+0000\n"
+"Last-Translator: Daniel James \n"
"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/sourcefabric/airtime/language/id_ID/)\n"
"Language: id_ID\n"
"MIME-Version: 1.0\n"
@@ -17,132 +17,6 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-#: airtime_mvc/public/setup/rabbitmq-setup.php:78
-msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1117
-#: airtime_mvc/application/services/HistoryService.php:1157
-#: airtime_mvc/application/services/HistoryService.php:1174
-#: airtime_mvc/application/models/Block.php:1375
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
-#: airtime_mvc/application/controllers/LocaleController.php:76
-msgid "Title"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1118
-#: airtime_mvc/application/services/HistoryService.php:1158
-#: airtime_mvc/application/services/HistoryService.php:1175
-#: airtime_mvc/application/models/Block.php:1360
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
-#: airtime_mvc/application/controllers/LocaleController.php:77
-msgid "Creator"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1119
-#: airtime_mvc/application/models/Block.php:1352
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
-#: airtime_mvc/application/controllers/LocaleController.php:78
-msgid "Album"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1120
-#: airtime_mvc/application/services/HistoryService.php:1177
-#: airtime_mvc/application/models/Block.php:1369
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
-#: airtime_mvc/application/controllers/LocaleController.php:91
-msgid "Length"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1121
-#: airtime_mvc/application/models/Block.php:1362
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
-#: airtime_mvc/application/controllers/LocaleController.php:85
-msgid "Genre"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1122
-#: airtime_mvc/application/models/Block.php:1371
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
-#: airtime_mvc/application/controllers/LocaleController.php:93
-msgid "Mood"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1123
-#: airtime_mvc/application/models/Block.php:1364
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
-#: airtime_mvc/application/controllers/LocaleController.php:87
-msgid "Label"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1124
-#: airtime_mvc/application/services/HistoryService.php:1178
-#: airtime_mvc/application/models/Block.php:1355
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
-#: airtime_mvc/application/controllers/LocaleController.php:81
-msgid "Composer"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1125
-#: airtime_mvc/application/models/Block.php:1363
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
-#: airtime_mvc/application/controllers/LocaleController.php:86
-msgid "ISRC"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1126
-#: airtime_mvc/application/services/HistoryService.php:1179
-#: airtime_mvc/application/models/Block.php:1357
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
-#: airtime_mvc/application/controllers/LocaleController.php:83
-msgid "Copyright"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1127
-#: airtime_mvc/application/models/Block.php:1379
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
-#: airtime_mvc/application/controllers/LocaleController.php:100
-msgid "Year"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1128
-msgid "Track"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1129
-#: airtime_mvc/application/models/Block.php:1356
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
-#: airtime_mvc/application/controllers/LocaleController.php:82
-msgid "Conductor"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1130
-#: airtime_mvc/application/models/Block.php:1365
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
-#: airtime_mvc/application/controllers/LocaleController.php:88
-msgid "Language"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1155
-#: airtime_mvc/application/forms/EditHistoryItem.php:32
-msgid "Start Time"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1156
-#: airtime_mvc/application/forms/EditHistoryItem.php:44
-msgid "End Time"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1176
-msgid "Played"
-msgstr ""
-
#: airtime_mvc/application/services/CalendarService.php:50
msgid "Record file doesn't exist"
msgstr ""
@@ -238,2601 +112,380 @@ msgstr ""
msgid "Must wait 1 hour to rebroadcast."
msgstr ""
-#: airtime_mvc/application/models/Schedule.php:206
-msgid "livestream"
+#: airtime_mvc/application/services/HistoryService.php:1117
+#: airtime_mvc/application/services/HistoryService.php:1157
+#: airtime_mvc/application/services/HistoryService.php:1174
+#: airtime_mvc/application/controllers/LocaleController.php:76
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
+#: airtime_mvc/application/models/Block.php:1375
+msgid "Title"
msgstr ""
-#: airtime_mvc/application/models/ShowBuilder.php:212
+#: airtime_mvc/application/services/HistoryService.php:1118
+#: airtime_mvc/application/services/HistoryService.php:1158
+#: airtime_mvc/application/services/HistoryService.php:1175
+#: airtime_mvc/application/controllers/LocaleController.php:77
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
+#: airtime_mvc/application/models/Block.php:1360
+msgid "Creator"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1119
+#: airtime_mvc/application/controllers/LocaleController.php:78
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
+#: airtime_mvc/application/models/Block.php:1352
+msgid "Album"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1120
+#: airtime_mvc/application/services/HistoryService.php:1177
+#: airtime_mvc/application/controllers/LocaleController.php:91
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
+#: airtime_mvc/application/models/Block.php:1369
+msgid "Length"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1121
+#: airtime_mvc/application/controllers/LocaleController.php:85
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
+#: airtime_mvc/application/models/Block.php:1362
+msgid "Genre"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1122
+#: airtime_mvc/application/controllers/LocaleController.php:93
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
+#: airtime_mvc/application/models/Block.php:1371
+msgid "Mood"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1123
+#: airtime_mvc/application/controllers/LocaleController.php:87
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
+#: airtime_mvc/application/models/Block.php:1364
+msgid "Label"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1124
+#: airtime_mvc/application/services/HistoryService.php:1178
+#: airtime_mvc/application/controllers/LocaleController.php:81
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
+#: airtime_mvc/application/models/Block.php:1355
+msgid "Composer"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1125
+#: airtime_mvc/application/controllers/LocaleController.php:86
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
+#: airtime_mvc/application/models/Block.php:1363
+msgid "ISRC"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1126
+#: airtime_mvc/application/services/HistoryService.php:1179
+#: airtime_mvc/application/controllers/LocaleController.php:83
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
+#: airtime_mvc/application/models/Block.php:1357
+msgid "Copyright"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1127
+#: airtime_mvc/application/controllers/LocaleController.php:100
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
+#: airtime_mvc/application/models/Block.php:1379
+msgid "Year"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1128
+msgid "Track"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1129
+#: airtime_mvc/application/controllers/LocaleController.php:82
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
+#: airtime_mvc/application/models/Block.php:1356
+msgid "Conductor"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1130
+#: airtime_mvc/application/controllers/LocaleController.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
+#: airtime_mvc/application/models/Block.php:1365
+msgid "Language"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1155
+#: airtime_mvc/application/forms/EditHistoryItem.php:32
+msgid "Start Time"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1156
+#: airtime_mvc/application/forms/EditHistoryItem.php:44
+msgid "End Time"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1176
+msgid "Played"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:31
+#: airtime_mvc/application/controllers/PlaylistController.php:147
#, php-format
-msgid "Rebroadcast of %s from %s"
+msgid "%s not found"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:166
-msgid "Length needs to be greater than 0 minutes"
+#: airtime_mvc/application/controllers/LibraryController.php:40
+#: airtime_mvc/application/controllers/PlaylistController.php:168
+msgid "Something went wrong."
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:171
-msgid "Length should be of form \"00h 00m\""
+#: airtime_mvc/application/controllers/LibraryController.php:95
+#: airtime_mvc/application/controllers/ShowbuilderController.php:136
+msgid "Preview"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:184
-msgid "URL should be of form \"http://domain\""
+#: airtime_mvc/application/controllers/LibraryController.php:115
+#: airtime_mvc/application/controllers/LibraryController.php:177
+#: airtime_mvc/application/controllers/LibraryController.php:200
+msgid "Add to Playlist"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:187
-msgid "URL should be 512 characters or less"
+#: airtime_mvc/application/controllers/LibraryController.php:117
+msgid "Add to Smart Block"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:193
-msgid "No MIME type found for webstream."
+#: airtime_mvc/application/controllers/LibraryController.php:123
+#: airtime_mvc/application/controllers/LocaleController.php:66
+msgid "Edit Metadata"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:209
-msgid "Webstream name cannot be empty"
+#: airtime_mvc/application/controllers/LibraryController.php:131
+#: airtime_mvc/application/controllers/ScheduleController.php:712
+msgid "Download"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:278
-msgid "Could not parse XSPF playlist"
+#: airtime_mvc/application/controllers/LibraryController.php:147
+msgid "View track"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:298
-msgid "Could not parse PLS playlist"
+#: airtime_mvc/application/controllers/LibraryController.php:148
+msgid "Remove track"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:318
-msgid "Could not parse M3U playlist"
+#: airtime_mvc/application/controllers/LibraryController.php:154
+#: airtime_mvc/application/controllers/LibraryController.php:159
+msgid "Upload track"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:332
-msgid "Invalid webstream - This appears to be a file download."
+#: airtime_mvc/application/controllers/LibraryController.php:169
+msgid "Duplicate Playlist"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:336
+#: airtime_mvc/application/controllers/LibraryController.php:213
+msgid "No action available"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:233
+msgid "You don't have permission to delete selected items."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:279
+msgid "Could not delete file because it is scheduled in the future."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:282
+msgid "Could not delete file(s)."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:322
#, php-format
-msgid "Unrecognized stream type: %s"
+msgid "Copy of %s"
msgstr ""
-#: airtime_mvc/application/models/Preference.php:460
-#, php-format
-msgid "Powered by %s"
+#: airtime_mvc/application/controllers/WebstreamController.php:28
+#: airtime_mvc/application/controllers/WebstreamController.php:32
+msgid "Untitled Webstream"
msgstr ""
-#: airtime_mvc/application/models/Preference.php:588
-msgid "Select Country"
+#: airtime_mvc/application/controllers/WebstreamController.php:150
+msgid "Webstream saved."
msgstr ""
-#: airtime_mvc/application/models/MusicDir.php:160
-#, php-format
-msgid "%s is already watched."
+#: airtime_mvc/application/controllers/WebstreamController.php:158
+msgid "Invalid form values."
msgstr ""
-#: airtime_mvc/application/models/MusicDir.php:164
-#, php-format
-msgid "%s contains nested watched directory: %s"
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:168
-#, php-format
-msgid "%s is nested within existing watched directory: %s"
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:189
-#: airtime_mvc/application/models/MusicDir.php:370
-#, php-format
-msgid "%s is not a valid directory."
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:232
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list"
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:388
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list."
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:431
-#, php-format
-msgid "%s doesn't exist in the watched list."
-msgstr ""
-
-#: airtime_mvc/application/models/Show.php:184
-msgid "Shows can have a max length of 24 hours."
-msgstr ""
-
-#: airtime_mvc/application/models/Show.php:282
-#: airtime_mvc/application/forms/AddShowWhen.php:156
-msgid "End date/time cannot be in the past"
-msgstr ""
-
-#: airtime_mvc/application/models/Show.php:293
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
msgid ""
-"Cannot schedule overlapping shows.\n"
-"Note: Resizing a repeating show affects all of its repeats."
+"To configure and use the embeddable player you must:
\n"
+" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
+" 2. Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/models/Auth.php:33
-#, php-format
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
msgid ""
-"Hi %s, \n"
-"\n"
-"Please click this link to reset your password: "
+"To use the embeddable weekly schedule widget you must:
\n"
+" Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/models/Auth.php:38
+#: airtime_mvc/application/controllers/ListenerstatController.php:51
+msgid "Please make sure admin user/password is correct on System->Streams page."
+msgstr ""
+
+#: airtime_mvc/application/controllers/UserController.php:86
+msgid "User added successfully!"
+msgstr ""
+
+#: airtime_mvc/application/controllers/UserController.php:88
+msgid "User updated successfully!"
+msgstr ""
+
+#: airtime_mvc/application/controllers/UserController.php:187
+msgid "Settings updated successfully!"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PlaylistController.php:53
#, php-format
-msgid "%s Password Reset"
+msgid "You are viewing an older version of %s"
msgstr ""
-#: airtime_mvc/application/models/Block.php:333
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
-msgid "items"
+#: airtime_mvc/application/controllers/PlaylistController.php:140
+msgid "You cannot add tracks to dynamic blocks."
msgstr ""
-#: airtime_mvc/application/models/Block.php:833
-#: airtime_mvc/application/models/Playlist.php:812
-msgid "Cue in and cue out are null."
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:868
-#: airtime_mvc/application/models/Block.php:924
-#: airtime_mvc/application/models/Playlist.php:851
-#: airtime_mvc/application/models/Playlist.php:895
-msgid "Can't set cue out to be greater than file length."
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:879
-#: airtime_mvc/application/models/Block.php:900
-#: airtime_mvc/application/models/Playlist.php:843
-#: airtime_mvc/application/models/Playlist.php:868
-msgid "Can't set cue in to be larger than cue out."
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:935
-#: airtime_mvc/application/models/Playlist.php:887
-msgid "Can't set cue out to be smaller than cue in."
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1351
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
-msgid "Select criteria"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1353
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
-msgid "Bit Rate (Kbps)"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1354
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
-#: airtime_mvc/application/controllers/LocaleController.php:80
-msgid "BPM"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1358
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
-#: airtime_mvc/application/controllers/LocaleController.php:281
-#: airtime_mvc/application/layouts/scripts/layout.phtml:140
-msgid "Cue In"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1359
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:282
-#: airtime_mvc/application/layouts/scripts/layout.phtml:147
-msgid "Cue Out"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1361
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
-#: airtime_mvc/application/controllers/LocaleController.php:84
-msgid "Encoded By"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1366
-msgid "Upload Time"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1367
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
-#: airtime_mvc/application/controllers/LocaleController.php:89
-msgid "Last Modified"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1368
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
-#: airtime_mvc/application/controllers/LocaleController.php:90
-msgid "Last Played"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1370
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
-#: airtime_mvc/application/controllers/LocaleController.php:92
-msgid "Mime"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1372
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
-#: airtime_mvc/application/controllers/LocaleController.php:94
-msgid "Owner"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1373
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
-#: airtime_mvc/application/controllers/LocaleController.php:95
-msgid "Replay Gain"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1374
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
-msgid "Sample Rate (kHz)"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1376
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
-#: airtime_mvc/application/controllers/LocaleController.php:97
-msgid "Track Number"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1377
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
-#: airtime_mvc/application/controllers/LocaleController.php:98
-msgid "Uploaded"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1378
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
-#: airtime_mvc/application/controllers/LocaleController.php:99
-msgid "Website"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1383
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
-#: airtime_mvc/application/controllers/LocaleController.php:151
-msgid "Select modifier"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1384
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
-#: airtime_mvc/application/controllers/LocaleController.php:152
-msgid "contains"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1385
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
-#: airtime_mvc/application/controllers/LocaleController.php:153
-msgid "does not contain"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1386
-#: airtime_mvc/application/models/Block.php:1390
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
-#: airtime_mvc/application/controllers/LocaleController.php:154
-msgid "is"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1387
-#: airtime_mvc/application/models/Block.php:1391
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
-#: airtime_mvc/application/controllers/LocaleController.php:155
-msgid "is not"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1388
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
-#: airtime_mvc/application/controllers/LocaleController.php:156
-msgid "starts with"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1389
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
-#: airtime_mvc/application/controllers/LocaleController.php:157
-msgid "ends with"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
-#: airtime_mvc/application/controllers/LocaleController.php:158
-msgid "is greater than"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1393
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
-#: airtime_mvc/application/controllers/LocaleController.php:159
-msgid "is less than"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1394
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
-#: airtime_mvc/application/controllers/LocaleController.php:160
-msgid "is in the range"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:73
-msgid "Cannot move items out of linked shows"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:119
-msgid "The schedule you're viewing is out of date! (sched mismatch)"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:124
-msgid "The schedule you're viewing is out of date! (instance mismatch)"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:132
-#: airtime_mvc/application/models/Scheduler.php:458
-#: airtime_mvc/application/models/Scheduler.php:490
-msgid "The schedule you're viewing is out of date!"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:142
+#: airtime_mvc/application/controllers/PlaylistController.php:161
#, php-format
-msgid "You are not allowed to schedule show %s."
+msgid "You don't have permission to delete selected %s(s)."
msgstr ""
-#: airtime_mvc/application/models/Scheduler.php:146
-msgid "You cannot add files to recording shows."
+#: airtime_mvc/application/controllers/PlaylistController.php:174
+msgid "You can only add tracks to smart block."
msgstr ""
-#: airtime_mvc/application/models/Scheduler.php:152
+#: airtime_mvc/application/controllers/PlaylistController.php:180
+#: airtime_mvc/application/controllers/LocaleController.php:50
+msgid "You can only add tracks, smart blocks, and webstreams to playlists."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PlaylistController.php:192
+msgid "Untitled Playlist"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PlaylistController.php:194
+msgid "Untitled Smart Block"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PlaylistController.php:522
+msgid "Unknown Playlist"
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:78
+msgid "Page not found."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:87
+msgid "The requested action is not supported."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:98
+msgid "You do not have permission to access this resource."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:109
+msgid "An internal application error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/controllers/Apiv2Controller.php:77
+#: airtime_mvc/application/controllers/ApiController.php:79
+msgid "You are not allowed to access this resource."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:72
+msgid "Preferences updated."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:115
+msgid "Support setting updated."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:123
+msgid "Support Feedback"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:251
+msgid "Stream Setting Updated."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:342
+msgid "path should be specified"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:437
+msgid "Problem with Liquidsoap..."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:493
+msgid "Request method not accepted"
+msgstr ""
+
+#: airtime_mvc/application/controllers/DashboardController.php:35
+#: airtime_mvc/application/controllers/DashboardController.php:84
+msgid "You don't have permission to disconnect source."
+msgstr ""
+
+#: airtime_mvc/application/controllers/DashboardController.php:37
+#: airtime_mvc/application/controllers/DashboardController.php:86
+msgid "There is no source connected to this input."
+msgstr ""
+
+#: airtime_mvc/application/controllers/DashboardController.php:81
+msgid "You don't have permission to switch source."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:43
+msgid "Please enter your username and password."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:93
+msgid "Wrong username or password provided. Please try again."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:167
+msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:173
+msgid "There was a problem with the username or email address you entered."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ApiController.php:244
+#: airtime_mvc/application/controllers/ApiController.php:317
+#: airtime_mvc/application/controllers/ApiController.php:392
+#: airtime_mvc/application/controllers/ApiController.php:435
+#: airtime_mvc/application/controllers/ApiController.php:474
+#: airtime_mvc/application/controllers/ApiController.php:507
+msgid "You are not allowed to access this resource. "
+msgstr ""
+
+#: airtime_mvc/application/controllers/ApiController.php:698
+#: airtime_mvc/application/controllers/ApiController.php:718
+#: airtime_mvc/application/controllers/ApiController.php:730
#, php-format
-msgid "The show %s is over and cannot be scheduled."
+msgid "File does not exist in %s"
msgstr ""
-#: airtime_mvc/application/models/Scheduler.php:159
-#, php-format
-msgid "The show %s has been previously updated!"
+#: airtime_mvc/application/controllers/ApiController.php:781
+msgid "Bad request. no 'mode' parameter passed."
msgstr ""
-#: airtime_mvc/application/models/Scheduler.php:178
-msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:195
-msgid "Cannot schedule a playlist that contains missing files."
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:216
-#: airtime_mvc/application/models/Scheduler.php:305
-msgid "A selected File does not exist!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
-#: airtime_mvc/application/configs/navigation.php:40
-msgid "Weekly Schedule"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
-#: airtime_mvc/application/forms/Player.php:77
-msgid "Preview:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
-#: airtime_mvc/application/configs/navigation.php:34
-msgid "Player"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
-#: airtime_mvc/application/controllers/LocaleController.php:362
-#: airtime_mvc/application/controllers/LocaleController.php:390
-msgid "Close"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Add this show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Update show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
-msgid "What"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
-msgid "When"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
-msgid "Live Stream Input"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
-msgid "Who"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
-msgid "Style"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
-#: airtime_mvc/application/controllers/LocaleController.php:273
-msgid "Start"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
-msgid "Password Reset"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
-msgid "Email Sent!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
-msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
-msgid "Back"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
-msgid "New password"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
-msgid "Please enter and confirm your new password in the fields below."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:3
-#: airtime_mvc/application/forms/Login.php:83
-msgid "Login"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:7
-#, php-format
-msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:97
-msgid "Playout History"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
-msgid "Log Sheet"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
-msgid "File Summary"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
-msgid "Show Summary"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
-msgid "Your trial expires in"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
-msgid "days"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-#, php-format
-msgid "Purchase an %s Pro plan!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-msgid "My Account"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
-msgid "Previous:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
-msgid "Next:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
-msgid "Source Streams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
-msgid "Master Source"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
-msgid "Show Source"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
-msgid "ON AIR"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
-msgid "Listen"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
-msgid "Logout"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
-msgid "Drop files here or click to browse your computer."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
-#: airtime_mvc/application/controllers/LocaleController.php:314
-msgid "in use"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
-#: airtime_mvc/application/controllers/LocaleController.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:401
-msgid "All"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
-msgid "Failed"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
-msgid "Pending"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
-msgid "Recent Uploads"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
-#: airtime_mvc/application/configs/navigation.php:120
-msgid "Account Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
-msgid "Upgrade today to get more listeners and storage space!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
-msgid "View Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
-msgid "About"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
-#, php-format
-msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
-#, php-format
-msgid "%1$s %2$s is distributed under the %3$s"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
-#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
-msgid "Live stream"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
-msgid "Share"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
-msgid "Select stream:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
-msgid "mute"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
-msgid "unmute"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
-#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
-#, php-format
-msgid "Welcome to %s!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
-#, php-format
-msgid "Here's how you can get started using %s to automate your broadcasts: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
-msgid "Upload audio tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
-msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
-msgid "Schedule a show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
-msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
-msgid "Add tracks to your show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
-msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
-msgid "Now you're good to go!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
-#, php-format
-msgid "For more detailed help, read the %suser manual%s."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
-msgid "Listeners"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
-msgid "Stream Data Collection Status"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
-#: airtime_mvc/application/views/scripts/error/error.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
-msgid "An error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
-msgid "Access Denied!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
-msgid "You do not have permission to access this page!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
-#: airtime_mvc/application/views/scripts/error/error.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
-#: airtime_mvc/application/configs/navigation.php:143
-msgid "Help"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
-msgid "Page not found!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
-msgid "We couldn't find the page you were looking for."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error.phtml:12
-msgid "Looks like the page you were looking for doesn't exist!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
-msgid "Oops!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
-msgid "Something went wrong!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
-msgid "Bad Request!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
-msgid "The requested action is not supported!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
-msgid "Viewing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
-msgid "Editing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:3
-msgid "File import in progress..."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:10
-#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
-msgid "Advanced Search Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
-#: airtime_mvc/application/forms/Player.php:15
-#: airtime_mvc/application/forms/EditAudioMD.php:24
-msgid "Title:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
-#: airtime_mvc/application/forms/EditAudioMD.php:34
-msgid "Creator:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
-#: airtime_mvc/application/forms/EditAudioMD.php:44
-msgid "Album:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
-msgid "Track:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
-msgid "Length:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
-msgid "Sample Rate:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
-msgid "Bit Rate:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
-#: airtime_mvc/application/forms/EditAudioMD.php:115
-msgid "Mood:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
-#: airtime_mvc/application/forms/EditAudioMD.php:62
-#: airtime_mvc/application/forms/AddShowWhat.php:45
-msgid "Genre:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
-#: airtime_mvc/application/forms/EditAudioMD.php:72
-msgid "Year:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
-#: airtime_mvc/application/forms/EditAudioMD.php:85
-msgid "Label:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
-#: airtime_mvc/application/forms/EditAudioMD.php:125
-msgid "BPM:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
-#: airtime_mvc/application/forms/EditAudioMD.php:95
-msgid "Composer:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
-#: airtime_mvc/application/forms/EditAudioMD.php:105
-msgid "Conductor:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
-#: airtime_mvc/application/forms/EditAudioMD.php:135
-msgid "Copyright:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
-msgid "Isrc Number:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
-#: airtime_mvc/application/forms/EditAudioMD.php:155
-msgid "Website:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
-#: airtime_mvc/application/forms/EditUser.php:119
-#: airtime_mvc/application/forms/EditAudioMD.php:165
-#: airtime_mvc/application/forms/Login.php:68
-msgid "Language:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
-msgid "File Path:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
-#: airtime_mvc/application/forms/AddShowWhat.php:26
-msgid "Name:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
-#: airtime_mvc/application/forms/AddShowWhat.php:54
-msgid "Description:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
-msgid "Web Stream"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
-msgid "Dynamic Smart Block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
-msgid "Static Smart Block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
-msgid "Audio Track"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
-msgid "Playlist Contents: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
-msgid "Static Smart Block Contents: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
-msgid "Dynamic Smart Block Criteria: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
-msgid "Limit to "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
-#: airtime_mvc/application/forms/AddShowWhat.php:36
-msgid "URL:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/login.phtml:41
-msgid "Forgot your password?"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
-#, php-format
-msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
-#, php-format
-msgid "Click the box below to promote your station on %s."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
-msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
-msgid "(Required)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
-msgid "(for verification purposes only, will not be published)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
-msgid "Choose folder"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
-msgid "Set"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
-msgid "Current Import Folder:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
-msgid "Add"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
-#, php-format
-msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
-msgid "Remove watched directory"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
-msgid "You are not watching any media folders."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
-msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
-msgid "Live Broadcasting"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
-msgid "Use these settings in your broadcasting software to stream live at any time."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
-msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
-msgid "Choose Show Instance"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
-#: airtime_mvc/application/forms/EditHistoryItem.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:400
-msgid "No Show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
-msgid "Find"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
-msgid "Choose Days:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
-#: airtime_mvc/application/forms/AddShowStyle.php:64
-#: airtime_mvc/application/forms/GeneralPreferences.php:53
-msgid "Remove"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
-msgid "Stream "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
-msgid "Additional Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
-msgid "The following info will be displayed to listeners in their media player:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
-msgid "(Your radio station website)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
-msgid "Stream URL: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
-msgid "Find Shows"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
-msgid "TuneIn Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
-msgid "SoundCloud Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
-msgid "Dangerous Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
-msgid "Search Criteria:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
-msgid "New Criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
-msgid "or"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
-msgid "and"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
-msgid "New Modifier"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
-msgid " to "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
-msgid "files meet the criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
-msgid "file meets the criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
-msgid "Filter History"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
-#: airtime_mvc/application/configs/navigation.php:61
-msgid "My Profile"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
-#, php-format
-msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
-#: airtime_mvc/application/forms/Preferences.php:40
-#: airtime_mvc/application/forms/PasswordChange.php:43
-#: airtime_mvc/application/forms/AddUser.php:110
-#: airtime_mvc/application/forms/BillingClient.php:193
-#: airtime_mvc/application/forms/SupportSettings.php:131
-#: airtime_mvc/application/forms/EditHistory.php:131
-#: airtime_mvc/application/controllers/LocaleController.php:294
-msgid "Save"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
-msgid "Repeat Days:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
-msgid "Register Airtime"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
-#: airtime_mvc/application/forms/GeneralPreferences.php:43
-msgid "Note: Anything larger than 600x600 will be resized."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
-msgid "Show me what I am sending "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
-msgid "Terms and Conditions"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
-msgid "Creating File Summary Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
-msgid "Creating Log Sheet Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
-msgid "Name"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
-msgid "Add more elements"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
-msgid "Add New Field"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
-msgid "Set Default Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
-msgid "Playout History Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
-msgid "Log Sheet Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
-msgid "New Log Sheet Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
-msgid "No Log Sheet Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
-#: airtime_mvc/application/controllers/LocaleController.php:397
-msgid "Set Default"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
-msgid "File Summary Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
-msgid "New File Summary Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
-msgid "No File Summary Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
-msgid "Disk Space"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
-#: airtime_mvc/application/controllers/LocaleController.php:315
-msgid "Disk"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
-#: airtime_mvc/application/forms/AddShowWhen.php:89
-msgid "Duration:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
-msgid "Toggle Details"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
-msgid "Playlist crossfade"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-msgid "Remove all content from this smart block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Clear"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "Fade in: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "(ss.t)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-msgid "Fade out: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
-#: airtime_mvc/application/forms/EditAudioMD.php:186
-#: airtime_mvc/application/forms/EditHistory.php:141
-#: airtime_mvc/application/controllers/LocaleController.php:295
-#: airtime_mvc/application/controllers/LocaleController.php:318
-msgid "Cancel"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
-msgid "No smart block currently open"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
-msgid "Show Waveform"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-msgid "Cue In: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "(hh:mm:ss.t)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "Cue Out: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
-msgid "Original Length:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
-msgid "Expand Static Block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
-msgid "Expand Dynamic Block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
-msgid "Choose some search criteria above and click Generate to create this playlist."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
-msgid "A track list will be generated when you schedule this smart block into a show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
-msgid "Drag tracks here from your library to add them to the playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-msgid "Shuffle playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
-msgid "Shuffle"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Empty playlist content"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-msgid "Save playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
-msgid "No open playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
-msgid "previous"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
-msgid "play"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
-msgid "pause"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
-msgid "next"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
-msgid "stop"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
-msgid "max volume"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
-msgid "Update Required"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
-#, php-format
-msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
-msgid "Stream Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
-msgid "Global"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
-msgid "dB"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
-msgid "Output Streams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
-#: airtime_mvc/application/controllers/LocaleController.php:166
-msgid "Manage Media Folders"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:56
-msgid "General"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
-msgid "Description"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
-msgid "Stream URL:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
-msgid "Default Length:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
-msgid "No webstream"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
-msgid "Manage Users"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
-msgid "New User"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
-msgid "id"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
-#: airtime_mvc/application/forms/PasswordRestore.php:25
-msgid "Username"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
-msgid "First Name"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
-msgid "Last Name"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
-msgid "User Type"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
-#, php-format
-msgid "Super Admin details can be changed in your Billing Settings."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
-#: airtime_mvc/application/controllers/LocaleController.php:74
-#: airtime_mvc/application/layouts/scripts/layout.phtml:78
-msgid "Tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
-#: airtime_mvc/application/controllers/LocaleController.php:104
-#: airtime_mvc/application/layouts/scripts/layout.phtml:80
-msgid "Playlists"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
-#: airtime_mvc/application/controllers/LocaleController.php:105
-#: airtime_mvc/application/layouts/scripts/layout.phtml:82
-msgid "Smart Blocks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
-#: airtime_mvc/application/layouts/scripts/layout.phtml:84
-msgid "Webstreams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
-#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
-#: airtime_mvc/application/layouts/scripts/layout.phtml:76
-msgid "Dashboard"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:12
-msgid "Radio Page"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:19
-msgid "Calendar"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:26
-msgid "Widgets"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:48
-msgid "Settings"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:67
-msgid "Users"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:74
-msgid "Streams"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:82
-msgid "Analytics"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:90
-msgid "Listener Stats"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:104
-msgid "History Templates"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:113
-msgid "Billing"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:127
-msgid "Account Details"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:134
-msgid "View Invoices"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:150
-msgid "Getting Started"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:157
-msgid "FAQ"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:162
-msgid "User Manual"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:167
-msgid "File a Support Ticket"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:12
-msgid "Background Colour:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:31
-msgid "Text Colour:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:49
-msgid "Current Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:72
-msgid "Show Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:87
-msgid "Logo Preview:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:19
-msgid "Push metadata to your station on TuneIn?"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:24
-msgid "Station ID:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:30
-msgid "Partner Key:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:36
-msgid "Partner Id:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:77
-#: airtime_mvc/application/forms/TuneInPreferences.php:86
-msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:14
-msgid "Now Playing"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:25
-msgid "Select Stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:28
-msgid "Auto detect the most appropriate stream to use."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:29
-msgid "Select a stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:41
-msgid " - Mobile friendly"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:45
-msgid " - The player does not support Opus streams."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:71
-msgid "Embeddable code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:72
-msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:37
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
-#: airtime_mvc/application/forms/Login.php:41
-#: airtime_mvc/application/forms/AddUser.php:29
-msgid "Username:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:48
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
-#: airtime_mvc/application/forms/Login.php:54
-#: airtime_mvc/application/forms/AddUser.php:38
-#: airtime_mvc/application/forms/BillingClient.php:172
-msgid "Password:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:57
-#: airtime_mvc/application/forms/AddUser.php:46
-#: airtime_mvc/application/forms/BillingClient.php:181
-msgid "Verify Password:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:67
-#: airtime_mvc/application/forms/AddUser.php:55
-msgid "Firstname:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:75
-#: airtime_mvc/application/forms/AddUser.php:61
-msgid "Lastname:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:83
-#: airtime_mvc/application/forms/RegisterAirtime.php:51
-#: airtime_mvc/application/forms/AddUser.php:67
-#: airtime_mvc/application/forms/SupportSettings.php:43
-msgid "Email:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:94
-#: airtime_mvc/application/forms/AddUser.php:76
-msgid "Mobile Phone:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:102
-#: airtime_mvc/application/forms/AddUser.php:82
-msgid "Skype:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:110
-#: airtime_mvc/application/forms/AddUser.php:88
-msgid "Jabber:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:129
-msgid "Interface Timezone:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:155
-#: airtime_mvc/application/forms/AddUser.php:120
-msgid "Login name is not unique."
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRR.php:10
-msgid "Record from Line In?"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRR.php:16
-msgid "Rebroadcast?"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:16
-msgid "'%value%' does not fit the time format 'HH:mm'"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:22
-msgid "Start Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:37
-msgid "In the Future:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:64
-msgid "End Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:98
-msgid "Timezone:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:107
-msgid "Repeats?"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:139
-msgid "Cannot create show in the past"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:147
-msgid "Cannot modify start date/time of the show that is already started"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:164
-msgid "Cannot have duration < 0m"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:168
-msgid "Cannot have duration 00h 00m"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:175
-msgid "Cannot have duration greater than 24h"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWho.php:10
-msgid "Search Users:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWho.php:24
-msgid "DJs:"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordChange.php:17
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
-msgid "Password"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordChange.php:28
-msgid "Confirm new password"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordChange.php:36
-msgid "Password confirmation does not match your password."
-msgstr ""
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
-msgid "Station Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
-#: airtime_mvc/application/forms/GeneralPreferences.php:127
-msgid "Station Timezone"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
-msgid "Auto Switch Off:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
-msgid "Auto Switch On:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
-msgid "Switch Transition Fade (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
-#: airtime_mvc/application/forms/GeneralPreferences.php:68
-#: airtime_mvc/application/forms/GeneralPreferences.php:82
-#: airtime_mvc/application/forms/GeneralPreferences.php:96
-msgid "Please enter a time in seconds (eg. 0.5)"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
-#: airtime_mvc/application/forms/AddShowLiveStream.php:48
-msgid "Host:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
-#: airtime_mvc/application/forms/AddShowLiveStream.php:54
-msgid "Port:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
-#: airtime_mvc/application/forms/AddShowLiveStream.php:60
-msgid "Mount:"
-msgstr ""
-
-#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
-msgid "Value is required and can't be empty"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:25
-#: airtime_mvc/application/forms/RegisterAirtime.php:30
-#: airtime_mvc/application/forms/SupportSettings.php:18
-msgid "Station Name"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:33
-msgid "Station Description"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:42
-#: airtime_mvc/application/forms/RegisterAirtime.php:106
-msgid "Station Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:62
-msgid "Default Crossfade Duration (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:76
-msgid "Default Fade In (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:90
-msgid "Default Fade Out (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:102
-msgid "Public Airtime API"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:103
-msgid "Required for embeddable schedule widget."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:105
-msgid "Disabled"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:106
-msgid "Enabled"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:109
-msgid ""
-"Enabling this feature will allow Airtime to provide schedule data\n"
-" to external widgets that can be embedded in your website."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:120
-msgid "Default Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:134
-msgid "Week Starts On"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:150
-msgid "Display login button on your Radio Page?"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:158
-#: airtime_mvc/application/controllers/LocaleController.php:249
-msgid "Sunday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:159
-#: airtime_mvc/application/controllers/LocaleController.php:250
-msgid "Monday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:160
-#: airtime_mvc/application/controllers/LocaleController.php:251
-msgid "Tuesday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:161
-#: airtime_mvc/application/controllers/LocaleController.php:252
-msgid "Wednesday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:162
-#: airtime_mvc/application/controllers/LocaleController.php:253
-msgid "Thursday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:163
-#: airtime_mvc/application/controllers/LocaleController.php:254
-msgid "Friday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:164
-#: airtime_mvc/application/controllers/LocaleController.php:255
-msgid "Saturday"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
-msgid "Default License:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
-msgid "All rights are reserved"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
-msgid "The work is in the public domain"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
-msgid "Creative Commons Attribution"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
-msgid "Creative Commons Attribution Noncommercial"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
-msgid "Creative Commons Attribution No Derivative Works"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
-msgid "Creative Commons Attribution Share Alike"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
-msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
-msgid "Creative Commons Attribution Noncommercial Share Alike"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
-msgid "Default Sharing Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
-msgid "Public"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
-msgid "Private"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:18
-#: airtime_mvc/application/forms/DateRange.php:16
-msgid "Date Start:"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:37
-#: airtime_mvc/application/forms/ShowBuilder.php:65
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
-#: airtime_mvc/application/forms/DateRange.php:35
-#: airtime_mvc/application/forms/DateRange.php:63
-msgid "Invalid character entered"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:46
-#: airtime_mvc/application/forms/AddShowRepeats.php:56
-#: airtime_mvc/application/forms/DateRange.php:44
-msgid "Date End:"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:72
-#: airtime_mvc/application/forms/ShowBuilder.php:88
-msgid "Filter by Show"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:80
-msgid "All My Shows:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditAudioMD.php:145
-msgid "ISRC Number:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditAudioMD.php:176
-msgid "OK"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
-msgid "Day must be specified"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
-msgid "Time must be specified"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
-msgid "Must wait at least 1 hour to rebroadcast"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhat.php:30
-msgid "Untitled Show"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhat.php:69
-msgid "Instance Description:"
-msgstr ""
-
-#: airtime_mvc/application/forms/DangerousPreferences.php:12
-msgid "Delete All Tracks in Library"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:39
-#: airtime_mvc/application/forms/SupportSettings.php:31
-msgid "Phone:"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:62
-#: airtime_mvc/application/forms/SupportSettings.php:54
-msgid "Station Web Site:"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:73
-#: airtime_mvc/application/forms/BillingClient.php:102
-#: airtime_mvc/application/forms/SupportSettings.php:65
-msgid "Country:"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:84
-#: airtime_mvc/application/forms/BillingClient.php:70
-#: airtime_mvc/application/forms/SupportSettings.php:76
-msgid "City:"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:96
-#: airtime_mvc/application/forms/SupportSettings.php:88
-msgid "Station Description:"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:116
-#: airtime_mvc/application/forms/SupportSettings.php:98
-#: airtime_mvc/application/controllers/LocaleController.php:341
-msgid "Send support feedback"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:126
-#: airtime_mvc/application/forms/SupportSettings.php:108
-#, php-format
-msgid "Promote my station on %s"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:151
-#: airtime_mvc/application/forms/SupportSettings.php:120
-#, php-format
-msgid "By checking this box, I agree to %s's %sprivacy policy%s."
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:169
-#: airtime_mvc/application/forms/SupportSettings.php:143
-msgid "You have to agree to privacy policy."
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:10
-msgid "Link:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:16
-msgid "Repeat Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:19
-msgid "weekly"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:20
-msgid "every 2 weeks"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:21
-msgid "every 3 weeks"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:22
-msgid "every 4 weeks"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:23
-msgid "monthly"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:32
-msgid "Select Days:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:35
-#: airtime_mvc/application/controllers/LocaleController.php:256
-msgid "Sun"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:36
-#: airtime_mvc/application/controllers/LocaleController.php:257
-msgid "Mon"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:37
-#: airtime_mvc/application/controllers/LocaleController.php:258
-msgid "Tue"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:38
-#: airtime_mvc/application/controllers/LocaleController.php:259
-msgid "Wed"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:39
-#: airtime_mvc/application/controllers/LocaleController.php:260
-msgid "Thu"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:40
-#: airtime_mvc/application/controllers/LocaleController.php:261
-msgid "Fri"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:41
-#: airtime_mvc/application/controllers/LocaleController.php:262
-msgid "Sat"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:47
-msgid "Repeat By:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the month"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the week"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:69
-msgid "No End?"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:106
-msgid "End date must be after start date"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:113
-msgid "Please select a repeat day"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:10
-#, php-format
-msgid "Use %s Authentication:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:16
-msgid "Use Custom Authentication:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:25
-msgid "Custom Username"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:37
-msgid "Custom Password"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:77
-msgid "Username field cannot be empty."
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:82
-msgid "Password field cannot be empty."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
-msgid "Enabled:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
-msgid "Mobile:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
-msgid "Stream Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
-msgid "Service Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
-msgid "Channels:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "1 - Mono"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "2 - Stereo"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
-msgid "Server"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
-msgid "Port"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
-msgid "Only numbers are allowed."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
-msgid "URL"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
-msgid "Mount Point"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
-msgid "Admin User"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
-msgid "Admin Password"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
-#: airtime_mvc/application/controllers/LocaleController.php:173
-msgid "Getting information from the server..."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
-msgid "Server cannot be empty."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
-msgid "Port cannot be empty."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
-msgid "Mount cannot be empty with Icecast server."
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
-msgid "'%value%' is no valid email address in the basic format local-part@hostname"
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
-msgid "'%value%' does not fit the date format '%format%'"
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
-msgid "'%value%' is less than %min% characters long"
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
-msgid "'%value%' is more than %max% characters long"
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
-msgid "'%value%' is not between '%min%' and '%max%', inclusively"
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
-msgid "Passwords do not match"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
-msgid "hours"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
-msgid "minutes"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
-msgid "Randomly"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
-msgid "Newest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
-msgid "Oldest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
-msgid "Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
-msgid "Static"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
-msgid "Dynamic"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
-msgid "Allow Repeated Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
-msgid "Sort Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
-msgid "Limit to:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
-msgid "Generate playlist content and save criteria"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
-msgid "Generate"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
-msgid "Shuffle playlist content"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
-msgid "Limit cannot be empty or smaller than 0"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
-msgid "Limit cannot be more than 24 hrs"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
-msgid "The value should be an integer"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
-msgid "500 is the max item limit value you can set"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
-msgid "You must select Criteria and Modifier"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
-msgid "'Length' should be in '00:00:00' format"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
-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:594
-msgid "The value has to be numeric"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
-msgid "The value should be less then 2147483648"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
-#, php-format
-msgid "The value should be less than %s characters"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
-msgid "Value cannot be empty"
-msgstr ""
-
-#: airtime_mvc/application/forms/Login.php:102
-msgid "Type the characters you see in the picture below."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:26
-msgid "Icecast Vorbis Metadata"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:36
-msgid "Stream Label:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:37
-msgid "Artist - Title"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:38
-msgid "Show - Artist - Title"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:39
-msgid "Station name - Show name"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:45
-msgid "Off Air Metadata"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:51
-msgid "Enable Replay Gain"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:57
-msgid "Replay Gain Modifier"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:65
-msgid "Streaming Server:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Airtime Pro Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Custom / 3rd Party Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:95
-msgid "User Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:99
-#: airtime_mvc/application/controllers/LocaleController.php:324
-msgid "Guest"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:100
-#: airtime_mvc/application/controllers/LocaleController.php:322
-msgid "DJ"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:101
-#: airtime_mvc/application/controllers/LocaleController.php:323
-msgid "Program Manager"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:321
-msgid "Admin"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:17
-msgid "First Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:26
-msgid "Last Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:35
-msgid "Company Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:44
-msgid "Email Address:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:54
-msgid "Address 1:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:63
-msgid "Address 2:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:80
-msgid "State/Region:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:89
-msgid "Zip Code / Postal Code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:112
-msgid "Phone Number:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:121
-msgid "Please choose a security question:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:126
-msgid "What is the name of your favorite childhood friend?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:127
-msgid "What school did you attend for sixth grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:128
-msgid "In what city did you meet your spouse/significant other?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:129
-msgid "What street did you live on in third grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:130
-msgid "What is the first name of the boy or girl that you first kissed?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:131
-msgid "In what city or town was your first job?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:135
-msgid "Please enter an answer:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:152
-msgid "VAT/Tax ID (EU only)"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:162
-msgid "Subscribe to Sourcefabric newsletter"
-msgstr ""
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
-msgid "Import Folder:"
-msgstr ""
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
-msgid "Watched Folders:"
-msgstr ""
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
-msgid "Not a valid Directory"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordRestore.php:14
-msgid "Email"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordRestore.php:36
-msgid "Reset password"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
-msgid "Plan type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
-msgid "Billing cycle:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
-msgid "Payment method:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
-msgid "PayPal"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
-msgid "Credit Card via 2Checkout"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:213
-#, php-format
-msgid "The year %s must be within the range of 1753 - 9999"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:216
-#, php-format
-msgid "%s-%s-%s is not a valid date"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:240
-#, php-format
-msgid "%s:%s:%s is not a valid time"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:55
-msgid "Upload some tracks below to add them to your library!"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:57
-#, php-format
-msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:63
-msgid "Click the 'New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:65
-#, php-format
-msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:73
-msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:75
-#, php-format
-msgid ""
-"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
-" %sCreate an unlinked show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:80
-msgid "To start broadcasting, click on the current show and select 'Schedule Show'"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:82
-#, php-format
-msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:89
-msgid "Click on the show starting next and select 'Schedule Show'"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:91
-#, php-format
-msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+#: airtime_mvc/application/controllers/ApiController.php:791
+msgid "Bad request. 'mode' parameter is invalid"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:30
@@ -2905,11 +558,6 @@ msgstr ""
msgid "You can only add tracks to smart blocks."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:50
-#: airtime_mvc/application/controllers/PlaylistController.php:180
-msgid "You can only add tracks, smart blocks, and webstreams to playlists."
-msgstr ""
-
#: airtime_mvc/application/controllers/LocaleController.php:53
msgid "Please select a cursor position on timeline."
msgstr ""
@@ -2950,11 +598,6 @@ msgstr ""
msgid "Click 'New' to create one."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:66
-#: airtime_mvc/application/controllers/LibraryController.php:123
-msgid "Edit Metadata"
-msgstr ""
-
#: airtime_mvc/application/controllers/LocaleController.php:67
msgid "Add to selected show"
msgstr ""
@@ -2983,6 +626,12 @@ msgstr ""
msgid "Scheduled"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:74
+#: airtime_mvc/application/layouts/scripts/layout.phtml:78
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
+msgid "Tracks"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:75
#: airtime_mvc/application/layouts/scripts/layout.phtml:60
msgid "Playlist"
@@ -2992,18 +641,96 @@ msgstr ""
msgid "Bit Rate"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:80
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
+#: airtime_mvc/application/models/Block.php:1354
+msgid "BPM"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:84
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
+#: airtime_mvc/application/models/Block.php:1361
+msgid "Encoded By"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:89
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
+#: airtime_mvc/application/models/Block.php:1367
+msgid "Last Modified"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:90
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
+#: airtime_mvc/application/models/Block.php:1368
+msgid "Last Played"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
+#: airtime_mvc/application/models/Block.php:1370
+msgid "Mime"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:94
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
+#: airtime_mvc/application/models/Block.php:1372
+msgid "Owner"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:95
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
+#: airtime_mvc/application/models/Block.php:1373
+msgid "Replay Gain"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:96
msgid "Sample Rate"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:97
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
+#: airtime_mvc/application/models/Block.php:1376
+msgid "Track Number"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:98
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
+#: airtime_mvc/application/models/Block.php:1377
+msgid "Uploaded"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:99
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
+#: airtime_mvc/application/models/Block.php:1378
+msgid "Website"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:101
msgid "Loading..."
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:102
+#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
+msgid "All"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:103
msgid "Files"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:104
+#: airtime_mvc/application/layouts/scripts/layout.phtml:80
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
+msgid "Playlists"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:105
+#: airtime_mvc/application/layouts/scripts/layout.phtml:82
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
+msgid "Smart Blocks"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:106
msgid "Web Streams"
msgstr ""
@@ -3148,6 +875,74 @@ msgstr ""
msgid "Processing..."
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:151
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
+#: airtime_mvc/application/models/Block.php:1383
+msgid "Select modifier"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:152
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
+#: airtime_mvc/application/models/Block.php:1384
+msgid "contains"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:153
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
+#: airtime_mvc/application/models/Block.php:1385
+msgid "does not contain"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:154
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
+#: airtime_mvc/application/models/Block.php:1386
+#: airtime_mvc/application/models/Block.php:1390
+msgid "is"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:155
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
+#: airtime_mvc/application/models/Block.php:1387
+#: airtime_mvc/application/models/Block.php:1391
+msgid "is not"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:156
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
+#: airtime_mvc/application/models/Block.php:1388
+msgid "starts with"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:157
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
+#: airtime_mvc/application/models/Block.php:1389
+msgid "ends with"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:158
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
+#: airtime_mvc/application/models/Block.php:1392
+msgid "is greater than"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:159
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
+#: airtime_mvc/application/models/Block.php:1393
+msgid "is less than"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:160
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
+#: airtime_mvc/application/models/Block.php:1394
+msgid "is in the range"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:162
msgid "Choose Storage Folder"
msgstr ""
@@ -3162,6 +957,11 @@ msgid ""
"This will remove the files from your Airtime library!"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:166
+#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
+msgid "Manage Media Folders"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:167
msgid "Are you sure you want to remove the watched folder?"
msgstr ""
@@ -3183,6 +983,11 @@ msgstr ""
msgid "The stream is disabled"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:173
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
+msgid "Getting information from the server..."
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:174
msgid "Can not connect to the streaming server"
msgstr ""
@@ -3410,6 +1215,76 @@ msgstr ""
msgid "Month"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:249
+#: airtime_mvc/application/forms/GeneralPreferences.php:158
+msgid "Sunday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:250
+#: airtime_mvc/application/forms/GeneralPreferences.php:159
+msgid "Monday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:251
+#: airtime_mvc/application/forms/GeneralPreferences.php:160
+msgid "Tuesday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:252
+#: airtime_mvc/application/forms/GeneralPreferences.php:161
+msgid "Wednesday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:253
+#: airtime_mvc/application/forms/GeneralPreferences.php:162
+msgid "Thursday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:254
+#: airtime_mvc/application/forms/GeneralPreferences.php:163
+msgid "Friday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:255
+#: airtime_mvc/application/forms/GeneralPreferences.php:164
+msgid "Saturday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:256
+#: airtime_mvc/application/forms/AddShowRepeats.php:35
+msgid "Sun"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:257
+#: airtime_mvc/application/forms/AddShowRepeats.php:36
+msgid "Mon"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:258
+#: airtime_mvc/application/forms/AddShowRepeats.php:37
+msgid "Tue"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:259
+#: airtime_mvc/application/forms/AddShowRepeats.php:38
+msgid "Wed"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:260
+#: airtime_mvc/application/forms/AddShowRepeats.php:39
+msgid "Thu"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:261
+#: airtime_mvc/application/forms/AddShowRepeats.php:40
+msgid "Fri"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:262
+#: airtime_mvc/application/forms/AddShowRepeats.php:41
+msgid "Sat"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:263
msgid "Shows longer than their scheduled time will be cut off by a following show."
msgstr ""
@@ -3419,7 +1294,7 @@ msgid "Cancel Current Show?"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:265
-#: airtime_mvc/application/controllers/LocaleController.php:309
+#: airtime_mvc/application/controllers/LocaleController.php:312
msgid "Stop recording current show?"
msgstr ""
@@ -3439,6 +1314,11 @@ msgstr ""
msgid "Delete selected item(s)?"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:273
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
+msgid "Start"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:274
msgid "End"
msgstr ""
@@ -3447,580 +1327,467 @@ msgstr ""
msgid "Duration"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:283
+#: airtime_mvc/application/controllers/LocaleController.php:276
+msgid "Filtering out "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:277
+msgid " of "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:278
+msgid " records"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/layouts/scripts/layout.phtml:140
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
+#: airtime_mvc/application/models/Block.php:1358
+msgid "Cue In"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/layouts/scripts/layout.phtml:147
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
+#: airtime_mvc/application/models/Block.php:1359
+msgid "Cue Out"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:286
#: airtime_mvc/application/layouts/scripts/layout.phtml:167
msgid "Fade In"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/controllers/LocaleController.php:287
#: airtime_mvc/application/layouts/scripts/layout.phtml:168
msgid "Fade Out"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/controllers/LocaleController.php:288
msgid "Show Empty"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:286
+#: airtime_mvc/application/controllers/LocaleController.php:289
msgid "Recording From Line In"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:287
+#: airtime_mvc/application/controllers/LocaleController.php:290
msgid "Track preview"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:291
+#: airtime_mvc/application/controllers/LocaleController.php:294
msgid "Cannot schedule outside a show."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:292
+#: airtime_mvc/application/controllers/LocaleController.php:295
msgid "Moving 1 Item"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:293
+#: airtime_mvc/application/controllers/LocaleController.php:296
#, php-format
msgid "Moving %s Items"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:296
-msgid "Fade Editor"
-msgstr ""
-
#: airtime_mvc/application/controllers/LocaleController.php:297
-msgid "Cue Editor"
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
+#: airtime_mvc/application/forms/Preferences.php:40
+#: airtime_mvc/application/forms/EditHistory.php:131
+#: airtime_mvc/application/forms/AddUser.php:110
+#: airtime_mvc/application/forms/PasswordChange.php:43
+#: airtime_mvc/application/forms/SupportSettings.php:131
+msgid "Save"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:298
-msgid "Waveform features are available in a browser supporting the Web Audio API"
+#: airtime_mvc/application/controllers/LocaleController.php:321
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
+#: airtime_mvc/application/forms/EditHistory.php:141
+#: airtime_mvc/application/forms/EditAudioMD.php:186
+msgid "Cancel"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:299
+msgid "Fade Editor"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:300
+msgid "Cue Editor"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:301
-msgid "Select all"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LocaleController.php:302
-msgid "Select none"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LocaleController.php:303
-msgid "Trim overbooked shows"
+msgid "Waveform features are available in a browser supporting the Web Audio API"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:304
-msgid "Remove selected scheduled items"
+msgid "Select all"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:305
-msgid "Jump to the current playing track"
+msgid "Select none"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:306
+msgid "Trim overbooked shows"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:307
+msgid "Remove selected scheduled items"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:308
+msgid "Jump to the current playing track"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:309
msgid "Cancel current show"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:311
+#: airtime_mvc/application/controllers/LocaleController.php:314
msgid "Open library to add or remove content"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:312
+#: airtime_mvc/application/controllers/LocaleController.php:315
msgid "Add / Remove Content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:317
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
+msgid "in use"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:318
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
+msgid "Disk"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:320
msgid "Look in"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:319
+#: airtime_mvc/application/controllers/LocaleController.php:322
msgid "Open"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:324
+#: airtime_mvc/application/forms/AddUser.php:102
+msgid "Admin"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:325
-msgid "Guests can do the following:"
+#: airtime_mvc/application/forms/AddUser.php:100
+msgid "DJ"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:326
-msgid "View schedule"
+#: airtime_mvc/application/forms/AddUser.php:101
+msgid "Program Manager"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:327
-msgid "View show content"
+#: airtime_mvc/application/forms/AddUser.php:99
+msgid "Guest"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:328
-msgid "DJs can do the following:"
+msgid "Guests can do the following:"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:329
-msgid "Manage assigned show content"
+msgid "View schedule"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:330
-msgid "Import media files"
+msgid "View show content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:331
-msgid "Create playlists, smart blocks, and webstreams"
+msgid "DJs can do the following:"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:332
-msgid "Manage their own library content"
+msgid "Manage assigned show content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:333
-msgid "Progam Managers can do the following:"
+msgid "Import media files"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:334
-msgid "View and manage show content"
+msgid "Create playlists, smart blocks, and webstreams"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:335
-msgid "Schedule shows"
+msgid "Manage their own library content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:336
-msgid "Manage all library content"
+msgid "Progam Managers can do the following:"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:337
-msgid "Admins can do the following:"
+msgid "View and manage show content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:338
-msgid "Manage preferences"
+msgid "Schedule shows"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:339
-msgid "Manage users"
+msgid "Manage all library content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:340
-msgid "Manage watched folders"
+msgid "Admins can do the following:"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:341
+msgid "Manage preferences"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:342
-msgid "View system status"
+msgid "Manage users"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:343
-msgid "Access playout history"
+msgid "Manage watched folders"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:344
-msgid "View listener stats"
+#: airtime_mvc/application/forms/RegisterAirtime.php:116
+#: airtime_mvc/application/forms/SupportSettings.php:98
+msgid "Send support feedback"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:345
+msgid "View system status"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:346
-msgid "Show / hide columns"
+msgid "Access playout history"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:348
-msgid "From {from} to {to}"
+#: airtime_mvc/application/controllers/LocaleController.php:347
+msgid "View listener stats"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:349
-msgid "kbps"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LocaleController.php:350
-msgid "yyyy-mm-dd"
+msgid "Show / hide columns"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:351
-msgid "hh:mm:ss.t"
+msgid "From {from} to {to}"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:352
-msgid "kHz"
+msgid "kbps"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:353
+msgid "yyyy-mm-dd"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:354
+msgid "hh:mm:ss.t"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:355
-msgid "Su"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LocaleController.php:356
-msgid "Mo"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LocaleController.php:357
-msgid "Tu"
+msgid "kHz"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:358
-msgid "We"
+msgid "Su"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:359
-msgid "Th"
+msgid "Mo"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:360
-msgid "Fr"
+msgid "Tu"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:361
-msgid "Sa"
+msgid "We"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:362
+msgid "Th"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:363
+msgid "Fr"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:364
-msgid "Hour"
+msgid "Sa"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
+msgid "Close"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:367
+msgid "Hour"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:368
msgid "Minute"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:366
+#: airtime_mvc/application/controllers/LocaleController.php:369
msgid "Done"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:369
+#: airtime_mvc/application/controllers/LocaleController.php:372
msgid "Select files"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:370
-#: airtime_mvc/application/controllers/LocaleController.php:371
+#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:374
msgid "Add files to the upload queue and click the start button."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:372
-#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:376
msgid "Status"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:374
+#: airtime_mvc/application/controllers/LocaleController.php:377
msgid "Add Files"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:378
msgid "Stop Upload"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:376
+#: airtime_mvc/application/controllers/LocaleController.php:379
msgid "Start upload"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:377
+#: airtime_mvc/application/controllers/LocaleController.php:380
msgid "Add files"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:378
+#: airtime_mvc/application/controllers/LocaleController.php:381
#, php-format
msgid "Uploaded %d/%d files"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:379
+#: airtime_mvc/application/controllers/LocaleController.php:382
msgid "N/A"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:380
+#: airtime_mvc/application/controllers/LocaleController.php:383
msgid "Drag files here."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:381
+#: airtime_mvc/application/controllers/LocaleController.php:384
msgid "File extension error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:382
+#: airtime_mvc/application/controllers/LocaleController.php:385
msgid "File size error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:383
+#: airtime_mvc/application/controllers/LocaleController.php:386
msgid "File count error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:384
+#: airtime_mvc/application/controllers/LocaleController.php:387
msgid "Init error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:385
+#: airtime_mvc/application/controllers/LocaleController.php:388
msgid "HTTP Error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:386
+#: airtime_mvc/application/controllers/LocaleController.php:389
msgid "Security error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:387
+#: airtime_mvc/application/controllers/LocaleController.php:390
msgid "Generic error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:388
+#: airtime_mvc/application/controllers/LocaleController.php:391
msgid "IO error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:389
+#: airtime_mvc/application/controllers/LocaleController.php:392
#, php-format
msgid "File: %s"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:391
+#: airtime_mvc/application/controllers/LocaleController.php:394
#, php-format
msgid "%d files queued"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:392
+#: airtime_mvc/application/controllers/LocaleController.php:395
msgid "File: %f, size: %s, max file size: %m"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/controllers/LocaleController.php:396
msgid "Upload URL might be wrong or doesn't exist"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:394
+#: airtime_mvc/application/controllers/LocaleController.php:397
msgid "Error: File too large: "
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:395
+#: airtime_mvc/application/controllers/LocaleController.php:398
msgid "Error: Invalid file extension: "
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:398
+#: airtime_mvc/application/controllers/LocaleController.php:400
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
+msgid "Set Default"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:401
msgid "Create Entry"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:399
+#: airtime_mvc/application/controllers/LocaleController.php:402
msgid "Edit History Record"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:402
+#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
+#: airtime_mvc/application/forms/EditHistoryItem.php:57
+msgid "No Show"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:405
#, php-format
msgid "Copied %s row%s to the clipboard"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/controllers/LocaleController.php:406
#, php-format
msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/controllers/LocaleController.php:407
msgid "New Show"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:405
+#: airtime_mvc/application/controllers/LocaleController.php:408
msgid "New Log Entry"
msgstr ""
-#: airtime_mvc/application/controllers/ScheduleController.php:389
-#, php-format
-msgid "Rebroadcast of show %s from %s at %s"
-msgstr ""
-
-#: airtime_mvc/application/controllers/ScheduleController.php:712
-#: airtime_mvc/application/controllers/LibraryController.php:131
-msgid "Download"
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:78
-msgid "Page not found."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:87
-msgid "The requested action is not supported."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:98
-msgid "You do not have permission to access this resource."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:109
-msgid "An internal application error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ListenerstatController.php:51
-msgid "Please make sure admin user/password is correct on System->Streams page."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:53
-#, php-format
-msgid "You are viewing an older version of %s"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:140
-msgid "You cannot add tracks to dynamic blocks."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:147
-#: airtime_mvc/application/controllers/LibraryController.php:31
-#, php-format
-msgid "%s not found"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:161
-#, php-format
-msgid "You don't have permission to delete selected %s(s)."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:168
-#: airtime_mvc/application/controllers/LibraryController.php:40
-msgid "Something went wrong."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:174
-msgid "You can only add tracks to smart block."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:192
-msgid "Untitled Playlist"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:194
-msgid "Untitled Smart Block"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:522
-msgid "Unknown Playlist"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:43
-msgid "Please enter your username and password."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:93
-msgid "Wrong username or password provided. Please try again."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:167
-msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:173
-msgid "There was a problem with the username or email address you entered."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:35
-#: airtime_mvc/application/controllers/DashboardController.php:84
-msgid "You don't have permission to disconnect source."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:37
-#: airtime_mvc/application/controllers/DashboardController.php:86
-msgid "There is no source connected to this input."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:81
-msgid "You don't have permission to switch source."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:72
-msgid "Preferences updated."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:115
-msgid "Support setting updated."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:123
-msgid "Support Feedback"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:251
-msgid "Stream Setting Updated."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:342
-msgid "path should be specified"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:437
-msgid "Problem with Liquidsoap..."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:493
-msgid "Request method not accepted"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:86
-msgid "User added successfully!"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:88
-msgid "User updated successfully!"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:187
-msgid "Settings updated successfully!"
-msgstr ""
-
-#: airtime_mvc/application/controllers/WebstreamController.php:28
-#: airtime_mvc/application/controllers/WebstreamController.php:32
-msgid "Untitled Webstream"
-msgstr ""
-
-#: airtime_mvc/application/controllers/WebstreamController.php:150
-msgid "Webstream saved."
-msgstr ""
-
-#: airtime_mvc/application/controllers/WebstreamController.php:158
-msgid "Invalid form values."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:95
-#: airtime_mvc/application/controllers/ShowbuilderController.php:136
-msgid "Preview"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:115
-#: airtime_mvc/application/controllers/LibraryController.php:177
-#: airtime_mvc/application/controllers/LibraryController.php:200
-msgid "Add to Playlist"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:117
-msgid "Add to Smart Block"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:147
-msgid "View track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:148
-msgid "Remove track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:154
-#: airtime_mvc/application/controllers/LibraryController.php:159
-msgid "Upload track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:169
-msgid "Duplicate Playlist"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:213
-msgid "No action available"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:233
-msgid "You don't have permission to delete selected items."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:279
-msgid "Could not delete file because it is scheduled in the future."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:282
-msgid "Could not delete file(s)."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:322
-#, php-format
-msgid "Copy of %s"
-msgstr ""
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
-msgid ""
-"To configure and use the embeddable player you must:
\n"
-" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
-" 2. Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
-msgid ""
-"To use the embeddable weekly schedule widget you must:
\n"
-" Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
#: airtime_mvc/application/controllers/ShowbuilderController.php:138
msgid "Select cursor"
msgstr ""
@@ -4033,37 +1800,76 @@ msgstr ""
msgid "show does not exist"
msgstr ""
-#: airtime_mvc/application/controllers/ApiController.php:79
-msgid "You are not allowed to access this resource."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ApiController.php:244
-#: airtime_mvc/application/controllers/ApiController.php:317
-#: airtime_mvc/application/controllers/ApiController.php:392
-#: airtime_mvc/application/controllers/ApiController.php:435
-#: airtime_mvc/application/controllers/ApiController.php:474
-#: airtime_mvc/application/controllers/ApiController.php:507
-msgid "You are not allowed to access this resource. "
-msgstr ""
-
-#: airtime_mvc/application/controllers/ApiController.php:698
-#: airtime_mvc/application/controllers/ApiController.php:718
-#: airtime_mvc/application/controllers/ApiController.php:730
+#: airtime_mvc/application/controllers/ScheduleController.php:389
#, php-format
-msgid "File does not exist in %s"
+msgid "Rebroadcast of show %s from %s at %s"
msgstr ""
-#: airtime_mvc/application/controllers/ApiController.php:781
-msgid "Bad request. no 'mode' parameter passed."
+#: airtime_mvc/application/common/UsabilityHints.php:55
+msgid "Upload some tracks below to add them to your library!"
msgstr ""
-#: airtime_mvc/application/controllers/ApiController.php:791
-msgid "Bad request. 'mode' parameter is invalid"
-msgstr ""
-
-#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#: airtime_mvc/application/common/UsabilityHints.php:57
#, php-format
-msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:63
+msgid "Click the 'New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:65
+#, php-format
+msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:73
+msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:75
+#, php-format
+msgid ""
+"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
+" %sCreate an unlinked show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:80
+msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:82
+#, php-format
+msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:89
+msgid "Click on the show starting next and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:91
+#, php-format
+msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/DateHelper.php:213
+#, php-format
+msgid "The year %s must be within the range of 1753 - 9999"
+msgstr ""
+
+#: airtime_mvc/application/common/DateHelper.php:216
+#, php-format
+msgid "%s-%s-%s is not a valid date"
+msgstr ""
+
+#: airtime_mvc/application/common/DateHelper.php:240
+#, php-format
+msgid "%s:%s:%s is not a valid time"
+msgstr ""
+
+#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
+msgid "Live stream"
msgstr ""
#: airtime_mvc/application/layouts/scripts/layout.phtml:63
@@ -4078,6 +1884,17 @@ msgstr ""
msgid "Upload"
msgstr ""
+#: airtime_mvc/application/layouts/scripts/layout.phtml:76
+#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
+msgid "Dashboard"
+msgstr ""
+
+#: airtime_mvc/application/layouts/scripts/layout.phtml:84
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
+msgid "Webstreams"
+msgstr ""
+
#: airtime_mvc/application/layouts/scripts/layout.phtml:135
#: airtime_mvc/application/layouts/scripts/layout.phtml:161
msgid "Play"
@@ -4099,3 +1916,2124 @@ msgstr ""
#: airtime_mvc/application/layouts/scripts/layout.phtml:166
msgid "Cursor"
msgstr ""
+
+#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#, php-format
+msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
+msgid "Drop files here or click to browse your computer."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
+msgid "Failed"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
+msgid "Pending"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
+msgid "Recent Uploads"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
+msgid "Share"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
+msgid "Select stream:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
+msgid "mute"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
+msgid "unmute"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
+msgid "About"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
+#, php-format
+msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
+#, php-format
+msgid "%1$s %2$s is distributed under the %3$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
+#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
+#, php-format
+msgid "Welcome to %s!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
+#, php-format
+msgid "Here's how you can get started using %s to automate your broadcasts: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
+msgid "Upload audio tracks"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
+msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
+msgid "Schedule a show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
+msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
+msgid "Add tracks to your show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
+msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
+msgid "Now you're good to go!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
+#, php-format
+msgid "For more detailed help, read the %suser manual%s."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
+#: airtime_mvc/application/configs/navigation.php:40
+msgid "Weekly Schedule"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
+#: airtime_mvc/application/forms/Player.php:77
+msgid "Preview:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
+#: airtime_mvc/application/configs/navigation.php:34
+msgid "Player"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:97
+msgid "Playout History"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
+msgid "Log Sheet"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
+msgid "File Summary"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
+msgid "Show Summary"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
+msgid "Expand Static Block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
+msgid "Expand Dynamic Block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
+msgid "Choose some search criteria above and click Generate to create this playlist."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
+msgid "A track list will be generated when you schedule this smart block into a show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
+msgid "Drag tracks here from your library to add them to the playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
+msgid "Editing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:26
+msgid "Name:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
+#: airtime_mvc/application/forms/AddShowWhat.php:54
+msgid "Description:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
+#: airtime_mvc/application/forms/AddShowWhen.php:89
+msgid "Duration:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
+msgid "Toggle Details"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+msgid "Shuffle playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
+msgid "Shuffle"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
+msgid "Playlist crossfade"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+msgid "Empty playlist content"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Clear"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+msgid "Fade in: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "Fade out: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+msgid "Save playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
+msgid "No open playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
+msgid "Show Waveform"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "(ss.t)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Remove all content from this smart block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
+msgid "No smart block currently open"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+msgid "Cue In: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "(hh:mm:ss.t)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "Cue Out: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
+msgid "Original Length:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:56
+msgid "General"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
+msgid "Stream Settings"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
+msgid "Global"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
+msgid "dB"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
+msgid "Output Streams"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:3
+#: airtime_mvc/application/forms/Login.php:83
+msgid "Login"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:7
+#, php-format
+msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
+msgid "Email Sent!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
+msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
+msgid "Back"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
+msgid "Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
+msgid "New password"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
+msgid "Please enter and confirm your new password in the fields below."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
+msgid "Manage Users"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
+msgid "New User"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
+msgid "id"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
+#: airtime_mvc/application/forms/PasswordRestore.php:25
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
+msgid "Username"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
+msgid "First Name"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
+msgid "Last Name"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
+msgid "User Type"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
+#, php-format
+msgid "Super Admin details can be changed in your Billing Settings."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
+msgid "Find Shows"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
+msgid "Choose Show Instance"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
+msgid "Find"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
+#: airtime_mvc/application/configs/navigation.php:61
+msgid "My Profile"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
+#, php-format
+msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
+msgid "Repeat Days:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
+#: airtime_mvc/application/forms/GeneralPreferences.php:53
+#: airtime_mvc/application/forms/AddShowStyle.php:64
+msgid "Remove"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
+msgid "Add"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
+msgid "Show Source"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
+msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
+msgid "Register Airtime"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
+#, php-format
+msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
+#, php-format
+msgid "Click the box below to promote your station on %s."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
+msgid "(Required)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
+msgid "(for verification purposes only, will not be published)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
+#: airtime_mvc/application/forms/GeneralPreferences.php:43
+msgid "Note: Anything larger than 600x600 will be resized."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
+msgid "Show me what I am sending "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
+msgid "Terms and Conditions"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
+msgid "Choose Days:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
+msgid "Search Criteria:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
+msgid "New Criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
+msgid "or"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
+msgid "and"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
+msgid "New Modifier"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
+msgid " to "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
+msgid "files meet the criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
+msgid "file meets the criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
+msgid "Filter History"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/login.phtml:41
+msgid "Forgot your password?"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
+msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
+msgid "Stream "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
+msgid "Additional Options"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
+msgid "The following info will be displayed to listeners in their media player:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
+msgid "(Your radio station website)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
+msgid "Stream URL: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
+msgid "Choose folder"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
+msgid "Set"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
+msgid "Current Import Folder:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
+#, php-format
+msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
+msgid "Remove watched directory"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
+msgid "You are not watching any media folders."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
+msgid "Live Broadcasting"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
+msgid "Master Source"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
+msgid "Use these settings in your broadcasting software to stream live at any time."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
+msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
+msgid "TuneIn Settings"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
+msgid "SoundCloud Settings"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
+msgid "Dangerous Options"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Add this show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Update show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
+msgid "What"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
+msgid "When"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
+msgid "Live Stream Input"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
+msgid "Who"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
+msgid "Style"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
+msgid "Disk Space"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:3
+msgid "File import in progress..."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:10
+#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
+msgid "Advanced Search Options"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
+#: airtime_mvc/application/forms/EditAudioMD.php:24
+#: airtime_mvc/application/forms/Player.php:15
+msgid "Title:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
+#: airtime_mvc/application/forms/EditAudioMD.php:34
+msgid "Creator:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
+#: airtime_mvc/application/forms/EditAudioMD.php:44
+msgid "Album:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
+msgid "Track:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
+msgid "Length:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
+msgid "Sample Rate:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
+msgid "Bit Rate:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
+#: airtime_mvc/application/forms/EditAudioMD.php:115
+msgid "Mood:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:45
+#: airtime_mvc/application/forms/EditAudioMD.php:62
+msgid "Genre:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
+#: airtime_mvc/application/forms/EditAudioMD.php:72
+msgid "Year:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
+#: airtime_mvc/application/forms/EditAudioMD.php:85
+msgid "Label:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
+#: airtime_mvc/application/forms/EditAudioMD.php:125
+msgid "BPM:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
+#: airtime_mvc/application/forms/EditAudioMD.php:95
+msgid "Composer:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
+#: airtime_mvc/application/forms/EditAudioMD.php:105
+msgid "Conductor:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
+#: airtime_mvc/application/forms/EditAudioMD.php:135
+msgid "Copyright:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
+msgid "Isrc Number:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
+#: airtime_mvc/application/forms/EditAudioMD.php:155
+msgid "Website:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
+#: airtime_mvc/application/forms/EditAudioMD.php:165
+#: airtime_mvc/application/forms/EditUser.php:119
+#: airtime_mvc/application/forms/Login.php:68
+msgid "Language:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
+msgid "File Path:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
+msgid "Web Stream"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
+msgid "Dynamic Smart Block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
+msgid "Static Smart Block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
+msgid "Audio Track"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
+msgid "Playlist Contents: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
+msgid "Static Smart Block Contents: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
+msgid "Dynamic Smart Block Criteria: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
+msgid "Limit to "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
+#: airtime_mvc/application/forms/AddShowWhat.php:36
+msgid "URL:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
+msgid "Viewing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
+msgid "Listeners"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
+msgid "Stream Data Collection Status"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
+msgid "Your trial expires in"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
+msgid "days"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
+msgid "Previous:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
+msgid "Next:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
+msgid "Source Streams"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
+msgid "ON AIR"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
+msgid "Listen"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
+msgid "Logout"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
+msgid "Playout History Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
+msgid "Log Sheet Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
+msgid "New Log Sheet Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
+msgid "No Log Sheet Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
+msgid "File Summary Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
+msgid "New File Summary Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
+msgid "No File Summary Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
+msgid "Creating File Summary Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
+msgid "Creating Log Sheet Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
+msgid "Name"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
+msgid "Add more elements"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
+msgid "Add New Field"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
+msgid "Set Default Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
+msgid "Description"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
+msgid "Stream URL:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
+msgid "Default Length:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
+msgid "No webstream"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
+#: airtime_mvc/application/views/scripts/error/error.phtml:6
+msgid "An error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
+msgid "Access Denied!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
+msgid "You do not have permission to access this page!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
+#: airtime_mvc/application/views/scripts/error/error.phtml:14
+#: airtime_mvc/application/configs/navigation.php:143
+msgid "Help"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
+msgid "Oops!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
+msgid "Something went wrong!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
+msgid "Bad Request!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
+msgid "The requested action is not supported!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
+msgid "Page not found!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
+msgid "We couldn't find the page you were looking for."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error.phtml:12
+msgid "Looks like the page you were looking for doesn't exist!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
+msgid "previous"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
+msgid "play"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
+msgid "pause"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
+msgid "next"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
+msgid "stop"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
+msgid "max volume"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
+msgid "Update Required"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
+#, php-format
+msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
+msgid "Plan type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
+msgid "Billing cycle:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
+msgid "Payment method:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
+msgid "PayPal"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
+msgid "Credit Card via 2Checkout"
+msgstr ""
+
+#: airtime_mvc/application/forms/DateRange.php:16
+#: airtime_mvc/application/forms/ShowBuilder.php:18
+msgid "Date Start:"
+msgstr ""
+
+#: airtime_mvc/application/forms/DateRange.php:35
+#: airtime_mvc/application/forms/DateRange.php:63
+#: airtime_mvc/application/forms/ShowBuilder.php:37
+#: airtime_mvc/application/forms/ShowBuilder.php:65
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
+msgid "Invalid character entered"
+msgstr ""
+
+#: airtime_mvc/application/forms/DateRange.php:44
+#: airtime_mvc/application/forms/ShowBuilder.php:46
+#: airtime_mvc/application/forms/AddShowRepeats.php:56
+msgid "Date End:"
+msgstr ""
+
+#: airtime_mvc/application/forms/ShowBuilder.php:72
+#: airtime_mvc/application/forms/ShowBuilder.php:88
+msgid "Filter by Show"
+msgstr ""
+
+#: airtime_mvc/application/forms/ShowBuilder.php:80
+msgid "All My Shows:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWho.php:10
+msgid "Search Users:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWho.php:24
+msgid "DJs:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:30
+#: airtime_mvc/application/forms/GeneralPreferences.php:25
+#: airtime_mvc/application/forms/SupportSettings.php:18
+msgid "Station Name"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:39
+#: airtime_mvc/application/forms/SupportSettings.php:31
+msgid "Phone:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:51
+#: airtime_mvc/application/forms/AddUser.php:67
+#: airtime_mvc/application/forms/EditUser.php:83
+#: airtime_mvc/application/forms/SupportSettings.php:43
+msgid "Email:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:62
+#: airtime_mvc/application/forms/SupportSettings.php:54
+msgid "Station Web Site:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:73
+#: airtime_mvc/application/forms/SupportSettings.php:65
+msgid "Country:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:84
+#: airtime_mvc/application/forms/SupportSettings.php:76
+msgid "City:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:96
+#: airtime_mvc/application/forms/SupportSettings.php:88
+msgid "Station Description:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:106
+#: airtime_mvc/application/forms/GeneralPreferences.php:42
+msgid "Station Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:126
+#: airtime_mvc/application/forms/SupportSettings.php:108
+#, php-format
+msgid "Promote my station on %s"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:151
+#: airtime_mvc/application/forms/SupportSettings.php:120
+#, php-format
+msgid "By checking this box, I agree to %s's %sprivacy policy%s."
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:169
+#: airtime_mvc/application/forms/SupportSettings.php:143
+msgid "You have to agree to privacy policy."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRR.php:10
+msgid "Record from Line In?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRR.php:16
+msgid "Rebroadcast?"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
+#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
+msgid "Value is required and can't be empty"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
+msgid "'%value%' is no valid email address in the basic format local-part@hostname"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
+msgid "'%value%' does not fit the date format '%format%'"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
+msgid "'%value%' is less than %min% characters long"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
+msgid "'%value%' is more than %max% characters long"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
+msgid "'%value%' is not between '%min%' and '%max%', inclusively"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
+msgid "Passwords do not match"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
+msgid "Day must be specified"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
+msgid "Time must be specified"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
+msgid "Must wait at least 1 hour to rebroadcast"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordRestore.php:14
+msgid "Email"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordRestore.php:36
+msgid "Reset password"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhat.php:30
+msgid "Untitled Show"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhat.php:69
+msgid "Instance Description:"
+msgstr ""
+
+#: airtime_mvc/application/forms/DangerousPreferences.php:12
+msgid "Delete All Tracks in Library"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditAudioMD.php:145
+msgid "ISRC Number:"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditAudioMD.php:176
+msgid "OK"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:33
+msgid "Station Description"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:62
+msgid "Default Crossfade Duration (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:68
+#: airtime_mvc/application/forms/GeneralPreferences.php:82
+#: airtime_mvc/application/forms/GeneralPreferences.php:96
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
+msgid "Please enter a time in seconds (eg. 0.5)"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:76
+msgid "Default Fade In (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:90
+msgid "Default Fade Out (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:102
+msgid "Public Airtime API"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:103
+msgid "Required for embeddable schedule widget."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:105
+msgid "Disabled"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:106
+msgid "Enabled"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:109
+msgid ""
+"Enabling this feature will allow Airtime to provide schedule data\n"
+" to external widgets that can be embedded in your website."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:120
+msgid "Default Language"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:127
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
+msgid "Station Timezone"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:134
+msgid "Week Starts On"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:150
+msgid "Display login button on your Radio Page?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:29
+#: airtime_mvc/application/forms/EditUser.php:37
+#: airtime_mvc/application/forms/Login.php:41
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
+msgid "Username:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:38
+#: airtime_mvc/application/forms/EditUser.php:48
+#: airtime_mvc/application/forms/Login.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
+msgid "Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:46
+#: airtime_mvc/application/forms/EditUser.php:57
+msgid "Verify Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:55
+#: airtime_mvc/application/forms/EditUser.php:67
+msgid "Firstname:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:61
+#: airtime_mvc/application/forms/EditUser.php:75
+msgid "Lastname:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:76
+#: airtime_mvc/application/forms/EditUser.php:94
+msgid "Mobile Phone:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:82
+#: airtime_mvc/application/forms/EditUser.php:102
+msgid "Skype:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:88
+#: airtime_mvc/application/forms/EditUser.php:110
+msgid "Jabber:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:95
+msgid "User Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:120
+#: airtime_mvc/application/forms/EditUser.php:155
+msgid "Login name is not unique."
+msgstr ""
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
+msgid "Import Folder:"
+msgstr ""
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
+msgid "Watched Folders:"
+msgstr ""
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
+msgid "Not a valid Directory"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:126
+msgid "What is the name of your favorite childhood friend?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:127
+msgid "What school did you attend for sixth grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:128
+msgid "In what city did you meet your spouse/significant other?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:129
+msgid "What street did you live on in third grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:130
+msgid "What is the first name of the boy or girl that you first kissed?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:131
+msgid "In what city or town was your first job?"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
+msgid "Default License:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
+msgid "All rights are reserved"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
+msgid "The work is in the public domain"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
+msgid "Creative Commons Attribution"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
+msgid "Creative Commons Attribution Noncommercial"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
+msgid "Creative Commons Attribution No Derivative Works"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
+msgid "Creative Commons Attribution Share Alike"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
+msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
+msgid "Creative Commons Attribution Noncommercial Share Alike"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
+msgid "Default Sharing Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
+msgid "Public"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
+msgid "Private"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditUser.php:129
+msgid "Interface Timezone:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:14
+msgid "Now Playing"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:25
+msgid "Select Stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:28
+msgid "Auto detect the most appropriate stream to use."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:29
+msgid "Select a stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:41
+msgid " - Mobile friendly"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:45
+msgid " - The player does not support Opus streams."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:71
+msgid "Embeddable code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:72
+msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
+#: airtime_mvc/application/models/Block.php:1351
+msgid "Select criteria"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
+#: airtime_mvc/application/models/Block.php:1353
+msgid "Bit Rate (Kbps)"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
+#: airtime_mvc/application/models/Block.php:1374
+msgid "Sample Rate (kHz)"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
+msgid "hours"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
+msgid "minutes"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
+#: airtime_mvc/application/models/Block.php:333
+msgid "items"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
+msgid "Randomly"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
+msgid "Newest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
+msgid "Oldest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
+msgid "Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
+msgid "Static"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
+msgid "Dynamic"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
+msgid "Allow Repeated Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
+msgid "Sort Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
+msgid "Limit to:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
+msgid "Generate playlist content and save criteria"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
+msgid "Generate"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
+msgid "Shuffle playlist content"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
+msgid "Limit cannot be empty or smaller than 0"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
+msgid "Limit cannot be more than 24 hrs"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
+msgid "The value should be an integer"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
+msgid "500 is the max item limit value you can set"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
+msgid "You must select Criteria and Modifier"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
+msgid "'Length' should be in '00:00:00' format"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
+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:594
+msgid "The value has to be numeric"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
+msgid "The value should be less then 2147483648"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
+#, php-format
+msgid "The value should be less than %s characters"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
+msgid "Value cannot be empty"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:26
+msgid "Icecast Vorbis Metadata"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:36
+msgid "Stream Label:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:37
+msgid "Artist - Title"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:38
+msgid "Show - Artist - Title"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:39
+msgid "Station name - Show name"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:45
+msgid "Off Air Metadata"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:51
+msgid "Enable Replay Gain"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:57
+msgid "Replay Gain Modifier"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:65
+msgid "Streaming Server:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Airtime Pro Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Custom / 3rd Party Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordChange.php:17
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
+msgid "Password"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordChange.php:28
+msgid "Confirm new password"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordChange.php:36
+msgid "Password confirmation does not match your password."
+msgstr ""
+
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
+msgid "Station Language"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
+msgid "Enabled:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
+msgid "Mobile:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
+msgid "Stream Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
+msgid "Service Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
+msgid "Channels:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "1 - Mono"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "2 - Stereo"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
+msgid "Server"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
+msgid "Port"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
+msgid "Only numbers are allowed."
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
+msgid "URL"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
+msgid "Mount Point"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
+msgid "Admin User"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
+msgid "Admin Password"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
+msgid "Server cannot be empty."
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
+msgid "Port cannot be empty."
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
+msgid "Mount cannot be empty with Icecast server."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:16
+msgid "'%value%' does not fit the time format 'HH:mm'"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:22
+msgid "Start Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:37
+msgid "In the Future:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:64
+msgid "End Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:98
+msgid "Timezone:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:107
+msgid "Repeats?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:139
+msgid "Cannot create show in the past"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:147
+msgid "Cannot modify start date/time of the show that is already started"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:156
+#: airtime_mvc/application/models/Show.php:282
+msgid "End date/time cannot be in the past"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:164
+msgid "Cannot have duration < 0m"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:168
+msgid "Cannot have duration 00h 00m"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:175
+msgid "Cannot have duration greater than 24h"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:19
+msgid "Push metadata to your station on TuneIn?"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:24
+msgid "Station ID:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:30
+msgid "Partner Key:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:36
+msgid "Partner Id:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:77
+#: airtime_mvc/application/forms/TuneInPreferences.php:86
+msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:10
+#, php-format
+msgid "Use %s Authentication:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:16
+msgid "Use Custom Authentication:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:25
+msgid "Custom Username"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:37
+msgid "Custom Password"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:48
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
+msgid "Host:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
+msgid "Port:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:60
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
+msgid "Mount:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:77
+msgid "Username field cannot be empty."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:82
+msgid "Password field cannot be empty."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:12
+msgid "Background Colour:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:31
+msgid "Text Colour:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:49
+msgid "Current Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:72
+msgid "Show Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:87
+msgid "Logo Preview:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Login.php:102
+msgid "Type the characters you see in the picture below."
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
+msgid "Auto Switch Off:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
+msgid "Auto Switch On:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
+msgid "Switch Transition Fade (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:10
+msgid "Link:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:16
+msgid "Repeat Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:19
+msgid "weekly"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:20
+msgid "every 2 weeks"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:21
+msgid "every 3 weeks"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:22
+msgid "every 4 weeks"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:23
+msgid "monthly"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:32
+msgid "Select Days:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:47
+msgid "Repeat By:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the month"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the week"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:69
+msgid "No End?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:106
+msgid "End date must be after start date"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:113
+msgid "Please select a repeat day"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:12
+msgid "Radio Page"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:19
+msgid "Calendar"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:26
+msgid "Widgets"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:48
+msgid "Settings"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:67
+msgid "Users"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:74
+msgid "Streams"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:82
+msgid "Analytics"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:90
+msgid "Listener Stats"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:104
+msgid "History Templates"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:113
+msgid "Billing"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:120
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:127
+msgid "Account Details"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:134
+msgid "View Invoices"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:150
+msgid "Getting Started"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:157
+msgid "FAQ"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:162
+msgid "User Manual"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:167
+msgid "File a Support Ticket"
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:833
+#: airtime_mvc/application/models/Playlist.php:812
+msgid "Cue in and cue out are null."
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:868
+#: airtime_mvc/application/models/Block.php:924
+#: airtime_mvc/application/models/Playlist.php:851
+#: airtime_mvc/application/models/Playlist.php:895
+msgid "Can't set cue out to be greater than file length."
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:879
+#: airtime_mvc/application/models/Block.php:900
+#: airtime_mvc/application/models/Playlist.php:843
+#: airtime_mvc/application/models/Playlist.php:868
+msgid "Can't set cue in to be larger than cue out."
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:935
+#: airtime_mvc/application/models/Playlist.php:887
+msgid "Can't set cue out to be smaller than cue in."
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:1366
+msgid "Upload Time"
+msgstr ""
+
+#: airtime_mvc/application/models/ShowBuilder.php:212
+#, php-format
+msgid "Rebroadcast of %s from %s"
+msgstr ""
+
+#: airtime_mvc/application/models/Preference.php:460
+#, php-format
+msgid "Powered by %s"
+msgstr ""
+
+#: airtime_mvc/application/models/Preference.php:588
+msgid "Select Country"
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:160
+#, php-format
+msgid "%s is already watched."
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:164
+#, php-format
+msgid "%s contains nested watched directory: %s"
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:168
+#, php-format
+msgid "%s is nested within existing watched directory: %s"
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:189
+#: airtime_mvc/application/models/MusicDir.php:370
+#, php-format
+msgid "%s is not a valid directory."
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:232
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list"
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:388
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list."
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:431
+#, php-format
+msgid "%s doesn't exist in the watched list."
+msgstr ""
+
+#: airtime_mvc/application/models/Auth.php:33
+#, php-format
+msgid ""
+"Hi %s, \n"
+"\n"
+"Please click this link to reset your password: "
+msgstr ""
+
+#: airtime_mvc/application/models/Auth.php:38
+#, php-format
+msgid "%s Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/models/Show.php:184
+msgid "Shows can have a max length of 24 hours."
+msgstr ""
+
+#: airtime_mvc/application/models/Show.php:293
+msgid ""
+"Cannot schedule overlapping shows.\n"
+"Note: Resizing a repeating show affects all of its repeats."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:73
+msgid "Cannot move items out of linked shows"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:119
+msgid "The schedule you're viewing is out of date! (sched mismatch)"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:124
+msgid "The schedule you're viewing is out of date! (instance mismatch)"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:132
+#: airtime_mvc/application/models/Scheduler.php:458
+#: airtime_mvc/application/models/Scheduler.php:490
+msgid "The schedule you're viewing is out of date!"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:142
+#, php-format
+msgid "You are not allowed to schedule show %s."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:146
+msgid "You cannot add files to recording shows."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:152
+#, php-format
+msgid "The show %s is over and cannot be scheduled."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:159
+#, php-format
+msgid "The show %s has been previously updated!"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:178
+msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:195
+msgid "Cannot schedule a playlist that contains missing files."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:216
+#: airtime_mvc/application/models/Scheduler.php:305
+msgid "A selected File does not exist!"
+msgstr ""
+
+#: airtime_mvc/application/models/Schedule.php:206
+msgid "livestream"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:166
+msgid "Length needs to be greater than 0 minutes"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:171
+msgid "Length should be of form \"00h 00m\""
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:184
+msgid "URL should be of form \"http://domain\""
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:187
+msgid "URL should be 512 characters or less"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:193
+msgid "No MIME type found for webstream."
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:209
+msgid "Webstream name cannot be empty"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:278
+msgid "Could not parse XSPF playlist"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:298
+msgid "Could not parse PLS playlist"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:318
+msgid "Could not parse M3U playlist"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:332
+msgid "Invalid webstream - This appears to be a file download."
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:336
+#, php-format
+msgid "Unrecognized stream type: %s"
+msgstr ""
+
+#: airtime_mvc/public/setup/rabbitmq-setup.php:78
+msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
+msgstr ""
diff --git a/airtime_mvc/locale/it_IT/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/it_IT/LC_MESSAGES/airtime.mo
index 9223aefe2..c30bccc29 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 a7f61e4ff..79e668ba5 100644
--- a/airtime_mvc/locale/it_IT/LC_MESSAGES/airtime.po
+++ b/airtime_mvc/locale/it_IT/LC_MESSAGES/airtime.po
@@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Airtime\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-09-03 10:24-0400\n"
-"PO-Revision-Date: 2014-11-14 09:58+0000\n"
+"POT-Creation-Date: 2015-09-04 11:17-0400\n"
+"PO-Revision-Date: 2015-09-04 08:15+0000\n"
"Last-Translator: Daniel James \n"
"Language-Team: Italian (Italy) (http://www.transifex.com/sourcefabric/airtime/language/it_IT/)\n"
"Language: it_IT\n"
@@ -20,132 +20,6 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: airtime_mvc/public/setup/rabbitmq-setup.php:78
-msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1117
-#: airtime_mvc/application/services/HistoryService.php:1157
-#: airtime_mvc/application/services/HistoryService.php:1174
-#: airtime_mvc/application/models/Block.php:1375
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
-#: airtime_mvc/application/controllers/LocaleController.php:76
-msgid "Title"
-msgstr "Titolo"
-
-#: airtime_mvc/application/services/HistoryService.php:1118
-#: airtime_mvc/application/services/HistoryService.php:1158
-#: airtime_mvc/application/services/HistoryService.php:1175
-#: airtime_mvc/application/models/Block.php:1360
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
-#: airtime_mvc/application/controllers/LocaleController.php:77
-msgid "Creator"
-msgstr "Creatore"
-
-#: airtime_mvc/application/services/HistoryService.php:1119
-#: airtime_mvc/application/models/Block.php:1352
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
-#: airtime_mvc/application/controllers/LocaleController.php:78
-msgid "Album"
-msgstr "Album"
-
-#: airtime_mvc/application/services/HistoryService.php:1120
-#: airtime_mvc/application/services/HistoryService.php:1177
-#: airtime_mvc/application/models/Block.php:1369
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
-#: airtime_mvc/application/controllers/LocaleController.php:91
-msgid "Length"
-msgstr "Lunghezza"
-
-#: airtime_mvc/application/services/HistoryService.php:1121
-#: airtime_mvc/application/models/Block.php:1362
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
-#: airtime_mvc/application/controllers/LocaleController.php:85
-msgid "Genre"
-msgstr "Genere"
-
-#: airtime_mvc/application/services/HistoryService.php:1122
-#: airtime_mvc/application/models/Block.php:1371
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
-#: airtime_mvc/application/controllers/LocaleController.php:93
-msgid "Mood"
-msgstr "Genere (Mood)"
-
-#: airtime_mvc/application/services/HistoryService.php:1123
-#: airtime_mvc/application/models/Block.php:1364
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
-#: airtime_mvc/application/controllers/LocaleController.php:87
-msgid "Label"
-msgstr "Etichetta"
-
-#: airtime_mvc/application/services/HistoryService.php:1124
-#: airtime_mvc/application/services/HistoryService.php:1178
-#: airtime_mvc/application/models/Block.php:1355
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
-#: airtime_mvc/application/controllers/LocaleController.php:81
-msgid "Composer"
-msgstr "Compositore"
-
-#: airtime_mvc/application/services/HistoryService.php:1125
-#: airtime_mvc/application/models/Block.php:1363
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
-#: airtime_mvc/application/controllers/LocaleController.php:86
-msgid "ISRC"
-msgstr "ISRC"
-
-#: airtime_mvc/application/services/HistoryService.php:1126
-#: airtime_mvc/application/services/HistoryService.php:1179
-#: airtime_mvc/application/models/Block.php:1357
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
-#: airtime_mvc/application/controllers/LocaleController.php:83
-msgid "Copyright"
-msgstr "Copyright"
-
-#: airtime_mvc/application/services/HistoryService.php:1127
-#: airtime_mvc/application/models/Block.php:1379
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
-#: airtime_mvc/application/controllers/LocaleController.php:100
-msgid "Year"
-msgstr "Anno"
-
-#: airtime_mvc/application/services/HistoryService.php:1128
-msgid "Track"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1129
-#: airtime_mvc/application/models/Block.php:1356
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
-#: airtime_mvc/application/controllers/LocaleController.php:82
-msgid "Conductor"
-msgstr "Conduttore"
-
-#: airtime_mvc/application/services/HistoryService.php:1130
-#: airtime_mvc/application/models/Block.php:1365
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
-#: airtime_mvc/application/controllers/LocaleController.php:88
-msgid "Language"
-msgstr "Lingua"
-
-#: airtime_mvc/application/services/HistoryService.php:1155
-#: airtime_mvc/application/forms/EditHistoryItem.php:32
-msgid "Start Time"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1156
-#: airtime_mvc/application/forms/EditHistoryItem.php:44
-msgid "End Time"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1176
-msgid "Played"
-msgstr "Riprodotti"
-
#: airtime_mvc/application/services/CalendarService.php:50
msgid "Record file doesn't exist"
msgstr ""
@@ -241,2605 +115,382 @@ msgstr "Lo show è stato cancellato perché lo show registrato non esiste!"
msgid "Must wait 1 hour to rebroadcast."
msgstr "Devi aspettare un'ora prima di ritrasmettere."
-#: airtime_mvc/application/models/Schedule.php:206
-msgid "livestream"
-msgstr ""
-
-#: airtime_mvc/application/models/ShowBuilder.php:212
-#, php-format
-msgid "Rebroadcast of %s from %s"
-msgstr "Ritrasmetti da %s a %s"
-
-#: airtime_mvc/application/models/Webstream.php:166
-msgid "Length needs to be greater than 0 minutes"
-msgstr "La lunghezza deve superare 0 minuti"
-
-#: airtime_mvc/application/models/Webstream.php:171
-msgid "Length should be of form \"00h 00m\""
-msgstr "La lunghezza deve essere nella forma \"00h 00m\""
-
-#: airtime_mvc/application/models/Webstream.php:184
-msgid "URL should be of form \"http://domain\""
-msgstr "URL deve essere nella forma \"http://domain\""
-
-#: airtime_mvc/application/models/Webstream.php:187
-msgid "URL should be 512 characters or less"
-msgstr "URL dove essere di 512 caratteri o meno"
-
-#: airtime_mvc/application/models/Webstream.php:193
-msgid "No MIME type found for webstream."
-msgstr "Nessun MIME type trovato per le webstream."
-
-#: airtime_mvc/application/models/Webstream.php:209
-msgid "Webstream name cannot be empty"
-msgstr "Webstream non può essere vuoto"
-
-#: airtime_mvc/application/models/Webstream.php:278
-msgid "Could not parse XSPF playlist"
-msgstr "Non è possibile analizzare le playlist XSPF "
-
-#: airtime_mvc/application/models/Webstream.php:298
-msgid "Could not parse PLS playlist"
-msgstr "Non è possibile analizzare le playlist PLS"
-
-#: airtime_mvc/application/models/Webstream.php:318
-msgid "Could not parse M3U playlist"
-msgstr "Non è possibile analizzare le playlist M3U"
-
-#: airtime_mvc/application/models/Webstream.php:332
-msgid "Invalid webstream - This appears to be a file download."
-msgstr "Webstream non valido - Questo potrebbe essere un file scaricato."
-
-#: airtime_mvc/application/models/Webstream.php:336
-#, php-format
-msgid "Unrecognized stream type: %s"
-msgstr "Tipo di stream sconosciuto: %s"
-
-#: airtime_mvc/application/models/Preference.php:460
-#, php-format
-msgid "Powered by %s"
-msgstr ""
-
-#: airtime_mvc/application/models/Preference.php:588
-msgid "Select Country"
-msgstr "Seleziona paese"
-
-#: airtime_mvc/application/models/MusicDir.php:160
-#, php-format
-msgid "%s is already watched."
-msgstr "%s è già stato visionato."
-
-#: airtime_mvc/application/models/MusicDir.php:164
-#, php-format
-msgid "%s contains nested watched directory: %s"
-msgstr "%s contiene una sotto directory già visionata: %s"
-
-#: airtime_mvc/application/models/MusicDir.php:168
-#, php-format
-msgid "%s is nested within existing watched directory: %s"
-msgstr "%s annidato con una directory già visionata: %s"
-
-#: airtime_mvc/application/models/MusicDir.php:189
-#: airtime_mvc/application/models/MusicDir.php:370
-#, php-format
-msgid "%s is not a valid directory."
-msgstr "%s non è una directory valida."
-
-#: airtime_mvc/application/models/MusicDir.php:232
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list"
-msgstr "%s è già impostato come attuale cartella archivio o appartiene alle cartelle visionate"
-
-#: airtime_mvc/application/models/MusicDir.php:388
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list."
-msgstr "%s è già impostato come attuale cartella archivio o appartiene alle cartelle visionate."
-
-#: airtime_mvc/application/models/MusicDir.php:431
-#, php-format
-msgid "%s doesn't exist in the watched list."
-msgstr "%s non esiste nella lista delle cartelle visionate."
-
-#: airtime_mvc/application/models/Show.php:184
-msgid "Shows can have a max length of 24 hours."
-msgstr "Gli show possono avere una lunghezza massima di 24 ore."
-
-#: airtime_mvc/application/models/Show.php:282
-#: airtime_mvc/application/forms/AddShowWhen.php:156
-msgid "End date/time cannot be in the past"
-msgstr "L'ora e la data finale non possono precedere quelle iniziali"
-
-#: airtime_mvc/application/models/Show.php:293
-msgid ""
-"Cannot schedule overlapping shows.\n"
-"Note: Resizing a repeating show affects all of its repeats."
-msgstr ""
-"Non si possono programmare show sovrapposti.\n"
-" Note: Ridimensionare uno slot a ripetizione colpisce tutte le sue ripetizioni."
-
-#: airtime_mvc/application/models/Auth.php:33
-#, php-format
-msgid ""
-"Hi %s, \n"
-"\n"
-"Please click this link to reset your password: "
-msgstr ""
-
-#: airtime_mvc/application/models/Auth.php:38
-#, php-format
-msgid "%s Password Reset"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:333
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
-msgid "items"
-msgstr "elementi"
-
-#: airtime_mvc/application/models/Block.php:833
-#: airtime_mvc/application/models/Playlist.php:812
-msgid "Cue in and cue out are null."
-msgstr "Cue in e cue out sono nulli."
-
-#: airtime_mvc/application/models/Block.php:868
-#: airtime_mvc/application/models/Block.php:924
-#: airtime_mvc/application/models/Playlist.php:851
-#: airtime_mvc/application/models/Playlist.php:895
-msgid "Can't set cue out to be greater than file length."
-msgstr "Il cue out non può essere più grande della lunghezza del file."
-
-#: airtime_mvc/application/models/Block.php:879
-#: airtime_mvc/application/models/Block.php:900
-#: airtime_mvc/application/models/Playlist.php:843
-#: airtime_mvc/application/models/Playlist.php:868
-msgid "Can't set cue in to be larger than cue out."
-msgstr "Il cue in non può essere più grande del cue out."
-
-#: airtime_mvc/application/models/Block.php:935
-#: airtime_mvc/application/models/Playlist.php:887
-msgid "Can't set cue out to be smaller than cue in."
-msgstr "Il cue out non può essere più piccolo del cue in."
-
-#: airtime_mvc/application/models/Block.php:1351
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
-msgid "Select criteria"
-msgstr "Seleziona criteri"
-
-#: airtime_mvc/application/models/Block.php:1353
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
-msgid "Bit Rate (Kbps)"
-msgstr "Bit Rate (kbps)"
-
-#: airtime_mvc/application/models/Block.php:1354
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
-#: airtime_mvc/application/controllers/LocaleController.php:80
-msgid "BPM"
-msgstr "BPM"
-
-#: airtime_mvc/application/models/Block.php:1358
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
-#: airtime_mvc/application/controllers/LocaleController.php:281
-#: airtime_mvc/application/layouts/scripts/layout.phtml:140
-msgid "Cue In"
-msgstr "Cue In"
-
-#: airtime_mvc/application/models/Block.php:1359
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:282
-#: airtime_mvc/application/layouts/scripts/layout.phtml:147
-msgid "Cue Out"
-msgstr "Cue Out"
-
-#: airtime_mvc/application/models/Block.php:1361
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
-#: airtime_mvc/application/controllers/LocaleController.php:84
-msgid "Encoded By"
-msgstr "Codificato da"
-
-#: airtime_mvc/application/models/Block.php:1366
-msgid "Upload Time"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1367
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
-#: airtime_mvc/application/controllers/LocaleController.php:89
-msgid "Last Modified"
-msgstr "Ultima modifica"
-
-#: airtime_mvc/application/models/Block.php:1368
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
-#: airtime_mvc/application/controllers/LocaleController.php:90
-msgid "Last Played"
-msgstr "Ultima esecuzione"
-
-#: airtime_mvc/application/models/Block.php:1370
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
-#: airtime_mvc/application/controllers/LocaleController.php:92
-msgid "Mime"
-msgstr "Formato (Mime)"
-
-#: airtime_mvc/application/models/Block.php:1372
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
-#: airtime_mvc/application/controllers/LocaleController.php:94
-msgid "Owner"
-msgstr "Proprietario"
-
-#: airtime_mvc/application/models/Block.php:1373
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
-#: airtime_mvc/application/controllers/LocaleController.php:95
-msgid "Replay Gain"
-msgstr "Ripeti"
-
-#: airtime_mvc/application/models/Block.php:1374
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
-msgid "Sample Rate (kHz)"
-msgstr "Velocità campione (kHz)"
-
-#: airtime_mvc/application/models/Block.php:1376
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
-#: airtime_mvc/application/controllers/LocaleController.php:97
-msgid "Track Number"
-msgstr "Numero traccia"
-
-#: airtime_mvc/application/models/Block.php:1377
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
-#: airtime_mvc/application/controllers/LocaleController.php:98
-msgid "Uploaded"
-msgstr "Caricato"
-
-#: airtime_mvc/application/models/Block.php:1378
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
-#: airtime_mvc/application/controllers/LocaleController.php:99
-msgid "Website"
-msgstr "Sito web"
-
-#: airtime_mvc/application/models/Block.php:1383
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
-#: airtime_mvc/application/controllers/LocaleController.php:151
-msgid "Select modifier"
-msgstr "Seleziona modificatore"
-
-#: airtime_mvc/application/models/Block.php:1384
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
-#: airtime_mvc/application/controllers/LocaleController.php:152
-msgid "contains"
-msgstr "contiene"
-
-#: airtime_mvc/application/models/Block.php:1385
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
-#: airtime_mvc/application/controllers/LocaleController.php:153
-msgid "does not contain"
-msgstr "non contiene"
-
-#: airtime_mvc/application/models/Block.php:1386
-#: airtime_mvc/application/models/Block.php:1390
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
-#: airtime_mvc/application/controllers/LocaleController.php:154
-msgid "is"
-msgstr "è "
-
-#: airtime_mvc/application/models/Block.php:1387
-#: airtime_mvc/application/models/Block.php:1391
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
-#: airtime_mvc/application/controllers/LocaleController.php:155
-msgid "is not"
-msgstr "non è"
-
-#: airtime_mvc/application/models/Block.php:1388
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
-#: airtime_mvc/application/controllers/LocaleController.php:156
-msgid "starts with"
-msgstr "inizia con"
-
-#: airtime_mvc/application/models/Block.php:1389
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
-#: airtime_mvc/application/controllers/LocaleController.php:157
-msgid "ends with"
-msgstr "finisce con"
-
-#: airtime_mvc/application/models/Block.php:1392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
-#: airtime_mvc/application/controllers/LocaleController.php:158
-msgid "is greater than"
-msgstr "è più di"
-
-#: airtime_mvc/application/models/Block.php:1393
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
-#: airtime_mvc/application/controllers/LocaleController.php:159
-msgid "is less than"
-msgstr "è meno di"
-
-#: airtime_mvc/application/models/Block.php:1394
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
-#: airtime_mvc/application/controllers/LocaleController.php:160
-msgid "is in the range"
-msgstr "nella seguenza"
-
-#: airtime_mvc/application/models/Scheduler.php:73
-msgid "Cannot move items out of linked shows"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:119
-msgid "The schedule you're viewing is out of date! (sched mismatch)"
-msgstr "Il programma che sta visionando è fuori data! (disadattamento dell'orario)"
-
-#: airtime_mvc/application/models/Scheduler.php:124
-msgid "The schedule you're viewing is out of date! (instance mismatch)"
-msgstr "Il programma che sta visionando è fuori data! (disadattamento dell'esempio)"
-
-#: airtime_mvc/application/models/Scheduler.php:132
-#: airtime_mvc/application/models/Scheduler.php:458
-#: airtime_mvc/application/models/Scheduler.php:490
-msgid "The schedule you're viewing is out of date!"
-msgstr "Il programma che sta visionando è fuori data!"
-
-#: airtime_mvc/application/models/Scheduler.php:142
-#, php-format
-msgid "You are not allowed to schedule show %s."
-msgstr "Non è abilitato all'elenco degli show%s"
-
-#: airtime_mvc/application/models/Scheduler.php:146
-msgid "You cannot add files to recording shows."
-msgstr "Non può aggiungere file a show registrati."
-
-#: airtime_mvc/application/models/Scheduler.php:152
-#, php-format
-msgid "The show %s is over and cannot be scheduled."
-msgstr "Lo show % supera la lunghezza massima e non può essere programmato."
-
-#: airtime_mvc/application/models/Scheduler.php:159
-#, php-format
-msgid "The show %s has been previously updated!"
-msgstr "Lo show %s è già stato aggiornato! "
-
-#: airtime_mvc/application/models/Scheduler.php:178
-msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:195
-msgid "Cannot schedule a playlist that contains missing files."
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:216
-#: airtime_mvc/application/models/Scheduler.php:305
-msgid "A selected File does not exist!"
-msgstr "Il File selezionato non esiste!"
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
-#: airtime_mvc/application/configs/navigation.php:40
-msgid "Weekly Schedule"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
-#: airtime_mvc/application/forms/Player.php:77
-msgid "Preview:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
-#: airtime_mvc/application/configs/navigation.php:34
-msgid "Player"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
-#: airtime_mvc/application/controllers/LocaleController.php:362
-#: airtime_mvc/application/controllers/LocaleController.php:390
-msgid "Close"
-msgstr "Chiudi"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Add this show"
-msgstr "Aggiungi show"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Update show"
-msgstr "Aggiorna show"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
-msgid "What"
-msgstr "Cosa"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
-msgid "When"
-msgstr "Quando"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
-msgid "Live Stream Input"
-msgstr "Ingresso Stream diretta"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
-msgid "Who"
-msgstr "Chi"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
-msgid "Style"
-msgstr "Stile"
-
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
-#: airtime_mvc/application/controllers/LocaleController.php:273
-msgid "Start"
-msgstr "Start"
-
-#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
-msgid "Password Reset"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
-msgid "Email Sent!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
-msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
-msgid "Back"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
-msgid "New password"
-msgstr "Nuova password"
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
-msgid "Please enter and confirm your new password in the fields below."
-msgstr "Prego inserire e confermare la sua nuova password nel seguente spazio."
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:3
-#: airtime_mvc/application/forms/Login.php:83
-msgid "Login"
-msgstr "Accedi"
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:7
-#, php-format
-msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:97
-msgid "Playout History"
-msgstr "Storico playlist"
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
-msgid "Log Sheet"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
-msgid "File Summary"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
-msgid "Show Summary"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
-msgid "Your trial expires in"
-msgstr "La sua versione di prova scade entro"
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
-msgid "days"
-msgstr "giorni"
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-#, php-format
-msgid "Purchase an %s Pro plan!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-msgid "My Account"
-msgstr "Account personale"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
-msgid "Previous:"
-msgstr "Precedente:"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
-msgid "Next:"
-msgstr "Successivo:"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
-msgid "Source Streams"
-msgstr "Source Streams"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
-msgid "Master Source"
-msgstr "Fonte principale"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
-msgid "Show Source"
-msgstr "Mostra fonte"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
-msgid "ON AIR"
-msgstr "IN ONDA"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
-msgid "Listen"
-msgstr "Ascolta"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
-msgid "Logout"
-msgstr "Esci"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
-msgid "Drop files here or click to browse your computer."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
-#: airtime_mvc/application/controllers/LocaleController.php:314
-msgid "in use"
-msgstr "in uso"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
-#: airtime_mvc/application/controllers/LocaleController.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:401
-msgid "All"
-msgstr "Tutto"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
-msgid "Failed"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
-msgid "Pending"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
-msgid "Recent Uploads"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
-#: airtime_mvc/application/configs/navigation.php:120
-msgid "Account Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
-msgid "Upgrade today to get more listeners and storage space!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
-msgid "View Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
-msgid "About"
-msgstr "Chi siamo"
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
-#, php-format
-msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
-#, php-format
-msgid "%1$s %2$s is distributed under the %3$s"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
-#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
-msgid "Live stream"
-msgstr "Live stream"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
-msgid "Share"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
-msgid "Select stream:"
-msgstr "Seleziona stream:"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
-msgid "mute"
-msgstr "disattiva microfono"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
-msgid "unmute"
-msgstr "attiva microfono"
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
-#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
-#, php-format
-msgid "Welcome to %s!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
-#, php-format
-msgid "Here's how you can get started using %s to automate your broadcasts: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
-msgid "Upload audio tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
-msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
-msgid "Schedule a show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
-msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
-msgid "Add tracks to your show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
-msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
-msgid "Now you're good to go!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
-#, php-format
-msgid "For more detailed help, read the %suser manual%s."
-msgstr "Per aiuto dettagliato, legga %suser manual%s."
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
-msgid "Listeners"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
-msgid "Stream Data Collection Status"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
-#: airtime_mvc/application/views/scripts/error/error.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
-msgid "An error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
-msgid "Access Denied!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
-msgid "You do not have permission to access this page!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
-#: airtime_mvc/application/views/scripts/error/error.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
-#: airtime_mvc/application/configs/navigation.php:143
-msgid "Help"
-msgstr "Aiuto"
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
-msgid "Page not found!"
-msgstr "Pagina non trovata!"
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
-msgid "We couldn't find the page you were looking for."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error.phtml:12
-msgid "Looks like the page you were looking for doesn't exist!"
-msgstr "La pagina che stai cercando non esiste! "
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
-msgid "Oops!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
-msgid "Something went wrong!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
-msgid "Bad Request!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
-msgid "The requested action is not supported!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
-msgid "Viewing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
-msgid "Editing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:3
-msgid "File import in progress..."
-msgstr "File importato in corso..."
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:10
-#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
-msgid "Advanced Search Options"
-msgstr "Opzioni di ricerca avanzate"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
-#: airtime_mvc/application/forms/Player.php:15
-#: airtime_mvc/application/forms/EditAudioMD.php:24
-msgid "Title:"
-msgstr "Titolo:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
-#: airtime_mvc/application/forms/EditAudioMD.php:34
-msgid "Creator:"
-msgstr "Creatore:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
-#: airtime_mvc/application/forms/EditAudioMD.php:44
-msgid "Album:"
-msgstr "Album:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
-msgid "Track:"
-msgstr "Traccia:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
-msgid "Length:"
+#: airtime_mvc/application/services/HistoryService.php:1117
+#: airtime_mvc/application/services/HistoryService.php:1157
+#: airtime_mvc/application/services/HistoryService.php:1174
+#: airtime_mvc/application/controllers/LocaleController.php:76
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
+#: airtime_mvc/application/models/Block.php:1375
+msgid "Title"
+msgstr "Titolo"
+
+#: airtime_mvc/application/services/HistoryService.php:1118
+#: airtime_mvc/application/services/HistoryService.php:1158
+#: airtime_mvc/application/services/HistoryService.php:1175
+#: airtime_mvc/application/controllers/LocaleController.php:77
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
+#: airtime_mvc/application/models/Block.php:1360
+msgid "Creator"
+msgstr "Creatore"
+
+#: airtime_mvc/application/services/HistoryService.php:1119
+#: airtime_mvc/application/controllers/LocaleController.php:78
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
+#: airtime_mvc/application/models/Block.php:1352
+msgid "Album"
+msgstr "Album"
+
+#: airtime_mvc/application/services/HistoryService.php:1120
+#: airtime_mvc/application/services/HistoryService.php:1177
+#: airtime_mvc/application/controllers/LocaleController.php:91
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
+#: airtime_mvc/application/models/Block.php:1369
+msgid "Length"
msgstr "Lunghezza"
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
-msgid "Sample Rate:"
-msgstr "Percentuale"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
-msgid "Bit Rate:"
-msgstr "Velocità di trasmissione: "
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
-#: airtime_mvc/application/forms/EditAudioMD.php:115
-msgid "Mood:"
-msgstr "Umore:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
-#: airtime_mvc/application/forms/EditAudioMD.php:62
-#: airtime_mvc/application/forms/AddShowWhat.php:45
-msgid "Genre:"
-msgstr "Genere:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
-#: airtime_mvc/application/forms/EditAudioMD.php:72
-msgid "Year:"
-msgstr "Anno:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
-#: airtime_mvc/application/forms/EditAudioMD.php:85
-msgid "Label:"
-msgstr "Etichetta:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
-#: airtime_mvc/application/forms/EditAudioMD.php:125
-msgid "BPM:"
-msgstr "BPM:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
-#: airtime_mvc/application/forms/EditAudioMD.php:95
-msgid "Composer:"
-msgstr "Compositore:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
-#: airtime_mvc/application/forms/EditAudioMD.php:105
-msgid "Conductor:"
-msgstr "Conduttore:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
-#: airtime_mvc/application/forms/EditAudioMD.php:135
-msgid "Copyright:"
-msgstr "Copyright:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
-msgid "Isrc Number:"
-msgstr "Numero ISRC:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
-#: airtime_mvc/application/forms/EditAudioMD.php:155
-msgid "Website:"
-msgstr "Sito web:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
-#: airtime_mvc/application/forms/EditUser.php:119
-#: airtime_mvc/application/forms/EditAudioMD.php:165
-#: airtime_mvc/application/forms/Login.php:68
-msgid "Language:"
-msgstr "Lingua:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
-msgid "File Path:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
-#: airtime_mvc/application/forms/AddShowWhat.php:26
-msgid "Name:"
-msgstr "Nome:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
-#: airtime_mvc/application/forms/AddShowWhat.php:54
-msgid "Description:"
-msgstr "Descrizione:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
-msgid "Web Stream"
-msgstr "Web Stream"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
-msgid "Dynamic Smart Block"
-msgstr "Blocco intelligente e dinamico"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
-msgid "Static Smart Block"
-msgstr "Blocco intelligente e statico"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
-msgid "Audio Track"
-msgstr "Traccia audio"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
-msgid "Playlist Contents: "
-msgstr "Contenuti playlist:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
-msgid "Static Smart Block Contents: "
-msgstr "Contenuto di blocco intelligente e statico:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
-msgid "Dynamic Smart Block Criteria: "
-msgstr "Criteri di blocco intelligenti e dinamici:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
-msgid "Limit to "
-msgstr "Limiti"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
-#: airtime_mvc/application/forms/AddShowWhat.php:36
-msgid "URL:"
-msgstr "URL:"
-
-#: airtime_mvc/application/views/scripts/form/login.phtml:41
-msgid "Forgot your password?"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
-#, php-format
-msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
-#, php-format
-msgid "Click the box below to promote your station on %s."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
-msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
-msgstr "(Per promuovere la sua stazione, 'Spedisca aderenza feedback' deve essere abilitato)."
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
-msgid "(Required)"
-msgstr "(Richiesto)"
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
-msgid "(for verification purposes only, will not be published)"
-msgstr "(per scopi di verifica, non ci saranno pubblicazioni)"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
-msgid "Choose folder"
-msgstr "Scegli cartella"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
-msgid "Set"
-msgstr "Imposta"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
-msgid "Current Import Folder:"
-msgstr "Importa cartelle:"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
-msgid "Add"
-msgstr "Aggiungi "
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
-#, php-format
-msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
-msgid "Remove watched directory"
-msgstr "Rimuovi elenco visionato"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
-msgid "You are not watching any media folders."
-msgstr "Sta guardando i cataloghi media."
-
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
-msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
-msgid "Live Broadcasting"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
-msgid "Use these settings in your broadcasting software to stream live at any time."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
-msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
-msgid "Choose Show Instance"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
-#: airtime_mvc/application/forms/EditHistoryItem.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:400
-msgid "No Show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
-msgid "Find"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
-msgid "Choose Days:"
-msgstr "Scegli giorni:"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
-#: airtime_mvc/application/forms/AddShowStyle.php:64
-#: airtime_mvc/application/forms/GeneralPreferences.php:53
-msgid "Remove"
-msgstr "Rimuovi"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
-msgid "Stream "
-msgstr "Stream"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
-msgid "Additional Options"
-msgstr "Opzioni aggiuntive"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
-msgid "The following info will be displayed to listeners in their media player:"
-msgstr "La seguente informazione sarà esposta agli ascoltatori nelle loro eseguzione:"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
-msgid "(Your radio station website)"
-msgstr "(Il sito della tua radio)"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
-msgid "Stream URL: "
-msgstr "Stream URL:"
-
-#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
-msgid "Find Shows"
-msgstr "Trova Shows"
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
-msgid "TuneIn Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
-msgid "SoundCloud Settings"
-msgstr "Impostazioni SoundCloud"
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
-msgid "Dangerous Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
-msgid "Search Criteria:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
-msgid "New Criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
-msgid "or"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
-msgid "and"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
-msgid "New Modifier"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
-msgid " to "
-msgstr "a"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
-msgid "files meet the criteria"
-msgstr "Files e criteri"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
-msgid "file meets the criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
-msgid "Filter History"
-msgstr "Filtra storia"
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
-#: airtime_mvc/application/configs/navigation.php:61
-msgid "My Profile"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
-#, php-format
-msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
-#: airtime_mvc/application/forms/Preferences.php:40
-#: airtime_mvc/application/forms/PasswordChange.php:43
-#: airtime_mvc/application/forms/AddUser.php:110
-#: airtime_mvc/application/forms/BillingClient.php:193
-#: airtime_mvc/application/forms/SupportSettings.php:131
-#: airtime_mvc/application/forms/EditHistory.php:131
-#: airtime_mvc/application/controllers/LocaleController.php:294
-msgid "Save"
-msgstr "Salva"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
-msgid "Repeat Days:"
-msgstr "Ripeti giorni:"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
-msgid "Register Airtime"
-msgstr "Registro Airtime"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
-#: airtime_mvc/application/forms/GeneralPreferences.php:43
-msgid "Note: Anything larger than 600x600 will be resized."
-msgstr "Note: La lunghezze superiori a 600x600 saranno ridimensionate."
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
-msgid "Show me what I am sending "
-msgstr "Mostra cosa sto inviando"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
-msgid "Terms and Conditions"
-msgstr "Termini e condizioni"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
-msgid "Creating File Summary Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
-msgid "Creating Log Sheet Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
-msgid "Name"
-msgstr "Nome"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
-msgid "Add more elements"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
-msgid "Add New Field"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
-msgid "Set Default Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
-msgid "Playout History Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
-msgid "Log Sheet Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
-msgid "New Log Sheet Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
-msgid "No Log Sheet Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
-#: airtime_mvc/application/controllers/LocaleController.php:397
-msgid "Set Default"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
-msgid "File Summary Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
-msgid "New File Summary Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
-msgid "No File Summary Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
-msgid "Disk Space"
-msgstr "Spazio disco"
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
-#: airtime_mvc/application/controllers/LocaleController.php:315
-msgid "Disk"
-msgstr "Disco"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
-#: airtime_mvc/application/forms/AddShowWhen.php:89
-msgid "Duration:"
-msgstr "Durata:"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
-msgid "Toggle Details"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
-msgid "Playlist crossfade"
-msgstr "Playlist crossfade"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-msgid "Remove all content from this smart block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Clear"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "Fade in: "
-msgstr "Dissolvenza in entrata:"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "(ss.t)"
-msgstr "(ss.t)"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-msgid "Fade out: "
-msgstr "Dissolvenza in chiusura:"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
-#: airtime_mvc/application/forms/EditAudioMD.php:186
-#: airtime_mvc/application/forms/EditHistory.php:141
-#: airtime_mvc/application/controllers/LocaleController.php:295
-#: airtime_mvc/application/controllers/LocaleController.php:318
-msgid "Cancel"
-msgstr "Cancella"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
-msgid "No smart block currently open"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
-msgid "Show Waveform"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-msgid "Cue In: "
-msgstr "Cue in:"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "(hh:mm:ss.t)"
-msgstr "(hh:mm:ss.t)"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "Cue Out: "
-msgstr "Cue Out:"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
-msgid "Original Length:"
-msgstr "Lunghezza originale:"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
-msgid "Expand Static Block"
-msgstr "Espandi blocco statico"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
-msgid "Expand Dynamic Block"
-msgstr "Espandi blocco dinamico "
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
-msgid "Choose some search criteria above and click Generate to create this playlist."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
-msgid "A track list will be generated when you schedule this smart block into a show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
-msgid "Drag tracks here from your library to add them to the playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-msgid "Shuffle playlist"
-msgstr "Riproduzione casuale"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
-msgid "Shuffle"
-msgstr "Casuale"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Empty playlist content"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-msgid "Save playlist"
-msgstr "Salva playlist"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
-msgid "No open playlist"
-msgstr "Non aprire playlist"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
-msgid "previous"
-msgstr "precedente"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
-msgid "play"
-msgstr "riproduci"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
-msgid "pause"
-msgstr "pausa"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
-msgid "next"
-msgstr "next"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
-msgid "stop"
-msgstr "stop"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
-msgid "max volume"
-msgstr "volume massimo"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
-msgid "Update Required"
-msgstr "Aggiornamenti richiesti"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
-#, php-format
-msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
-msgstr "Per riproduzione media, avrà bisogno di aggiornare il suo browser ad una recente versione o aggiornare il suo %sFlash plugin%s."
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
-msgid "Stream Settings"
-msgstr "Impostazioni Stream"
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
-msgid "Global"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
-msgid "dB"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
-msgid "Output Streams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
-#: airtime_mvc/application/controllers/LocaleController.php:166
-msgid "Manage Media Folders"
-msgstr "Gestisci cartelle media"
-
-#: airtime_mvc/application/views/scripts/preference/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:56
-msgid "General"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
-msgid "Description"
-msgstr "Descrizione"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
-msgid "Stream URL:"
-msgstr "Stream URL:"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
-msgid "Default Length:"
-msgstr "Lunghezza predefinita:"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
-msgid "No webstream"
-msgstr "No webstream"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
-msgid "Manage Users"
-msgstr "Gestione utenti"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
-msgid "New User"
-msgstr "Nuovo Utente"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
-msgid "id"
-msgstr "id"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
-#: airtime_mvc/application/forms/PasswordRestore.php:25
-msgid "Username"
-msgstr "Nome utente"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
-msgid "First Name"
-msgstr "Nome"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
-msgid "Last Name"
-msgstr "Cognome"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
-msgid "User Type"
-msgstr "Tipo di utente"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
-#, php-format
-msgid "Super Admin details can be changed in your Billing Settings."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
-#: airtime_mvc/application/controllers/LocaleController.php:74
-#: airtime_mvc/application/layouts/scripts/layout.phtml:78
-msgid "Tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
-#: airtime_mvc/application/controllers/LocaleController.php:104
-#: airtime_mvc/application/layouts/scripts/layout.phtml:80
-msgid "Playlists"
-msgstr "Playlist"
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
-#: airtime_mvc/application/controllers/LocaleController.php:105
-#: airtime_mvc/application/layouts/scripts/layout.phtml:82
-msgid "Smart Blocks"
-msgstr "Blocchi intelligenti"
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
-#: airtime_mvc/application/layouts/scripts/layout.phtml:84
-msgid "Webstreams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
-#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
-#: airtime_mvc/application/layouts/scripts/layout.phtml:76
-msgid "Dashboard"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:12
-msgid "Radio Page"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:19
-msgid "Calendar"
-msgstr "Calendario"
-
-#: airtime_mvc/application/configs/navigation.php:26
-msgid "Widgets"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:48
-msgid "Settings"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:67
-msgid "Users"
-msgstr "Utenti"
-
-#: airtime_mvc/application/configs/navigation.php:74
-msgid "Streams"
-msgstr "Streams"
-
-#: airtime_mvc/application/configs/navigation.php:82
-msgid "Analytics"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:90
-msgid "Listener Stats"
-msgstr "Statistiche ascolto"
-
-#: airtime_mvc/application/configs/navigation.php:104
-msgid "History Templates"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:113
-msgid "Billing"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:127
-msgid "Account Details"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:134
-msgid "View Invoices"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:150
-msgid "Getting Started"
-msgstr "Iniziare"
-
-#: airtime_mvc/application/configs/navigation.php:157
-msgid "FAQ"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:162
-msgid "User Manual"
-msgstr "Manuale utente"
-
-#: airtime_mvc/application/configs/navigation.php:167
-msgid "File a Support Ticket"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:12
-msgid "Background Colour:"
-msgstr "Colore sfondo:"
-
-#: airtime_mvc/application/forms/AddShowStyle.php:31
-msgid "Text Colour:"
-msgstr "Colore testo:"
-
-#: airtime_mvc/application/forms/AddShowStyle.php:49
-msgid "Current Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:72
-msgid "Show Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:87
-msgid "Logo Preview:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:19
-msgid "Push metadata to your station on TuneIn?"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:24
-msgid "Station ID:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:30
-msgid "Partner Key:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:36
-msgid "Partner Id:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:77
-#: airtime_mvc/application/forms/TuneInPreferences.php:86
-msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:14
-msgid "Now Playing"
-msgstr "In esecuzione"
-
-#: airtime_mvc/application/forms/Player.php:25
-msgid "Select Stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:28
-msgid "Auto detect the most appropriate stream to use."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:29
-msgid "Select a stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:41
-msgid " - Mobile friendly"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:45
-msgid " - The player does not support Opus streams."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:71
-msgid "Embeddable code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:72
-msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:37
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
-#: airtime_mvc/application/forms/Login.php:41
-#: airtime_mvc/application/forms/AddUser.php:29
-msgid "Username:"
-msgstr "Username:"
-
-#: airtime_mvc/application/forms/EditUser.php:48
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
-#: airtime_mvc/application/forms/Login.php:54
-#: airtime_mvc/application/forms/AddUser.php:38
-#: airtime_mvc/application/forms/BillingClient.php:172
-msgid "Password:"
-msgstr "Password:"
-
-#: airtime_mvc/application/forms/EditUser.php:57
-#: airtime_mvc/application/forms/AddUser.php:46
-#: airtime_mvc/application/forms/BillingClient.php:181
-msgid "Verify Password:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:67
-#: airtime_mvc/application/forms/AddUser.php:55
-msgid "Firstname:"
-msgstr "Nome:"
-
-#: airtime_mvc/application/forms/EditUser.php:75
-#: airtime_mvc/application/forms/AddUser.php:61
-msgid "Lastname:"
-msgstr "Cognome:"
-
-#: airtime_mvc/application/forms/EditUser.php:83
-#: airtime_mvc/application/forms/RegisterAirtime.php:51
-#: airtime_mvc/application/forms/AddUser.php:67
-#: airtime_mvc/application/forms/SupportSettings.php:43
-msgid "Email:"
-msgstr "E-mail:"
-
-#: airtime_mvc/application/forms/EditUser.php:94
-#: airtime_mvc/application/forms/AddUser.php:76
-msgid "Mobile Phone:"
-msgstr "Cellulare:"
-
-#: airtime_mvc/application/forms/EditUser.php:102
-#: airtime_mvc/application/forms/AddUser.php:82
-msgid "Skype:"
-msgstr "Skype:"
-
-#: airtime_mvc/application/forms/EditUser.php:110
-#: airtime_mvc/application/forms/AddUser.php:88
-msgid "Jabber:"
-msgstr "Jabber:"
-
-#: airtime_mvc/application/forms/EditUser.php:129
-msgid "Interface Timezone:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:155
-#: airtime_mvc/application/forms/AddUser.php:120
-msgid "Login name is not unique."
-msgstr "Il nome utente esiste già ."
-
-#: airtime_mvc/application/forms/AddShowRR.php:10
-msgid "Record from Line In?"
-msgstr "Registra da Line In?"
-
-#: airtime_mvc/application/forms/AddShowRR.php:16
-msgid "Rebroadcast?"
-msgstr "Ritrasmetti?"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:16
-msgid "'%value%' does not fit the time format 'HH:mm'"
-msgstr "'%value%' non si adatta al formato dell'ora 'HH:mm'"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:22
-msgid "Start Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:37
-msgid "In the Future:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:64
-msgid "End Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:98
-msgid "Timezone:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:107
-msgid "Repeats?"
-msgstr "Ripetizioni?"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:139
-msgid "Cannot create show in the past"
-msgstr "Non creare show al passato"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:147
-msgid "Cannot modify start date/time of the show that is already started"
-msgstr "Non modificare data e ora di inizio degli slot in eseguzione"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:164
-msgid "Cannot have duration < 0m"
-msgstr "Non ci può essere una durata <0m"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:168
-msgid "Cannot have duration 00h 00m"
-msgstr "Non ci può essere una durata 00h 00m"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:175
-msgid "Cannot have duration greater than 24h"
-msgstr "Non ci può essere una durata superiore a 24h"
-
-#: airtime_mvc/application/forms/AddShowWho.php:10
-msgid "Search Users:"
-msgstr "Cerca utenti:"
-
-#: airtime_mvc/application/forms/AddShowWho.php:24
-msgid "DJs:"
-msgstr "Dj:"
-
-#: airtime_mvc/application/forms/PasswordChange.php:17
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
-msgid "Password"
-msgstr "Password"
-
-#: airtime_mvc/application/forms/PasswordChange.php:28
-msgid "Confirm new password"
-msgstr "Conferma nuova password"
-
-#: airtime_mvc/application/forms/PasswordChange.php:36
-msgid "Password confirmation does not match your password."
-msgstr "La password di conferma non corrisponde con la sua password."
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
-msgid "Station Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
-#: airtime_mvc/application/forms/GeneralPreferences.php:127
-msgid "Station Timezone"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
-msgid "Auto Switch Off:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
-msgid "Auto Switch On:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
-msgid "Switch Transition Fade (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
-#: airtime_mvc/application/forms/GeneralPreferences.php:68
-#: airtime_mvc/application/forms/GeneralPreferences.php:82
-#: airtime_mvc/application/forms/GeneralPreferences.php:96
-msgid "Please enter a time in seconds (eg. 0.5)"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
-#: airtime_mvc/application/forms/AddShowLiveStream.php:48
-msgid "Host:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
-#: airtime_mvc/application/forms/AddShowLiveStream.php:54
-msgid "Port:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
-#: airtime_mvc/application/forms/AddShowLiveStream.php:60
-msgid "Mount:"
-msgstr ""
-
-#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
-msgid "Value is required and can't be empty"
-msgstr "Il calore richiesto non può rimanere vuoto"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:25
-#: airtime_mvc/application/forms/RegisterAirtime.php:30
-#: airtime_mvc/application/forms/SupportSettings.php:18
-msgid "Station Name"
-msgstr "Nome stazione"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:33
-msgid "Station Description"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:42
-#: airtime_mvc/application/forms/RegisterAirtime.php:106
-msgid "Station Logo:"
-msgstr "Logo stazione: "
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:62
-msgid "Default Crossfade Duration (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:76
-msgid "Default Fade In (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:90
-msgid "Default Fade Out (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:102
-msgid "Public Airtime API"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:103
-msgid "Required for embeddable schedule widget."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:105
-msgid "Disabled"
-msgstr "Disattivato"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:106
-msgid "Enabled"
-msgstr "Abilitato"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:109
-msgid ""
-"Enabling this feature will allow Airtime to provide schedule data\n"
-" to external widgets that can be embedded in your website."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:120
-msgid "Default Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:134
-msgid "Week Starts On"
-msgstr "La settimana inizia il"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:150
-msgid "Display login button on your Radio Page?"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:158
-#: airtime_mvc/application/controllers/LocaleController.php:249
-msgid "Sunday"
-msgstr "Domenica"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:159
-#: airtime_mvc/application/controllers/LocaleController.php:250
-msgid "Monday"
-msgstr "Lunedì"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:160
-#: airtime_mvc/application/controllers/LocaleController.php:251
-msgid "Tuesday"
-msgstr "Martedì"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:161
-#: airtime_mvc/application/controllers/LocaleController.php:252
-msgid "Wednesday"
-msgstr "Mercoledì"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:162
-#: airtime_mvc/application/controllers/LocaleController.php:253
-msgid "Thursday"
-msgstr "Giovedì"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:163
-#: airtime_mvc/application/controllers/LocaleController.php:254
-msgid "Friday"
-msgstr "Venerdì"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:164
-#: airtime_mvc/application/controllers/LocaleController.php:255
-msgid "Saturday"
-msgstr "Sabato"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
-msgid "Default License:"
-msgstr "Licenza predefinita:"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
-msgid "All rights are reserved"
-msgstr "Tutti i diritti riservati"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
-msgid "The work is in the public domain"
-msgstr "Il lavoro è nel dominio pubblico"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
-msgid "Creative Commons Attribution"
-msgstr "Creative Commons Attribution"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
-msgid "Creative Commons Attribution Noncommercial"
-msgstr "Creative Commons Attribution Noncommercial"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
-msgid "Creative Commons Attribution No Derivative Works"
-msgstr "Creative Commons Attribution No Derivate Works"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
-msgid "Creative Commons Attribution Share Alike"
-msgstr "Creative Commons Attribution Share Alike"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
-msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
-msgstr "Creative Commons Attribution Noncommercial Non Derivate Works"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
-msgid "Creative Commons Attribution Noncommercial Share Alike"
-msgstr "Creative Commons Attribution Noncommercial Share Alike"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
-msgid "Default Sharing Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
-msgid "Public"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
-msgid "Private"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:18
-#: airtime_mvc/application/forms/DateRange.php:16
-msgid "Date Start:"
-msgstr "Data inizio:"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:37
-#: airtime_mvc/application/forms/ShowBuilder.php:65
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
-#: airtime_mvc/application/forms/DateRange.php:35
-#: airtime_mvc/application/forms/DateRange.php:63
-msgid "Invalid character entered"
-msgstr "Carattere inserito non valido"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:46
-#: airtime_mvc/application/forms/AddShowRepeats.php:56
-#: airtime_mvc/application/forms/DateRange.php:44
-msgid "Date End:"
-msgstr "Data fine:"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:72
-#: airtime_mvc/application/forms/ShowBuilder.php:88
-msgid "Filter by Show"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:80
-msgid "All My Shows:"
-msgstr "Tutti i miei show:"
-
-#: airtime_mvc/application/forms/EditAudioMD.php:145
-msgid "ISRC Number:"
-msgstr "Numero ISRC :"
-
-#: airtime_mvc/application/forms/EditAudioMD.php:176
-msgid "OK"
-msgstr "Ok"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
-msgid "Day must be specified"
-msgstr "Il giorno deve essere specificato"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
-msgid "Time must be specified"
-msgstr "L'ora dev'essere specificata"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
-msgid "Must wait at least 1 hour to rebroadcast"
-msgstr "Aspettare almeno un'ora prima di ritrasmettere"
-
-#: airtime_mvc/application/forms/AddShowWhat.php:30
-msgid "Untitled Show"
-msgstr "Show senza nome"
-
-#: airtime_mvc/application/forms/AddShowWhat.php:69
-msgid "Instance Description:"
-msgstr ""
-
-#: airtime_mvc/application/forms/DangerousPreferences.php:12
-msgid "Delete All Tracks in Library"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:39
-#: airtime_mvc/application/forms/SupportSettings.php:31
-msgid "Phone:"
-msgstr "Telefono:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:62
-#: airtime_mvc/application/forms/SupportSettings.php:54
-msgid "Station Web Site:"
-msgstr "Stazione sito web:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:73
-#: airtime_mvc/application/forms/BillingClient.php:102
-#: airtime_mvc/application/forms/SupportSettings.php:65
-msgid "Country:"
-msgstr "Paese:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:84
-#: airtime_mvc/application/forms/BillingClient.php:70
-#: airtime_mvc/application/forms/SupportSettings.php:76
-msgid "City:"
-msgstr "Città :"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:96
-#: airtime_mvc/application/forms/SupportSettings.php:88
-msgid "Station Description:"
-msgstr "Descrizione stazione:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:116
-#: airtime_mvc/application/forms/SupportSettings.php:98
-#: airtime_mvc/application/controllers/LocaleController.php:341
-msgid "Send support feedback"
-msgstr "Invia supporto feedback:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:126
-#: airtime_mvc/application/forms/SupportSettings.php:108
-#, php-format
-msgid "Promote my station on %s"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:151
-#: airtime_mvc/application/forms/SupportSettings.php:120
-#, php-format
-msgid "By checking this box, I agree to %s's %sprivacy policy%s."
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:169
-#: airtime_mvc/application/forms/SupportSettings.php:143
-msgid "You have to agree to privacy policy."
-msgstr "Autorizzo il trattamento dei miei dati personali."
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:10
-msgid "Link:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:16
-msgid "Repeat Type:"
-msgstr "Ripeti tipo:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:19
-msgid "weekly"
-msgstr "settimanalmente"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:20
-msgid "every 2 weeks"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:21
-msgid "every 3 weeks"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:22
-msgid "every 4 weeks"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:23
-msgid "monthly"
-msgstr "mensilmente"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:32
-msgid "Select Days:"
-msgstr "Seleziona giorni:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:35
-#: airtime_mvc/application/controllers/LocaleController.php:256
-msgid "Sun"
-msgstr "Dom"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:36
-#: airtime_mvc/application/controllers/LocaleController.php:257
-msgid "Mon"
-msgstr "Lun"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:37
-#: airtime_mvc/application/controllers/LocaleController.php:258
-msgid "Tue"
-msgstr "Mar"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:38
-#: airtime_mvc/application/controllers/LocaleController.php:259
-msgid "Wed"
-msgstr "Mer"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:39
-#: airtime_mvc/application/controllers/LocaleController.php:260
-msgid "Thu"
-msgstr "Gio"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:40
-#: airtime_mvc/application/controllers/LocaleController.php:261
-msgid "Fri"
-msgstr "Ven"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:41
-#: airtime_mvc/application/controllers/LocaleController.php:262
-msgid "Sat"
-msgstr "Sab"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:47
-msgid "Repeat By:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the month"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the week"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:69
-msgid "No End?"
-msgstr "Ripeti all'infinito?"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:106
-msgid "End date must be after start date"
-msgstr "La data di fine deve essere posteriore a quella di inizio"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:113
-msgid "Please select a repeat day"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:10
-#, php-format
-msgid "Use %s Authentication:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:16
-msgid "Use Custom Authentication:"
-msgstr "Usa autenticazione clienti:"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:25
-msgid "Custom Username"
-msgstr "Personalizza nome utente "
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:37
-msgid "Custom Password"
-msgstr "Personalizza Password"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:77
-msgid "Username field cannot be empty."
-msgstr "Il campo nome utente non può rimanere vuoto."
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:82
-msgid "Password field cannot be empty."
-msgstr "Il campo della password non può rimanere vuoto."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
-msgid "Enabled:"
-msgstr "Attiva:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
-msgid "Mobile:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
-msgid "Stream Type:"
-msgstr "Tipo di stream:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
-msgid "Service Type:"
-msgstr "Tipo di servizio:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
-msgid "Channels:"
-msgstr "Canali:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "1 - Mono"
-msgstr "1 - Mono"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "2 - Stereo"
-msgstr "2 - Stereo"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
-msgid "Server"
-msgstr "Server"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
-msgid "Port"
-msgstr "Port"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
-msgid "Only numbers are allowed."
-msgstr "Solo numeri."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
-msgid "URL"
-msgstr "URL"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
-msgid "Mount Point"
-msgstr "Mount Point"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
-msgid "Admin User"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
-msgid "Admin Password"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
-#: airtime_mvc/application/controllers/LocaleController.php:173
-msgid "Getting information from the server..."
-msgstr "Ottenere informazioni dal server..."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
-msgid "Server cannot be empty."
-msgstr "Il server non è libero."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
-msgid "Port cannot be empty."
-msgstr "Il port non può essere libero."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
-msgid "Mount cannot be empty with Icecast server."
-msgstr "Mount non può essere vuoto con il server Icecast."
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
-msgid "'%value%' is no valid email address in the basic format local-part@hostname"
-msgstr "'%value%' non è valido l'indirizzo e-mail nella forma base local-part@hostname"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
-msgid "'%value%' does not fit the date format '%format%'"
-msgstr "'%value%' non va bene con il formato data '%formato%'"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
-msgid "'%value%' is less than %min% characters long"
-msgstr "'%value%' è più corto di %min% caratteri"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
-msgid "'%value%' is more than %max% characters long"
-msgstr "'%value%' è più lungo di %max% caratteri"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
-msgid "'%value%' is not between '%min%' and '%max%', inclusively"
-msgstr "'%value%' non è tra '%min%' e '%max%' compresi"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
-msgid "Passwords do not match"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
-msgid "hours"
-msgstr "ore"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
-msgid "minutes"
-msgstr "minuti"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
-msgid "Randomly"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
-msgid "Newest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
-msgid "Oldest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
-msgid "Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
-msgid "Static"
-msgstr "Statico"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
-msgid "Dynamic"
-msgstr "Dinamico"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
-msgid "Allow Repeated Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
-msgid "Sort Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
-msgid "Limit to:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
-msgid "Generate playlist content and save criteria"
-msgstr "Genera contenuto playlist e salva criteri"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
-msgid "Generate"
+#: airtime_mvc/application/services/HistoryService.php:1121
+#: airtime_mvc/application/controllers/LocaleController.php:85
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
+#: airtime_mvc/application/models/Block.php:1362
+msgid "Genre"
msgstr "Genere"
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
-msgid "Shuffle playlist content"
-msgstr "Eseguzione casuale playlist"
+#: airtime_mvc/application/services/HistoryService.php:1122
+#: airtime_mvc/application/controllers/LocaleController.php:93
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
+#: airtime_mvc/application/models/Block.php:1371
+msgid "Mood"
+msgstr "Genere (Mood)"
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
-msgid "Limit cannot be empty or smaller than 0"
-msgstr "Il margine non può essere vuoto o più piccolo di 0"
+#: airtime_mvc/application/services/HistoryService.php:1123
+#: airtime_mvc/application/controllers/LocaleController.php:87
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
+#: airtime_mvc/application/models/Block.php:1364
+msgid "Label"
+msgstr "Etichetta"
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
-msgid "Limit cannot be more than 24 hrs"
-msgstr "Il margine non può superare le 24ore"
+#: airtime_mvc/application/services/HistoryService.php:1124
+#: airtime_mvc/application/services/HistoryService.php:1178
+#: airtime_mvc/application/controllers/LocaleController.php:81
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
+#: airtime_mvc/application/models/Block.php:1355
+msgid "Composer"
+msgstr "Compositore"
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
-msgid "The value should be an integer"
-msgstr "Il valore deve essere un numero intero"
+#: airtime_mvc/application/services/HistoryService.php:1125
+#: airtime_mvc/application/controllers/LocaleController.php:86
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
+#: airtime_mvc/application/models/Block.php:1363
+msgid "ISRC"
+msgstr "ISRC"
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
-msgid "500 is the max item limit value you can set"
-msgstr "500 è il limite massimo di elementi che può inserire"
+#: airtime_mvc/application/services/HistoryService.php:1126
+#: airtime_mvc/application/services/HistoryService.php:1179
+#: airtime_mvc/application/controllers/LocaleController.php:83
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
+#: airtime_mvc/application/models/Block.php:1357
+msgid "Copyright"
+msgstr "Copyright"
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
-msgid "You must select Criteria and Modifier"
-msgstr "Devi selezionare da Criteri e Modifica"
+#: airtime_mvc/application/services/HistoryService.php:1127
+#: airtime_mvc/application/controllers/LocaleController.php:100
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
+#: airtime_mvc/application/models/Block.php:1379
+msgid "Year"
+msgstr "Anno"
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
-msgid "'Length' should be in '00:00:00' format"
-msgstr "La lunghezza deve essere nel formato '00:00:00'"
+#: airtime_mvc/application/services/HistoryService.php:1128
+msgid "Track"
+msgstr ""
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
-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/services/HistoryService.php:1129
+#: airtime_mvc/application/controllers/LocaleController.php:82
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
+#: airtime_mvc/application/models/Block.php:1356
+msgid "Conductor"
+msgstr "Conduttore"
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:594
-msgid "The value has to be numeric"
-msgstr "Il valore deve essere numerico"
+#: airtime_mvc/application/services/HistoryService.php:1130
+#: airtime_mvc/application/controllers/LocaleController.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
+#: airtime_mvc/application/models/Block.php:1365
+msgid "Language"
+msgstr "Lingua"
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
-msgid "The value should be less then 2147483648"
-msgstr "Il valore deve essere inferiore a 2147483648"
+#: airtime_mvc/application/services/HistoryService.php:1155
+#: airtime_mvc/application/forms/EditHistoryItem.php:32
+msgid "Start Time"
+msgstr ""
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
+#: airtime_mvc/application/services/HistoryService.php:1156
+#: airtime_mvc/application/forms/EditHistoryItem.php:44
+msgid "End Time"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1176
+msgid "Played"
+msgstr "Riprodotti"
+
+#: airtime_mvc/application/controllers/LibraryController.php:31
+#: airtime_mvc/application/controllers/PlaylistController.php:147
#, php-format
-msgid "The value should be less than %s characters"
-msgstr "Il valore deve essere inferiore a %s caratteri"
+msgid "%s not found"
+msgstr "%s non trovato"
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
-msgid "Value cannot be empty"
-msgstr "Il valore non deve essere vuoto"
+#: airtime_mvc/application/controllers/LibraryController.php:40
+#: airtime_mvc/application/controllers/PlaylistController.php:168
+msgid "Something went wrong."
+msgstr "Qualcosa è andato storto."
-#: airtime_mvc/application/forms/Login.php:102
-msgid "Type the characters you see in the picture below."
-msgstr "Digita le parole del riquadro."
+#: airtime_mvc/application/controllers/LibraryController.php:95
+#: airtime_mvc/application/controllers/ShowbuilderController.php:136
+msgid "Preview"
+msgstr "Anteprima"
-#: airtime_mvc/application/forms/StreamSetting.php:26
-msgid "Icecast Vorbis Metadata"
-msgstr "Icecast Vorbis Metadata"
+#: airtime_mvc/application/controllers/LibraryController.php:115
+#: airtime_mvc/application/controllers/LibraryController.php:177
+#: airtime_mvc/application/controllers/LibraryController.php:200
+msgid "Add to Playlist"
+msgstr "Aggiungi a playlist"
-#: airtime_mvc/application/forms/StreamSetting.php:36
-msgid "Stream Label:"
-msgstr "Etichetta Stream:"
+#: airtime_mvc/application/controllers/LibraryController.php:117
+msgid "Add to Smart Block"
+msgstr "Aggiungi al blocco intelligente"
-#: airtime_mvc/application/forms/StreamSetting.php:37
-msgid "Artist - Title"
-msgstr "Artista - Titolo"
+#: airtime_mvc/application/controllers/LibraryController.php:123
+#: airtime_mvc/application/controllers/LocaleController.php:66
+msgid "Edit Metadata"
+msgstr "Edita Metadata"
-#: airtime_mvc/application/forms/StreamSetting.php:38
-msgid "Show - Artist - Title"
-msgstr "Show - Artista - Titolo"
+#: airtime_mvc/application/controllers/LibraryController.php:131
+#: airtime_mvc/application/controllers/ScheduleController.php:712
+msgid "Download"
+msgstr "Scarica"
-#: airtime_mvc/application/forms/StreamSetting.php:39
-msgid "Station name - Show name"
-msgstr "Nome stazione - Nome show"
-
-#: airtime_mvc/application/forms/StreamSetting.php:45
-msgid "Off Air Metadata"
+#: airtime_mvc/application/controllers/LibraryController.php:147
+msgid "View track"
msgstr ""
-#: airtime_mvc/application/forms/StreamSetting.php:51
-msgid "Enable Replay Gain"
+#: airtime_mvc/application/controllers/LibraryController.php:148
+msgid "Remove track"
msgstr ""
-#: airtime_mvc/application/forms/StreamSetting.php:57
-msgid "Replay Gain Modifier"
+#: airtime_mvc/application/controllers/LibraryController.php:154
+#: airtime_mvc/application/controllers/LibraryController.php:159
+msgid "Upload track"
msgstr ""
-#: airtime_mvc/application/forms/StreamSetting.php:65
-msgid "Streaming Server:"
+#: airtime_mvc/application/controllers/LibraryController.php:169
+msgid "Duplicate Playlist"
msgstr ""
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Airtime Pro Streaming"
+#: airtime_mvc/application/controllers/LibraryController.php:213
+msgid "No action available"
+msgstr "Nessuna azione disponibile"
+
+#: airtime_mvc/application/controllers/LibraryController.php:233
+msgid "You don't have permission to delete selected items."
+msgstr "Non ha il permesso per cancellare gli elementi selezionati."
+
+#: airtime_mvc/application/controllers/LibraryController.php:279
+msgid "Could not delete file because it is scheduled in the future."
msgstr ""
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Custom / 3rd Party Streaming"
+#: airtime_mvc/application/controllers/LibraryController.php:282
+msgid "Could not delete file(s)."
msgstr ""
-#: airtime_mvc/application/forms/AddUser.php:95
-msgid "User Type:"
-msgstr "tipo di utente:"
-
-#: airtime_mvc/application/forms/AddUser.php:99
-#: airtime_mvc/application/controllers/LocaleController.php:324
-msgid "Guest"
-msgstr "Ospite"
-
-#: airtime_mvc/application/forms/AddUser.php:100
-#: airtime_mvc/application/controllers/LocaleController.php:322
-msgid "DJ"
-msgstr "DJ"
-
-#: airtime_mvc/application/forms/AddUser.php:101
-#: airtime_mvc/application/controllers/LocaleController.php:323
-msgid "Program Manager"
-msgstr "Programma direttore"
-
-#: airtime_mvc/application/forms/AddUser.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:321
-msgid "Admin"
-msgstr "Amministratore "
-
-#: airtime_mvc/application/forms/BillingClient.php:17
-msgid "First Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:26
-msgid "Last Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:35
-msgid "Company Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:44
-msgid "Email Address:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:54
-msgid "Address 1:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:63
-msgid "Address 2:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:80
-msgid "State/Region:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:89
-msgid "Zip Code / Postal Code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:112
-msgid "Phone Number:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:121
-msgid "Please choose a security question:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:126
-msgid "What is the name of your favorite childhood friend?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:127
-msgid "What school did you attend for sixth grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:128
-msgid "In what city did you meet your spouse/significant other?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:129
-msgid "What street did you live on in third grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:130
-msgid "What is the first name of the boy or girl that you first kissed?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:131
-msgid "In what city or town was your first job?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:135
-msgid "Please enter an answer:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:152
-msgid "VAT/Tax ID (EU only)"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:162
-msgid "Subscribe to Sourcefabric newsletter"
-msgstr ""
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
-msgid "Import Folder:"
-msgstr "Importa Folder:"
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
-msgid "Watched Folders:"
-msgstr "Folder visionati:"
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
-msgid "Not a valid Directory"
-msgstr "Catalogo non valido"
-
-#: airtime_mvc/application/forms/PasswordRestore.php:14
-msgid "Email"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordRestore.php:36
-msgid "Reset password"
-msgstr "Reimposta password"
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
-msgid "Plan type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
-msgid "Billing cycle:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
-msgid "Payment method:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
-msgid "PayPal"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
-msgid "Credit Card via 2Checkout"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:213
+#: airtime_mvc/application/controllers/LibraryController.php:322
#, php-format
-msgid "The year %s must be within the range of 1753 - 9999"
-msgstr "L'anno %s deve essere compreso nella serie 1753 - 9999"
-
-#: airtime_mvc/application/common/DateHelper.php:216
-#, php-format
-msgid "%s-%s-%s is not a valid date"
-msgstr "%s-%s-%s non è una data valida"
-
-#: airtime_mvc/application/common/DateHelper.php:240
-#, php-format
-msgid "%s:%s:%s is not a valid time"
-msgstr "%s:%s:%s non è un ora valida"
-
-#: airtime_mvc/application/common/UsabilityHints.php:55
-msgid "Upload some tracks below to add them to your library!"
+msgid "Copy of %s"
msgstr ""
-#: airtime_mvc/application/common/UsabilityHints.php:57
-#, php-format
-msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
-msgstr ""
+#: airtime_mvc/application/controllers/WebstreamController.php:28
+#: airtime_mvc/application/controllers/WebstreamController.php:32
+msgid "Untitled Webstream"
+msgstr "Webstream senza titolo"
-#: airtime_mvc/application/common/UsabilityHints.php:63
-msgid "Click the 'New Show' button and fill out the required fields."
-msgstr ""
+#: airtime_mvc/application/controllers/WebstreamController.php:150
+msgid "Webstream saved."
+msgstr "Webstream salvate."
-#: airtime_mvc/application/common/UsabilityHints.php:65
-#, php-format
-msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
-msgstr ""
+#: airtime_mvc/application/controllers/WebstreamController.php:158
+msgid "Invalid form values."
+msgstr "Valori non validi."
-#: airtime_mvc/application/common/UsabilityHints.php:73
-msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:75
-#, php-format
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
msgid ""
-"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
-" %sCreate an unlinked show now%s."
+"To configure and use the embeddable player you must:
\n"
+" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
+" 2. Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/common/UsabilityHints.php:80
-msgid "To start broadcasting, click on the current show and select 'Schedule Show'"
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
+msgid ""
+"To use the embeddable weekly schedule widget you must:
\n"
+" Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/common/UsabilityHints.php:82
+#: airtime_mvc/application/controllers/ListenerstatController.php:51
+msgid "Please make sure admin user/password is correct on System->Streams page."
+msgstr ""
+
+#: airtime_mvc/application/controllers/UserController.php:86
+msgid "User added successfully!"
+msgstr "User aggiunto con successo!"
+
+#: airtime_mvc/application/controllers/UserController.php:88
+msgid "User updated successfully!"
+msgstr "User aggiornato con successo!"
+
+#: airtime_mvc/application/controllers/UserController.php:187
+msgid "Settings updated successfully!"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PlaylistController.php:53
#, php-format
-msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
-msgstr ""
+msgid "You are viewing an older version of %s"
+msgstr "Sta visualizzando una versione precedente di %s"
-#: airtime_mvc/application/common/UsabilityHints.php:89
-msgid "Click on the show starting next and select 'Schedule Show'"
-msgstr ""
+#: airtime_mvc/application/controllers/PlaylistController.php:140
+msgid "You cannot add tracks to dynamic blocks."
+msgstr "Non può aggiungere tracce al blocco dinamico."
-#: airtime_mvc/application/common/UsabilityHints.php:91
+#: airtime_mvc/application/controllers/PlaylistController.php:161
#, php-format
-msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+msgid "You don't have permission to delete selected %s(s)."
+msgstr "Non ha i permessi per cancellare la selezione %s(s)."
+
+#: airtime_mvc/application/controllers/PlaylistController.php:174
+msgid "You can only add tracks to smart block."
+msgstr "Può solo aggiungere tracce al blocco intelligente."
+
+#: airtime_mvc/application/controllers/PlaylistController.php:180
+#: airtime_mvc/application/controllers/LocaleController.php:50
+msgid "You can only add tracks, smart blocks, and webstreams to playlists."
+msgstr "Puoi solo aggiungere tracce, blocchi intelligenti, e webstreams alle playlist."
+
+#: airtime_mvc/application/controllers/PlaylistController.php:192
+msgid "Untitled Playlist"
+msgstr "Playlist senza nome"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:194
+msgid "Untitled Smart Block"
+msgstr "Blocco intelligente senza nome"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:522
+msgid "Unknown Playlist"
+msgstr "Playlist sconosciuta"
+
+#: airtime_mvc/application/controllers/ErrorController.php:78
+msgid "Page not found."
msgstr ""
+#: airtime_mvc/application/controllers/ErrorController.php:87
+msgid "The requested action is not supported."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:98
+msgid "You do not have permission to access this resource."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:109
+msgid "An internal application error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/controllers/Apiv2Controller.php:77
+#: airtime_mvc/application/controllers/ApiController.php:79
+msgid "You are not allowed to access this resource."
+msgstr "Non è permesso l'accesso alla risorsa."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:72
+msgid "Preferences updated."
+msgstr "Preferenze aggiornate."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:115
+msgid "Support setting updated."
+msgstr "Aggiornamento impostazioni assistenza."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:123
+msgid "Support Feedback"
+msgstr "Support Feedback"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:251
+msgid "Stream Setting Updated."
+msgstr "Aggiornamento impostazioni Stream."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:342
+msgid "path should be specified"
+msgstr "il percorso deve essere specificato"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:437
+msgid "Problem with Liquidsoap..."
+msgstr "Problemi con Liquidsoap..."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:493
+msgid "Request method not accepted"
+msgstr ""
+
+#: airtime_mvc/application/controllers/DashboardController.php:35
+#: airtime_mvc/application/controllers/DashboardController.php:84
+msgid "You don't have permission to disconnect source."
+msgstr "Non è consentito disconnettersi dalla fonte."
+
+#: airtime_mvc/application/controllers/DashboardController.php:37
+#: airtime_mvc/application/controllers/DashboardController.php:86
+msgid "There is no source connected to this input."
+msgstr "Nessuna fonte connessa a questo ingresso."
+
+#: airtime_mvc/application/controllers/DashboardController.php:81
+msgid "You don't have permission to switch source."
+msgstr "Non ha il permesso per cambiare fonte."
+
+#: airtime_mvc/application/controllers/LoginController.php:43
+msgid "Please enter your username and password."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:93
+msgid "Wrong username or password provided. Please try again."
+msgstr "Nome utente o password forniti errati. Per favore riprovi."
+
+#: airtime_mvc/application/controllers/LoginController.php:167
+msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
+msgstr "L' e-mail non può essere inviata. Controlli le impostazioni della sua mail e si accerti che è stata configurata correttamente."
+
+#: airtime_mvc/application/controllers/LoginController.php:173
+msgid "There was a problem with the username or email address you entered."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ApiController.php:244
+#: airtime_mvc/application/controllers/ApiController.php:317
+#: airtime_mvc/application/controllers/ApiController.php:392
+#: airtime_mvc/application/controllers/ApiController.php:435
+#: airtime_mvc/application/controllers/ApiController.php:474
+#: airtime_mvc/application/controllers/ApiController.php:507
+msgid "You are not allowed to access this resource. "
+msgstr "Non è permesso l'accesso alla risorsa."
+
+#: airtime_mvc/application/controllers/ApiController.php:698
+#: airtime_mvc/application/controllers/ApiController.php:718
+#: airtime_mvc/application/controllers/ApiController.php:730
+#, php-format
+msgid "File does not exist in %s"
+msgstr ""
+
+#: airtime_mvc/application/controllers/ApiController.php:781
+msgid "Bad request. no 'mode' parameter passed."
+msgstr "Richiesta errata. 'modalità ' parametro non riuscito."
+
+#: airtime_mvc/application/controllers/ApiController.php:791
+msgid "Bad request. 'mode' parameter is invalid"
+msgstr "Richiesta errata. 'modalità ' parametro non valido"
+
#: airtime_mvc/application/controllers/LocaleController.php:30
#: airtime_mvc/application/layouts/scripts/audio-player.phtml:5
msgid "Audio Player"
@@ -2910,11 +561,6 @@ msgstr "Aggiunte %s voci"
msgid "You can only add tracks to smart blocks."
msgstr "Puoi solo aggiungere tracce ai blocchi intelligenti."
-#: airtime_mvc/application/controllers/LocaleController.php:50
-#: airtime_mvc/application/controllers/PlaylistController.php:180
-msgid "You can only add tracks, smart blocks, and webstreams to playlists."
-msgstr "Puoi solo aggiungere tracce, blocchi intelligenti, e webstreams alle playlist."
-
#: airtime_mvc/application/controllers/LocaleController.php:53
msgid "Please select a cursor position on timeline."
msgstr ""
@@ -2955,11 +601,6 @@ msgstr ""
msgid "Click 'New' to create one."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:66
-#: airtime_mvc/application/controllers/LibraryController.php:123
-msgid "Edit Metadata"
-msgstr "Edita Metadata"
-
#: airtime_mvc/application/controllers/LocaleController.php:67
msgid "Add to selected show"
msgstr "Aggiungi agli show selezionati"
@@ -2988,6 +629,12 @@ msgstr "E' sicuro di voler eliminare la/e voce/i selezionata/e?"
msgid "Scheduled"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:74
+#: airtime_mvc/application/layouts/scripts/layout.phtml:78
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
+msgid "Tracks"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:75
#: airtime_mvc/application/layouts/scripts/layout.phtml:60
msgid "Playlist"
@@ -2997,18 +644,96 @@ msgstr ""
msgid "Bit Rate"
msgstr "Velocità di trasmissione"
+#: airtime_mvc/application/controllers/LocaleController.php:80
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
+#: airtime_mvc/application/models/Block.php:1354
+msgid "BPM"
+msgstr "BPM"
+
+#: airtime_mvc/application/controllers/LocaleController.php:84
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
+#: airtime_mvc/application/models/Block.php:1361
+msgid "Encoded By"
+msgstr "Codificato da"
+
+#: airtime_mvc/application/controllers/LocaleController.php:89
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
+#: airtime_mvc/application/models/Block.php:1367
+msgid "Last Modified"
+msgstr "Ultima modifica"
+
+#: airtime_mvc/application/controllers/LocaleController.php:90
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
+#: airtime_mvc/application/models/Block.php:1368
+msgid "Last Played"
+msgstr "Ultima esecuzione"
+
+#: airtime_mvc/application/controllers/LocaleController.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
+#: airtime_mvc/application/models/Block.php:1370
+msgid "Mime"
+msgstr "Formato (Mime)"
+
+#: airtime_mvc/application/controllers/LocaleController.php:94
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
+#: airtime_mvc/application/models/Block.php:1372
+msgid "Owner"
+msgstr "Proprietario"
+
+#: airtime_mvc/application/controllers/LocaleController.php:95
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
+#: airtime_mvc/application/models/Block.php:1373
+msgid "Replay Gain"
+msgstr "Ripeti"
+
#: airtime_mvc/application/controllers/LocaleController.php:96
msgid "Sample Rate"
msgstr "Velocità campione"
+#: airtime_mvc/application/controllers/LocaleController.php:97
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
+#: airtime_mvc/application/models/Block.php:1376
+msgid "Track Number"
+msgstr "Numero traccia"
+
+#: airtime_mvc/application/controllers/LocaleController.php:98
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
+#: airtime_mvc/application/models/Block.php:1377
+msgid "Uploaded"
+msgstr "Caricato"
+
+#: airtime_mvc/application/controllers/LocaleController.php:99
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
+#: airtime_mvc/application/models/Block.php:1378
+msgid "Website"
+msgstr "Sito web"
+
#: airtime_mvc/application/controllers/LocaleController.php:101
msgid "Loading..."
msgstr "Caricamento..."
+#: airtime_mvc/application/controllers/LocaleController.php:102
+#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
+msgid "All"
+msgstr "Tutto"
+
#: airtime_mvc/application/controllers/LocaleController.php:103
msgid "Files"
msgstr "File"
+#: airtime_mvc/application/controllers/LocaleController.php:104
+#: airtime_mvc/application/layouts/scripts/layout.phtml:80
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
+msgid "Playlists"
+msgstr "Playlist"
+
+#: airtime_mvc/application/controllers/LocaleController.php:105
+#: airtime_mvc/application/layouts/scripts/layout.phtml:82
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
+msgid "Smart Blocks"
+msgstr "Blocchi intelligenti"
+
#: airtime_mvc/application/controllers/LocaleController.php:106
msgid "Web Streams"
msgstr "Web Streams"
@@ -3153,6 +878,74 @@ msgstr "Blocco intelligente salvato"
msgid "Processing..."
msgstr "Elaborazione in corso..."
+#: airtime_mvc/application/controllers/LocaleController.php:151
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
+#: airtime_mvc/application/models/Block.php:1383
+msgid "Select modifier"
+msgstr "Seleziona modificatore"
+
+#: airtime_mvc/application/controllers/LocaleController.php:152
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
+#: airtime_mvc/application/models/Block.php:1384
+msgid "contains"
+msgstr "contiene"
+
+#: airtime_mvc/application/controllers/LocaleController.php:153
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
+#: airtime_mvc/application/models/Block.php:1385
+msgid "does not contain"
+msgstr "non contiene"
+
+#: airtime_mvc/application/controllers/LocaleController.php:154
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
+#: airtime_mvc/application/models/Block.php:1386
+#: airtime_mvc/application/models/Block.php:1390
+msgid "is"
+msgstr "è "
+
+#: airtime_mvc/application/controllers/LocaleController.php:155
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
+#: airtime_mvc/application/models/Block.php:1387
+#: airtime_mvc/application/models/Block.php:1391
+msgid "is not"
+msgstr "non è"
+
+#: airtime_mvc/application/controllers/LocaleController.php:156
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
+#: airtime_mvc/application/models/Block.php:1388
+msgid "starts with"
+msgstr "inizia con"
+
+#: airtime_mvc/application/controllers/LocaleController.php:157
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
+#: airtime_mvc/application/models/Block.php:1389
+msgid "ends with"
+msgstr "finisce con"
+
+#: airtime_mvc/application/controllers/LocaleController.php:158
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
+#: airtime_mvc/application/models/Block.php:1392
+msgid "is greater than"
+msgstr "è più di"
+
+#: airtime_mvc/application/controllers/LocaleController.php:159
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
+#: airtime_mvc/application/models/Block.php:1393
+msgid "is less than"
+msgstr "è meno di"
+
+#: airtime_mvc/application/controllers/LocaleController.php:160
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
+#: airtime_mvc/application/models/Block.php:1394
+msgid "is in the range"
+msgstr "nella seguenza"
+
#: airtime_mvc/application/controllers/LocaleController.php:162
msgid "Choose Storage Folder"
msgstr "Scelga l'archivio delle cartelle"
@@ -3169,6 +962,11 @@ msgstr ""
"E' sicuro di voler cambiare l'archivio delle cartelle?\n"
" Questo rimuoverà i file dal suo archivio Airtime!"
+#: airtime_mvc/application/controllers/LocaleController.php:166
+#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
+msgid "Manage Media Folders"
+msgstr "Gestisci cartelle media"
+
#: airtime_mvc/application/controllers/LocaleController.php:167
msgid "Are you sure you want to remove the watched folder?"
msgstr "E' sicuro di voler rimuovere le cartelle guardate?"
@@ -3190,6 +988,11 @@ msgstr "Connesso al server di streaming."
msgid "The stream is disabled"
msgstr "Stream disattivato"
+#: airtime_mvc/application/controllers/LocaleController.php:173
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
+msgid "Getting information from the server..."
+msgstr "Ottenere informazioni dal server..."
+
#: airtime_mvc/application/controllers/LocaleController.php:174
msgid "Can not connect to the streaming server"
msgstr "Non può connettersi al server di streaming"
@@ -3417,6 +1220,76 @@ msgstr ""
msgid "Month"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:249
+#: airtime_mvc/application/forms/GeneralPreferences.php:158
+msgid "Sunday"
+msgstr "Domenica"
+
+#: airtime_mvc/application/controllers/LocaleController.php:250
+#: airtime_mvc/application/forms/GeneralPreferences.php:159
+msgid "Monday"
+msgstr "Lunedì"
+
+#: airtime_mvc/application/controllers/LocaleController.php:251
+#: airtime_mvc/application/forms/GeneralPreferences.php:160
+msgid "Tuesday"
+msgstr "Martedì"
+
+#: airtime_mvc/application/controllers/LocaleController.php:252
+#: airtime_mvc/application/forms/GeneralPreferences.php:161
+msgid "Wednesday"
+msgstr "Mercoledì"
+
+#: airtime_mvc/application/controllers/LocaleController.php:253
+#: airtime_mvc/application/forms/GeneralPreferences.php:162
+msgid "Thursday"
+msgstr "Giovedì"
+
+#: airtime_mvc/application/controllers/LocaleController.php:254
+#: airtime_mvc/application/forms/GeneralPreferences.php:163
+msgid "Friday"
+msgstr "Venerdì"
+
+#: airtime_mvc/application/controllers/LocaleController.php:255
+#: airtime_mvc/application/forms/GeneralPreferences.php:164
+msgid "Saturday"
+msgstr "Sabato"
+
+#: airtime_mvc/application/controllers/LocaleController.php:256
+#: airtime_mvc/application/forms/AddShowRepeats.php:35
+msgid "Sun"
+msgstr "Dom"
+
+#: airtime_mvc/application/controllers/LocaleController.php:257
+#: airtime_mvc/application/forms/AddShowRepeats.php:36
+msgid "Mon"
+msgstr "Lun"
+
+#: airtime_mvc/application/controllers/LocaleController.php:258
+#: airtime_mvc/application/forms/AddShowRepeats.php:37
+msgid "Tue"
+msgstr "Mar"
+
+#: airtime_mvc/application/controllers/LocaleController.php:259
+#: airtime_mvc/application/forms/AddShowRepeats.php:38
+msgid "Wed"
+msgstr "Mer"
+
+#: airtime_mvc/application/controllers/LocaleController.php:260
+#: airtime_mvc/application/forms/AddShowRepeats.php:39
+msgid "Thu"
+msgstr "Gio"
+
+#: airtime_mvc/application/controllers/LocaleController.php:261
+#: airtime_mvc/application/forms/AddShowRepeats.php:40
+msgid "Fri"
+msgstr "Ven"
+
+#: airtime_mvc/application/controllers/LocaleController.php:262
+#: airtime_mvc/application/forms/AddShowRepeats.php:41
+msgid "Sat"
+msgstr "Sab"
+
#: airtime_mvc/application/controllers/LocaleController.php:263
msgid "Shows longer than their scheduled time will be cut off by a following show."
msgstr "Gli show più lunghi del tempo programmato saranno tagliati dallo show successivo."
@@ -3426,7 +1299,7 @@ msgid "Cancel Current Show?"
msgstr "Cancellare lo show attuale?"
#: airtime_mvc/application/controllers/LocaleController.php:265
-#: airtime_mvc/application/controllers/LocaleController.php:309
+#: airtime_mvc/application/controllers/LocaleController.php:312
msgid "Stop recording current show?"
msgstr "Fermare registrazione dello show attuale?"
@@ -3446,6 +1319,11 @@ msgstr "Rimuovere tutto il contenuto?"
msgid "Delete selected item(s)?"
msgstr "Cancellare la/e voce/i selezionata/e?"
+#: airtime_mvc/application/controllers/LocaleController.php:273
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
+msgid "Start"
+msgstr "Start"
+
#: airtime_mvc/application/controllers/LocaleController.php:274
msgid "End"
msgstr "Fine"
@@ -3454,580 +1332,467 @@ msgstr "Fine"
msgid "Duration"
msgstr "Durata"
-#: airtime_mvc/application/controllers/LocaleController.php:283
+#: airtime_mvc/application/controllers/LocaleController.php:276
+msgid "Filtering out "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:277
+msgid " of "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:278
+msgid " records"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/layouts/scripts/layout.phtml:140
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
+#: airtime_mvc/application/models/Block.php:1358
+msgid "Cue In"
+msgstr "Cue In"
+
+#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/layouts/scripts/layout.phtml:147
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
+#: airtime_mvc/application/models/Block.php:1359
+msgid "Cue Out"
+msgstr "Cue Out"
+
+#: airtime_mvc/application/controllers/LocaleController.php:286
#: airtime_mvc/application/layouts/scripts/layout.phtml:167
msgid "Fade In"
msgstr "Dissolvenza in entrata"
-#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/controllers/LocaleController.php:287
#: airtime_mvc/application/layouts/scripts/layout.phtml:168
msgid "Fade Out"
msgstr "Dissolvenza in uscita"
-#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/controllers/LocaleController.php:288
msgid "Show Empty"
msgstr "Show vuoto"
-#: airtime_mvc/application/controllers/LocaleController.php:286
+#: airtime_mvc/application/controllers/LocaleController.php:289
msgid "Recording From Line In"
msgstr "Registrando da Line In"
-#: airtime_mvc/application/controllers/LocaleController.php:287
+#: airtime_mvc/application/controllers/LocaleController.php:290
msgid "Track preview"
msgstr "Anteprima traccia"
-#: airtime_mvc/application/controllers/LocaleController.php:291
+#: airtime_mvc/application/controllers/LocaleController.php:294
msgid "Cannot schedule outside a show."
msgstr "Non può programmare fuori show."
-#: airtime_mvc/application/controllers/LocaleController.php:292
+#: airtime_mvc/application/controllers/LocaleController.php:295
msgid "Moving 1 Item"
msgstr "Spostamento di un elemento in corso"
-#: airtime_mvc/application/controllers/LocaleController.php:293
+#: airtime_mvc/application/controllers/LocaleController.php:296
#, php-format
msgid "Moving %s Items"
msgstr "Spostamento degli elementi %s in corso"
-#: airtime_mvc/application/controllers/LocaleController.php:296
+#: airtime_mvc/application/controllers/LocaleController.php:297
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
+#: airtime_mvc/application/forms/Preferences.php:40
+#: airtime_mvc/application/forms/EditHistory.php:131
+#: airtime_mvc/application/forms/AddUser.php:110
+#: airtime_mvc/application/forms/PasswordChange.php:43
+#: airtime_mvc/application/forms/SupportSettings.php:131
+msgid "Save"
+msgstr "Salva"
+
+#: airtime_mvc/application/controllers/LocaleController.php:298
+#: airtime_mvc/application/controllers/LocaleController.php:321
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
+#: airtime_mvc/application/forms/EditHistory.php:141
+#: airtime_mvc/application/forms/EditAudioMD.php:186
+msgid "Cancel"
+msgstr "Cancella"
+
+#: airtime_mvc/application/controllers/LocaleController.php:299
msgid "Fade Editor"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:297
+#: airtime_mvc/application/controllers/LocaleController.php:300
msgid "Cue Editor"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:298
+#: airtime_mvc/application/controllers/LocaleController.php:301
msgid "Waveform features are available in a browser supporting the Web Audio API"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:301
+#: airtime_mvc/application/controllers/LocaleController.php:304
msgid "Select all"
msgstr "Seleziona tutto"
-#: airtime_mvc/application/controllers/LocaleController.php:302
+#: airtime_mvc/application/controllers/LocaleController.php:305
msgid "Select none"
msgstr "Nessuna selezione"
-#: airtime_mvc/application/controllers/LocaleController.php:303
+#: airtime_mvc/application/controllers/LocaleController.php:306
msgid "Trim overbooked shows"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:304
+#: airtime_mvc/application/controllers/LocaleController.php:307
msgid "Remove selected scheduled items"
msgstr "Rimuovi la voce selezionata"
-#: airtime_mvc/application/controllers/LocaleController.php:305
+#: airtime_mvc/application/controllers/LocaleController.php:308
msgid "Jump to the current playing track"
msgstr "Salta alla traccia dell'attuale playlist"
-#: airtime_mvc/application/controllers/LocaleController.php:306
+#: airtime_mvc/application/controllers/LocaleController.php:309
msgid "Cancel current show"
msgstr "Cancella show attuale"
-#: airtime_mvc/application/controllers/LocaleController.php:311
+#: airtime_mvc/application/controllers/LocaleController.php:314
msgid "Open library to add or remove content"
msgstr "Apri biblioteca per aggiungere o rimuovere contenuto"
-#: airtime_mvc/application/controllers/LocaleController.php:312
+#: airtime_mvc/application/controllers/LocaleController.php:315
msgid "Add / Remove Content"
msgstr "Aggiungi/Rimuovi contenuto"
#: airtime_mvc/application/controllers/LocaleController.php:317
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
+msgid "in use"
+msgstr "in uso"
+
+#: airtime_mvc/application/controllers/LocaleController.php:318
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
+msgid "Disk"
+msgstr "Disco"
+
+#: airtime_mvc/application/controllers/LocaleController.php:320
msgid "Look in"
msgstr "Cerca in"
-#: airtime_mvc/application/controllers/LocaleController.php:319
+#: airtime_mvc/application/controllers/LocaleController.php:322
msgid "Open"
msgstr "Apri"
+#: airtime_mvc/application/controllers/LocaleController.php:324
+#: airtime_mvc/application/forms/AddUser.php:102
+msgid "Admin"
+msgstr "Amministratore "
+
#: airtime_mvc/application/controllers/LocaleController.php:325
+#: airtime_mvc/application/forms/AddUser.php:100
+msgid "DJ"
+msgstr "DJ"
+
+#: airtime_mvc/application/controllers/LocaleController.php:326
+#: airtime_mvc/application/forms/AddUser.php:101
+msgid "Program Manager"
+msgstr "Programma direttore"
+
+#: airtime_mvc/application/controllers/LocaleController.php:327
+#: airtime_mvc/application/forms/AddUser.php:99
+msgid "Guest"
+msgstr "Ospite"
+
+#: airtime_mvc/application/controllers/LocaleController.php:328
msgid "Guests can do the following:"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:326
+#: airtime_mvc/application/controllers/LocaleController.php:329
msgid "View schedule"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:327
+#: airtime_mvc/application/controllers/LocaleController.php:330
msgid "View show content"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:328
+#: airtime_mvc/application/controllers/LocaleController.php:331
msgid "DJs can do the following:"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:329
+#: airtime_mvc/application/controllers/LocaleController.php:332
msgid "Manage assigned show content"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:330
+#: airtime_mvc/application/controllers/LocaleController.php:333
msgid "Import media files"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:331
+#: airtime_mvc/application/controllers/LocaleController.php:334
msgid "Create playlists, smart blocks, and webstreams"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:332
+#: airtime_mvc/application/controllers/LocaleController.php:335
msgid "Manage their own library content"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:333
+#: airtime_mvc/application/controllers/LocaleController.php:336
msgid "Progam Managers can do the following:"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:334
+#: airtime_mvc/application/controllers/LocaleController.php:337
msgid "View and manage show content"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:335
+#: airtime_mvc/application/controllers/LocaleController.php:338
msgid "Schedule shows"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:336
+#: airtime_mvc/application/controllers/LocaleController.php:339
msgid "Manage all library content"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:337
+#: airtime_mvc/application/controllers/LocaleController.php:340
msgid "Admins can do the following:"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:338
+#: airtime_mvc/application/controllers/LocaleController.php:341
msgid "Manage preferences"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:339
+#: airtime_mvc/application/controllers/LocaleController.php:342
msgid "Manage users"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:340
+#: airtime_mvc/application/controllers/LocaleController.php:343
msgid "Manage watched folders"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:342
+#: airtime_mvc/application/controllers/LocaleController.php:344
+#: airtime_mvc/application/forms/RegisterAirtime.php:116
+#: airtime_mvc/application/forms/SupportSettings.php:98
+msgid "Send support feedback"
+msgstr "Invia supporto feedback:"
+
+#: airtime_mvc/application/controllers/LocaleController.php:345
msgid "View system status"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:343
+#: airtime_mvc/application/controllers/LocaleController.php:346
msgid "Access playout history"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:344
+#: airtime_mvc/application/controllers/LocaleController.php:347
msgid "View listener stats"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:346
+#: airtime_mvc/application/controllers/LocaleController.php:349
msgid "Show / hide columns"
msgstr "Mostra/nascondi colonne"
-#: airtime_mvc/application/controllers/LocaleController.php:348
+#: airtime_mvc/application/controllers/LocaleController.php:351
msgid "From {from} to {to}"
msgstr "Da {da} a {a}"
-#: airtime_mvc/application/controllers/LocaleController.php:349
+#: airtime_mvc/application/controllers/LocaleController.php:352
msgid "kbps"
msgstr "kbps"
-#: airtime_mvc/application/controllers/LocaleController.php:350
+#: airtime_mvc/application/controllers/LocaleController.php:353
msgid "yyyy-mm-dd"
msgstr "yyyy-mm-dd"
-#: airtime_mvc/application/controllers/LocaleController.php:351
+#: airtime_mvc/application/controllers/LocaleController.php:354
msgid "hh:mm:ss.t"
msgstr "hh:mm:ss.t"
-#: airtime_mvc/application/controllers/LocaleController.php:352
+#: airtime_mvc/application/controllers/LocaleController.php:355
msgid "kHz"
msgstr "kHz"
-#: airtime_mvc/application/controllers/LocaleController.php:355
+#: airtime_mvc/application/controllers/LocaleController.php:358
msgid "Su"
msgstr "Dom"
-#: airtime_mvc/application/controllers/LocaleController.php:356
+#: airtime_mvc/application/controllers/LocaleController.php:359
msgid "Mo"
msgstr "Lun"
-#: airtime_mvc/application/controllers/LocaleController.php:357
+#: airtime_mvc/application/controllers/LocaleController.php:360
msgid "Tu"
msgstr "Mar"
-#: airtime_mvc/application/controllers/LocaleController.php:358
+#: airtime_mvc/application/controllers/LocaleController.php:361
msgid "We"
msgstr "Mer"
-#: airtime_mvc/application/controllers/LocaleController.php:359
+#: airtime_mvc/application/controllers/LocaleController.php:362
msgid "Th"
msgstr "Gio"
-#: airtime_mvc/application/controllers/LocaleController.php:360
+#: airtime_mvc/application/controllers/LocaleController.php:363
msgid "Fr"
msgstr "Ven"
-#: airtime_mvc/application/controllers/LocaleController.php:361
+#: airtime_mvc/application/controllers/LocaleController.php:364
msgid "Sa"
msgstr "Sab"
-#: airtime_mvc/application/controllers/LocaleController.php:364
+#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
+msgid "Close"
+msgstr "Chiudi"
+
+#: airtime_mvc/application/controllers/LocaleController.php:367
msgid "Hour"
msgstr "Ore"
-#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:368
msgid "Minute"
msgstr "Minuti"
-#: airtime_mvc/application/controllers/LocaleController.php:366
+#: airtime_mvc/application/controllers/LocaleController.php:369
msgid "Done"
msgstr "Completato"
-#: airtime_mvc/application/controllers/LocaleController.php:369
+#: airtime_mvc/application/controllers/LocaleController.php:372
msgid "Select files"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:370
-#: airtime_mvc/application/controllers/LocaleController.php:371
+#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:374
msgid "Add files to the upload queue and click the start button."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:372
-#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:376
msgid "Status"
msgstr "Stato"
-#: airtime_mvc/application/controllers/LocaleController.php:374
+#: airtime_mvc/application/controllers/LocaleController.php:377
msgid "Add Files"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:378
msgid "Stop Upload"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:376
+#: airtime_mvc/application/controllers/LocaleController.php:379
msgid "Start upload"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:377
+#: airtime_mvc/application/controllers/LocaleController.php:380
msgid "Add files"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:378
+#: airtime_mvc/application/controllers/LocaleController.php:381
#, php-format
msgid "Uploaded %d/%d files"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:379
+#: airtime_mvc/application/controllers/LocaleController.php:382
msgid "N/A"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:380
+#: airtime_mvc/application/controllers/LocaleController.php:383
msgid "Drag files here."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:381
+#: airtime_mvc/application/controllers/LocaleController.php:384
msgid "File extension error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:382
+#: airtime_mvc/application/controllers/LocaleController.php:385
msgid "File size error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:383
+#: airtime_mvc/application/controllers/LocaleController.php:386
msgid "File count error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:384
+#: airtime_mvc/application/controllers/LocaleController.php:387
msgid "Init error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:385
+#: airtime_mvc/application/controllers/LocaleController.php:388
msgid "HTTP Error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:386
+#: airtime_mvc/application/controllers/LocaleController.php:389
msgid "Security error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:387
+#: airtime_mvc/application/controllers/LocaleController.php:390
msgid "Generic error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:388
+#: airtime_mvc/application/controllers/LocaleController.php:391
msgid "IO error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:389
+#: airtime_mvc/application/controllers/LocaleController.php:392
#, php-format
msgid "File: %s"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:391
+#: airtime_mvc/application/controllers/LocaleController.php:394
#, php-format
msgid "%d files queued"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:392
+#: airtime_mvc/application/controllers/LocaleController.php:395
msgid "File: %f, size: %s, max file size: %m"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/controllers/LocaleController.php:396
msgid "Upload URL might be wrong or doesn't exist"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:394
+#: airtime_mvc/application/controllers/LocaleController.php:397
msgid "Error: File too large: "
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:395
+#: airtime_mvc/application/controllers/LocaleController.php:398
msgid "Error: Invalid file extension: "
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:398
+#: airtime_mvc/application/controllers/LocaleController.php:400
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
+msgid "Set Default"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:401
msgid "Create Entry"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:399
+#: airtime_mvc/application/controllers/LocaleController.php:402
msgid "Edit History Record"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:402
+#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
+#: airtime_mvc/application/forms/EditHistoryItem.php:57
+msgid "No Show"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:405
#, php-format
msgid "Copied %s row%s to the clipboard"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/controllers/LocaleController.php:406
#, php-format
msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/controllers/LocaleController.php:407
msgid "New Show"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:405
+#: airtime_mvc/application/controllers/LocaleController.php:408
msgid "New Log Entry"
msgstr ""
-#: airtime_mvc/application/controllers/ScheduleController.php:389
-#, php-format
-msgid "Rebroadcast of show %s from %s at %s"
-msgstr "Ritrasmetti show %s da %s a %s"
-
-#: airtime_mvc/application/controllers/ScheduleController.php:712
-#: airtime_mvc/application/controllers/LibraryController.php:131
-msgid "Download"
-msgstr "Scarica"
-
-#: airtime_mvc/application/controllers/ErrorController.php:78
-msgid "Page not found."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:87
-msgid "The requested action is not supported."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:98
-msgid "You do not have permission to access this resource."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:109
-msgid "An internal application error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ListenerstatController.php:51
-msgid "Please make sure admin user/password is correct on System->Streams page."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:53
-#, php-format
-msgid "You are viewing an older version of %s"
-msgstr "Sta visualizzando una versione precedente di %s"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:140
-msgid "You cannot add tracks to dynamic blocks."
-msgstr "Non può aggiungere tracce al blocco dinamico."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:147
-#: airtime_mvc/application/controllers/LibraryController.php:31
-#, php-format
-msgid "%s not found"
-msgstr "%s non trovato"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:161
-#, php-format
-msgid "You don't have permission to delete selected %s(s)."
-msgstr "Non ha i permessi per cancellare la selezione %s(s)."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:168
-#: airtime_mvc/application/controllers/LibraryController.php:40
-msgid "Something went wrong."
-msgstr "Qualcosa è andato storto."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:174
-msgid "You can only add tracks to smart block."
-msgstr "Può solo aggiungere tracce al blocco intelligente."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:192
-msgid "Untitled Playlist"
-msgstr "Playlist senza nome"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:194
-msgid "Untitled Smart Block"
-msgstr "Blocco intelligente senza nome"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:522
-msgid "Unknown Playlist"
-msgstr "Playlist sconosciuta"
-
-#: airtime_mvc/application/controllers/LoginController.php:43
-msgid "Please enter your username and password."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:93
-msgid "Wrong username or password provided. Please try again."
-msgstr "Nome utente o password forniti errati. Per favore riprovi."
-
-#: airtime_mvc/application/controllers/LoginController.php:167
-msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
-msgstr "L' e-mail non può essere inviata. Controlli le impostazioni della sua mail e si accerti che è stata configurata correttamente."
-
-#: airtime_mvc/application/controllers/LoginController.php:173
-msgid "There was a problem with the username or email address you entered."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:35
-#: airtime_mvc/application/controllers/DashboardController.php:84
-msgid "You don't have permission to disconnect source."
-msgstr "Non è consentito disconnettersi dalla fonte."
-
-#: airtime_mvc/application/controllers/DashboardController.php:37
-#: airtime_mvc/application/controllers/DashboardController.php:86
-msgid "There is no source connected to this input."
-msgstr "Nessuna fonte connessa a questo ingresso."
-
-#: airtime_mvc/application/controllers/DashboardController.php:81
-msgid "You don't have permission to switch source."
-msgstr "Non ha il permesso per cambiare fonte."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:72
-msgid "Preferences updated."
-msgstr "Preferenze aggiornate."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:115
-msgid "Support setting updated."
-msgstr "Aggiornamento impostazioni assistenza."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:123
-msgid "Support Feedback"
-msgstr "Support Feedback"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:251
-msgid "Stream Setting Updated."
-msgstr "Aggiornamento impostazioni Stream."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:342
-msgid "path should be specified"
-msgstr "il percorso deve essere specificato"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:437
-msgid "Problem with Liquidsoap..."
-msgstr "Problemi con Liquidsoap..."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:493
-msgid "Request method not accepted"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:86
-msgid "User added successfully!"
-msgstr "User aggiunto con successo!"
-
-#: airtime_mvc/application/controllers/UserController.php:88
-msgid "User updated successfully!"
-msgstr "User aggiornato con successo!"
-
-#: airtime_mvc/application/controllers/UserController.php:187
-msgid "Settings updated successfully!"
-msgstr ""
-
-#: airtime_mvc/application/controllers/WebstreamController.php:28
-#: airtime_mvc/application/controllers/WebstreamController.php:32
-msgid "Untitled Webstream"
-msgstr "Webstream senza titolo"
-
-#: airtime_mvc/application/controllers/WebstreamController.php:150
-msgid "Webstream saved."
-msgstr "Webstream salvate."
-
-#: airtime_mvc/application/controllers/WebstreamController.php:158
-msgid "Invalid form values."
-msgstr "Valori non validi."
-
-#: airtime_mvc/application/controllers/LibraryController.php:95
-#: airtime_mvc/application/controllers/ShowbuilderController.php:136
-msgid "Preview"
-msgstr "Anteprima"
-
-#: airtime_mvc/application/controllers/LibraryController.php:115
-#: airtime_mvc/application/controllers/LibraryController.php:177
-#: airtime_mvc/application/controllers/LibraryController.php:200
-msgid "Add to Playlist"
-msgstr "Aggiungi a playlist"
-
-#: airtime_mvc/application/controllers/LibraryController.php:117
-msgid "Add to Smart Block"
-msgstr "Aggiungi al blocco intelligente"
-
-#: airtime_mvc/application/controllers/LibraryController.php:147
-msgid "View track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:148
-msgid "Remove track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:154
-#: airtime_mvc/application/controllers/LibraryController.php:159
-msgid "Upload track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:169
-msgid "Duplicate Playlist"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:213
-msgid "No action available"
-msgstr "Nessuna azione disponibile"
-
-#: airtime_mvc/application/controllers/LibraryController.php:233
-msgid "You don't have permission to delete selected items."
-msgstr "Non ha il permesso per cancellare gli elementi selezionati."
-
-#: airtime_mvc/application/controllers/LibraryController.php:279
-msgid "Could not delete file because it is scheduled in the future."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:282
-msgid "Could not delete file(s)."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:322
-#, php-format
-msgid "Copy of %s"
-msgstr ""
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
-msgid ""
-"To configure and use the embeddable player you must:
\n"
-" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
-" 2. Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
-msgid ""
-"To use the embeddable weekly schedule widget you must:
\n"
-" Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
#: airtime_mvc/application/controllers/ShowbuilderController.php:138
msgid "Select cursor"
msgstr "Seleziona cursore"
@@ -4040,39 +1805,78 @@ msgstr "Rimuovere il cursore"
msgid "show does not exist"
msgstr "lo show non esiste"
-#: airtime_mvc/application/controllers/ApiController.php:79
-msgid "You are not allowed to access this resource."
-msgstr "Non è permesso l'accesso alla risorsa."
-
-#: airtime_mvc/application/controllers/ApiController.php:244
-#: airtime_mvc/application/controllers/ApiController.php:317
-#: airtime_mvc/application/controllers/ApiController.php:392
-#: airtime_mvc/application/controllers/ApiController.php:435
-#: airtime_mvc/application/controllers/ApiController.php:474
-#: airtime_mvc/application/controllers/ApiController.php:507
-msgid "You are not allowed to access this resource. "
-msgstr "Non è permesso l'accesso alla risorsa."
-
-#: airtime_mvc/application/controllers/ApiController.php:698
-#: airtime_mvc/application/controllers/ApiController.php:718
-#: airtime_mvc/application/controllers/ApiController.php:730
+#: airtime_mvc/application/controllers/ScheduleController.php:389
#, php-format
-msgid "File does not exist in %s"
+msgid "Rebroadcast of show %s from %s at %s"
+msgstr "Ritrasmetti show %s da %s a %s"
+
+#: airtime_mvc/application/common/UsabilityHints.php:55
+msgid "Upload some tracks below to add them to your library!"
msgstr ""
-#: airtime_mvc/application/controllers/ApiController.php:781
-msgid "Bad request. no 'mode' parameter passed."
-msgstr "Richiesta errata. 'modalità ' parametro non riuscito."
-
-#: airtime_mvc/application/controllers/ApiController.php:791
-msgid "Bad request. 'mode' parameter is invalid"
-msgstr "Richiesta errata. 'modalità ' parametro non valido"
-
-#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#: airtime_mvc/application/common/UsabilityHints.php:57
#, php-format
-msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
msgstr ""
+#: airtime_mvc/application/common/UsabilityHints.php:63
+msgid "Click the 'New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:65
+#, php-format
+msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:73
+msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:75
+#, php-format
+msgid ""
+"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
+" %sCreate an unlinked show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:80
+msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:82
+#, php-format
+msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:89
+msgid "Click on the show starting next and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:91
+#, php-format
+msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/DateHelper.php:213
+#, php-format
+msgid "The year %s must be within the range of 1753 - 9999"
+msgstr "L'anno %s deve essere compreso nella serie 1753 - 9999"
+
+#: airtime_mvc/application/common/DateHelper.php:216
+#, php-format
+msgid "%s-%s-%s is not a valid date"
+msgstr "%s-%s-%s non è una data valida"
+
+#: airtime_mvc/application/common/DateHelper.php:240
+#, php-format
+msgid "%s:%s:%s is not a valid time"
+msgstr "%s:%s:%s non è un ora valida"
+
+#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
+msgid "Live stream"
+msgstr "Live stream"
+
#: airtime_mvc/application/layouts/scripts/layout.phtml:63
msgid "Smart Block"
msgstr ""
@@ -4085,6 +1889,17 @@ msgstr ""
msgid "Upload"
msgstr ""
+#: airtime_mvc/application/layouts/scripts/layout.phtml:76
+#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
+msgid "Dashboard"
+msgstr ""
+
+#: airtime_mvc/application/layouts/scripts/layout.phtml:84
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
+msgid "Webstreams"
+msgstr ""
+
#: airtime_mvc/application/layouts/scripts/layout.phtml:135
#: airtime_mvc/application/layouts/scripts/layout.phtml:161
msgid "Play"
@@ -4107,383 +1922,2128 @@ msgstr ""
msgid "Cursor"
msgstr ""
-#~ msgid "Show:"
-#~ msgstr "Show:"
+#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#, php-format
+msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
+msgid "Drop files here or click to browse your computer."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
+msgid "Failed"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
+msgid "Pending"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
+msgid "Recent Uploads"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
+msgid "Share"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
+msgid "Select stream:"
+msgstr "Seleziona stream:"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
+msgid "mute"
+msgstr "disattiva microfono"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
+msgid "unmute"
+msgstr "attiva microfono"
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
+msgid "About"
+msgstr "Chi siamo"
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
+#, php-format
+msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
+#, php-format
+msgid "%1$s %2$s is distributed under the %3$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
+#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
+#, php-format
+msgid "Welcome to %s!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
+#, php-format
+msgid "Here's how you can get started using %s to automate your broadcasts: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
+msgid "Upload audio tracks"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
+msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
+msgid "Schedule a show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
+msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
+msgid "Add tracks to your show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
+msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
+msgid "Now you're good to go!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
+#, php-format
+msgid "For more detailed help, read the %suser manual%s."
+msgstr "Per aiuto dettagliato, legga %suser manual%s."
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
+#: airtime_mvc/application/configs/navigation.php:40
+msgid "Weekly Schedule"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
+#: airtime_mvc/application/forms/Player.php:77
+msgid "Preview:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
+#: airtime_mvc/application/configs/navigation.php:34
+msgid "Player"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:97
+msgid "Playout History"
+msgstr "Storico playlist"
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
+msgid "Log Sheet"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
+msgid "File Summary"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
+msgid "Show Summary"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
+msgid "Expand Static Block"
+msgstr "Espandi blocco statico"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
+msgid "Expand Dynamic Block"
+msgstr "Espandi blocco dinamico "
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
+msgid "Choose some search criteria above and click Generate to create this playlist."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
+msgid "A track list will be generated when you schedule this smart block into a show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
+msgid "Drag tracks here from your library to add them to the playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
+msgid "Editing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:26
+msgid "Name:"
+msgstr "Nome:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
+#: airtime_mvc/application/forms/AddShowWhat.php:54
+msgid "Description:"
+msgstr "Descrizione:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
+#: airtime_mvc/application/forms/AddShowWhen.php:89
+msgid "Duration:"
+msgstr "Durata:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
+msgid "Toggle Details"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+msgid "Shuffle playlist"
+msgstr "Riproduzione casuale"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
+msgid "Shuffle"
+msgstr "Casuale"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
+msgid "Playlist crossfade"
+msgstr "Playlist crossfade"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+msgid "Empty playlist content"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Clear"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+msgid "Fade in: "
+msgstr "Dissolvenza in entrata:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "Fade out: "
+msgstr "Dissolvenza in chiusura:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+msgid "Save playlist"
+msgstr "Salva playlist"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
+msgid "No open playlist"
+msgstr "Non aprire 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 ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "(ss.t)"
+msgstr "(ss.t)"
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Remove all content from this smart block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
+msgid "No smart block currently open"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+msgid "Cue In: "
+msgstr "Cue in:"
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "(hh:mm:ss.t)"
+msgstr "(hh:mm:ss.t)"
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "Cue Out: "
+msgstr "Cue Out:"
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
+msgid "Original Length:"
+msgstr "Lunghezza originale:"
+
+#: airtime_mvc/application/views/scripts/preference/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:56
+msgid "General"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
+msgid "Stream Settings"
+msgstr "Impostazioni Stream"
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
+msgid "Global"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
+msgid "dB"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
+msgid "Output Streams"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:3
+#: airtime_mvc/application/forms/Login.php:83
+msgid "Login"
+msgstr "Accedi"
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:7
+#, php-format
+msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
+msgid "Email Sent!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
+msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
+msgid "Back"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
+msgid "Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
+msgid "New password"
+msgstr "Nuova password"
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
+msgid "Please enter and confirm your new password in the fields below."
+msgstr "Prego inserire e confermare la sua nuova password nel seguente spazio."
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
+msgid "Manage Users"
+msgstr "Gestione utenti"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
+msgid "New User"
+msgstr "Nuovo Utente"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
+msgid "id"
+msgstr "id"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
+#: airtime_mvc/application/forms/PasswordRestore.php:25
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
+msgid "Username"
+msgstr "Nome utente"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
+msgid "First Name"
+msgstr "Nome"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
+msgid "Last Name"
+msgstr "Cognome"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
+msgid "User Type"
+msgstr "Tipo di utente"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
+#, php-format
+msgid "Super Admin details can be changed in your Billing Settings."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
+msgid "Find Shows"
+msgstr "Trova Shows"
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
+msgid "Choose Show Instance"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
+msgid "Find"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
+#: airtime_mvc/application/configs/navigation.php:61
+msgid "My Profile"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
+#, php-format
+msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
+msgid "Repeat Days:"
+msgstr "Ripeti giorni:"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
+#: airtime_mvc/application/forms/GeneralPreferences.php:53
+#: airtime_mvc/application/forms/AddShowStyle.php:64
+msgid "Remove"
+msgstr "Rimuovi"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
+msgid "Add"
+msgstr "Aggiungi "
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
+msgid "Show Source"
+msgstr "Mostra fonte"
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
+msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
+msgid "Register Airtime"
+msgstr "Registro Airtime"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
+#, php-format
+msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
+#, php-format
+msgid "Click the box below to promote your station on %s."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
+msgid "(Required)"
+msgstr "(Richiesto)"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
+msgid "(for verification purposes only, will not be published)"
+msgstr "(per scopi di verifica, non ci saranno pubblicazioni)"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
+#: airtime_mvc/application/forms/GeneralPreferences.php:43
+msgid "Note: Anything larger than 600x600 will be resized."
+msgstr "Note: La lunghezze superiori a 600x600 saranno ridimensionate."
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
+msgid "Show me what I am sending "
+msgstr "Mostra cosa sto inviando"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
+msgid "Terms and Conditions"
+msgstr "Termini e condizioni"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
+msgid "Choose Days:"
+msgstr "Scegli giorni:"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
+msgid "Search Criteria:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
+msgid "New Criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
+msgid "or"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
+msgid "and"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
+msgid "New Modifier"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
+msgid " to "
+msgstr "a"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
+msgid "files meet the criteria"
+msgstr "Files e criteri"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
+msgid "file meets the criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
+msgid "Filter History"
+msgstr "Filtra storia"
+
+#: airtime_mvc/application/views/scripts/form/login.phtml:41
+msgid "Forgot your password?"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
+msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
+msgstr "(Per promuovere la sua stazione, 'Spedisca aderenza feedback' deve essere abilitato)."
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
+msgid "Stream "
+msgstr "Stream"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
+msgid "Additional Options"
+msgstr "Opzioni aggiuntive"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
+msgid "The following info will be displayed to listeners in their media player:"
+msgstr "La seguente informazione sarà esposta agli ascoltatori nelle loro eseguzione:"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
+msgid "(Your radio station website)"
+msgstr "(Il sito della tua radio)"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
+msgid "Stream URL: "
+msgstr "Stream URL:"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
+msgid "Choose folder"
+msgstr "Scegli cartella"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
+msgid "Set"
+msgstr "Imposta"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
+msgid "Current Import Folder:"
+msgstr "Importa cartelle:"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
+#, php-format
+msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
+msgid "Remove watched directory"
+msgstr "Rimuovi elenco visionato"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
+msgid "You are not watching any media folders."
+msgstr "Sta guardando i cataloghi media."
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
+msgid "Live Broadcasting"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
+msgid "Master Source"
+msgstr "Fonte principale"
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
+msgid "Use these settings in your broadcasting software to stream live at any time."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
+msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
+msgid "TuneIn Settings"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
+msgid "SoundCloud Settings"
+msgstr "Impostazioni SoundCloud"
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
+msgid "Dangerous Options"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Add this show"
+msgstr "Aggiungi show"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Update show"
+msgstr "Aggiorna show"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
+msgid "What"
+msgstr "Cosa"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
+msgid "When"
+msgstr "Quando"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
+msgid "Live Stream Input"
+msgstr "Ingresso Stream diretta"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
+msgid "Who"
+msgstr "Chi"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
+msgid "Style"
+msgstr "Stile"
+
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
+msgid "Disk Space"
+msgstr "Spazio disco"
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:3
+msgid "File import in progress..."
+msgstr "File importato in corso..."
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:10
+#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
+msgid "Advanced Search Options"
+msgstr "Opzioni di ricerca avanzate"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
+#: airtime_mvc/application/forms/EditAudioMD.php:24
+#: airtime_mvc/application/forms/Player.php:15
+msgid "Title:"
+msgstr "Titolo:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
+#: airtime_mvc/application/forms/EditAudioMD.php:34
+msgid "Creator:"
+msgstr "Creatore:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
+#: airtime_mvc/application/forms/EditAudioMD.php:44
+msgid "Album:"
+msgstr "Album:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
+msgid "Track:"
+msgstr "Traccia:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
+msgid "Length:"
+msgstr "Lunghezza"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
+msgid "Sample Rate:"
+msgstr "Percentuale"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
+msgid "Bit Rate:"
+msgstr "Velocità di trasmissione: "
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
+#: airtime_mvc/application/forms/EditAudioMD.php:115
+msgid "Mood:"
+msgstr "Umore:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:45
+#: airtime_mvc/application/forms/EditAudioMD.php:62
+msgid "Genre:"
+msgstr "Genere:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
+#: airtime_mvc/application/forms/EditAudioMD.php:72
+msgid "Year:"
+msgstr "Anno:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
+#: airtime_mvc/application/forms/EditAudioMD.php:85
+msgid "Label:"
+msgstr "Etichetta:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
+#: airtime_mvc/application/forms/EditAudioMD.php:125
+msgid "BPM:"
+msgstr "BPM:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
+#: airtime_mvc/application/forms/EditAudioMD.php:95
+msgid "Composer:"
+msgstr "Compositore:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
+#: airtime_mvc/application/forms/EditAudioMD.php:105
+msgid "Conductor:"
+msgstr "Conduttore:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
+#: airtime_mvc/application/forms/EditAudioMD.php:135
+msgid "Copyright:"
+msgstr "Copyright:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
+msgid "Isrc Number:"
+msgstr "Numero ISRC:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
+#: airtime_mvc/application/forms/EditAudioMD.php:155
+msgid "Website:"
+msgstr "Sito web:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
+#: airtime_mvc/application/forms/EditAudioMD.php:165
+#: airtime_mvc/application/forms/EditUser.php:119
+#: airtime_mvc/application/forms/Login.php:68
+msgid "Language:"
+msgstr "Lingua:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
+msgid "File Path:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
+msgid "Web Stream"
+msgstr "Web Stream"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
+msgid "Dynamic Smart Block"
+msgstr "Blocco intelligente e dinamico"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
+msgid "Static Smart Block"
+msgstr "Blocco intelligente e statico"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
+msgid "Audio Track"
+msgstr "Traccia audio"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
+msgid "Playlist Contents: "
+msgstr "Contenuti playlist:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
+msgid "Static Smart Block Contents: "
+msgstr "Contenuto di blocco intelligente e statico:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
+msgid "Dynamic Smart Block Criteria: "
+msgstr "Criteri di blocco intelligenti e dinamici:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
+msgid "Limit to "
+msgstr "Limiti"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
+#: airtime_mvc/application/forms/AddShowWhat.php:36
+msgid "URL:"
+msgstr "URL:"
+
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
+msgid "Viewing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
+msgid "Listeners"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
+msgid "Stream Data Collection Status"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
+msgid "Your trial expires in"
+msgstr "La sua versione di prova scade entro"
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
+msgid "days"
+msgstr "giorni"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
+msgid "Previous:"
+msgstr "Precedente:"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
+msgid "Next:"
+msgstr "Successivo:"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
+msgid "Source Streams"
+msgstr "Source Streams"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
+msgid "ON AIR"
+msgstr "IN ONDA"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
+msgid "Listen"
+msgstr "Ascolta"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
+msgid "Logout"
+msgstr "Esci"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
+msgid "Playout History Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
+msgid "Log Sheet Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
+msgid "New Log Sheet Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
+msgid "No Log Sheet Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
+msgid "File Summary Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
+msgid "New File Summary Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
+msgid "No File Summary Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
+msgid "Creating File Summary Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
+msgid "Creating Log Sheet Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
+msgid "Name"
+msgstr "Nome"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
+msgid "Add more elements"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
+msgid "Add New Field"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
+msgid "Set Default Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
+msgid "Description"
+msgstr "Descrizione"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
+msgid "Stream URL:"
+msgstr "Stream URL:"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
+msgid "Default Length:"
+msgstr "Lunghezza predefinita:"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
+msgid "No webstream"
+msgstr "No webstream"
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
+#: airtime_mvc/application/views/scripts/error/error.phtml:6
+msgid "An error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
+msgid "Access Denied!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
+msgid "You do not have permission to access this page!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
+#: airtime_mvc/application/views/scripts/error/error.phtml:14
+#: airtime_mvc/application/configs/navigation.php:143
+msgid "Help"
+msgstr "Aiuto"
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
+msgid "Oops!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
+msgid "Something went wrong!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
+msgid "Bad Request!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
+msgid "The requested action is not supported!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
+msgid "Page not found!"
+msgstr "Pagina non trovata!"
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
+msgid "We couldn't find the page you were looking for."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error.phtml:12
+msgid "Looks like the page you were looking for doesn't exist!"
+msgstr "La pagina che stai cercando non esiste! "
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
+msgid "previous"
+msgstr "precedente"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
+msgid "play"
+msgstr "riproduci"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
+msgid "pause"
+msgstr "pausa"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
+msgid "next"
+msgstr "next"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
+msgid "stop"
+msgstr "stop"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
+msgid "max volume"
+msgstr "volume massimo"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
+msgid "Update Required"
+msgstr "Aggiornamenti richiesti"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
+#, php-format
+msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
+msgstr "Per riproduzione media, avrà bisogno di aggiornare il suo browser ad una recente versione o aggiornare il suo %sFlash plugin%s."
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
+msgid "Plan type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
+msgid "Billing cycle:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
+msgid "Payment method:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
+msgid "PayPal"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
+msgid "Credit Card via 2Checkout"
+msgstr ""
+
+#: airtime_mvc/application/forms/DateRange.php:16
+#: airtime_mvc/application/forms/ShowBuilder.php:18
+msgid "Date Start:"
+msgstr "Data inizio:"
+
+#: airtime_mvc/application/forms/DateRange.php:35
+#: airtime_mvc/application/forms/DateRange.php:63
+#: airtime_mvc/application/forms/ShowBuilder.php:37
+#: airtime_mvc/application/forms/ShowBuilder.php:65
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
+msgid "Invalid character entered"
+msgstr "Carattere inserito non valido"
+
+#: airtime_mvc/application/forms/DateRange.php:44
+#: airtime_mvc/application/forms/ShowBuilder.php:46
+#: airtime_mvc/application/forms/AddShowRepeats.php:56
+msgid "Date End:"
+msgstr "Data fine:"
+
+#: airtime_mvc/application/forms/ShowBuilder.php:72
+#: airtime_mvc/application/forms/ShowBuilder.php:88
+msgid "Filter by Show"
+msgstr ""
+
+#: airtime_mvc/application/forms/ShowBuilder.php:80
+msgid "All My Shows:"
+msgstr "Tutti i miei show:"
+
+#: airtime_mvc/application/forms/AddShowWho.php:10
+msgid "Search Users:"
+msgstr "Cerca utenti:"
+
+#: airtime_mvc/application/forms/AddShowWho.php:24
+msgid "DJs:"
+msgstr "Dj:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:30
+#: airtime_mvc/application/forms/GeneralPreferences.php:25
+#: airtime_mvc/application/forms/SupportSettings.php:18
+msgid "Station Name"
+msgstr "Nome stazione"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:39
+#: airtime_mvc/application/forms/SupportSettings.php:31
+msgid "Phone:"
+msgstr "Telefono:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:51
+#: airtime_mvc/application/forms/AddUser.php:67
+#: airtime_mvc/application/forms/EditUser.php:83
+#: airtime_mvc/application/forms/SupportSettings.php:43
+msgid "Email:"
+msgstr "E-mail:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:62
+#: airtime_mvc/application/forms/SupportSettings.php:54
+msgid "Station Web Site:"
+msgstr "Stazione sito web:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:73
+#: airtime_mvc/application/forms/SupportSettings.php:65
+msgid "Country:"
+msgstr "Paese:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:84
+#: airtime_mvc/application/forms/SupportSettings.php:76
+msgid "City:"
+msgstr "Città :"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:96
+#: airtime_mvc/application/forms/SupportSettings.php:88
+msgid "Station Description:"
+msgstr "Descrizione stazione:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:106
+#: airtime_mvc/application/forms/GeneralPreferences.php:42
+msgid "Station Logo:"
+msgstr "Logo stazione: "
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:126
+#: airtime_mvc/application/forms/SupportSettings.php:108
+#, php-format
+msgid "Promote my station on %s"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:151
+#: airtime_mvc/application/forms/SupportSettings.php:120
+#, php-format
+msgid "By checking this box, I agree to %s's %sprivacy policy%s."
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:169
+#: airtime_mvc/application/forms/SupportSettings.php:143
+msgid "You have to agree to privacy policy."
+msgstr "Autorizzo il trattamento dei miei dati personali."
+
+#: airtime_mvc/application/forms/AddShowRR.php:10
+msgid "Record from Line In?"
+msgstr "Registra da Line In?"
+
+#: airtime_mvc/application/forms/AddShowRR.php:16
+msgid "Rebroadcast?"
+msgstr "Ritrasmetti?"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
+#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
+msgid "Value is required and can't be empty"
+msgstr "Il calore richiesto non può rimanere vuoto"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
+msgid "'%value%' is no valid email address in the basic format local-part@hostname"
+msgstr "'%value%' non è valido l'indirizzo e-mail nella forma base local-part@hostname"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
+msgid "'%value%' does not fit the date format '%format%'"
+msgstr "'%value%' non va bene con il formato data '%formato%'"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
+msgid "'%value%' is less than %min% characters long"
+msgstr "'%value%' è più corto di %min% caratteri"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
+msgid "'%value%' is more than %max% characters long"
+msgstr "'%value%' è più lungo di %max% caratteri"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
+msgid "'%value%' is not between '%min%' and '%max%', inclusively"
+msgstr "'%value%' non è tra '%min%' e '%max%' compresi"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
+msgid "Passwords do not match"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
+msgid "Day must be specified"
+msgstr "Il giorno deve essere specificato"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
+msgid "Time must be specified"
+msgstr "L'ora dev'essere specificata"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
+msgid "Must wait at least 1 hour to rebroadcast"
+msgstr "Aspettare almeno un'ora prima di ritrasmettere"
+
+#: airtime_mvc/application/forms/PasswordRestore.php:14
+msgid "Email"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordRestore.php:36
+msgid "Reset password"
+msgstr "Reimposta password"
+
+#: airtime_mvc/application/forms/AddShowWhat.php:30
+msgid "Untitled Show"
+msgstr "Show senza nome"
+
+#: airtime_mvc/application/forms/AddShowWhat.php:69
+msgid "Instance Description:"
+msgstr ""
+
+#: airtime_mvc/application/forms/DangerousPreferences.php:12
+msgid "Delete All Tracks in Library"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditAudioMD.php:145
+msgid "ISRC Number:"
+msgstr "Numero ISRC :"
+
+#: airtime_mvc/application/forms/EditAudioMD.php:176
+msgid "OK"
+msgstr "Ok"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:33
+msgid "Station Description"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:62
+msgid "Default Crossfade Duration (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:68
+#: airtime_mvc/application/forms/GeneralPreferences.php:82
+#: airtime_mvc/application/forms/GeneralPreferences.php:96
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
+msgid "Please enter a time in seconds (eg. 0.5)"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:76
+msgid "Default Fade In (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:90
+msgid "Default Fade Out (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:102
+msgid "Public Airtime API"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:103
+msgid "Required for embeddable schedule widget."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:105
+msgid "Disabled"
+msgstr "Disattivato"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:106
+msgid "Enabled"
+msgstr "Abilitato"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:109
+msgid ""
+"Enabling this feature will allow Airtime to provide schedule data\n"
+" to external widgets that can be embedded in your website."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:120
+msgid "Default Language"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:127
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
+msgid "Station Timezone"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:134
+msgid "Week Starts On"
+msgstr "La settimana inizia il"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:150
+msgid "Display login button on your Radio Page?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:29
+#: airtime_mvc/application/forms/EditUser.php:37
+#: airtime_mvc/application/forms/Login.php:41
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
+msgid "Username:"
+msgstr "Username:"
+
+#: airtime_mvc/application/forms/AddUser.php:38
+#: airtime_mvc/application/forms/EditUser.php:48
+#: airtime_mvc/application/forms/Login.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
+msgid "Password:"
+msgstr "Password:"
+
+#: airtime_mvc/application/forms/AddUser.php:46
+#: airtime_mvc/application/forms/EditUser.php:57
+msgid "Verify Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:55
+#: airtime_mvc/application/forms/EditUser.php:67
+msgid "Firstname:"
+msgstr "Nome:"
+
+#: airtime_mvc/application/forms/AddUser.php:61
+#: airtime_mvc/application/forms/EditUser.php:75
+msgid "Lastname:"
+msgstr "Cognome:"
+
+#: airtime_mvc/application/forms/AddUser.php:76
+#: airtime_mvc/application/forms/EditUser.php:94
+msgid "Mobile Phone:"
+msgstr "Cellulare:"
+
+#: airtime_mvc/application/forms/AddUser.php:82
+#: airtime_mvc/application/forms/EditUser.php:102
+msgid "Skype:"
+msgstr "Skype:"
+
+#: airtime_mvc/application/forms/AddUser.php:88
+#: airtime_mvc/application/forms/EditUser.php:110
+msgid "Jabber:"
+msgstr "Jabber:"
+
+#: airtime_mvc/application/forms/AddUser.php:95
+msgid "User Type:"
+msgstr "tipo di utente:"
+
+#: airtime_mvc/application/forms/AddUser.php:120
+#: airtime_mvc/application/forms/EditUser.php:155
+msgid "Login name is not unique."
+msgstr "Il nome utente esiste già ."
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
+msgid "Import Folder:"
+msgstr "Importa Folder:"
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
+msgid "Watched Folders:"
+msgstr "Folder visionati:"
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
+msgid "Not a valid Directory"
+msgstr "Catalogo non valido"
+
+#: airtime_mvc/application/forms/BillingClient.php:126
+msgid "What is the name of your favorite childhood friend?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:127
+msgid "What school did you attend for sixth grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:128
+msgid "In what city did you meet your spouse/significant other?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:129
+msgid "What street did you live on in third grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:130
+msgid "What is the first name of the boy or girl that you first kissed?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:131
+msgid "In what city or town was your first job?"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
+msgid "Default License:"
+msgstr "Licenza predefinita:"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
+msgid "All rights are reserved"
+msgstr "Tutti i diritti riservati"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
+msgid "The work is in the public domain"
+msgstr "Il lavoro è nel dominio pubblico"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
+msgid "Creative Commons Attribution"
+msgstr "Creative Commons Attribution"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
+msgid "Creative Commons Attribution Noncommercial"
+msgstr "Creative Commons Attribution Noncommercial"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
+msgid "Creative Commons Attribution No Derivative Works"
+msgstr "Creative Commons Attribution No Derivate Works"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
+msgid "Creative Commons Attribution Share Alike"
+msgstr "Creative Commons Attribution Share Alike"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
+msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
+msgstr "Creative Commons Attribution Noncommercial Non Derivate Works"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
+msgid "Creative Commons Attribution Noncommercial Share Alike"
+msgstr "Creative Commons Attribution Noncommercial Share Alike"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
+msgid "Default Sharing Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
+msgid "Public"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
+msgid "Private"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditUser.php:129
+msgid "Interface Timezone:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:14
+msgid "Now Playing"
+msgstr "In esecuzione"
+
+#: airtime_mvc/application/forms/Player.php:25
+msgid "Select Stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:28
+msgid "Auto detect the most appropriate stream to use."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:29
+msgid "Select a stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:41
+msgid " - Mobile friendly"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:45
+msgid " - The player does not support Opus streams."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:71
+msgid "Embeddable code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:72
+msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
+#: airtime_mvc/application/models/Block.php:1351
+msgid "Select criteria"
+msgstr "Seleziona criteri"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
+#: airtime_mvc/application/models/Block.php:1353
+msgid "Bit Rate (Kbps)"
+msgstr "Bit Rate (kbps)"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
+#: airtime_mvc/application/models/Block.php:1374
+msgid "Sample Rate (kHz)"
+msgstr "Velocità campione (kHz)"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
+msgid "hours"
+msgstr "ore"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
+msgid "minutes"
+msgstr "minuti"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
+#: airtime_mvc/application/models/Block.php:333
+msgid "items"
+msgstr "elementi"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
+msgid "Randomly"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
+msgid "Newest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
+msgid "Oldest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
+msgid "Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
+msgid "Static"
+msgstr "Statico"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
+msgid "Dynamic"
+msgstr "Dinamico"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
+msgid "Allow Repeated Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
+msgid "Sort Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
+msgid "Limit to:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
+msgid "Generate playlist content and save criteria"
+msgstr "Genera contenuto playlist e salva criteri"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
+msgid "Generate"
+msgstr "Genere"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
+msgid "Shuffle playlist content"
+msgstr "Eseguzione casuale playlist"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
+msgid "Limit cannot be empty or smaller than 0"
+msgstr "Il margine non può essere vuoto o più piccolo di 0"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
+msgid "Limit cannot be more than 24 hrs"
+msgstr "Il margine non può superare le 24ore"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
+msgid "The value should be an integer"
+msgstr "Il valore deve essere un numero intero"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
+msgid "500 is the max item limit value you can set"
+msgstr "500 è il limite massimo di elementi che può inserire"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
+msgid "You must select Criteria and Modifier"
+msgstr "Devi selezionare da Criteri e Modifica"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
+msgid "'Length' should be in '00:00:00' format"
+msgstr "La lunghezza deve essere nel formato '00:00:00'"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
+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:594
+msgid "The value has to be numeric"
+msgstr "Il valore deve essere numerico"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
+msgid "The value should be less then 2147483648"
+msgstr "Il valore deve essere inferiore a 2147483648"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
+#, php-format
+msgid "The value should be less than %s characters"
+msgstr "Il valore deve essere inferiore a %s caratteri"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
+msgid "Value cannot be empty"
+msgstr "Il valore non deve essere vuoto"
+
+#: airtime_mvc/application/forms/StreamSetting.php:26
+msgid "Icecast Vorbis Metadata"
+msgstr "Icecast Vorbis Metadata"
+
+#: airtime_mvc/application/forms/StreamSetting.php:36
+msgid "Stream Label:"
+msgstr "Etichetta Stream:"
+
+#: airtime_mvc/application/forms/StreamSetting.php:37
+msgid "Artist - Title"
+msgstr "Artista - Titolo"
+
+#: airtime_mvc/application/forms/StreamSetting.php:38
+msgid "Show - Artist - Title"
+msgstr "Show - Artista - Titolo"
+
+#: airtime_mvc/application/forms/StreamSetting.php:39
+msgid "Station name - Show name"
+msgstr "Nome stazione - Nome show"
+
+#: airtime_mvc/application/forms/StreamSetting.php:45
+msgid "Off Air Metadata"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:51
+msgid "Enable Replay Gain"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:57
+msgid "Replay Gain Modifier"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:65
+msgid "Streaming Server:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Airtime Pro Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Custom / 3rd Party Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordChange.php:17
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
+msgid "Password"
+msgstr "Password"
-#~ msgid "enter a time in seconds 0{.0}"
-#~ msgstr "inserisci il tempo in secondi 0{.0}"
+#: airtime_mvc/application/forms/PasswordChange.php:28
+msgid "Confirm new password"
+msgstr "Conferma nuova password"
-#~ msgid "Allow Remote Websites To Access \"Schedule\" Info?%s (Enable this to make front-end widgets work.)"
-#~ msgstr "Permetti alla connessione remota dei siti di accedere\"Programma\" Info? %s(Abilita i widgets frontali.)"
+#: airtime_mvc/application/forms/PasswordChange.php:36
+msgid "Password confirmation does not match your password."
+msgstr "La password di conferma non corrisponde con la sua password."
-#~ msgid "Get new password"
-#~ msgstr "Inserisci nuova password"
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
+msgid "Station Language"
+msgstr ""
-#~ msgid "Set smart block type:"
-#~ msgstr "Inserisci blocco intelligente"
-
-#~ msgid "Allow Repeat Tracks:"
-#~ msgstr "Permetti ripetizione tracce"
-
-#~ msgid "Limit to"
-#~ msgstr "Limitato a "
-
-#~ msgid "Auto Switch Off"
-#~ msgstr "Spegnimento automatico"
-
-#~ msgid "Auto Switch On"
-#~ msgstr "Accensione automatica"
-
-#~ msgid "Switch Transition Fade (s)"
-#~ msgstr "Cambia dissolvenza di transizione "
-
-#~ msgid "enter a time in seconds 00{.000000}"
-#~ msgstr "inserisci il tempo in secondi"
-
-#~ msgid "Master Username"
-#~ msgstr "Username principale"
-
-#~ msgid "Master Password"
-#~ msgstr "Password principale"
-
-#~ msgid "Master Source Connection URL"
-#~ msgstr "Principale fonte di connessione URL"
-
-#~ msgid "Show Source Connection URL"
-#~ msgstr "Mostra la connessione fonte URL"
-
-#~ msgid "Master Source Port"
-#~ msgstr "Principale fonte Port"
-
-#~ msgid "Master Source Mount Point"
-#~ msgstr "Fonte principale Mount Point"
-
-#~ msgid "Show Source Port"
-#~ msgstr "Mostra fonte Port"
-
-#~ msgid "Show Source Mount Point"
-#~ msgstr "Mostra fonte Mount Point"
-
-#~ msgid "You cannot use same port as Master DJ port."
-#~ msgstr "Non può usare lo stesso port del principale Dj port."
-
-#~ msgid "Port %s is not available"
-#~ msgstr "Port %s non disponibile"
-
-#~ msgid "E-mail"
-#~ msgstr "E-mail"
-
-#~ msgid "Restore password"
-#~ msgstr "Ripristina password"
-
-#~ msgid "Hardware Audio Output"
-#~ msgstr "Produzione Audio dell'hardware"
-
-#~ msgid "Output Type"
-#~ msgstr "Tipo di Output"
-
-#~ msgid "Date/Time Start:"
-#~ msgstr "Data/Ora inizio:"
-
-#~ msgid "Date/Time End:"
-#~ msgstr "Data/Ora fine:"
-
-#~ msgid "Automatically Upload Recorded Shows"
-#~ msgstr "Caricamento automatico Show registrati"
-
-#~ msgid "Enable SoundCloud Upload"
-#~ msgstr "Abilità caricamento SoudCloud"
-
-#~ msgid "Automatically Mark Files \"Downloadable\" on SoundCloud"
-#~ msgstr "File contrassegnati automaticamente\"Scaricabili\" da SoundCloud"
-
-#~ msgid "SoundCloud Email"
-#~ msgstr "E-mail SoudCloud"
-
-#~ msgid "SoundCloud Password"
-#~ msgstr "Password SoudCloud"
-
-#~ msgid "SoundCloud Tags: (separate tags with spaces)"
-#~ msgstr "Tag SoundCloud: (separare i tag con uno spazio)"
-
-#~ msgid "Default Genre:"
-#~ msgstr "Impostazione predefinita genere:"
-
-#~ msgid "Default Track Type:"
-#~ msgstr "Impostazione predefinita tipo di traccia:"
-
-#~ msgid "Original"
-#~ msgstr "Originale"
-
-#~ msgid "Remix"
-#~ msgstr "Remix"
-
-#~ msgid "Live"
-#~ msgstr "Live"
-
-#~ msgid "Recording"
-#~ msgstr "Registra"
-
-#~ msgid "Spoken"
-#~ msgstr "Parlato"
-
-#~ msgid "Podcast"
-#~ msgstr "Podcast"
-
-#~ msgid "Demo"
-#~ msgstr "Demo"
-
-#~ msgid "Work in progress"
-#~ msgstr "Elaborazione in corso"
-
-#~ msgid "Stem"
-#~ msgstr "Origine"
-
-#~ msgid "Loop"
-#~ msgstr " Riprodurre a ciclo continuo"
-
-#~ msgid "Sound Effect"
-#~ msgstr "Effetto sonoro"
-
-#~ msgid "One Shot Sample"
-#~ msgstr "Campione singolo"
-
-#~ msgid "Other"
-#~ msgstr "Altro"
-
-#~ msgid "Enable System Emails (Password Reset)"
-#~ msgstr "Abilita E-mail di Sistema (reimposta password)"
-
-#~ msgid "Reset Password 'From' Email"
-#~ msgstr "Reimposta password dalla E-mail"
-
-#~ msgid "Configure Mail Server"
-#~ msgstr "Configura Mail del Server"
-
-#~ msgid "Requires Authentication"
-#~ msgstr "Richiede l'autentificazione"
-
-#~ msgid "Mail Server"
-#~ msgstr "Mail Server"
-
-#~ msgid "Email Address"
-#~ msgstr "Indirizzo e-mail"
-
-#~ msgid "Please enter your user name and password"
-#~ msgstr "Inserisca per favore il suo nome utente e password"
-
-#~ msgid "Given email not found."
-#~ msgstr "E-mail inserita non trovata."
-
-#~ msgid "Page not found"
-#~ msgstr "Pagina non trovata"
-
-#~ msgid "Application error"
-#~ msgstr "Errore applicazione "
-
-#~ msgid "If you change the username or password values for an enabled stream the playout engine will be rebooted and your listeners will hear silence for 5-10 seconds. Changing the following fields will NOT cause a reboot: Stream Label (Global Settings), and Switch Transition Fade(s), Master Username, and Master Password (Input Stream Settings). If Airtime is recording, and if the change causes a playout engine restart, the recording will be interrupted."
-#~ msgstr "Se cambia in nome utente o la password per uno stream il playout sarà riavviato ed i suoi ascoltatori sentiranno silenzio per 5-10 secondi.Cambiando i seguenti campi non ci sarà un riavvio: Etichetta Stream (Impostazioni Globali), e Cambia dissolvenza di transizione, Nome utente e Password (Impostazioni Stream di immissione).Se Airtime sta registrando, e se il cambio provoca un nuovo inizio di motore di emissione, la registrazione sarà interrotta"
-
-#~ msgid "today"
-#~ msgstr "oggi"
-
-#~ msgid "day"
-#~ msgstr "giorno"
-
-#~ msgid "week"
-#~ msgstr "settimana"
-
-#~ msgid "month"
-#~ msgstr "mese"
-
-#~ msgid "Remove overbooked tracks"
-#~ msgstr "Rimuovi le tracce in eccesso"
-
-#~ msgid "Soundcloud"
-#~ msgstr "SoundCloud"
-
-#~ msgid "View on Soundcloud"
-#~ msgstr "Vedi su SoundCloud"
-
-#~ msgid "Re-upload to SoundCloud"
-#~ msgstr "Carica su SoundCloud"
-
-#~ msgid "Upload to SoundCloud"
-#~ msgstr "Carica su SoundCloud"
-
-#~ msgid "Could not delete some scheduled files."
-#~ msgstr "Non può cancellare i file programmati."
-
-#~ msgid "Add Media"
-#~ msgstr "Aggiungi Media"
-
-#~ msgid "Library"
-#~ msgstr "Biblioteca"
-
-#~ msgid "System"
-#~ msgstr "Sistema"
-
-#~ msgid "Preferences"
-#~ msgstr "Preferenze"
-
-#~ msgid "Media Folders"
-#~ msgstr "Cartelle dei Media"
-
-#~ msgid "Service"
-#~ msgstr "Servizi"
-
-#~ msgid "Uptime"
-#~ msgstr "Durata"
-
-#~ msgid "CPU"
-#~ msgstr "CPU"
-
-#~ msgid "Memory"
-#~ msgstr "Memoria"
-
-#~ msgid "Email / Mail Server Settings"
-#~ msgstr "Impostazioni sistema di servizio e-mail / posta"
-
-#~ msgid "Connection URL: "
-#~ msgstr "Connessioni URL:"
-
-#~ msgid "Input Stream Settings"
-#~ msgstr "Impostazioni Input Stream"
-
-#~ msgid "Master Source Connection URL:"
-#~ msgstr "Domini di connessione alla fonte URL:"
-
-#~ msgid "Override"
-#~ msgstr "Sovrascrivi"
-
-#~ msgid "RESET"
-#~ msgstr "Azzera"
-
-#~ msgid "Show Source Connection URL:"
-#~ msgstr "Mostra connessioni alla fonte URL:"
-
-#~ msgid "Filter By Show:"
-#~ msgstr "Filtri Show:"
-
-#~ msgid "Sourcefabric Privacy Policy"
-#~ msgstr "Trattamento dati Sourcefabric"
-
-#~ msgid "Smart Block Options"
-#~ msgstr "Opzioni di blocco intelligente"
-
-#~ msgid "file meet the criteria"
-#~ msgstr "File e criteri"
-
-#~ msgid "New"
-#~ msgstr "Nuovo"
-
-#~ msgid "New Playlist"
-#~ msgstr "Nuova playlist"
-
-#~ msgid "New Smart Block"
-#~ msgstr "Nuovo blocca intelligente "
-
-#~ msgid "New Webstream"
-#~ msgstr "Nuove produzioni web"
-
-#~ msgid "View / edit description"
-#~ msgstr "Vedi/edita descrizione"
-
-#~ msgid "Global Settings"
-#~ msgstr "Setting globale"
-
-#~ msgid "Output Stream Settings"
-#~ msgstr "Impostazioni Output Stream"
-
-#~ msgid "Listener Count Over Time"
-#~ msgstr "Programma in ascolto troppo lungo"
-
-#~ msgid "Begin by adding your files to the library using the 'Add Media' menu button. You can drag and drop your files to this window too."
-#~ msgstr "Cominci aggiungendo i suoi file alla biblioteca usando 'Aggiunga Media'. Può trascinare e trasportare i suoi file in questa finestra."
-
-#~ msgid "Create a show by going to 'Calendar' in the menu bar, and then clicking the '+ Show' icon. This can be either a one-time or repeating show. Only admins and program managers can add shows."
-#~ msgstr "Crea show cliccando su 'Calendario' nel menu e cliccando l'icona 'Show'. Questo può essere uno show di una volta o a ripetizione. Solamente l'amministratore e il direttore del programma possono aggiungere show."
-
-#~ msgid "Add media to the show by going to your show in the Schedule calendar, left-clicking on it and selecting 'Add / Remove Content'"
-#~ msgstr "Aggiunga media allo show selezionando il suo show nel calendario, cliccando sul sinistro e selezionando 'Aggiungi/Rimuovi Contenuto'"
-
-#~ msgid "Select your media from the left pane and drag them to your show in the right pane."
-#~ msgstr "Selezioni i suoi media dal pannello sinistro e trascini al suo show nel pannello destro."
-
-#~ msgid "Then you're good to go!"
-#~ msgstr "Può andare!"
-
-#~ msgid "Please enter your account e-mail address. You will receive a link to create a new password via e-mail."
-#~ msgstr "Prego inserire la sua e-mail. Riceverà un link per creare una nuova password via e-mail-"
-
-#~ msgid "Email sent"
-#~ msgstr "E-mail inviata"
-
-#~ msgid "An email has been sent"
-#~ msgstr "Una e-mail è stata inviata"
-
-#~ msgid "Back to login screen"
-#~ msgstr "Indietro a schermo login"
-
-#~ msgid "Scheduled Play"
-#~ msgstr "Programmazione play"
-
-#~ msgid "Station time"
-#~ msgstr "Orario di stazione"
-
-#~ msgid "Zend Framework Default Application"
-#~ msgstr "Zend Framework Default Application"
-
-#~ msgid "Empty smart block"
-#~ msgstr "Blocco intelligente vuoto"
-
-#~ msgid "Empty playlist"
-#~ msgstr "Playlist vuota"
-
-#~ msgid "No open smart block"
-#~ msgstr "Non aprire blocco intelligente"
-
-#~ msgid "Record & Rebroadcast"
-#~ msgstr "Registra e ritrasmetti"
-
-#~ msgid "Failed to create 'organize' directory."
-#~ msgstr "Impossibile creare 'organize' directory."
-
-#~ msgid "The file was not uploaded, there is %s MB of disk space left and the file you are uploading has a size of %s MB."
-#~ msgstr "Il file non è stato caricato, sono rimasti %s MB di spazio ed il file in caricamento ha una lunghezza di %s MB."
-
-#~ msgid "This file appears to be corrupted and will not be added to media library."
-#~ msgstr "Il file risulta corrotto e non sarà aggiunto nella biblioteca."
-
-#~ msgid "The file was not uploaded, this error can occur if the computer hard drive does not have enough disk space or the stor directory does not have correct write permissions."
-#~ msgstr "Il file non è stato caricato, l'errore si può ripresentare se il disco rigido del computer non ha abbastanza spazio o il catalogo degli archivi non ha i giusti permessi."
-
-#~ msgid ""
-#~ "Hi %s, \n"
-#~ "\n"
-#~ "Click this link to reset your password: "
-#~ msgstr ""
-#~ "Ciao %s, \n"
-#~ "\n"
-#~ " Clicca questo link per reimpostare la tua password:"
-
-#~ msgid "Show Content"
-#~ msgstr "Contenuto show"
-
-#~ msgid "Remove All Content"
-#~ msgstr "Rimuovi il contenuto"
-
-#~ msgid "Cancel Current Show"
-#~ msgstr "Cancella show attuale"
-
-#~ msgid "Delete This Instance"
-#~ msgstr "Cancella esempio"
-
-#~ msgid "Delete This Instance and All Following"
-#~ msgstr "Cancella esempio e tutto il seguito"
-
-#~ msgid "Please selection an option"
-#~ msgstr "Seleziona opzioni"
-
-#~ msgid "No Records"
-#~ msgstr "No registrazione"
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
+msgid "Enabled:"
+msgstr "Attiva:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
+msgid "Mobile:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
+msgid "Stream Type:"
+msgstr "Tipo di stream:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
+msgid "Service Type:"
+msgstr "Tipo di servizio:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
+msgid "Channels:"
+msgstr "Canali:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "1 - Mono"
+msgstr "1 - Mono"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "2 - Stereo"
+msgstr "2 - Stereo"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
+msgid "Server"
+msgstr "Server"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
+msgid "Port"
+msgstr "Port"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
+msgid "Only numbers are allowed."
+msgstr "Solo numeri."
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
+msgid "URL"
+msgstr "URL"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
+msgid "Mount Point"
+msgstr "Mount Point"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
+msgid "Admin User"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
+msgid "Admin Password"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
+msgid "Server cannot be empty."
+msgstr "Il server non è libero."
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
+msgid "Port cannot be empty."
+msgstr "Il port non può essere libero."
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
+msgid "Mount cannot be empty with Icecast server."
+msgstr "Mount non può essere vuoto con il server Icecast."
+
+#: airtime_mvc/application/forms/AddShowWhen.php:16
+msgid "'%value%' does not fit the time format 'HH:mm'"
+msgstr "'%value%' non si adatta al formato dell'ora 'HH:mm'"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:22
+msgid "Start Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:37
+msgid "In the Future:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:64
+msgid "End Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:98
+msgid "Timezone:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:107
+msgid "Repeats?"
+msgstr "Ripetizioni?"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:139
+msgid "Cannot create show in the past"
+msgstr "Non creare show al passato"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:147
+msgid "Cannot modify start date/time of the show that is already started"
+msgstr "Non modificare data e ora di inizio degli slot in eseguzione"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:156
+#: airtime_mvc/application/models/Show.php:282
+msgid "End date/time cannot be in the past"
+msgstr "L'ora e la data finale non possono precedere quelle iniziali"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:164
+msgid "Cannot have duration < 0m"
+msgstr "Non ci può essere una durata <0m"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:168
+msgid "Cannot have duration 00h 00m"
+msgstr "Non ci può essere una durata 00h 00m"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:175
+msgid "Cannot have duration greater than 24h"
+msgstr "Non ci può essere una durata superiore a 24h"
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:19
+msgid "Push metadata to your station on TuneIn?"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:24
+msgid "Station ID:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:30
+msgid "Partner Key:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:36
+msgid "Partner Id:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:77
+#: airtime_mvc/application/forms/TuneInPreferences.php:86
+msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:10
+#, php-format
+msgid "Use %s Authentication:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:16
+msgid "Use Custom Authentication:"
+msgstr "Usa autenticazione clienti:"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:25
+msgid "Custom Username"
+msgstr "Personalizza nome utente "
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:37
+msgid "Custom Password"
+msgstr "Personalizza Password"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:48
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
+msgid "Host:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
+msgid "Port:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:60
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
+msgid "Mount:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:77
+msgid "Username field cannot be empty."
+msgstr "Il campo nome utente non può rimanere vuoto."
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:82
+msgid "Password field cannot be empty."
+msgstr "Il campo della password non può rimanere vuoto."
+
+#: airtime_mvc/application/forms/AddShowStyle.php:12
+msgid "Background Colour:"
+msgstr "Colore sfondo:"
+
+#: airtime_mvc/application/forms/AddShowStyle.php:31
+msgid "Text Colour:"
+msgstr "Colore testo:"
+
+#: airtime_mvc/application/forms/AddShowStyle.php:49
+msgid "Current Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:72
+msgid "Show Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:87
+msgid "Logo Preview:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Login.php:102
+msgid "Type the characters you see in the picture below."
+msgstr "Digita le parole del riquadro."
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
+msgid "Auto Switch Off:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
+msgid "Auto Switch On:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
+msgid "Switch Transition Fade (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:10
+msgid "Link:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:16
+msgid "Repeat Type:"
+msgstr "Ripeti tipo:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:19
+msgid "weekly"
+msgstr "settimanalmente"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:20
+msgid "every 2 weeks"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:21
+msgid "every 3 weeks"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:22
+msgid "every 4 weeks"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:23
+msgid "monthly"
+msgstr "mensilmente"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:32
+msgid "Select Days:"
+msgstr "Seleziona giorni:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:47
+msgid "Repeat By:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the month"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the week"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:69
+msgid "No End?"
+msgstr "Ripeti all'infinito?"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:106
+msgid "End date must be after start date"
+msgstr "La data di fine deve essere posteriore a quella di inizio"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:113
+msgid "Please select a repeat day"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:12
+msgid "Radio Page"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:19
+msgid "Calendar"
+msgstr "Calendario"
+
+#: airtime_mvc/application/configs/navigation.php:26
+msgid "Widgets"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:48
+msgid "Settings"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:67
+msgid "Users"
+msgstr "Utenti"
+
+#: airtime_mvc/application/configs/navigation.php:74
+msgid "Streams"
+msgstr "Streams"
+
+#: airtime_mvc/application/configs/navigation.php:82
+msgid "Analytics"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:90
+msgid "Listener Stats"
+msgstr "Statistiche ascolto"
+
+#: airtime_mvc/application/configs/navigation.php:104
+msgid "History Templates"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:113
+msgid "Billing"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:120
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:127
+msgid "Account Details"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:134
+msgid "View Invoices"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:150
+msgid "Getting Started"
+msgstr "Iniziare"
+
+#: airtime_mvc/application/configs/navigation.php:157
+msgid "FAQ"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:162
+msgid "User Manual"
+msgstr "Manuale utente"
+
+#: airtime_mvc/application/configs/navigation.php:167
+msgid "File a Support Ticket"
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:833
+#: airtime_mvc/application/models/Playlist.php:812
+msgid "Cue in and cue out are null."
+msgstr "Cue in e cue out sono nulli."
+
+#: airtime_mvc/application/models/Block.php:868
+#: airtime_mvc/application/models/Block.php:924
+#: airtime_mvc/application/models/Playlist.php:851
+#: airtime_mvc/application/models/Playlist.php:895
+msgid "Can't set cue out to be greater than file length."
+msgstr "Il cue out non può essere più grande della lunghezza del file."
+
+#: airtime_mvc/application/models/Block.php:879
+#: airtime_mvc/application/models/Block.php:900
+#: airtime_mvc/application/models/Playlist.php:843
+#: airtime_mvc/application/models/Playlist.php:868
+msgid "Can't set cue in to be larger than cue out."
+msgstr "Il cue in non può essere più grande del cue out."
+
+#: airtime_mvc/application/models/Block.php:935
+#: airtime_mvc/application/models/Playlist.php:887
+msgid "Can't set cue out to be smaller than cue in."
+msgstr "Il cue out non può essere più piccolo del cue in."
+
+#: airtime_mvc/application/models/Block.php:1366
+msgid "Upload Time"
+msgstr ""
+
+#: airtime_mvc/application/models/ShowBuilder.php:212
+#, php-format
+msgid "Rebroadcast of %s from %s"
+msgstr "Ritrasmetti da %s a %s"
+
+#: airtime_mvc/application/models/Preference.php:460
+#, php-format
+msgid "Powered by %s"
+msgstr ""
+
+#: airtime_mvc/application/models/Preference.php:588
+msgid "Select Country"
+msgstr "Seleziona paese"
+
+#: airtime_mvc/application/models/MusicDir.php:160
+#, php-format
+msgid "%s is already watched."
+msgstr "%s è già stato visionato."
+
+#: airtime_mvc/application/models/MusicDir.php:164
+#, php-format
+msgid "%s contains nested watched directory: %s"
+msgstr "%s contiene una sotto directory già visionata: %s"
+
+#: airtime_mvc/application/models/MusicDir.php:168
+#, php-format
+msgid "%s is nested within existing watched directory: %s"
+msgstr "%s annidato con una directory già visionata: %s"
+
+#: airtime_mvc/application/models/MusicDir.php:189
+#: airtime_mvc/application/models/MusicDir.php:370
+#, php-format
+msgid "%s is not a valid directory."
+msgstr "%s non è una directory valida."
+
+#: airtime_mvc/application/models/MusicDir.php:232
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list"
+msgstr "%s è già impostato come attuale cartella archivio o appartiene alle cartelle visionate"
+
+#: airtime_mvc/application/models/MusicDir.php:388
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list."
+msgstr "%s è già impostato come attuale cartella archivio o appartiene alle cartelle visionate."
+
+#: airtime_mvc/application/models/MusicDir.php:431
+#, php-format
+msgid "%s doesn't exist in the watched list."
+msgstr "%s non esiste nella lista delle cartelle visionate."
+
+#: airtime_mvc/application/models/Auth.php:33
+#, php-format
+msgid ""
+"Hi %s, \n"
+"\n"
+"Please click this link to reset your password: "
+msgstr ""
+
+#: airtime_mvc/application/models/Auth.php:38
+#, php-format
+msgid "%s Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/models/Show.php:184
+msgid "Shows can have a max length of 24 hours."
+msgstr "Gli show possono avere una lunghezza massima di 24 ore."
+
+#: airtime_mvc/application/models/Show.php:293
+msgid ""
+"Cannot schedule overlapping shows.\n"
+"Note: Resizing a repeating show affects all of its repeats."
+msgstr ""
+"Non si possono programmare show sovrapposti.\n"
+" Note: Ridimensionare uno slot a ripetizione colpisce tutte le sue ripetizioni."
+
+#: airtime_mvc/application/models/Scheduler.php:73
+msgid "Cannot move items out of linked shows"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:119
+msgid "The schedule you're viewing is out of date! (sched mismatch)"
+msgstr "Il programma che sta visionando è fuori data! (disadattamento dell'orario)"
+
+#: airtime_mvc/application/models/Scheduler.php:124
+msgid "The schedule you're viewing is out of date! (instance mismatch)"
+msgstr "Il programma che sta visionando è fuori data! (disadattamento dell'esempio)"
+
+#: airtime_mvc/application/models/Scheduler.php:132
+#: airtime_mvc/application/models/Scheduler.php:458
+#: airtime_mvc/application/models/Scheduler.php:490
+msgid "The schedule you're viewing is out of date!"
+msgstr "Il programma che sta visionando è fuori data!"
+
+#: airtime_mvc/application/models/Scheduler.php:142
+#, php-format
+msgid "You are not allowed to schedule show %s."
+msgstr "Non è abilitato all'elenco degli show%s"
+
+#: airtime_mvc/application/models/Scheduler.php:146
+msgid "You cannot add files to recording shows."
+msgstr "Non può aggiungere file a show registrati."
+
+#: airtime_mvc/application/models/Scheduler.php:152
+#, php-format
+msgid "The show %s is over and cannot be scheduled."
+msgstr "Lo show % supera la lunghezza massima e non può essere programmato."
+
+#: airtime_mvc/application/models/Scheduler.php:159
+#, php-format
+msgid "The show %s has been previously updated!"
+msgstr "Lo show %s è già stato aggiornato! "
+
+#: airtime_mvc/application/models/Scheduler.php:178
+msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:195
+msgid "Cannot schedule a playlist that contains missing files."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:216
+#: airtime_mvc/application/models/Scheduler.php:305
+msgid "A selected File does not exist!"
+msgstr "Il File selezionato non esiste!"
+
+#: airtime_mvc/application/models/Schedule.php:206
+msgid "livestream"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:166
+msgid "Length needs to be greater than 0 minutes"
+msgstr "La lunghezza deve superare 0 minuti"
+
+#: airtime_mvc/application/models/Webstream.php:171
+msgid "Length should be of form \"00h 00m\""
+msgstr "La lunghezza deve essere nella forma \"00h 00m\""
+
+#: airtime_mvc/application/models/Webstream.php:184
+msgid "URL should be of form \"http://domain\""
+msgstr "URL deve essere nella forma \"http://domain\""
+
+#: airtime_mvc/application/models/Webstream.php:187
+msgid "URL should be 512 characters or less"
+msgstr "URL dove essere di 512 caratteri o meno"
+
+#: airtime_mvc/application/models/Webstream.php:193
+msgid "No MIME type found for webstream."
+msgstr "Nessun MIME type trovato per le webstream."
+
+#: airtime_mvc/application/models/Webstream.php:209
+msgid "Webstream name cannot be empty"
+msgstr "Webstream non può essere vuoto"
+
+#: airtime_mvc/application/models/Webstream.php:278
+msgid "Could not parse XSPF playlist"
+msgstr "Non è possibile analizzare le playlist XSPF "
+
+#: airtime_mvc/application/models/Webstream.php:298
+msgid "Could not parse PLS playlist"
+msgstr "Non è possibile analizzare le playlist PLS"
+
+#: airtime_mvc/application/models/Webstream.php:318
+msgid "Could not parse M3U playlist"
+msgstr "Non è possibile analizzare le playlist M3U"
+
+#: airtime_mvc/application/models/Webstream.php:332
+msgid "Invalid webstream - This appears to be a file download."
+msgstr "Webstream non valido - Questo potrebbe essere un file scaricato."
+
+#: airtime_mvc/application/models/Webstream.php:336
+#, php-format
+msgid "Unrecognized stream type: %s"
+msgstr "Tipo di stream sconosciuto: %s"
+
+#: airtime_mvc/public/setup/rabbitmq-setup.php:78
+msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
+msgstr ""
+
+#~ msgid "My Account"
+#~ msgstr "Account personale"
diff --git a/airtime_mvc/locale/it_IT/LC_MESSAGES/pro.po b/airtime_mvc/locale/it_IT/LC_MESSAGES/pro.po
index 866ee0acb..f59b52c3d 100644
--- a/airtime_mvc/locale/it_IT/LC_MESSAGES/pro.po
+++ b/airtime_mvc/locale/it_IT/LC_MESSAGES/pro.po
@@ -1,3 +1,139 @@
+#: airtime_mvc/application/controllers/LoginController.php:170
+#, php-format
+msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
+#, php-format
+msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
+#, php-format
+msgid "If you are the primary owner of this station, please reset your password here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
+msgid "Thank you!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
+msgid "Your station has been upgraded successfully."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
+msgid "Return to Airtime"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+#, php-format
+msgid "Purchase an %s plan!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+msgid "My Account"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
+msgid "Upgrade today to get more listeners and storage space!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
+msgid "View Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:257
+msgid "Your Current Plan:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:291
+msgid "Please enter your payment details:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
+msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
+msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:17
+msgid "First Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:26
+msgid "Last Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:35
+msgid "Company Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:44
+msgid "Email Address:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:54
+msgid "Address 1:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:63
+msgid "Address 2:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:70
+msgid "City:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:80
+msgid "State/Region:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:89
+msgid "Zip Code / Postal Code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:102
+msgid "Country:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:112
+msgid "Phone Number:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:121
+msgid "Please choose a security question:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:135
+msgid "Please enter an answer:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:152
+msgid "VAT/Tax ID (EU only)"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:162
+msgid "Subscribe to Sourcefabric newsletter"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:172
+msgid "Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:181
+msgid "Verify Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:193
+msgid "Save"
+msgstr ""
+
#: airtime_mvc/application/models/Auth.php:35
#, php-format
msgid ""
@@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
-msgid "Thank you!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
-msgid "Your station has been upgraded successfully."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
-msgid "Return to Airtime"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
-#, php-format
-msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
-msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
-msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
-#, php-format
-msgid "If you are the primary owner of this station, please reset your password here."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:170
-#, php-format
-msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
-msgstr ""
diff --git a/airtime_mvc/locale/ja/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/ja/LC_MESSAGES/airtime.mo
index 790ded5d6..d151a5acb 100644
Binary files a/airtime_mvc/locale/ja/LC_MESSAGES/airtime.mo and b/airtime_mvc/locale/ja/LC_MESSAGES/airtime.mo differ
diff --git a/airtime_mvc/locale/ja/LC_MESSAGES/airtime.po b/airtime_mvc/locale/ja/LC_MESSAGES/airtime.po
index 787ef681f..261994e84 100644
--- a/airtime_mvc/locale/ja/LC_MESSAGES/airtime.po
+++ b/airtime_mvc/locale/ja/LC_MESSAGES/airtime.po
@@ -10,9 +10,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Airtime\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-09-03 10:24-0400\n"
-"PO-Revision-Date: 2015-04-22 10:23+0000\n"
-"Last-Translator: asantoni_sourcefabric \n"
+"POT-Creation-Date: 2015-09-04 11:17-0400\n"
+"PO-Revision-Date: 2015-09-04 08:15+0000\n"
+"Last-Translator: Daniel James \n"
"Language-Team: Japanese (http://www.transifex.com/sourcefabric/airtime/language/ja/)\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
@@ -20,132 +20,6 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-#: airtime_mvc/public/setup/rabbitmq-setup.php:78
-msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1117
-#: airtime_mvc/application/services/HistoryService.php:1157
-#: airtime_mvc/application/services/HistoryService.php:1174
-#: airtime_mvc/application/models/Block.php:1375
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
-#: airtime_mvc/application/controllers/LocaleController.php:76
-msgid "Title"
-msgstr "タイトル"
-
-#: airtime_mvc/application/services/HistoryService.php:1118
-#: airtime_mvc/application/services/HistoryService.php:1158
-#: airtime_mvc/application/services/HistoryService.php:1175
-#: airtime_mvc/application/models/Block.php:1360
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
-#: airtime_mvc/application/controllers/LocaleController.php:77
-msgid "Creator"
-msgstr "アーティスト"
-
-#: airtime_mvc/application/services/HistoryService.php:1119
-#: airtime_mvc/application/models/Block.php:1352
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
-#: airtime_mvc/application/controllers/LocaleController.php:78
-msgid "Album"
-msgstr "アルバム"
-
-#: airtime_mvc/application/services/HistoryService.php:1120
-#: airtime_mvc/application/services/HistoryService.php:1177
-#: airtime_mvc/application/models/Block.php:1369
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
-#: airtime_mvc/application/controllers/LocaleController.php:91
-msgid "Length"
-msgstr "時間"
-
-#: airtime_mvc/application/services/HistoryService.php:1121
-#: airtime_mvc/application/models/Block.php:1362
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
-#: airtime_mvc/application/controllers/LocaleController.php:85
-msgid "Genre"
-msgstr "ジャンル"
-
-#: airtime_mvc/application/services/HistoryService.php:1122
-#: airtime_mvc/application/models/Block.php:1371
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
-#: airtime_mvc/application/controllers/LocaleController.php:93
-msgid "Mood"
-msgstr "ムード"
-
-#: airtime_mvc/application/services/HistoryService.php:1123
-#: airtime_mvc/application/models/Block.php:1364
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
-#: airtime_mvc/application/controllers/LocaleController.php:87
-msgid "Label"
-msgstr "レーベル"
-
-#: airtime_mvc/application/services/HistoryService.php:1124
-#: airtime_mvc/application/services/HistoryService.php:1178
-#: airtime_mvc/application/models/Block.php:1355
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
-#: airtime_mvc/application/controllers/LocaleController.php:81
-msgid "Composer"
-msgstr "作曲者"
-
-#: airtime_mvc/application/services/HistoryService.php:1125
-#: airtime_mvc/application/models/Block.php:1363
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
-#: airtime_mvc/application/controllers/LocaleController.php:86
-msgid "ISRC"
-msgstr "ISRC"
-
-#: airtime_mvc/application/services/HistoryService.php:1126
-#: airtime_mvc/application/services/HistoryService.php:1179
-#: airtime_mvc/application/models/Block.php:1357
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
-#: airtime_mvc/application/controllers/LocaleController.php:83
-msgid "Copyright"
-msgstr "著作権"
-
-#: airtime_mvc/application/services/HistoryService.php:1127
-#: airtime_mvc/application/models/Block.php:1379
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
-#: airtime_mvc/application/controllers/LocaleController.php:100
-msgid "Year"
-msgstr "年"
-
-#: airtime_mvc/application/services/HistoryService.php:1128
-msgid "Track"
-msgstr "トラック"
-
-#: airtime_mvc/application/services/HistoryService.php:1129
-#: airtime_mvc/application/models/Block.php:1356
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
-#: airtime_mvc/application/controllers/LocaleController.php:82
-msgid "Conductor"
-msgstr "コンダクター"
-
-#: airtime_mvc/application/services/HistoryService.php:1130
-#: airtime_mvc/application/models/Block.php:1365
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
-#: airtime_mvc/application/controllers/LocaleController.php:88
-msgid "Language"
-msgstr "言語"
-
-#: airtime_mvc/application/services/HistoryService.php:1155
-#: airtime_mvc/application/forms/EditHistoryItem.php:32
-msgid "Start Time"
-msgstr "開始時間"
-
-#: airtime_mvc/application/services/HistoryService.php:1156
-#: airtime_mvc/application/forms/EditHistoryItem.php:44
-msgid "End Time"
-msgstr "終了時間"
-
-#: airtime_mvc/application/services/HistoryService.php:1176
-msgid "Played"
-msgstr "再生済み"
-
#: airtime_mvc/application/services/CalendarService.php:50
msgid "Record file doesn't exist"
msgstr "録音ファイルは存在しません。"
@@ -241,2605 +115,382 @@ msgstr "録音された番組が存在しないので番組は削除されまし
msgid "Must wait 1 hour to rebroadcast."
msgstr "再配信には1時間待たなければなりません。"
-#: airtime_mvc/application/models/Schedule.php:206
-msgid "livestream"
-msgstr ""
-
-#: airtime_mvc/application/models/ShowBuilder.php:212
-#, php-format
-msgid "Rebroadcast of %s from %s"
-msgstr "%sの再配信%sから"
-
-#: airtime_mvc/application/models/Webstream.php:166
-msgid "Length needs to be greater than 0 minutes"
-msgstr "再生時間は0分以上である必要があります。"
-
-#: airtime_mvc/application/models/Webstream.php:171
-msgid "Length should be of form \"00h 00m\""
-msgstr "時間は \"00h 00m\"の形式にしてください。"
-
-#: airtime_mvc/application/models/Webstream.php:184
-msgid "URL should be of form \"http://domain\""
-msgstr "URL は\"http://domain\"の形式で入力してください。"
-
-#: airtime_mvc/application/models/Webstream.php:187
-msgid "URL should be 512 characters or less"
-msgstr "URLは512文字以下にしてください。"
-
-#: airtime_mvc/application/models/Webstream.php:193
-msgid "No MIME type found for webstream."
-msgstr "ウェブ配信用のMIMEタイプは見つかりませんでした。"
-
-#: airtime_mvc/application/models/Webstream.php:209
-msgid "Webstream name cannot be empty"
-msgstr "ウェブ配信名を入力して下さい。"
-
-#: airtime_mvc/application/models/Webstream.php:278
-msgid "Could not parse XSPF playlist"
-msgstr "XSPFプレイリストを解析できませんでした。"
-
-#: airtime_mvc/application/models/Webstream.php:298
-msgid "Could not parse PLS playlist"
-msgstr "PLSプレイリストを解析できませんでした。"
-
-#: airtime_mvc/application/models/Webstream.php:318
-msgid "Could not parse M3U playlist"
-msgstr "M3Uプレイリストを解析できませんでした。"
-
-#: airtime_mvc/application/models/Webstream.php:332
-msgid "Invalid webstream - This appears to be a file download."
-msgstr "無効なウェブ配信です。"
-
-#: airtime_mvc/application/models/Webstream.php:336
-#, php-format
-msgid "Unrecognized stream type: %s"
-msgstr "不明な配信種別です: %s"
-
-#: airtime_mvc/application/models/Preference.php:460
-#, php-format
-msgid "Powered by %s"
-msgstr ""
-
-#: airtime_mvc/application/models/Preference.php:588
-msgid "Select Country"
-msgstr "国の選択"
-
-#: airtime_mvc/application/models/MusicDir.php:160
-#, php-format
-msgid "%s is already watched."
-msgstr "%sは同期済みです。"
-
-#: airtime_mvc/application/models/MusicDir.php:164
-#, php-format
-msgid "%s contains nested watched directory: %s"
-msgstr "%sは同期している次のフォルダを含んでいます: %s "
-
-#: airtime_mvc/application/models/MusicDir.php:168
-#, php-format
-msgid "%s is nested within existing watched directory: %s"
-msgstr "%sは同期している次のフォルダに含まれています: %s "
-
-#: airtime_mvc/application/models/MusicDir.php:189
-#: airtime_mvc/application/models/MusicDir.php:370
-#, php-format
-msgid "%s is not a valid directory."
-msgstr "%sは有効なディレクトリではありません。"
-
-#: airtime_mvc/application/models/MusicDir.php:232
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list"
-msgstr "%sはすでに保存ディレクトリまたは同期フォルダに設定されています。"
-
-#: airtime_mvc/application/models/MusicDir.php:388
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list."
-msgstr "%sはすでに保存ディレクトリまたは同期フォルダに設定されています。"
-
-#: airtime_mvc/application/models/MusicDir.php:431
-#, php-format
-msgid "%s doesn't exist in the watched list."
-msgstr "%sは同期リストの中に存在しません。"
-
-#: airtime_mvc/application/models/Show.php:184
-msgid "Shows can have a max length of 24 hours."
-msgstr "番組は最大24時間まで設定可能です。"
-
-#: airtime_mvc/application/models/Show.php:282
-#: airtime_mvc/application/forms/AddShowWhen.php:156
-msgid "End date/time cannot be in the past"
-msgstr "終了日時は過去に設定できません。"
-
-#: airtime_mvc/application/models/Show.php:293
-msgid ""
-"Cannot schedule overlapping shows.\n"
-"Note: Resizing a repeating show affects all of its repeats."
-msgstr ""
-"番組を重複して予約することはできません。\n"
-"注意:再配信番組のサイズ変更は全ての再配信に反映されます。"
-
-#: airtime_mvc/application/models/Auth.php:33
-#, php-format
-msgid ""
-"Hi %s, \n"
-"\n"
-"Please click this link to reset your password: "
-msgstr ""
-
-#: airtime_mvc/application/models/Auth.php:38
-#, php-format
-msgid "%s Password Reset"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:333
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
-msgid "items"
-msgstr "項目"
-
-#: airtime_mvc/application/models/Block.php:833
-#: airtime_mvc/application/models/Playlist.php:812
-msgid "Cue in and cue out are null."
-msgstr "キューインとキューアウトが設定されていません。"
-
-#: airtime_mvc/application/models/Block.php:868
-#: airtime_mvc/application/models/Block.php:924
-#: airtime_mvc/application/models/Playlist.php:851
-#: airtime_mvc/application/models/Playlist.php:895
-msgid "Can't set cue out to be greater than file length."
-msgstr "キューアウトはファイルの長さより長く設定できません。"
-
-#: airtime_mvc/application/models/Block.php:879
-#: airtime_mvc/application/models/Block.php:900
-#: airtime_mvc/application/models/Playlist.php:843
-#: airtime_mvc/application/models/Playlist.php:868
-msgid "Can't set cue in to be larger than cue out."
-msgstr "キューインをキューアウトより大きく設定することはできません。"
-
-#: airtime_mvc/application/models/Block.php:935
-#: airtime_mvc/application/models/Playlist.php:887
-msgid "Can't set cue out to be smaller than cue in."
-msgstr "キューアウトをキューインより小さく設定することはできません。"
-
-#: airtime_mvc/application/models/Block.php:1351
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
-msgid "Select criteria"
-msgstr "基準を選択してください"
-
-#: airtime_mvc/application/models/Block.php:1353
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
-msgid "Bit Rate (Kbps)"
-msgstr "ビットレート (Kbps)"
-
-#: airtime_mvc/application/models/Block.php:1354
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
-#: airtime_mvc/application/controllers/LocaleController.php:80
-msgid "BPM"
-msgstr "BPM "
-
-#: airtime_mvc/application/models/Block.php:1358
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
-#: airtime_mvc/application/controllers/LocaleController.php:281
-#: airtime_mvc/application/layouts/scripts/layout.phtml:140
-msgid "Cue In"
-msgstr "キューイン"
-
-#: airtime_mvc/application/models/Block.php:1359
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:282
-#: airtime_mvc/application/layouts/scripts/layout.phtml:147
-msgid "Cue Out"
-msgstr "キューアウト"
-
-#: airtime_mvc/application/models/Block.php:1361
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
-#: airtime_mvc/application/controllers/LocaleController.php:84
-msgid "Encoded By"
-msgstr "エンコード"
-
-#: airtime_mvc/application/models/Block.php:1366
-msgid "Upload Time"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1367
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
-#: airtime_mvc/application/controllers/LocaleController.php:89
-msgid "Last Modified"
-msgstr "最終修正"
-
-#: airtime_mvc/application/models/Block.php:1368
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
-#: airtime_mvc/application/controllers/LocaleController.php:90
-msgid "Last Played"
-msgstr "最終配信日"
-
-#: airtime_mvc/application/models/Block.php:1370
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
-#: airtime_mvc/application/controllers/LocaleController.php:92
-msgid "Mime"
-msgstr "MIMEタイプ"
-
-#: airtime_mvc/application/models/Block.php:1372
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
-#: airtime_mvc/application/controllers/LocaleController.php:94
-msgid "Owner"
-msgstr "所有者"
-
-#: airtime_mvc/application/models/Block.php:1373
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
-#: airtime_mvc/application/controllers/LocaleController.php:95
-msgid "Replay Gain"
-msgstr "リプレイゲイン"
-
-#: airtime_mvc/application/models/Block.php:1374
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
-msgid "Sample Rate (kHz)"
-msgstr "サンプリング周波数 (kHz) "
-
-#: airtime_mvc/application/models/Block.php:1376
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
-#: airtime_mvc/application/controllers/LocaleController.php:97
-msgid "Track Number"
-msgstr "トラック番号"
-
-#: airtime_mvc/application/models/Block.php:1377
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
-#: airtime_mvc/application/controllers/LocaleController.php:98
-msgid "Uploaded"
-msgstr "アップロード完了"
-
-#: airtime_mvc/application/models/Block.php:1378
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
-#: airtime_mvc/application/controllers/LocaleController.php:99
-msgid "Website"
-msgstr "ウェブサイト"
-
-#: airtime_mvc/application/models/Block.php:1383
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
-#: airtime_mvc/application/controllers/LocaleController.php:151
-msgid "Select modifier"
-msgstr "条件を選択してください"
-
-#: airtime_mvc/application/models/Block.php:1384
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
-#: airtime_mvc/application/controllers/LocaleController.php:152
-msgid "contains"
-msgstr "以下を含む"
-
-#: airtime_mvc/application/models/Block.php:1385
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
-#: airtime_mvc/application/controllers/LocaleController.php:153
-msgid "does not contain"
-msgstr "以下を含まない"
-
-#: airtime_mvc/application/models/Block.php:1386
-#: airtime_mvc/application/models/Block.php:1390
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
-#: airtime_mvc/application/controllers/LocaleController.php:154
-msgid "is"
-msgstr "以下と一致する"
-
-#: airtime_mvc/application/models/Block.php:1387
-#: airtime_mvc/application/models/Block.php:1391
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
-#: airtime_mvc/application/controllers/LocaleController.php:155
-msgid "is not"
-msgstr "以下と一致しない"
-
-#: airtime_mvc/application/models/Block.php:1388
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
-#: airtime_mvc/application/controllers/LocaleController.php:156
-msgid "starts with"
-msgstr "以下で始まる"
-
-#: airtime_mvc/application/models/Block.php:1389
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
-#: airtime_mvc/application/controllers/LocaleController.php:157
-msgid "ends with"
-msgstr "以下で終わる"
-
-#: airtime_mvc/application/models/Block.php:1392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
-#: airtime_mvc/application/controllers/LocaleController.php:158
-msgid "is greater than"
-msgstr "次の値より大きい"
-
-#: airtime_mvc/application/models/Block.php:1393
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
-#: airtime_mvc/application/controllers/LocaleController.php:159
-msgid "is less than"
-msgstr "次の値より小さい"
-
-#: airtime_mvc/application/models/Block.php:1394
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
-#: airtime_mvc/application/controllers/LocaleController.php:160
-msgid "is in the range"
-msgstr "次の範囲内"
-
-#: airtime_mvc/application/models/Scheduler.php:73
-msgid "Cannot move items out of linked shows"
-msgstr "リンクした番組の外に項目を移動することはできません。"
-
-#: airtime_mvc/application/models/Scheduler.php:119
-msgid "The schedule you're viewing is out of date! (sched mismatch)"
-msgstr "参照中のスケジュールはの有効ではありません。"
-
-#: airtime_mvc/application/models/Scheduler.php:124
-msgid "The schedule you're viewing is out of date! (instance mismatch)"
-msgstr "参照中のスケジュールは有効ではありません。"
-
-#: airtime_mvc/application/models/Scheduler.php:132
-#: airtime_mvc/application/models/Scheduler.php:458
-#: airtime_mvc/application/models/Scheduler.php:490
-msgid "The schedule you're viewing is out of date!"
-msgstr "参照中のスケジュールは有効ではありません。"
-
-#: airtime_mvc/application/models/Scheduler.php:142
-#, php-format
-msgid "You are not allowed to schedule show %s."
-msgstr "番組を%sに予約することはできません。"
-
-#: airtime_mvc/application/models/Scheduler.php:146
-msgid "You cannot add files to recording shows."
-msgstr "録音中の番組にファイルを追加することはできません。"
-
-#: airtime_mvc/application/models/Scheduler.php:152
-#, php-format
-msgid "The show %s is over and cannot be scheduled."
-msgstr "番組 %s は終了しておりスケジュールに入れることができません。"
-
-#: airtime_mvc/application/models/Scheduler.php:159
-#, php-format
-msgid "The show %s has been previously updated!"
-msgstr "番組 %s は以前に更新されています。"
-
-#: airtime_mvc/application/models/Scheduler.php:178
-msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
-msgstr "同期された配信内容を配信中に変更することはできません。"
-
-#: airtime_mvc/application/models/Scheduler.php:195
-msgid "Cannot schedule a playlist that contains missing files."
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:216
-#: airtime_mvc/application/models/Scheduler.php:305
-msgid "A selected File does not exist!"
-msgstr "選択したファイルは存在しません。"
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
-#: airtime_mvc/application/configs/navigation.php:40
-msgid "Weekly Schedule"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
-#: airtime_mvc/application/forms/Player.php:77
-msgid "Preview:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
-#: airtime_mvc/application/configs/navigation.php:34
-msgid "Player"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
-#: airtime_mvc/application/controllers/LocaleController.php:362
-#: airtime_mvc/application/controllers/LocaleController.php:390
-msgid "Close"
-msgstr "閉じる"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Add this show"
-msgstr "この番組を追加"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Update show"
-msgstr "番組を更新"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
-msgid "What"
-msgstr "番組内容"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
-msgid "When"
-msgstr "番組配信時間"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
-msgid "Live Stream Input"
-msgstr "ライブ配信の入力"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
-msgid "Who"
-msgstr "DJ"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
-msgid "Style"
-msgstr "スタイル"
-
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
-#: airtime_mvc/application/controllers/LocaleController.php:273
-msgid "Start"
-msgstr "開始"
-
-#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
-msgid "Password Reset"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
-msgid "Email Sent!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
-msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
-msgid "Back"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
-msgid "New password"
-msgstr "新しいパスワード"
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
-msgid "Please enter and confirm your new password in the fields below."
-msgstr "下記のフィールドに新しいパスワードを入力し確認して下さい。"
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:3
-#: airtime_mvc/application/forms/Login.php:83
-msgid "Login"
-msgstr "ログイン"
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:7
-#, php-format
-msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:97
-msgid "Playout History"
-msgstr "配信履歴"
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
-msgid "Log Sheet"
-msgstr "配信レポート"
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
-msgid "File Summary"
-msgstr "トラック別レポート"
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
-msgid "Show Summary"
-msgstr "番組別レポート"
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
-msgid "Your trial expires in"
-msgstr "試用期間終了まで:"
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
-msgid "days"
-msgstr "日"
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-#, php-format
-msgid "Purchase an %s Pro plan!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-msgid "My Account"
-msgstr "マイアカウント"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
-msgid "Previous:"
-msgstr "前の曲:"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
-msgid "Next:"
-msgstr "次の曲:"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
-msgid "Source Streams"
-msgstr "配信ソース"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
-msgid "Master Source"
-msgstr "マスターソース"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
-msgid "Show Source"
-msgstr "番組ソース"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
-msgid "ON AIR"
-msgstr "ON AIR"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
-msgid "Listen"
-msgstr "試聴"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
-msgid "Logout"
-msgstr "ログアウト"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
-msgid "Drop files here or click to browse your computer."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
-#: airtime_mvc/application/controllers/LocaleController.php:314
-msgid "in use"
-msgstr "使用中"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
-#: airtime_mvc/application/controllers/LocaleController.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:401
-msgid "All"
-msgstr "全て"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
-msgid "Failed"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
-msgid "Pending"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
-msgid "Recent Uploads"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
-#: airtime_mvc/application/configs/navigation.php:120
-msgid "Account Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
-msgid "Upgrade today to get more listeners and storage space!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
-msgid "View Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
-msgid "About"
-msgstr "Rakuten.FMについて"
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
-#, php-format
-msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
-#, php-format
-msgid "%1$s %2$s is distributed under the %3$s"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
-#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
-msgid "Live stream"
-msgstr "ライブ配信"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
-msgid "Share"
-msgstr "共有"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
-msgid "Select stream:"
-msgstr "配信先の選択:"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
-msgid "mute"
-msgstr "ミュート"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
-msgid "unmute"
-msgstr "ミュート解除"
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
-#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
-#, php-format
-msgid "Welcome to %s!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
-#, php-format
-msgid "Here's how you can get started using %s to automate your broadcasts: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
-msgid "Upload audio tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
-msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
-msgid "Schedule a show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
-msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
-msgid "Add tracks to your show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
-msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
-msgid "Now you're good to go!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
-#, php-format
-msgid "For more detailed help, read the %suser manual%s."
-msgstr "より詳細なヘルプは、%sユーザーマニュアル%sをお読み下さい。 "
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
-msgid "Listeners"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
-msgid "Stream Data Collection Status"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
-#: airtime_mvc/application/views/scripts/error/error.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
-msgid "An error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
-msgid "Access Denied!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
-msgid "You do not have permission to access this page!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
-#: airtime_mvc/application/views/scripts/error/error.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
-#: airtime_mvc/application/configs/navigation.php:143
-msgid "Help"
-msgstr "ヘルプ"
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
-msgid "Page not found!"
-msgstr "ページが見つかりませんでした。"
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
-msgid "We couldn't find the page you were looking for."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error.phtml:12
-msgid "Looks like the page you were looking for doesn't exist!"
-msgstr "お探しのページは存在しないようです。"
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
-msgid "Oops!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
-msgid "Something went wrong!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
-msgid "Bad Request!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
-msgid "The requested action is not supported!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
-msgid "Viewing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
-msgid "Editing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:3
-msgid "File import in progress..."
-msgstr "ファイルをインポート中…"
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:10
-#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
-msgid "Advanced Search Options"
-msgstr "詳細検索"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
-#: airtime_mvc/application/forms/Player.php:15
-#: airtime_mvc/application/forms/EditAudioMD.php:24
-msgid "Title:"
-msgstr "タイトル:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
-#: airtime_mvc/application/forms/EditAudioMD.php:34
-msgid "Creator:"
-msgstr "アーティスト:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
-#: airtime_mvc/application/forms/EditAudioMD.php:44
-msgid "Album:"
-msgstr "アルバム:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
-msgid "Track:"
-msgstr "トラック:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
-msgid "Length:"
-msgstr "時間:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
-msgid "Sample Rate:"
-msgstr "サンプルレート:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
-msgid "Bit Rate:"
-msgstr "ビットレート:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
-#: airtime_mvc/application/forms/EditAudioMD.php:115
-msgid "Mood:"
-msgstr "ムード:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
-#: airtime_mvc/application/forms/EditAudioMD.php:62
-#: airtime_mvc/application/forms/AddShowWhat.php:45
-msgid "Genre:"
-msgstr "ジャンル:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
-#: airtime_mvc/application/forms/EditAudioMD.php:72
-msgid "Year:"
-msgstr "年:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
-#: airtime_mvc/application/forms/EditAudioMD.php:85
-msgid "Label:"
-msgstr "ラベル:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
-#: airtime_mvc/application/forms/EditAudioMD.php:125
-msgid "BPM:"
-msgstr "BPM:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
-#: airtime_mvc/application/forms/EditAudioMD.php:95
-msgid "Composer:"
-msgstr "作曲者"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
-#: airtime_mvc/application/forms/EditAudioMD.php:105
-msgid "Conductor:"
-msgstr "コンダクター:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
-#: airtime_mvc/application/forms/EditAudioMD.php:135
-msgid "Copyright:"
-msgstr "著作権:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
-msgid "Isrc Number:"
-msgstr "ISRC番号:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
-#: airtime_mvc/application/forms/EditAudioMD.php:155
-msgid "Website:"
-msgstr "ウェブサイト:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
-#: airtime_mvc/application/forms/EditUser.php:119
-#: airtime_mvc/application/forms/EditAudioMD.php:165
-#: airtime_mvc/application/forms/Login.php:68
-msgid "Language:"
-msgstr "言語:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
-msgid "File Path:"
-msgstr "ファイルの場所: "
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
-#: airtime_mvc/application/forms/AddShowWhat.php:26
-msgid "Name:"
-msgstr "名前:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
-#: airtime_mvc/application/forms/AddShowWhat.php:54
-msgid "Description:"
-msgstr "説明:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
-msgid "Web Stream"
-msgstr "ウェブ配信"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
-msgid "Dynamic Smart Block"
-msgstr "自動生成スマート・ブロック"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
-msgid "Static Smart Block"
-msgstr "スマート・ブロック"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
-msgid "Audio Track"
-msgstr "オーディオトラック"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
-msgid "Playlist Contents: "
-msgstr "プレイリストの内容:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
-msgid "Static Smart Block Contents: "
-msgstr "スマート・ブロックの内容:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
-msgid "Dynamic Smart Block Criteria: "
-msgstr "自動生成スマート・ブロックの基準:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
-msgid "Limit to "
-msgstr "次の値に制限する:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
-#: airtime_mvc/application/forms/AddShowWhat.php:36
-msgid "URL:"
-msgstr "URL:"
-
-#: airtime_mvc/application/views/scripts/form/login.phtml:41
-msgid "Forgot your password?"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
-#, php-format
-msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
-#, php-format
-msgid "Click the box below to promote your station on %s."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
-msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
-msgstr "(ステーションを宣伝するためには、「サポートフィードバックを送信する」の設定をオンにしておく必要があります。)"
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
-msgid "(Required)"
-msgstr "(必須)"
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
-msgid "(for verification purposes only, will not be published)"
-msgstr "(確認目的の為だけであり、公開はされません。) "
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
-msgid "Choose folder"
-msgstr "フォルダ選択"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
-msgid "Set"
-msgstr "設定"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
-msgid "Current Import Folder:"
-msgstr "現在のインポートフォルダ"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
-msgid "Add"
-msgstr "追加"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
-#, php-format
-msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
-msgid "Remove watched directory"
-msgstr "同期ディレクトリを削除する"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
-msgid "You are not watching any media folders."
-msgstr "いかなるメディアフォルダも見ていません"
-
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
-msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
-msgid "Live Broadcasting"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
-msgid "Use these settings in your broadcasting software to stream live at any time."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
-msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
-msgid "Choose Show Instance"
-msgstr "番組配信回の選択"
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
-#: airtime_mvc/application/forms/EditHistoryItem.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:400
-msgid "No Show"
-msgstr "番組はありません。"
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
-msgid "Find"
-msgstr "検索"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
-msgid "Choose Days:"
-msgstr "日付選択: "
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
-#: airtime_mvc/application/forms/AddShowStyle.php:64
-#: airtime_mvc/application/forms/GeneralPreferences.php:53
-msgid "Remove"
-msgstr "削除"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
-msgid "Stream "
-msgstr "配信"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
-msgid "Additional Options"
-msgstr "詳細設定"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
-msgid "The following info will be displayed to listeners in their media player:"
-msgstr "以下の情報はリスナーが利用するプレイヤー上に表示されます。"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
-msgid "(Your radio station website)"
-msgstr "(あなたのラジオステーションウェブサイト)"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
-msgid "Stream URL: "
-msgstr "配信先URL:"
-
-#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
-msgid "Find Shows"
-msgstr "番組を探す"
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
-msgid "TuneIn Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
-msgid "SoundCloud Settings"
-msgstr "SoundCloudの設定"
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
-msgid "Dangerous Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
-msgid "Search Criteria:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
-msgid "New Criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
-msgid "or"
-msgstr "or"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
-msgid "and"
-msgstr "and"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
-msgid "New Modifier"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
-msgid " to "
-msgstr "~"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
-msgid "files meet the criteria"
-msgstr "件の条件を満たすファイルがありました。"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
-msgid "file meets the criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
-msgid "Filter History"
-msgstr "絞り込み履歴"
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
-#: airtime_mvc/application/configs/navigation.php:61
-msgid "My Profile"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
-#, php-format
-msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
-#: airtime_mvc/application/forms/Preferences.php:40
-#: airtime_mvc/application/forms/PasswordChange.php:43
-#: airtime_mvc/application/forms/AddUser.php:110
-#: airtime_mvc/application/forms/BillingClient.php:193
-#: airtime_mvc/application/forms/SupportSettings.php:131
-#: airtime_mvc/application/forms/EditHistory.php:131
-#: airtime_mvc/application/controllers/LocaleController.php:294
-msgid "Save"
-msgstr "保存"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
-msgid "Repeat Days:"
-msgstr "再配信日:"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
-msgid "Register Airtime"
-msgstr "Rakuten.FMに登録"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
-#: airtime_mvc/application/forms/GeneralPreferences.php:43
-msgid "Note: Anything larger than 600x600 will be resized."
-msgstr "注意:大きさが600x600以上の場合はサイズが変更されます。"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
-msgid "Show me what I am sending "
-msgstr "送信中のものを表示"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
-msgid "Terms and Conditions"
-msgstr "利用規約"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
-msgid "Creating File Summary Template"
-msgstr "トラック別レポートテンプレート作成"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
-msgid "Creating Log Sheet Template"
-msgstr "配信レポートテンプレートの作成"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
-msgid "Name"
-msgstr "名前"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
-msgid "Add more elements"
-msgstr "さらに要素を追加"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
-msgid "Add New Field"
-msgstr "あたしいフィールドの追加"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
-msgid "Set Default Template"
-msgstr "初期設定テンプレートを作成"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
-msgid "Playout History Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
-msgid "Log Sheet Templates"
-msgstr "配信レポートテンプレート"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
-msgid "New Log Sheet Template"
-msgstr "新規テンプレート作成"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
-msgid "No Log Sheet Templates"
-msgstr "テンプレートはありません。"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
-#: airtime_mvc/application/controllers/LocaleController.php:397
-msgid "Set Default"
-msgstr "初期設定として保存"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
-msgid "File Summary Templates"
-msgstr "トラック別レポートテンプレート"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
-msgid "New File Summary Template"
-msgstr "新規テンプレート作成"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
-msgid "No File Summary Templates"
-msgstr "テンプレートはありません。"
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
-msgid "Disk Space"
-msgstr "ディスク容量"
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
-#: airtime_mvc/application/controllers/LocaleController.php:315
-msgid "Disk"
-msgstr "ディスク"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
-#: airtime_mvc/application/forms/AddShowWhen.php:89
-msgid "Duration:"
-msgstr "長さ:"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
-msgid "Toggle Details"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
-msgid "Playlist crossfade"
-msgstr "プレイリスト クロスフェード"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-msgid "Remove all content from this smart block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Clear"
-msgstr "クリア"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "Fade in: "
-msgstr "フェードイン:"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "(ss.t)"
-msgstr "(ss.t) "
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-msgid "Fade out: "
-msgstr "フェードアウト:"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
-#: airtime_mvc/application/forms/EditAudioMD.php:186
-#: airtime_mvc/application/forms/EditHistory.php:141
-#: airtime_mvc/application/controllers/LocaleController.php:295
-#: airtime_mvc/application/controllers/LocaleController.php:318
-msgid "Cancel"
-msgstr "キャンセル"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
-msgid "No smart block currently open"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
-msgid "Show Waveform"
-msgstr "波形の表示"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-msgid "Cue In: "
-msgstr "キューイン:"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "(hh:mm:ss.t)"
-msgstr "例:01:22:33.4"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "Cue Out: "
-msgstr "キューアウト:"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
-msgid "Original Length:"
-msgstr "オリジナルの長さ:"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
-msgid "Expand Static Block"
-msgstr "スマート・ブロックの拡張"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
-msgid "Expand Dynamic Block"
-msgstr "自動生成スマート・ブロックを拡張する"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
-msgid "Choose some search criteria above and click Generate to create this playlist."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
-msgid "A track list will be generated when you schedule this smart block into a show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
-msgid "Drag tracks here from your library to add them to the playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-msgid "Shuffle playlist"
-msgstr "プレイリストのシャッフル"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
-msgid "Shuffle"
-msgstr "シャッフル"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Empty playlist content"
-msgstr "プレイリストを空にする。"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-msgid "Save playlist"
-msgstr "プレイリストを保存"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
-msgid "No open playlist"
-msgstr "プレイリストが開かれていません。"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
-msgid "previous"
-msgstr "前"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
-msgid "play"
-msgstr "再生"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
-msgid "pause"
-msgstr "一時停止"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
-msgid "next"
-msgstr "次"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
-msgid "stop"
-msgstr "停止"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
-msgid "max volume"
-msgstr "最大音量"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
-msgid "Update Required"
-msgstr "アップデートが必要です。"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
-#, php-format
-msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
-msgstr "メディアを再生するためには、お使いのブラウザを最新のバージョンにアップデートするか、%sフラッシュプラグイン%sをアップデートする必要があります。"
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
-msgid "Stream Settings"
-msgstr "配信設定"
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
-msgid "Global"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
-msgid "dB"
-msgstr "dB "
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
-msgid "Output Streams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
-#: airtime_mvc/application/controllers/LocaleController.php:166
-msgid "Manage Media Folders"
-msgstr "メディアフォルダの管理"
-
-#: airtime_mvc/application/views/scripts/preference/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:56
-msgid "General"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
-msgid "Description"
-msgstr "説明"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
-msgid "Stream URL:"
-msgstr "配信元URL:"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
-msgid "Default Length:"
-msgstr "ウェブ配信の長さ(初期値):"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
-msgid "No webstream"
-msgstr "ウェブ配信がありません。"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
-msgid "Manage Users"
-msgstr "ユーザー管理"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
-msgid "New User"
-msgstr "ユーザー追加"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
-msgid "id"
-msgstr "id "
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
-#: airtime_mvc/application/forms/PasswordRestore.php:25
-msgid "Username"
-msgstr "ユーザー名"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
-msgid "First Name"
-msgstr "名"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
-msgid "Last Name"
-msgstr "姓"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
-msgid "User Type"
-msgstr "ユーザー種別"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
-#, php-format
-msgid "Super Admin details can be changed in your Billing Settings."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
-#: airtime_mvc/application/controllers/LocaleController.php:74
-#: airtime_mvc/application/layouts/scripts/layout.phtml:78
-msgid "Tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
-#: airtime_mvc/application/controllers/LocaleController.php:104
-#: airtime_mvc/application/layouts/scripts/layout.phtml:80
-msgid "Playlists"
-msgstr "プレイリスト"
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
-#: airtime_mvc/application/controllers/LocaleController.php:105
-#: airtime_mvc/application/layouts/scripts/layout.phtml:82
-msgid "Smart Blocks"
-msgstr "スマートブロック"
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
-#: airtime_mvc/application/layouts/scripts/layout.phtml:84
-msgid "Webstreams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
-#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
-#: airtime_mvc/application/layouts/scripts/layout.phtml:76
-msgid "Dashboard"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:12
-msgid "Radio Page"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:19
-msgid "Calendar"
-msgstr "カレンダー"
-
-#: airtime_mvc/application/configs/navigation.php:26
-msgid "Widgets"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:48
-msgid "Settings"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:67
-msgid "Users"
-msgstr "ユーザー"
-
-#: airtime_mvc/application/configs/navigation.php:74
-msgid "Streams"
-msgstr "配信設定"
-
-#: airtime_mvc/application/configs/navigation.php:82
-msgid "Analytics"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:90
-msgid "Listener Stats"
-msgstr "リスナー統計"
-
-#: airtime_mvc/application/configs/navigation.php:104
-msgid "History Templates"
-msgstr "配信履歴のテンプレート"
-
-#: airtime_mvc/application/configs/navigation.php:113
-msgid "Billing"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:127
-msgid "Account Details"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:134
-msgid "View Invoices"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:150
-msgid "Getting Started"
-msgstr "はじめに"
-
-#: airtime_mvc/application/configs/navigation.php:157
-msgid "FAQ"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:162
-msgid "User Manual"
-msgstr "ユーザーマニュアル"
-
-#: airtime_mvc/application/configs/navigation.php:167
-msgid "File a Support Ticket"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:12
-msgid "Background Colour:"
-msgstr "背景色:"
-
-#: airtime_mvc/application/forms/AddShowStyle.php:31
-msgid "Text Colour:"
-msgstr "文字色:"
-
-#: airtime_mvc/application/forms/AddShowStyle.php:49
-msgid "Current Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:72
-msgid "Show Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:87
-msgid "Logo Preview:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:19
-msgid "Push metadata to your station on TuneIn?"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:24
-msgid "Station ID:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:30
-msgid "Partner Key:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:36
-msgid "Partner Id:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:77
-#: airtime_mvc/application/forms/TuneInPreferences.php:86
-msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:14
-msgid "Now Playing"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:25
-msgid "Select Stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:28
-msgid "Auto detect the most appropriate stream to use."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:29
-msgid "Select a stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:41
-msgid " - Mobile friendly"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:45
-msgid " - The player does not support Opus streams."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:71
-msgid "Embeddable code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:72
-msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:37
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
-#: airtime_mvc/application/forms/Login.php:41
-#: airtime_mvc/application/forms/AddUser.php:29
-msgid "Username:"
-msgstr "ユーザー名:"
-
-#: airtime_mvc/application/forms/EditUser.php:48
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
-#: airtime_mvc/application/forms/Login.php:54
-#: airtime_mvc/application/forms/AddUser.php:38
-#: airtime_mvc/application/forms/BillingClient.php:172
-msgid "Password:"
-msgstr "パスワード:"
-
-#: airtime_mvc/application/forms/EditUser.php:57
-#: airtime_mvc/application/forms/AddUser.php:46
-#: airtime_mvc/application/forms/BillingClient.php:181
-msgid "Verify Password:"
-msgstr "確認用パスワード:"
-
-#: airtime_mvc/application/forms/EditUser.php:67
-#: airtime_mvc/application/forms/AddUser.php:55
-msgid "Firstname:"
-msgstr "名:"
-
-#: airtime_mvc/application/forms/EditUser.php:75
-#: airtime_mvc/application/forms/AddUser.php:61
-msgid "Lastname:"
-msgstr "姓:"
-
-#: airtime_mvc/application/forms/EditUser.php:83
-#: airtime_mvc/application/forms/RegisterAirtime.php:51
-#: airtime_mvc/application/forms/AddUser.php:67
-#: airtime_mvc/application/forms/SupportSettings.php:43
-msgid "Email:"
-msgstr "メール:"
-
-#: airtime_mvc/application/forms/EditUser.php:94
-#: airtime_mvc/application/forms/AddUser.php:76
-msgid "Mobile Phone:"
-msgstr "携帯電話:"
-
-#: airtime_mvc/application/forms/EditUser.php:102
-#: airtime_mvc/application/forms/AddUser.php:82
-msgid "Skype:"
-msgstr "Skype:"
-
-#: airtime_mvc/application/forms/EditUser.php:110
-#: airtime_mvc/application/forms/AddUser.php:88
-msgid "Jabber:"
-msgstr "Jabber:"
-
-#: airtime_mvc/application/forms/EditUser.php:129
-msgid "Interface Timezone:"
-msgstr "インターフェイスのタイムゾーン:"
-
-#: airtime_mvc/application/forms/EditUser.php:155
-#: airtime_mvc/application/forms/AddUser.php:120
-msgid "Login name is not unique."
-msgstr "ログイン名はすでに使用されています。"
-
-#: airtime_mvc/application/forms/AddShowRR.php:10
-msgid "Record from Line In?"
-msgstr "ライン入力から録音"
-
-#: airtime_mvc/application/forms/AddShowRR.php:16
-msgid "Rebroadcast?"
-msgstr "再配信"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:16
-msgid "'%value%' does not fit the time format 'HH:mm'"
-msgstr "'%value%'は、'01:22'の形式に適合していません"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:22
-msgid "Start Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:37
-msgid "In the Future:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:64
-msgid "End Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:98
-msgid "Timezone:"
-msgstr "タイムゾーン:"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:107
-msgid "Repeats?"
-msgstr "定期番組に設定"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:139
-msgid "Cannot create show in the past"
-msgstr "過去の日付に番組は作成できません。"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:147
-msgid "Cannot modify start date/time of the show that is already started"
-msgstr "すでに開始されている番組の開始日、開始時間を変更することはできません。"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:164
-msgid "Cannot have duration < 0m"
-msgstr "0分以下の長さに設定することはできません。"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:168
-msgid "Cannot have duration 00h 00m"
-msgstr "00h 00mの長さに設定することはできません。"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:175
-msgid "Cannot have duration greater than 24h"
-msgstr "24時間を越える長さに設定することはできません。"
-
-#: airtime_mvc/application/forms/AddShowWho.php:10
-msgid "Search Users:"
-msgstr "ユーザーを検索:"
-
-#: airtime_mvc/application/forms/AddShowWho.php:24
-msgid "DJs:"
-msgstr "DJ:"
-
-#: airtime_mvc/application/forms/PasswordChange.php:17
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
-msgid "Password"
-msgstr "パスワード"
-
-#: airtime_mvc/application/forms/PasswordChange.php:28
-msgid "Confirm new password"
-msgstr "新しいパスワードを確認してください。"
-
-#: airtime_mvc/application/forms/PasswordChange.php:36
-msgid "Password confirmation does not match your password."
-msgstr "パスワード確認がパスワードと一致しません。"
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
-msgid "Station Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
-#: airtime_mvc/application/forms/GeneralPreferences.php:127
-msgid "Station Timezone"
-msgstr "ステーションのタイムゾーン"
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
-msgid "Auto Switch Off:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
-msgid "Auto Switch On:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
-msgid "Switch Transition Fade (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
-#: airtime_mvc/application/forms/GeneralPreferences.php:68
-#: airtime_mvc/application/forms/GeneralPreferences.php:82
-#: airtime_mvc/application/forms/GeneralPreferences.php:96
-msgid "Please enter a time in seconds (eg. 0.5)"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
-#: airtime_mvc/application/forms/AddShowLiveStream.php:48
-msgid "Host:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
-#: airtime_mvc/application/forms/AddShowLiveStream.php:54
-msgid "Port:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
-#: airtime_mvc/application/forms/AddShowLiveStream.php:60
-msgid "Mount:"
-msgstr ""
-
-#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
-msgid "Value is required and can't be empty"
-msgstr "値を入力してください"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:25
-#: airtime_mvc/application/forms/RegisterAirtime.php:30
-#: airtime_mvc/application/forms/SupportSettings.php:18
-msgid "Station Name"
-msgstr "ステーション名"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:33
-msgid "Station Description"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:42
-#: airtime_mvc/application/forms/RegisterAirtime.php:106
-msgid "Station Logo:"
-msgstr "ステーションロゴ:"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:62
-msgid "Default Crossfade Duration (s):"
-msgstr "クロスフェードの時間(初期値):"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:76
-msgid "Default Fade In (s):"
-msgstr "デフォルトフェードイン(初期値):"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:90
-msgid "Default Fade Out (s):"
-msgstr "デフォルトフェードアウト(初期値):"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:102
-msgid "Public Airtime API"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:103
-msgid "Required for embeddable schedule widget."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:105
-msgid "Disabled"
-msgstr "無効"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:106
-msgid "Enabled"
-msgstr "有効"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:109
-msgid ""
-"Enabling this feature will allow Airtime to provide schedule data\n"
-" to external widgets that can be embedded in your website."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:120
-msgid "Default Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:134
-msgid "Week Starts On"
-msgstr "週の開始曜日"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:150
-msgid "Display login button on your Radio Page?"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:158
-#: airtime_mvc/application/controllers/LocaleController.php:249
-msgid "Sunday"
-msgstr "日曜日"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:159
-#: airtime_mvc/application/controllers/LocaleController.php:250
-msgid "Monday"
-msgstr "月曜日"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:160
-#: airtime_mvc/application/controllers/LocaleController.php:251
-msgid "Tuesday"
-msgstr "火曜日"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:161
-#: airtime_mvc/application/controllers/LocaleController.php:252
-msgid "Wednesday"
-msgstr "水曜日"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:162
-#: airtime_mvc/application/controllers/LocaleController.php:253
-msgid "Thursday"
-msgstr "木曜日"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:163
-#: airtime_mvc/application/controllers/LocaleController.php:254
-msgid "Friday"
-msgstr "金曜日"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:164
-#: airtime_mvc/application/controllers/LocaleController.php:255
-msgid "Saturday"
-msgstr "土曜日"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
-msgid "Default License:"
-msgstr "ライセンス(初期値):"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
-msgid "All rights are reserved"
-msgstr "All rights are reserved"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
-msgid "The work is in the public domain"
-msgstr "The work is in the public domain"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
-msgid "Creative Commons Attribution"
-msgstr "Creative Commons Attribution"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
-msgid "Creative Commons Attribution Noncommercial"
-msgstr "Creative Commons Attribution Noncommercial"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
-msgid "Creative Commons Attribution No Derivative Works"
-msgstr "Creative Commons Attribution No Derivative Works"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
-msgid "Creative Commons Attribution Share Alike"
-msgstr "Creative Commons Attribution Share Alike"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
-msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
-msgstr "Creative Commons Attribution Noncommercial Non Derivate Works"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
-msgid "Creative Commons Attribution Noncommercial Share Alike"
-msgstr "Creative Commons Attribution Noncommercial Share Alike"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
-msgid "Default Sharing Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
-msgid "Public"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
-msgid "Private"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:18
-#: airtime_mvc/application/forms/DateRange.php:16
-msgid "Date Start:"
-msgstr "開始日:"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:37
-#: airtime_mvc/application/forms/ShowBuilder.php:65
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
-#: airtime_mvc/application/forms/DateRange.php:35
-#: airtime_mvc/application/forms/DateRange.php:63
-msgid "Invalid character entered"
-msgstr "使用できない文字が入力されました。"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:46
-#: airtime_mvc/application/forms/AddShowRepeats.php:56
-#: airtime_mvc/application/forms/DateRange.php:44
-msgid "Date End:"
-msgstr "終了日:"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:72
-#: airtime_mvc/application/forms/ShowBuilder.php:88
-msgid "Filter by Show"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:80
-msgid "All My Shows:"
-msgstr "全ての番組:"
-
-#: airtime_mvc/application/forms/EditAudioMD.php:145
-msgid "ISRC Number:"
-msgstr "ISRC番号:"
-
-#: airtime_mvc/application/forms/EditAudioMD.php:176
-msgid "OK"
-msgstr "OK"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
-msgid "Day must be specified"
-msgstr "日付を指定する必要があります。"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
-msgid "Time must be specified"
-msgstr "時間を指定する必要があります。"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
-msgid "Must wait at least 1 hour to rebroadcast"
-msgstr "再配信するには、1時間以上待たなければなりません"
-
-#: airtime_mvc/application/forms/AddShowWhat.php:30
-msgid "Untitled Show"
-msgstr "無題の番組"
-
-#: airtime_mvc/application/forms/AddShowWhat.php:69
-msgid "Instance Description:"
-msgstr ""
-
-#: airtime_mvc/application/forms/DangerousPreferences.php:12
-msgid "Delete All Tracks in Library"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:39
-#: airtime_mvc/application/forms/SupportSettings.php:31
-msgid "Phone:"
-msgstr "電話:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:62
-#: airtime_mvc/application/forms/SupportSettings.php:54
-msgid "Station Web Site:"
-msgstr "ステーションのウェブサイト:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:73
-#: airtime_mvc/application/forms/BillingClient.php:102
-#: airtime_mvc/application/forms/SupportSettings.php:65
-msgid "Country:"
-msgstr "国:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:84
-#: airtime_mvc/application/forms/BillingClient.php:70
-#: airtime_mvc/application/forms/SupportSettings.php:76
-msgid "City:"
-msgstr "市:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:96
-#: airtime_mvc/application/forms/SupportSettings.php:88
-msgid "Station Description:"
-msgstr "ステーションの説明:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:116
-#: airtime_mvc/application/forms/SupportSettings.php:98
-#: airtime_mvc/application/controllers/LocaleController.php:341
-msgid "Send support feedback"
-msgstr "サポートにフィードバックを送る"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:126
-#: airtime_mvc/application/forms/SupportSettings.php:108
-#, php-format
-msgid "Promote my station on %s"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:151
-#: airtime_mvc/application/forms/SupportSettings.php:120
-#, php-format
-msgid "By checking this box, I agree to %s's %sprivacy policy%s."
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:169
-#: airtime_mvc/application/forms/SupportSettings.php:143
-msgid "You have to agree to privacy policy."
-msgstr "プライバシーポリシーに同意する必要があります。"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:10
-msgid "Link:"
-msgstr "配信内容を同期する:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:16
-msgid "Repeat Type:"
-msgstr "リピート形式:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:19
-msgid "weekly"
-msgstr "毎週"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:20
-msgid "every 2 weeks"
-msgstr "2週間ごと"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:21
-msgid "every 3 weeks"
-msgstr "3週間ごと"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:22
-msgid "every 4 weeks"
-msgstr "4週間ごと"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:23
-msgid "monthly"
-msgstr "毎月"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:32
-msgid "Select Days:"
-msgstr "曜日を選択:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:35
-#: airtime_mvc/application/controllers/LocaleController.php:256
-msgid "Sun"
-msgstr "日"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:36
-#: airtime_mvc/application/controllers/LocaleController.php:257
-msgid "Mon"
-msgstr "月"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:37
-#: airtime_mvc/application/controllers/LocaleController.php:258
-msgid "Tue"
-msgstr "火"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:38
-#: airtime_mvc/application/controllers/LocaleController.php:259
-msgid "Wed"
-msgstr "水"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:39
-#: airtime_mvc/application/controllers/LocaleController.php:260
-msgid "Thu"
-msgstr "木"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:40
-#: airtime_mvc/application/controllers/LocaleController.php:261
-msgid "Fri"
-msgstr "金"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:41
-#: airtime_mvc/application/controllers/LocaleController.php:262
-msgid "Sat"
-msgstr "土"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:47
-msgid "Repeat By:"
-msgstr "リピート間隔:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the month"
-msgstr "毎月特定日"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the week"
-msgstr "毎月特定曜日"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:69
-msgid "No End?"
-msgstr "無期限"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:106
-msgid "End date must be after start date"
-msgstr "終了日は開始日より後に設定してください。"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:113
-msgid "Please select a repeat day"
-msgstr "繰り返す日を選択してください"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:10
-#, php-format
-msgid "Use %s Authentication:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:16
-msgid "Use Custom Authentication:"
-msgstr "カスタム認証を使用:"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:25
-msgid "Custom Username"
-msgstr "カスタムユーザー名"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:37
-msgid "Custom Password"
-msgstr "カスタムパスワード"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:77
-msgid "Username field cannot be empty."
-msgstr "ユーザー名を入力してください。"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:82
-msgid "Password field cannot be empty."
-msgstr "パスワードを入力してください。"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
-msgid "Enabled:"
-msgstr "有効:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
-msgid "Mobile:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
-msgid "Stream Type:"
-msgstr "配信種別:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
-msgid "Service Type:"
-msgstr "サービスタイプ:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
-msgid "Channels:"
-msgstr "再生方式"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "1 - Mono"
-msgstr "1 - モノラル"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "2 - Stereo"
-msgstr "2 - ステレオ"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
-msgid "Server"
-msgstr "サーバー"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
-msgid "Port"
-msgstr "ポート"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
-msgid "Only numbers are allowed."
-msgstr "数値で入力してください。"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
-msgid "URL"
-msgstr "URL"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
-msgid "Mount Point"
-msgstr "マウントポイント"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
-msgid "Admin User"
-msgstr "管理者"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
-msgid "Admin Password"
-msgstr "管理者パスワード"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
-#: airtime_mvc/application/controllers/LocaleController.php:173
-msgid "Getting information from the server..."
-msgstr "サーバーから情報を取得しています…"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
-msgid "Server cannot be empty."
-msgstr "サーバーを入力してください。"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
-msgid "Port cannot be empty."
-msgstr "ポートを入力してください。"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
-msgid "Mount cannot be empty with Icecast server."
-msgstr "Icecastサーバーを使用する際はマウント欄を入力してください。"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
-msgid "'%value%' is no valid email address in the basic format local-part@hostname"
-msgstr "'%value%'は無効なEメールアドレスです。local-part@hostnameの形式に沿ったEメールアドレスを登録してください。"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
-msgid "'%value%' does not fit the date format '%format%'"
-msgstr "'%value%'は、'%format%'の日付形式に一致しません。"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
-msgid "'%value%' is less than %min% characters long"
-msgstr "'%value%'は、%min%文字より短くなっています。"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
-msgid "'%value%' is more than %max% characters long"
-msgstr "'%value%'は、%max%文字を越えています。"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
-msgid "'%value%' is not between '%min%' and '%max%', inclusively"
-msgstr "'%value%'は、'%min%'以上'%max%'以下の条件に一致しません。"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
-msgid "Passwords do not match"
-msgstr "パスワードが一致しません。"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
-msgid "hours"
+#: airtime_mvc/application/services/HistoryService.php:1117
+#: airtime_mvc/application/services/HistoryService.php:1157
+#: airtime_mvc/application/services/HistoryService.php:1174
+#: airtime_mvc/application/controllers/LocaleController.php:76
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
+#: airtime_mvc/application/models/Block.php:1375
+msgid "Title"
+msgstr "タイトル"
+
+#: airtime_mvc/application/services/HistoryService.php:1118
+#: airtime_mvc/application/services/HistoryService.php:1158
+#: airtime_mvc/application/services/HistoryService.php:1175
+#: airtime_mvc/application/controllers/LocaleController.php:77
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
+#: airtime_mvc/application/models/Block.php:1360
+msgid "Creator"
+msgstr "アーティスト"
+
+#: airtime_mvc/application/services/HistoryService.php:1119
+#: airtime_mvc/application/controllers/LocaleController.php:78
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
+#: airtime_mvc/application/models/Block.php:1352
+msgid "Album"
+msgstr "アルバム"
+
+#: airtime_mvc/application/services/HistoryService.php:1120
+#: airtime_mvc/application/services/HistoryService.php:1177
+#: airtime_mvc/application/controllers/LocaleController.php:91
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
+#: airtime_mvc/application/models/Block.php:1369
+msgid "Length"
msgstr "時間"
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
-msgid "minutes"
-msgstr "分"
+#: airtime_mvc/application/services/HistoryService.php:1121
+#: airtime_mvc/application/controllers/LocaleController.php:85
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
+#: airtime_mvc/application/models/Block.php:1362
+msgid "Genre"
+msgstr "ジャンル"
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
-msgid "Randomly"
-msgstr ""
+#: airtime_mvc/application/services/HistoryService.php:1122
+#: airtime_mvc/application/controllers/LocaleController.php:93
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
+#: airtime_mvc/application/models/Block.php:1371
+msgid "Mood"
+msgstr "ムード"
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
-msgid "Newest"
-msgstr ""
+#: airtime_mvc/application/services/HistoryService.php:1123
+#: airtime_mvc/application/controllers/LocaleController.php:87
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
+#: airtime_mvc/application/models/Block.php:1364
+msgid "Label"
+msgstr "レーベル"
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
-msgid "Oldest"
-msgstr ""
+#: airtime_mvc/application/services/HistoryService.php:1124
+#: airtime_mvc/application/services/HistoryService.php:1178
+#: airtime_mvc/application/controllers/LocaleController.php:81
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
+#: airtime_mvc/application/models/Block.php:1355
+msgid "Composer"
+msgstr "作曲者"
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
-msgid "Type:"
-msgstr ""
+#: airtime_mvc/application/services/HistoryService.php:1125
+#: airtime_mvc/application/controllers/LocaleController.php:86
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
+#: airtime_mvc/application/models/Block.php:1363
+msgid "ISRC"
+msgstr "ISRC"
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
-msgid "Static"
-msgstr "スマート・ブロック"
+#: airtime_mvc/application/services/HistoryService.php:1126
+#: airtime_mvc/application/services/HistoryService.php:1179
+#: airtime_mvc/application/controllers/LocaleController.php:83
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
+#: airtime_mvc/application/models/Block.php:1357
+msgid "Copyright"
+msgstr "著作権"
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
-msgid "Dynamic"
-msgstr "自動生成スマート・ブロック"
+#: airtime_mvc/application/services/HistoryService.php:1127
+#: airtime_mvc/application/controllers/LocaleController.php:100
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
+#: airtime_mvc/application/models/Block.php:1379
+msgid "Year"
+msgstr "年"
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
-msgid "Allow Repeated Tracks:"
-msgstr ""
+#: airtime_mvc/application/services/HistoryService.php:1128
+msgid "Track"
+msgstr "トラック"
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
-msgid "Sort Tracks:"
-msgstr ""
+#: airtime_mvc/application/services/HistoryService.php:1129
+#: airtime_mvc/application/controllers/LocaleController.php:82
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
+#: airtime_mvc/application/models/Block.php:1356
+msgid "Conductor"
+msgstr "コンダクター"
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
-msgid "Limit to:"
-msgstr ""
+#: airtime_mvc/application/services/HistoryService.php:1130
+#: airtime_mvc/application/controllers/LocaleController.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
+#: airtime_mvc/application/models/Block.php:1365
+msgid "Language"
+msgstr "言語"
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
-msgid "Generate playlist content and save criteria"
-msgstr "プレイリストコンテンツを生成し、基準を保存"
+#: airtime_mvc/application/services/HistoryService.php:1155
+#: airtime_mvc/application/forms/EditHistoryItem.php:32
+msgid "Start Time"
+msgstr "開始時間"
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
-msgid "Generate"
-msgstr "生成"
+#: airtime_mvc/application/services/HistoryService.php:1156
+#: airtime_mvc/application/forms/EditHistoryItem.php:44
+msgid "End Time"
+msgstr "終了時間"
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
-msgid "Shuffle playlist content"
-msgstr "プレイリストの内容をシャッフル"
+#: airtime_mvc/application/services/HistoryService.php:1176
+msgid "Played"
+msgstr "再生済み"
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
-msgid "Limit cannot be empty or smaller than 0"
-msgstr "制限は空欄または0以下には設定できません。"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
-msgid "Limit cannot be more than 24 hrs"
-msgstr "制限は24時間以内に設定してください。"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
-msgid "The value should be an integer"
-msgstr "値は整数である必要があります。"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
-msgid "500 is the max item limit value you can set"
-msgstr "設定できるアイテムの最大数は500です。"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
-msgid "You must select Criteria and Modifier"
-msgstr "「基準」と「条件」を選択してください。"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
-msgid "'Length' should be in '00:00:00' format"
-msgstr "「長さ」は、'00:00:00'の形式で入力してください。"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
-msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)"
-msgstr "値はタイムスタンプの形式に適合する必要があります。 (例: 0000-00-00 or 0000-00-00 00:00:00)"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:594
-msgid "The value has to be numeric"
-msgstr "値は数字である必要があります。"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
-msgid "The value should be less then 2147483648"
-msgstr "値は2147483648未満にする必要があります。"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
+#: airtime_mvc/application/controllers/LibraryController.php:31
+#: airtime_mvc/application/controllers/PlaylistController.php:147
#, php-format
-msgid "The value should be less than %s characters"
-msgstr "値は%s未満にする必要があります。"
+msgid "%s not found"
+msgstr "%s は見つかりませんでした。"
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
-msgid "Value cannot be empty"
-msgstr "値を入力してください。"
+#: airtime_mvc/application/controllers/LibraryController.php:40
+#: airtime_mvc/application/controllers/PlaylistController.php:168
+msgid "Something went wrong."
+msgstr "問題が生じました。"
-#: airtime_mvc/application/forms/Login.php:102
-msgid "Type the characters you see in the picture below."
-msgstr "下記画像の中に見える文字を入力してください。"
+#: airtime_mvc/application/controllers/LibraryController.php:95
+#: airtime_mvc/application/controllers/ShowbuilderController.php:136
+msgid "Preview"
+msgstr "プレビュー"
-#: airtime_mvc/application/forms/StreamSetting.php:26
-msgid "Icecast Vorbis Metadata"
-msgstr "Icecast Vorbisメタデータ"
+#: airtime_mvc/application/controllers/LibraryController.php:115
+#: airtime_mvc/application/controllers/LibraryController.php:177
+#: airtime_mvc/application/controllers/LibraryController.php:200
+msgid "Add to Playlist"
+msgstr "プレイリストに追加"
-#: airtime_mvc/application/forms/StreamSetting.php:36
-msgid "Stream Label:"
-msgstr "配信表示設定:"
+#: airtime_mvc/application/controllers/LibraryController.php:117
+msgid "Add to Smart Block"
+msgstr "スマートブロックに追加"
-#: airtime_mvc/application/forms/StreamSetting.php:37
-msgid "Artist - Title"
-msgstr "アーティスト - タイトル"
+#: airtime_mvc/application/controllers/LibraryController.php:123
+#: airtime_mvc/application/controllers/LocaleController.php:66
+msgid "Edit Metadata"
+msgstr "メタデータの編集"
-#: airtime_mvc/application/forms/StreamSetting.php:38
-msgid "Show - Artist - Title"
-msgstr "番組 - アーティスト - タイトル"
+#: airtime_mvc/application/controllers/LibraryController.php:131
+#: airtime_mvc/application/controllers/ScheduleController.php:712
+msgid "Download"
+msgstr "ダウンロード"
-#: airtime_mvc/application/forms/StreamSetting.php:39
-msgid "Station name - Show name"
-msgstr "ステーション名 - 番組名"
-
-#: airtime_mvc/application/forms/StreamSetting.php:45
-msgid "Off Air Metadata"
-msgstr "オフエアーメタデータ"
-
-#: airtime_mvc/application/forms/StreamSetting.php:51
-msgid "Enable Replay Gain"
-msgstr "リプレイゲインを有効化"
-
-#: airtime_mvc/application/forms/StreamSetting.php:57
-msgid "Replay Gain Modifier"
-msgstr "リプレイゲイン調整"
-
-#: airtime_mvc/application/forms/StreamSetting.php:65
-msgid "Streaming Server:"
+#: airtime_mvc/application/controllers/LibraryController.php:147
+msgid "View track"
msgstr ""
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Airtime Pro Streaming"
+#: airtime_mvc/application/controllers/LibraryController.php:148
+msgid "Remove track"
msgstr ""
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Custom / 3rd Party Streaming"
+#: airtime_mvc/application/controllers/LibraryController.php:154
+#: airtime_mvc/application/controllers/LibraryController.php:159
+msgid "Upload track"
msgstr ""
-#: airtime_mvc/application/forms/AddUser.php:95
-msgid "User Type:"
-msgstr "ユーザー種別:"
+#: airtime_mvc/application/controllers/LibraryController.php:169
+msgid "Duplicate Playlist"
+msgstr "プレイリストのコピー"
-#: airtime_mvc/application/forms/AddUser.php:99
-#: airtime_mvc/application/controllers/LocaleController.php:324
-msgid "Guest"
-msgstr "ゲスト"
+#: airtime_mvc/application/controllers/LibraryController.php:213
+msgid "No action available"
+msgstr "実行可能な操作はありません。"
-#: airtime_mvc/application/forms/AddUser.php:100
-#: airtime_mvc/application/controllers/LocaleController.php:322
-msgid "DJ"
-msgstr "DJ"
+#: airtime_mvc/application/controllers/LibraryController.php:233
+msgid "You don't have permission to delete selected items."
+msgstr "選択した項目を削除する権限がありません。"
-#: airtime_mvc/application/forms/AddUser.php:101
-#: airtime_mvc/application/controllers/LocaleController.php:323
-msgid "Program Manager"
-msgstr "プログラムマネージャー"
-
-#: airtime_mvc/application/forms/AddUser.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:321
-msgid "Admin"
-msgstr "管理者"
-
-#: airtime_mvc/application/forms/BillingClient.php:17
-msgid "First Name:"
+#: airtime_mvc/application/controllers/LibraryController.php:279
+msgid "Could not delete file because it is scheduled in the future."
msgstr ""
-#: airtime_mvc/application/forms/BillingClient.php:26
-msgid "Last Name:"
+#: airtime_mvc/application/controllers/LibraryController.php:282
+msgid "Could not delete file(s)."
msgstr ""
-#: airtime_mvc/application/forms/BillingClient.php:35
-msgid "Company Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:44
-msgid "Email Address:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:54
-msgid "Address 1:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:63
-msgid "Address 2:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:80
-msgid "State/Region:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:89
-msgid "Zip Code / Postal Code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:112
-msgid "Phone Number:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:121
-msgid "Please choose a security question:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:126
-msgid "What is the name of your favorite childhood friend?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:127
-msgid "What school did you attend for sixth grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:128
-msgid "In what city did you meet your spouse/significant other?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:129
-msgid "What street did you live on in third grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:130
-msgid "What is the first name of the boy or girl that you first kissed?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:131
-msgid "In what city or town was your first job?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:135
-msgid "Please enter an answer:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:152
-msgid "VAT/Tax ID (EU only)"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:162
-msgid "Subscribe to Sourcefabric newsletter"
-msgstr ""
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
-msgid "Import Folder:"
-msgstr "インポートフォルダ:"
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
-msgid "Watched Folders:"
-msgstr "同期フォルダ:"
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
-msgid "Not a valid Directory"
-msgstr "正しいディレクトリではありません。"
-
-#: airtime_mvc/application/forms/PasswordRestore.php:14
-msgid "Email"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordRestore.php:36
-msgid "Reset password"
-msgstr "パスワードをリセット"
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
-msgid "Plan type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
-msgid "Billing cycle:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
-msgid "Payment method:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
-msgid "PayPal"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
-msgid "Credit Card via 2Checkout"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:213
+#: airtime_mvc/application/controllers/LibraryController.php:322
#, php-format
-msgid "The year %s must be within the range of 1753 - 9999"
-msgstr "%s年は、1753 - 9999の範囲内である必要があります。"
+msgid "Copy of %s"
+msgstr "%sのコピー"
-#: airtime_mvc/application/common/DateHelper.php:216
-#, php-format
-msgid "%s-%s-%s is not a valid date"
-msgstr "%s-%s-%sは正しい日付ではありません。"
+#: airtime_mvc/application/controllers/WebstreamController.php:28
+#: airtime_mvc/application/controllers/WebstreamController.php:32
+msgid "Untitled Webstream"
+msgstr "無題のウェブ配信"
-#: airtime_mvc/application/common/DateHelper.php:240
-#, php-format
-msgid "%s:%s:%s is not a valid time"
-msgstr "%s:%s:%sは正しい時間ではありません。"
+#: airtime_mvc/application/controllers/WebstreamController.php:150
+msgid "Webstream saved."
+msgstr "ウェブ配信が保存されました。"
-#: airtime_mvc/application/common/UsabilityHints.php:55
-msgid "Upload some tracks below to add them to your library!"
-msgstr ""
+#: airtime_mvc/application/controllers/WebstreamController.php:158
+msgid "Invalid form values."
+msgstr "入力欄に無効な値があります。"
-#: airtime_mvc/application/common/UsabilityHints.php:57
-#, php-format
-msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:63
-msgid "Click the 'New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:65
-#, php-format
-msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:73
-msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:75
-#, php-format
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
msgid ""
-"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
-" %sCreate an unlinked show now%s."
+"To configure and use the embeddable player you must:
\n"
+" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
+" 2. Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/common/UsabilityHints.php:80
-msgid "To start broadcasting, click on the current show and select 'Schedule Show'"
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
+msgid ""
+"To use the embeddable weekly schedule widget you must:
\n"
+" Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/common/UsabilityHints.php:82
+#: airtime_mvc/application/controllers/ListenerstatController.php:51
+msgid "Please make sure admin user/password is correct on System->Streams page."
+msgstr "管理ユーザー・パスワードが正しいか、システム>配信のページで確認して下さい。"
+
+#: airtime_mvc/application/controllers/UserController.php:86
+msgid "User added successfully!"
+msgstr "ユーザーの追加に成功しました。"
+
+#: airtime_mvc/application/controllers/UserController.php:88
+msgid "User updated successfully!"
+msgstr "ユーザーの更新に成功しました。"
+
+#: airtime_mvc/application/controllers/UserController.php:187
+msgid "Settings updated successfully!"
+msgstr "設定の更新に成功しました。"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:53
#, php-format
-msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
-msgstr ""
+msgid "You are viewing an older version of %s"
+msgstr "%sの古いバージョンを閲覧しています。"
-#: airtime_mvc/application/common/UsabilityHints.php:89
-msgid "Click on the show starting next and select 'Schedule Show'"
-msgstr ""
+#: airtime_mvc/application/controllers/PlaylistController.php:140
+msgid "You cannot add tracks to dynamic blocks."
+msgstr "自動生成スマート・ブロックにトラックを追加することはできません。"
-#: airtime_mvc/application/common/UsabilityHints.php:91
+#: airtime_mvc/application/controllers/PlaylistController.php:161
#, php-format
-msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+msgid "You don't have permission to delete selected %s(s)."
+msgstr "選択された%sを削除する権限がありません。"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:174
+msgid "You can only add tracks to smart block."
+msgstr "スマートブロックに追加できるのはトラックのみです。"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:180
+#: airtime_mvc/application/controllers/LocaleController.php:50
+msgid "You can only add tracks, smart blocks, and webstreams to playlists."
+msgstr "プレイリストに追加できるのはトラック・スマートブロック・ウェブ配信のみです。"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:192
+msgid "Untitled Playlist"
+msgstr "無題のプレイリスト"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:194
+msgid "Untitled Smart Block"
+msgstr "無題のスマートブロック"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:522
+msgid "Unknown Playlist"
+msgstr "不明なプレイリスト"
+
+#: airtime_mvc/application/controllers/ErrorController.php:78
+msgid "Page not found."
msgstr ""
+#: airtime_mvc/application/controllers/ErrorController.php:87
+msgid "The requested action is not supported."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:98
+msgid "You do not have permission to access this resource."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:109
+msgid "An internal application error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/controllers/Apiv2Controller.php:77
+#: airtime_mvc/application/controllers/ApiController.php:79
+msgid "You are not allowed to access this resource."
+msgstr "このリソースへのアクセスは許可されていません。"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:72
+msgid "Preferences updated."
+msgstr "設定が更新されました。"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:115
+msgid "Support setting updated."
+msgstr "サポート設定が更新されました。"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:123
+msgid "Support Feedback"
+msgstr "サポートフィードバック"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:251
+msgid "Stream Setting Updated."
+msgstr "配信設定が更新されました。"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:342
+msgid "path should be specified"
+msgstr "パスを指定する必要があります"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:437
+msgid "Problem with Liquidsoap..."
+msgstr "Liquidsoapに問題があります。"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:493
+msgid "Request method not accepted"
+msgstr ""
+
+#: airtime_mvc/application/controllers/DashboardController.php:35
+#: airtime_mvc/application/controllers/DashboardController.php:84
+msgid "You don't have permission to disconnect source."
+msgstr "ソースを切断する権限がありません。"
+
+#: airtime_mvc/application/controllers/DashboardController.php:37
+#: airtime_mvc/application/controllers/DashboardController.php:86
+msgid "There is no source connected to this input."
+msgstr "この入力に接続されたソースが存在しません。"
+
+#: airtime_mvc/application/controllers/DashboardController.php:81
+msgid "You don't have permission to switch source."
+msgstr "ソースを切り替える権限がありません。"
+
+#: airtime_mvc/application/controllers/LoginController.php:43
+msgid "Please enter your username and password."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:93
+msgid "Wrong username or password provided. Please try again."
+msgstr "入力されたユーザー名またはパスワードが誤っています。"
+
+#: airtime_mvc/application/controllers/LoginController.php:167
+msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
+msgstr "メールが送信できませんでした。メールサーバーの設定を確認してください。"
+
+#: airtime_mvc/application/controllers/LoginController.php:173
+msgid "There was a problem with the username or email address you entered."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ApiController.php:244
+#: airtime_mvc/application/controllers/ApiController.php:317
+#: airtime_mvc/application/controllers/ApiController.php:392
+#: airtime_mvc/application/controllers/ApiController.php:435
+#: airtime_mvc/application/controllers/ApiController.php:474
+#: airtime_mvc/application/controllers/ApiController.php:507
+msgid "You are not allowed to access this resource. "
+msgstr "このリソースへのアクセスは許可されていません。"
+
+#: airtime_mvc/application/controllers/ApiController.php:698
+#: airtime_mvc/application/controllers/ApiController.php:718
+#: airtime_mvc/application/controllers/ApiController.php:730
+#, php-format
+msgid "File does not exist in %s"
+msgstr ""
+
+#: airtime_mvc/application/controllers/ApiController.php:781
+msgid "Bad request. no 'mode' parameter passed."
+msgstr "Bad Request:パスした「mode」パラメータはありません。"
+
+#: airtime_mvc/application/controllers/ApiController.php:791
+msgid "Bad request. 'mode' parameter is invalid"
+msgstr "Bad Request:'mode' パラメータが無効です。"
+
#: airtime_mvc/application/controllers/LocaleController.php:30
#: airtime_mvc/application/layouts/scripts/audio-player.phtml:5
msgid "Audio Player"
@@ -2910,11 +561,6 @@ msgstr " %s個の項目を追加"
msgid "You can only add tracks to smart blocks."
msgstr "スマートブロックに追加できるのはトラックのみです。"
-#: airtime_mvc/application/controllers/LocaleController.php:50
-#: airtime_mvc/application/controllers/PlaylistController.php:180
-msgid "You can only add tracks, smart blocks, and webstreams to playlists."
-msgstr "プレイリストに追加できるのはトラック・スマートブロック・ウェブ配信のみです。"
-
#: airtime_mvc/application/controllers/LocaleController.php:53
msgid "Please select a cursor position on timeline."
msgstr "タイムライン上のカーソル位置を選択して下さい。"
@@ -2955,11 +601,6 @@ msgstr ""
msgid "Click 'New' to create one."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:66
-#: airtime_mvc/application/controllers/LibraryController.php:123
-msgid "Edit Metadata"
-msgstr "メタデータの編集"
-
#: airtime_mvc/application/controllers/LocaleController.php:67
msgid "Add to selected show"
msgstr "選択した番組へ追加"
@@ -2988,6 +629,12 @@ msgstr "選択した項目を削除してもよろしいですか?"
msgid "Scheduled"
msgstr "配信予約済み"
+#: airtime_mvc/application/controllers/LocaleController.php:74
+#: airtime_mvc/application/layouts/scripts/layout.phtml:78
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
+msgid "Tracks"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:75
#: airtime_mvc/application/layouts/scripts/layout.phtml:60
msgid "Playlist"
@@ -2997,18 +644,96 @@ msgstr ""
msgid "Bit Rate"
msgstr "ビットレート"
+#: airtime_mvc/application/controllers/LocaleController.php:80
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
+#: airtime_mvc/application/models/Block.php:1354
+msgid "BPM"
+msgstr "BPM "
+
+#: airtime_mvc/application/controllers/LocaleController.php:84
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
+#: airtime_mvc/application/models/Block.php:1361
+msgid "Encoded By"
+msgstr "エンコード"
+
+#: airtime_mvc/application/controllers/LocaleController.php:89
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
+#: airtime_mvc/application/models/Block.php:1367
+msgid "Last Modified"
+msgstr "最終修正"
+
+#: airtime_mvc/application/controllers/LocaleController.php:90
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
+#: airtime_mvc/application/models/Block.php:1368
+msgid "Last Played"
+msgstr "最終配信日"
+
+#: airtime_mvc/application/controllers/LocaleController.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
+#: airtime_mvc/application/models/Block.php:1370
+msgid "Mime"
+msgstr "MIMEタイプ"
+
+#: airtime_mvc/application/controllers/LocaleController.php:94
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
+#: airtime_mvc/application/models/Block.php:1372
+msgid "Owner"
+msgstr "所有者"
+
+#: airtime_mvc/application/controllers/LocaleController.php:95
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
+#: airtime_mvc/application/models/Block.php:1373
+msgid "Replay Gain"
+msgstr "リプレイゲイン"
+
#: airtime_mvc/application/controllers/LocaleController.php:96
msgid "Sample Rate"
msgstr "サンプルレート"
+#: airtime_mvc/application/controllers/LocaleController.php:97
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
+#: airtime_mvc/application/models/Block.php:1376
+msgid "Track Number"
+msgstr "トラック番号"
+
+#: airtime_mvc/application/controllers/LocaleController.php:98
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
+#: airtime_mvc/application/models/Block.php:1377
+msgid "Uploaded"
+msgstr "アップロード完了"
+
+#: airtime_mvc/application/controllers/LocaleController.php:99
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
+#: airtime_mvc/application/models/Block.php:1378
+msgid "Website"
+msgstr "ウェブサイト"
+
#: airtime_mvc/application/controllers/LocaleController.php:101
msgid "Loading..."
msgstr "ロード中…"
+#: airtime_mvc/application/controllers/LocaleController.php:102
+#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
+msgid "All"
+msgstr "全て"
+
#: airtime_mvc/application/controllers/LocaleController.php:103
msgid "Files"
msgstr "ファイル"
+#: airtime_mvc/application/controllers/LocaleController.php:104
+#: airtime_mvc/application/layouts/scripts/layout.phtml:80
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
+msgid "Playlists"
+msgstr "プレイリスト"
+
+#: airtime_mvc/application/controllers/LocaleController.php:105
+#: airtime_mvc/application/layouts/scripts/layout.phtml:82
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
+msgid "Smart Blocks"
+msgstr "スマートブロック"
+
#: airtime_mvc/application/controllers/LocaleController.php:106
msgid "Web Streams"
msgstr "ウェブ配信"
@@ -3153,6 +878,74 @@ msgstr "スマートブロックを保存しました。"
msgid "Processing..."
msgstr "処理中…"
+#: airtime_mvc/application/controllers/LocaleController.php:151
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
+#: airtime_mvc/application/models/Block.php:1383
+msgid "Select modifier"
+msgstr "条件を選択してください"
+
+#: airtime_mvc/application/controllers/LocaleController.php:152
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
+#: airtime_mvc/application/models/Block.php:1384
+msgid "contains"
+msgstr "以下を含む"
+
+#: airtime_mvc/application/controllers/LocaleController.php:153
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
+#: airtime_mvc/application/models/Block.php:1385
+msgid "does not contain"
+msgstr "以下を含まない"
+
+#: airtime_mvc/application/controllers/LocaleController.php:154
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
+#: airtime_mvc/application/models/Block.php:1386
+#: airtime_mvc/application/models/Block.php:1390
+msgid "is"
+msgstr "以下と一致する"
+
+#: airtime_mvc/application/controllers/LocaleController.php:155
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
+#: airtime_mvc/application/models/Block.php:1387
+#: airtime_mvc/application/models/Block.php:1391
+msgid "is not"
+msgstr "以下と一致しない"
+
+#: airtime_mvc/application/controllers/LocaleController.php:156
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
+#: airtime_mvc/application/models/Block.php:1388
+msgid "starts with"
+msgstr "以下で始まる"
+
+#: airtime_mvc/application/controllers/LocaleController.php:157
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
+#: airtime_mvc/application/models/Block.php:1389
+msgid "ends with"
+msgstr "以下で終わる"
+
+#: airtime_mvc/application/controllers/LocaleController.php:158
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
+#: airtime_mvc/application/models/Block.php:1392
+msgid "is greater than"
+msgstr "次の値より大きい"
+
+#: airtime_mvc/application/controllers/LocaleController.php:159
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
+#: airtime_mvc/application/models/Block.php:1393
+msgid "is less than"
+msgstr "次の値より小さい"
+
+#: airtime_mvc/application/controllers/LocaleController.php:160
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
+#: airtime_mvc/application/models/Block.php:1394
+msgid "is in the range"
+msgstr "次の範囲内"
+
#: airtime_mvc/application/controllers/LocaleController.php:162
msgid "Choose Storage Folder"
msgstr "フォルダを選択してください。"
@@ -3167,6 +960,11 @@ msgid ""
"This will remove the files from your Airtime library!"
msgstr "保存先のフォルダを変更しますか?Rakuten.FMライブラリからファイルを削除することになります!"
+#: airtime_mvc/application/controllers/LocaleController.php:166
+#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
+msgid "Manage Media Folders"
+msgstr "メディアフォルダの管理"
+
#: airtime_mvc/application/controllers/LocaleController.php:167
msgid "Are you sure you want to remove the watched folder?"
msgstr "同期されているフォルダを削除してもよろしいですか?"
@@ -3188,6 +986,11 @@ msgstr "ストリーミングサーバーに接続しています。"
msgid "The stream is disabled"
msgstr "配信が切断されています。"
+#: airtime_mvc/application/controllers/LocaleController.php:173
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
+msgid "Getting information from the server..."
+msgstr "サーバーから情報を取得しています…"
+
#: airtime_mvc/application/controllers/LocaleController.php:174
msgid "Can not connect to the streaming server"
msgstr "ストリーミングサーバーに接続できません。"
@@ -3415,6 +1218,76 @@ msgstr ""
msgid "Month"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:249
+#: airtime_mvc/application/forms/GeneralPreferences.php:158
+msgid "Sunday"
+msgstr "日曜日"
+
+#: airtime_mvc/application/controllers/LocaleController.php:250
+#: airtime_mvc/application/forms/GeneralPreferences.php:159
+msgid "Monday"
+msgstr "月曜日"
+
+#: airtime_mvc/application/controllers/LocaleController.php:251
+#: airtime_mvc/application/forms/GeneralPreferences.php:160
+msgid "Tuesday"
+msgstr "火曜日"
+
+#: airtime_mvc/application/controllers/LocaleController.php:252
+#: airtime_mvc/application/forms/GeneralPreferences.php:161
+msgid "Wednesday"
+msgstr "水曜日"
+
+#: airtime_mvc/application/controllers/LocaleController.php:253
+#: airtime_mvc/application/forms/GeneralPreferences.php:162
+msgid "Thursday"
+msgstr "木曜日"
+
+#: airtime_mvc/application/controllers/LocaleController.php:254
+#: airtime_mvc/application/forms/GeneralPreferences.php:163
+msgid "Friday"
+msgstr "金曜日"
+
+#: airtime_mvc/application/controllers/LocaleController.php:255
+#: airtime_mvc/application/forms/GeneralPreferences.php:164
+msgid "Saturday"
+msgstr "土曜日"
+
+#: airtime_mvc/application/controllers/LocaleController.php:256
+#: airtime_mvc/application/forms/AddShowRepeats.php:35
+msgid "Sun"
+msgstr "日"
+
+#: airtime_mvc/application/controllers/LocaleController.php:257
+#: airtime_mvc/application/forms/AddShowRepeats.php:36
+msgid "Mon"
+msgstr "月"
+
+#: airtime_mvc/application/controllers/LocaleController.php:258
+#: airtime_mvc/application/forms/AddShowRepeats.php:37
+msgid "Tue"
+msgstr "火"
+
+#: airtime_mvc/application/controllers/LocaleController.php:259
+#: airtime_mvc/application/forms/AddShowRepeats.php:38
+msgid "Wed"
+msgstr "水"
+
+#: airtime_mvc/application/controllers/LocaleController.php:260
+#: airtime_mvc/application/forms/AddShowRepeats.php:39
+msgid "Thu"
+msgstr "木"
+
+#: airtime_mvc/application/controllers/LocaleController.php:261
+#: airtime_mvc/application/forms/AddShowRepeats.php:40
+msgid "Fri"
+msgstr "金"
+
+#: airtime_mvc/application/controllers/LocaleController.php:262
+#: airtime_mvc/application/forms/AddShowRepeats.php:41
+msgid "Sat"
+msgstr "土"
+
#: airtime_mvc/application/controllers/LocaleController.php:263
msgid "Shows longer than their scheduled time will be cut off by a following show."
msgstr "番組が予約された時間より長くなった場合はカットされ、次の番組が始まります。"
@@ -3424,7 +1297,7 @@ msgid "Cancel Current Show?"
msgstr "現在の番組をキャンセルしますか?"
#: airtime_mvc/application/controllers/LocaleController.php:265
-#: airtime_mvc/application/controllers/LocaleController.php:309
+#: airtime_mvc/application/controllers/LocaleController.php:312
msgid "Stop recording current show?"
msgstr "配信中の番組の録音を中止しますか?"
@@ -3444,6 +1317,11 @@ msgstr "全てのコンテンツを削除しますか?"
msgid "Delete selected item(s)?"
msgstr "選択した項目を削除しますか?"
+#: airtime_mvc/application/controllers/LocaleController.php:273
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
+msgid "Start"
+msgstr "開始"
+
#: airtime_mvc/application/controllers/LocaleController.php:274
msgid "End"
msgstr "終了"
@@ -3452,580 +1330,467 @@ msgstr "終了"
msgid "Duration"
msgstr "長さ"
-#: airtime_mvc/application/controllers/LocaleController.php:283
+#: airtime_mvc/application/controllers/LocaleController.php:276
+msgid "Filtering out "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:277
+msgid " of "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:278
+msgid " records"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/layouts/scripts/layout.phtml:140
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
+#: airtime_mvc/application/models/Block.php:1358
+msgid "Cue In"
+msgstr "キューイン"
+
+#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/layouts/scripts/layout.phtml:147
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
+#: airtime_mvc/application/models/Block.php:1359
+msgid "Cue Out"
+msgstr "キューアウト"
+
+#: airtime_mvc/application/controllers/LocaleController.php:286
#: airtime_mvc/application/layouts/scripts/layout.phtml:167
msgid "Fade In"
msgstr "フェードイン"
-#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/controllers/LocaleController.php:287
#: airtime_mvc/application/layouts/scripts/layout.phtml:168
msgid "Fade Out"
msgstr "フェードアウト"
-#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/controllers/LocaleController.php:288
msgid "Show Empty"
msgstr "番組内容がありません。"
-#: airtime_mvc/application/controllers/LocaleController.php:286
+#: airtime_mvc/application/controllers/LocaleController.php:289
msgid "Recording From Line In"
msgstr "ライン入力から録音"
-#: airtime_mvc/application/controllers/LocaleController.php:287
+#: airtime_mvc/application/controllers/LocaleController.php:290
msgid "Track preview"
msgstr "試聴する"
-#: airtime_mvc/application/controllers/LocaleController.php:291
+#: airtime_mvc/application/controllers/LocaleController.php:294
msgid "Cannot schedule outside a show."
msgstr "番組外に予約することは出来ません。"
-#: airtime_mvc/application/controllers/LocaleController.php:292
+#: airtime_mvc/application/controllers/LocaleController.php:295
msgid "Moving 1 Item"
msgstr "1個の項目を移動"
-#: airtime_mvc/application/controllers/LocaleController.php:293
+#: airtime_mvc/application/controllers/LocaleController.php:296
#, php-format
msgid "Moving %s Items"
msgstr "%s 個の項目を移動"
-#: airtime_mvc/application/controllers/LocaleController.php:296
+#: airtime_mvc/application/controllers/LocaleController.php:297
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
+#: airtime_mvc/application/forms/Preferences.php:40
+#: airtime_mvc/application/forms/EditHistory.php:131
+#: airtime_mvc/application/forms/AddUser.php:110
+#: airtime_mvc/application/forms/PasswordChange.php:43
+#: airtime_mvc/application/forms/SupportSettings.php:131
+msgid "Save"
+msgstr "保存"
+
+#: airtime_mvc/application/controllers/LocaleController.php:298
+#: airtime_mvc/application/controllers/LocaleController.php:321
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
+#: airtime_mvc/application/forms/EditHistory.php:141
+#: airtime_mvc/application/forms/EditAudioMD.php:186
+msgid "Cancel"
+msgstr "キャンセル"
+
+#: airtime_mvc/application/controllers/LocaleController.php:299
msgid "Fade Editor"
msgstr "フェードの編集"
-#: airtime_mvc/application/controllers/LocaleController.php:297
+#: airtime_mvc/application/controllers/LocaleController.php:300
msgid "Cue Editor"
msgstr "キューの編集"
-#: airtime_mvc/application/controllers/LocaleController.php:298
+#: airtime_mvc/application/controllers/LocaleController.php:301
msgid "Waveform features are available in a browser supporting the Web Audio API"
msgstr "波形表示機能はWeb Audio APIに対応するブラウザで利用できます。"
-#: airtime_mvc/application/controllers/LocaleController.php:301
+#: airtime_mvc/application/controllers/LocaleController.php:304
msgid "Select all"
msgstr "全て選択"
-#: airtime_mvc/application/controllers/LocaleController.php:302
+#: airtime_mvc/application/controllers/LocaleController.php:305
msgid "Select none"
msgstr "全て解除"
-#: airtime_mvc/application/controllers/LocaleController.php:303
+#: airtime_mvc/application/controllers/LocaleController.php:306
msgid "Trim overbooked shows"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:304
+#: airtime_mvc/application/controllers/LocaleController.php:307
msgid "Remove selected scheduled items"
msgstr "選択した項目を削除"
-#: airtime_mvc/application/controllers/LocaleController.php:305
+#: airtime_mvc/application/controllers/LocaleController.php:308
msgid "Jump to the current playing track"
msgstr "現在再生中のトラックに移動"
-#: airtime_mvc/application/controllers/LocaleController.php:306
+#: airtime_mvc/application/controllers/LocaleController.php:309
msgid "Cancel current show"
msgstr "配信中の番組をキャンセル"
-#: airtime_mvc/application/controllers/LocaleController.php:311
+#: airtime_mvc/application/controllers/LocaleController.php:314
msgid "Open library to add or remove content"
msgstr "ライブラリを開いてコンテンツを追加・削除する"
-#: airtime_mvc/application/controllers/LocaleController.php:312
+#: airtime_mvc/application/controllers/LocaleController.php:315
msgid "Add / Remove Content"
msgstr "コンテンツの追加・削除"
#: airtime_mvc/application/controllers/LocaleController.php:317
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
+msgid "in use"
+msgstr "使用中"
+
+#: airtime_mvc/application/controllers/LocaleController.php:318
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
+msgid "Disk"
+msgstr "ディスク"
+
+#: airtime_mvc/application/controllers/LocaleController.php:320
msgid "Look in"
msgstr "閲覧"
-#: airtime_mvc/application/controllers/LocaleController.php:319
+#: airtime_mvc/application/controllers/LocaleController.php:322
msgid "Open"
msgstr "開く"
+#: airtime_mvc/application/controllers/LocaleController.php:324
+#: airtime_mvc/application/forms/AddUser.php:102
+msgid "Admin"
+msgstr "管理者"
+
#: airtime_mvc/application/controllers/LocaleController.php:325
+#: airtime_mvc/application/forms/AddUser.php:100
+msgid "DJ"
+msgstr "DJ"
+
+#: airtime_mvc/application/controllers/LocaleController.php:326
+#: airtime_mvc/application/forms/AddUser.php:101
+msgid "Program Manager"
+msgstr "プログラムマネージャー"
+
+#: airtime_mvc/application/controllers/LocaleController.php:327
+#: airtime_mvc/application/forms/AddUser.php:99
+msgid "Guest"
+msgstr "ゲスト"
+
+#: airtime_mvc/application/controllers/LocaleController.php:328
msgid "Guests can do the following:"
msgstr "ゲストは以下の操作ができます:"
-#: airtime_mvc/application/controllers/LocaleController.php:326
+#: airtime_mvc/application/controllers/LocaleController.php:329
msgid "View schedule"
msgstr "スケジュールを見る"
-#: airtime_mvc/application/controllers/LocaleController.php:327
+#: airtime_mvc/application/controllers/LocaleController.php:330
msgid "View show content"
msgstr "番組内容を見る"
-#: airtime_mvc/application/controllers/LocaleController.php:328
+#: airtime_mvc/application/controllers/LocaleController.php:331
msgid "DJs can do the following:"
msgstr "DJは以下の操作ができます:"
-#: airtime_mvc/application/controllers/LocaleController.php:329
+#: airtime_mvc/application/controllers/LocaleController.php:332
msgid "Manage assigned show content"
msgstr "割り当てられた番組内容を管理"
-#: airtime_mvc/application/controllers/LocaleController.php:330
+#: airtime_mvc/application/controllers/LocaleController.php:333
msgid "Import media files"
msgstr "メディアファイルをインポートする"
-#: airtime_mvc/application/controllers/LocaleController.php:331
+#: airtime_mvc/application/controllers/LocaleController.php:334
msgid "Create playlists, smart blocks, and webstreams"
msgstr "プレイリスト・スマートブロック・ウェブストリームを作成"
-#: airtime_mvc/application/controllers/LocaleController.php:332
+#: airtime_mvc/application/controllers/LocaleController.php:335
msgid "Manage their own library content"
msgstr "ライブラリのコンテンツを管理"
-#: airtime_mvc/application/controllers/LocaleController.php:333
+#: airtime_mvc/application/controllers/LocaleController.php:336
msgid "Progam Managers can do the following:"
msgstr "プログラムマネージャーは以下の操作が可能です:"
-#: airtime_mvc/application/controllers/LocaleController.php:334
+#: airtime_mvc/application/controllers/LocaleController.php:337
msgid "View and manage show content"
msgstr "番組内容の表示と管理"
-#: airtime_mvc/application/controllers/LocaleController.php:335
+#: airtime_mvc/application/controllers/LocaleController.php:338
msgid "Schedule shows"
msgstr "番組を予約する"
-#: airtime_mvc/application/controllers/LocaleController.php:336
+#: airtime_mvc/application/controllers/LocaleController.php:339
msgid "Manage all library content"
msgstr "ライブラリの全てのコンテンツを管理"
-#: airtime_mvc/application/controllers/LocaleController.php:337
+#: airtime_mvc/application/controllers/LocaleController.php:340
msgid "Admins can do the following:"
msgstr "管理者は次の操作が可能です:"
-#: airtime_mvc/application/controllers/LocaleController.php:338
+#: airtime_mvc/application/controllers/LocaleController.php:341
msgid "Manage preferences"
msgstr "設定を管理"
-#: airtime_mvc/application/controllers/LocaleController.php:339
+#: airtime_mvc/application/controllers/LocaleController.php:342
msgid "Manage users"
msgstr "ユーザー管理"
-#: airtime_mvc/application/controllers/LocaleController.php:340
+#: airtime_mvc/application/controllers/LocaleController.php:343
msgid "Manage watched folders"
msgstr "同期されているフォルダを管理"
-#: airtime_mvc/application/controllers/LocaleController.php:342
+#: airtime_mvc/application/controllers/LocaleController.php:344
+#: airtime_mvc/application/forms/RegisterAirtime.php:116
+#: airtime_mvc/application/forms/SupportSettings.php:98
+msgid "Send support feedback"
+msgstr "サポートにフィードバックを送る"
+
+#: airtime_mvc/application/controllers/LocaleController.php:345
msgid "View system status"
msgstr "システムステータスを見る"
-#: airtime_mvc/application/controllers/LocaleController.php:343
+#: airtime_mvc/application/controllers/LocaleController.php:346
msgid "Access playout history"
msgstr "配信レポートへ"
-#: airtime_mvc/application/controllers/LocaleController.php:344
+#: airtime_mvc/application/controllers/LocaleController.php:347
msgid "View listener stats"
msgstr "リスナー統計を確認"
-#: airtime_mvc/application/controllers/LocaleController.php:346
+#: airtime_mvc/application/controllers/LocaleController.php:349
msgid "Show / hide columns"
msgstr "表示設定"
-#: airtime_mvc/application/controllers/LocaleController.php:348
+#: airtime_mvc/application/controllers/LocaleController.php:351
msgid "From {from} to {to}"
msgstr "{from}から{to}へ"
-#: airtime_mvc/application/controllers/LocaleController.php:349
+#: airtime_mvc/application/controllers/LocaleController.php:352
msgid "kbps"
msgstr "kbps"
-#: airtime_mvc/application/controllers/LocaleController.php:350
+#: airtime_mvc/application/controllers/LocaleController.php:353
msgid "yyyy-mm-dd"
msgstr "yyyy-mm-dd"
-#: airtime_mvc/application/controllers/LocaleController.php:351
+#: airtime_mvc/application/controllers/LocaleController.php:354
msgid "hh:mm:ss.t"
msgstr "hh:mm:ss.t"
-#: airtime_mvc/application/controllers/LocaleController.php:352
+#: airtime_mvc/application/controllers/LocaleController.php:355
msgid "kHz"
msgstr "kHz"
-#: airtime_mvc/application/controllers/LocaleController.php:355
+#: airtime_mvc/application/controllers/LocaleController.php:358
msgid "Su"
msgstr "日"
-#: airtime_mvc/application/controllers/LocaleController.php:356
+#: airtime_mvc/application/controllers/LocaleController.php:359
msgid "Mo"
msgstr "月"
-#: airtime_mvc/application/controllers/LocaleController.php:357
+#: airtime_mvc/application/controllers/LocaleController.php:360
msgid "Tu"
msgstr "火"
-#: airtime_mvc/application/controllers/LocaleController.php:358
+#: airtime_mvc/application/controllers/LocaleController.php:361
msgid "We"
msgstr "水"
-#: airtime_mvc/application/controllers/LocaleController.php:359
+#: airtime_mvc/application/controllers/LocaleController.php:362
msgid "Th"
msgstr "木"
-#: airtime_mvc/application/controllers/LocaleController.php:360
+#: airtime_mvc/application/controllers/LocaleController.php:363
msgid "Fr"
msgstr "金"
-#: airtime_mvc/application/controllers/LocaleController.php:361
+#: airtime_mvc/application/controllers/LocaleController.php:364
msgid "Sa"
msgstr "土"
-#: airtime_mvc/application/controllers/LocaleController.php:364
+#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
+msgid "Close"
+msgstr "閉じる"
+
+#: airtime_mvc/application/controllers/LocaleController.php:367
msgid "Hour"
msgstr "時"
-#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:368
msgid "Minute"
msgstr "分"
-#: airtime_mvc/application/controllers/LocaleController.php:366
+#: airtime_mvc/application/controllers/LocaleController.php:369
msgid "Done"
msgstr "完了"
-#: airtime_mvc/application/controllers/LocaleController.php:369
+#: airtime_mvc/application/controllers/LocaleController.php:372
msgid "Select files"
msgstr "ファイルを選択"
-#: airtime_mvc/application/controllers/LocaleController.php:370
-#: airtime_mvc/application/controllers/LocaleController.php:371
+#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:374
msgid "Add files to the upload queue and click the start button."
msgstr "ファイルを追加して「アップロード開始」ボタンをクリックして下さい。"
-#: airtime_mvc/application/controllers/LocaleController.php:372
-#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:376
msgid "Status"
msgstr "ステータス"
-#: airtime_mvc/application/controllers/LocaleController.php:374
+#: airtime_mvc/application/controllers/LocaleController.php:377
msgid "Add Files"
msgstr "ファイルを追加"
-#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:378
msgid "Stop Upload"
msgstr "アップロード中止"
-#: airtime_mvc/application/controllers/LocaleController.php:376
+#: airtime_mvc/application/controllers/LocaleController.php:379
msgid "Start upload"
msgstr "アップロード開始"
-#: airtime_mvc/application/controllers/LocaleController.php:377
+#: airtime_mvc/application/controllers/LocaleController.php:380
msgid "Add files"
msgstr "ファイルを追加"
-#: airtime_mvc/application/controllers/LocaleController.php:378
+#: airtime_mvc/application/controllers/LocaleController.php:381
#, php-format
msgid "Uploaded %d/%d files"
msgstr "%d/%d ファイルをアップロードしました。"
-#: airtime_mvc/application/controllers/LocaleController.php:379
+#: airtime_mvc/application/controllers/LocaleController.php:382
msgid "N/A"
msgstr "N/A"
-#: airtime_mvc/application/controllers/LocaleController.php:380
+#: airtime_mvc/application/controllers/LocaleController.php:383
msgid "Drag files here."
msgstr "こちらにファイルをドラッグしてください。"
-#: airtime_mvc/application/controllers/LocaleController.php:381
+#: airtime_mvc/application/controllers/LocaleController.php:384
msgid "File extension error."
msgstr "ファイル拡張子エラーです。"
-#: airtime_mvc/application/controllers/LocaleController.php:382
+#: airtime_mvc/application/controllers/LocaleController.php:385
msgid "File size error."
msgstr "ファイルサイズエラーです。"
-#: airtime_mvc/application/controllers/LocaleController.php:383
+#: airtime_mvc/application/controllers/LocaleController.php:386
msgid "File count error."
msgstr "ファイルカウントのエラーです。"
-#: airtime_mvc/application/controllers/LocaleController.php:384
+#: airtime_mvc/application/controllers/LocaleController.php:387
msgid "Init error."
msgstr "Initエラーです。"
-#: airtime_mvc/application/controllers/LocaleController.php:385
+#: airtime_mvc/application/controllers/LocaleController.php:388
msgid "HTTP Error."
msgstr "HTTPエラーです。"
-#: airtime_mvc/application/controllers/LocaleController.php:386
+#: airtime_mvc/application/controllers/LocaleController.php:389
msgid "Security error."
msgstr "セキュリティエラーです。"
-#: airtime_mvc/application/controllers/LocaleController.php:387
+#: airtime_mvc/application/controllers/LocaleController.php:390
msgid "Generic error."
msgstr "エラーです。"
-#: airtime_mvc/application/controllers/LocaleController.php:388
+#: airtime_mvc/application/controllers/LocaleController.php:391
msgid "IO error."
msgstr "入出力エラーです。"
-#: airtime_mvc/application/controllers/LocaleController.php:389
+#: airtime_mvc/application/controllers/LocaleController.php:392
#, php-format
msgid "File: %s"
msgstr "ファイル: %s"
-#: airtime_mvc/application/controllers/LocaleController.php:391
+#: airtime_mvc/application/controllers/LocaleController.php:394
#, php-format
msgid "%d files queued"
msgstr "%d のファイルが待機中"
-#: airtime_mvc/application/controllers/LocaleController.php:392
+#: airtime_mvc/application/controllers/LocaleController.php:395
msgid "File: %f, size: %s, max file size: %m"
msgstr "ファイル: %f, サイズ: %s, ファイルサイズ最大: %m"
-#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/controllers/LocaleController.php:396
msgid "Upload URL might be wrong or doesn't exist"
msgstr "アップロードURLに誤りがあるか存在しません。"
-#: airtime_mvc/application/controllers/LocaleController.php:394
+#: airtime_mvc/application/controllers/LocaleController.php:397
msgid "Error: File too large: "
msgstr "エラー:ファイルサイズが大きすぎます。"
-#: airtime_mvc/application/controllers/LocaleController.php:395
+#: airtime_mvc/application/controllers/LocaleController.php:398
msgid "Error: Invalid file extension: "
msgstr "エラー:ファイル拡張子が無効です。"
-#: airtime_mvc/application/controllers/LocaleController.php:398
+#: airtime_mvc/application/controllers/LocaleController.php:400
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
+msgid "Set Default"
+msgstr "初期設定として保存"
+
+#: airtime_mvc/application/controllers/LocaleController.php:401
msgid "Create Entry"
msgstr "エントリーを作成"
-#: airtime_mvc/application/controllers/LocaleController.php:399
+#: airtime_mvc/application/controllers/LocaleController.php:402
msgid "Edit History Record"
msgstr "配信履歴を編集"
-#: airtime_mvc/application/controllers/LocaleController.php:402
+#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
+#: airtime_mvc/application/forms/EditHistoryItem.php:57
+msgid "No Show"
+msgstr "番組はありません。"
+
+#: airtime_mvc/application/controllers/LocaleController.php:405
#, php-format
msgid "Copied %s row%s to the clipboard"
msgstr "%s 列の%s をクリップボードにコピー しました。"
-#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/controllers/LocaleController.php:406
#, php-format
msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished."
msgstr "%s印刷用表示%sお使いのブラウザの印刷機能を使用してこの表を印刷してください。印刷が完了したらEscボタンを押して下さい。"
-#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/controllers/LocaleController.php:407
msgid "New Show"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:405
+#: airtime_mvc/application/controllers/LocaleController.php:408
msgid "New Log Entry"
msgstr ""
-#: airtime_mvc/application/controllers/ScheduleController.php:389
-#, php-format
-msgid "Rebroadcast of show %s from %s at %s"
-msgstr "%sの再配信:%s %s時"
-
-#: airtime_mvc/application/controllers/ScheduleController.php:712
-#: airtime_mvc/application/controllers/LibraryController.php:131
-msgid "Download"
-msgstr "ダウンロード"
-
-#: airtime_mvc/application/controllers/ErrorController.php:78
-msgid "Page not found."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:87
-msgid "The requested action is not supported."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:98
-msgid "You do not have permission to access this resource."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:109
-msgid "An internal application error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ListenerstatController.php:51
-msgid "Please make sure admin user/password is correct on System->Streams page."
-msgstr "管理ユーザー・パスワードが正しいか、システム>配信のページで確認して下さい。"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:53
-#, php-format
-msgid "You are viewing an older version of %s"
-msgstr "%sの古いバージョンを閲覧しています。"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:140
-msgid "You cannot add tracks to dynamic blocks."
-msgstr "自動生成スマート・ブロックにトラックを追加することはできません。"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:147
-#: airtime_mvc/application/controllers/LibraryController.php:31
-#, php-format
-msgid "%s not found"
-msgstr "%s は見つかりませんでした。"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:161
-#, php-format
-msgid "You don't have permission to delete selected %s(s)."
-msgstr "選択された%sを削除する権限がありません。"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:168
-#: airtime_mvc/application/controllers/LibraryController.php:40
-msgid "Something went wrong."
-msgstr "問題が生じました。"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:174
-msgid "You can only add tracks to smart block."
-msgstr "スマートブロックに追加できるのはトラックのみです。"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:192
-msgid "Untitled Playlist"
-msgstr "無題のプレイリスト"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:194
-msgid "Untitled Smart Block"
-msgstr "無題のスマートブロック"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:522
-msgid "Unknown Playlist"
-msgstr "不明なプレイリスト"
-
-#: airtime_mvc/application/controllers/LoginController.php:43
-msgid "Please enter your username and password."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:93
-msgid "Wrong username or password provided. Please try again."
-msgstr "入力されたユーザー名またはパスワードが誤っています。"
-
-#: airtime_mvc/application/controllers/LoginController.php:167
-msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
-msgstr "メールが送信できませんでした。メールサーバーの設定を確認してください。"
-
-#: airtime_mvc/application/controllers/LoginController.php:173
-msgid "There was a problem with the username or email address you entered."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:35
-#: airtime_mvc/application/controllers/DashboardController.php:84
-msgid "You don't have permission to disconnect source."
-msgstr "ソースを切断する権限がありません。"
-
-#: airtime_mvc/application/controllers/DashboardController.php:37
-#: airtime_mvc/application/controllers/DashboardController.php:86
-msgid "There is no source connected to this input."
-msgstr "この入力に接続されたソースが存在しません。"
-
-#: airtime_mvc/application/controllers/DashboardController.php:81
-msgid "You don't have permission to switch source."
-msgstr "ソースを切り替える権限がありません。"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:72
-msgid "Preferences updated."
-msgstr "設定が更新されました。"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:115
-msgid "Support setting updated."
-msgstr "サポート設定が更新されました。"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:123
-msgid "Support Feedback"
-msgstr "サポートフィードバック"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:251
-msgid "Stream Setting Updated."
-msgstr "配信設定が更新されました。"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:342
-msgid "path should be specified"
-msgstr "パスを指定する必要があります"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:437
-msgid "Problem with Liquidsoap..."
-msgstr "Liquidsoapに問題があります。"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:493
-msgid "Request method not accepted"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:86
-msgid "User added successfully!"
-msgstr "ユーザーの追加に成功しました。"
-
-#: airtime_mvc/application/controllers/UserController.php:88
-msgid "User updated successfully!"
-msgstr "ユーザーの更新に成功しました。"
-
-#: airtime_mvc/application/controllers/UserController.php:187
-msgid "Settings updated successfully!"
-msgstr "設定の更新に成功しました。"
-
-#: airtime_mvc/application/controllers/WebstreamController.php:28
-#: airtime_mvc/application/controllers/WebstreamController.php:32
-msgid "Untitled Webstream"
-msgstr "無題のウェブ配信"
-
-#: airtime_mvc/application/controllers/WebstreamController.php:150
-msgid "Webstream saved."
-msgstr "ウェブ配信が保存されました。"
-
-#: airtime_mvc/application/controllers/WebstreamController.php:158
-msgid "Invalid form values."
-msgstr "入力欄に無効な値があります。"
-
-#: airtime_mvc/application/controllers/LibraryController.php:95
-#: airtime_mvc/application/controllers/ShowbuilderController.php:136
-msgid "Preview"
-msgstr "プレビュー"
-
-#: airtime_mvc/application/controllers/LibraryController.php:115
-#: airtime_mvc/application/controllers/LibraryController.php:177
-#: airtime_mvc/application/controllers/LibraryController.php:200
-msgid "Add to Playlist"
-msgstr "プレイリストに追加"
-
-#: airtime_mvc/application/controllers/LibraryController.php:117
-msgid "Add to Smart Block"
-msgstr "スマートブロックに追加"
-
-#: airtime_mvc/application/controllers/LibraryController.php:147
-msgid "View track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:148
-msgid "Remove track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:154
-#: airtime_mvc/application/controllers/LibraryController.php:159
-msgid "Upload track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:169
-msgid "Duplicate Playlist"
-msgstr "プレイリストのコピー"
-
-#: airtime_mvc/application/controllers/LibraryController.php:213
-msgid "No action available"
-msgstr "実行可能な操作はありません。"
-
-#: airtime_mvc/application/controllers/LibraryController.php:233
-msgid "You don't have permission to delete selected items."
-msgstr "選択した項目を削除する権限がありません。"
-
-#: airtime_mvc/application/controllers/LibraryController.php:279
-msgid "Could not delete file because it is scheduled in the future."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:282
-msgid "Could not delete file(s)."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:322
-#, php-format
-msgid "Copy of %s"
-msgstr "%sのコピー"
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
-msgid ""
-"To configure and use the embeddable player you must:
\n"
-" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
-" 2. Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
-msgid ""
-"To use the embeddable weekly schedule widget you must:
\n"
-" Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
#: airtime_mvc/application/controllers/ShowbuilderController.php:138
msgid "Select cursor"
msgstr "カーソルを選択"
@@ -4038,39 +1803,78 @@ msgstr "カーソルを削除"
msgid "show does not exist"
msgstr "番組が存在しません。"
-#: airtime_mvc/application/controllers/ApiController.php:79
-msgid "You are not allowed to access this resource."
-msgstr "このリソースへのアクセスは許可されていません。"
-
-#: airtime_mvc/application/controllers/ApiController.php:244
-#: airtime_mvc/application/controllers/ApiController.php:317
-#: airtime_mvc/application/controllers/ApiController.php:392
-#: airtime_mvc/application/controllers/ApiController.php:435
-#: airtime_mvc/application/controllers/ApiController.php:474
-#: airtime_mvc/application/controllers/ApiController.php:507
-msgid "You are not allowed to access this resource. "
-msgstr "このリソースへのアクセスは許可されていません。"
-
-#: airtime_mvc/application/controllers/ApiController.php:698
-#: airtime_mvc/application/controllers/ApiController.php:718
-#: airtime_mvc/application/controllers/ApiController.php:730
+#: airtime_mvc/application/controllers/ScheduleController.php:389
#, php-format
-msgid "File does not exist in %s"
+msgid "Rebroadcast of show %s from %s at %s"
+msgstr "%sの再配信:%s %s時"
+
+#: airtime_mvc/application/common/UsabilityHints.php:55
+msgid "Upload some tracks below to add them to your library!"
msgstr ""
-#: airtime_mvc/application/controllers/ApiController.php:781
-msgid "Bad request. no 'mode' parameter passed."
-msgstr "Bad Request:パスした「mode」パラメータはありません。"
-
-#: airtime_mvc/application/controllers/ApiController.php:791
-msgid "Bad request. 'mode' parameter is invalid"
-msgstr "Bad Request:'mode' パラメータが無効です。"
-
-#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#: airtime_mvc/application/common/UsabilityHints.php:57
#, php-format
-msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
msgstr ""
+#: airtime_mvc/application/common/UsabilityHints.php:63
+msgid "Click the 'New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:65
+#, php-format
+msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:73
+msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:75
+#, php-format
+msgid ""
+"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
+" %sCreate an unlinked show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:80
+msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:82
+#, php-format
+msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:89
+msgid "Click on the show starting next and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:91
+#, php-format
+msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/DateHelper.php:213
+#, php-format
+msgid "The year %s must be within the range of 1753 - 9999"
+msgstr "%s年は、1753 - 9999の範囲内である必要があります。"
+
+#: airtime_mvc/application/common/DateHelper.php:216
+#, php-format
+msgid "%s-%s-%s is not a valid date"
+msgstr "%s-%s-%sは正しい日付ではありません。"
+
+#: airtime_mvc/application/common/DateHelper.php:240
+#, php-format
+msgid "%s:%s:%s is not a valid time"
+msgstr "%s:%s:%sは正しい時間ではありません。"
+
+#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
+msgid "Live stream"
+msgstr "ライブ配信"
+
#: airtime_mvc/application/layouts/scripts/layout.phtml:63
msgid "Smart Block"
msgstr ""
@@ -4083,6 +1887,17 @@ msgstr ""
msgid "Upload"
msgstr ""
+#: airtime_mvc/application/layouts/scripts/layout.phtml:76
+#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
+msgid "Dashboard"
+msgstr ""
+
+#: airtime_mvc/application/layouts/scripts/layout.phtml:84
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
+msgid "Webstreams"
+msgstr ""
+
#: airtime_mvc/application/layouts/scripts/layout.phtml:135
#: airtime_mvc/application/layouts/scripts/layout.phtml:161
msgid "Play"
@@ -4105,401 +1920,2128 @@ msgstr "キューアウトの設定"
msgid "Cursor"
msgstr "カーソル"
-#~ msgid "Show:"
-#~ msgstr "番組:"
+#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#, php-format
+msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
+msgid "Drop files here or click to browse your computer."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
+msgid "Failed"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
+msgid "Pending"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
+msgid "Recent Uploads"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
+msgid "Share"
+msgstr "共有"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
+msgid "Select stream:"
+msgstr "配信先の選択:"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
+msgid "mute"
+msgstr "ミュート"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
+msgid "unmute"
+msgstr "ミュート解除"
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
+msgid "About"
+msgstr "Rakuten.FMについて"
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
+#, php-format
+msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
+#, php-format
+msgid "%1$s %2$s is distributed under the %3$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
+#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
+#, php-format
+msgid "Welcome to %s!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
+#, php-format
+msgid "Here's how you can get started using %s to automate your broadcasts: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
+msgid "Upload audio tracks"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
+msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
+msgid "Schedule a show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
+msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
+msgid "Add tracks to your show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
+msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
+msgid "Now you're good to go!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
+#, php-format
+msgid "For more detailed help, read the %suser manual%s."
+msgstr "より詳細なヘルプは、%sユーザーマニュアル%sをお読み下さい。 "
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
+#: airtime_mvc/application/configs/navigation.php:40
+msgid "Weekly Schedule"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
+#: airtime_mvc/application/forms/Player.php:77
+msgid "Preview:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
+#: airtime_mvc/application/configs/navigation.php:34
+msgid "Player"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:97
+msgid "Playout History"
+msgstr "配信履歴"
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
+msgid "Log Sheet"
+msgstr "配信レポート"
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
+msgid "File Summary"
+msgstr "トラック別レポート"
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
+msgid "Show Summary"
+msgstr "番組別レポート"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
+msgid "Expand Static Block"
+msgstr "スマート・ブロックの拡張"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
+msgid "Expand Dynamic Block"
+msgstr "自動生成スマート・ブロックを拡張する"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
+msgid "Choose some search criteria above and click Generate to create this playlist."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
+msgid "A track list will be generated when you schedule this smart block into a show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
+msgid "Drag tracks here from your library to add them to the playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
+msgid "Editing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:26
+msgid "Name:"
+msgstr "名前:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
+#: airtime_mvc/application/forms/AddShowWhat.php:54
+msgid "Description:"
+msgstr "説明:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
+#: airtime_mvc/application/forms/AddShowWhen.php:89
+msgid "Duration:"
+msgstr "長さ:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
+msgid "Toggle Details"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+msgid "Shuffle playlist"
+msgstr "プレイリストのシャッフル"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
+msgid "Shuffle"
+msgstr "シャッフル"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
+msgid "Playlist crossfade"
+msgstr "プレイリスト クロスフェード"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+msgid "Empty playlist content"
+msgstr "プレイリストを空にする。"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Clear"
+msgstr "クリア"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+msgid "Fade in: "
+msgstr "フェードイン:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "Fade out: "
+msgstr "フェードアウト:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+msgid "Save playlist"
+msgstr "プレイリストを保存"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
+msgid "No open playlist"
+msgstr "プレイリストが開かれていません。"
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
+msgid "Show Waveform"
+msgstr "波形の表示"
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "(ss.t)"
+msgstr "(ss.t) "
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Remove all content from this smart block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
+msgid "No smart block currently open"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+msgid "Cue In: "
+msgstr "キューイン:"
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "(hh:mm:ss.t)"
+msgstr "例:01:22:33.4"
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "Cue Out: "
+msgstr "キューアウト:"
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
+msgid "Original Length:"
+msgstr "オリジナルの長さ:"
+
+#: airtime_mvc/application/views/scripts/preference/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:56
+msgid "General"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
+msgid "Stream Settings"
+msgstr "配信設定"
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
+msgid "Global"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
+msgid "dB"
+msgstr "dB "
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
+msgid "Output Streams"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:3
+#: airtime_mvc/application/forms/Login.php:83
+msgid "Login"
+msgstr "ログイン"
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:7
+#, php-format
+msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
+msgid "Email Sent!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
+msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
+msgid "Back"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
+msgid "Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
+msgid "New password"
+msgstr "新しいパスワード"
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
+msgid "Please enter and confirm your new password in the fields below."
+msgstr "下記のフィールドに新しいパスワードを入力し確認して下さい。"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
+msgid "Manage Users"
+msgstr "ユーザー管理"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
+msgid "New User"
+msgstr "ユーザー追加"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
+msgid "id"
+msgstr "id "
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
+#: airtime_mvc/application/forms/PasswordRestore.php:25
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
+msgid "Username"
+msgstr "ユーザー名"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
+msgid "First Name"
+msgstr "名"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
+msgid "Last Name"
+msgstr "姓"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
+msgid "User Type"
+msgstr "ユーザー種別"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
+#, php-format
+msgid "Super Admin details can be changed in your Billing Settings."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
+msgid "Find Shows"
+msgstr "番組を探す"
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
+msgid "Choose Show Instance"
+msgstr "番組配信回の選択"
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
+msgid "Find"
+msgstr "検索"
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
+#: airtime_mvc/application/configs/navigation.php:61
+msgid "My Profile"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
+#, php-format
+msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
+msgid "Repeat Days:"
+msgstr "再配信日:"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
+#: airtime_mvc/application/forms/GeneralPreferences.php:53
+#: airtime_mvc/application/forms/AddShowStyle.php:64
+msgid "Remove"
+msgstr "削除"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
+msgid "Add"
+msgstr "追加"
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
+msgid "Show Source"
+msgstr "番組ソース"
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
+msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
+msgid "Register Airtime"
+msgstr "Rakuten.FMに登録"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
+#, php-format
+msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
+#, php-format
+msgid "Click the box below to promote your station on %s."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
+msgid "(Required)"
+msgstr "(必須)"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
+msgid "(for verification purposes only, will not be published)"
+msgstr "(確認目的の為だけであり、公開はされません。) "
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
+#: airtime_mvc/application/forms/GeneralPreferences.php:43
+msgid "Note: Anything larger than 600x600 will be resized."
+msgstr "注意:大きさが600x600以上の場合はサイズが変更されます。"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
+msgid "Show me what I am sending "
+msgstr "送信中のものを表示"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
+msgid "Terms and Conditions"
+msgstr "利用規約"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
+msgid "Choose Days:"
+msgstr "日付選択: "
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
+msgid "Search Criteria:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
+msgid "New Criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
+msgid "or"
+msgstr "or"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
+msgid "and"
+msgstr "and"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
+msgid "New Modifier"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
+msgid " to "
+msgstr "~"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
+msgid "files meet the criteria"
+msgstr "件の条件を満たすファイルがありました。"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
+msgid "file meets the criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
+msgid "Filter History"
+msgstr "絞り込み履歴"
+
+#: airtime_mvc/application/views/scripts/form/login.phtml:41
+msgid "Forgot your password?"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
+msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
+msgstr "(ステーションを宣伝するためには、「サポートフィードバックを送信する」の設定をオンにしておく必要があります。)"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
+msgid "Stream "
+msgstr "配信"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
+msgid "Additional Options"
+msgstr "詳細設定"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
+msgid "The following info will be displayed to listeners in their media player:"
+msgstr "以下の情報はリスナーが利用するプレイヤー上に表示されます。"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
+msgid "(Your radio station website)"
+msgstr "(あなたのラジオステーションウェブサイト)"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
+msgid "Stream URL: "
+msgstr "配信先URL:"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
+msgid "Choose folder"
+msgstr "フォルダ選択"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
+msgid "Set"
+msgstr "設定"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
+msgid "Current Import Folder:"
+msgstr "現在のインポートフォルダ"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
+#, php-format
+msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
+msgid "Remove watched directory"
+msgstr "同期ディレクトリを削除する"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
+msgid "You are not watching any media folders."
+msgstr "いかなるメディアフォルダも見ていません"
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
+msgid "Live Broadcasting"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
+msgid "Master Source"
+msgstr "マスターソース"
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
+msgid "Use these settings in your broadcasting software to stream live at any time."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
+msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
+msgid "TuneIn Settings"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
+msgid "SoundCloud Settings"
+msgstr "SoundCloudの設定"
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
+msgid "Dangerous Options"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Add this show"
+msgstr "この番組を追加"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Update show"
+msgstr "番組を更新"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
+msgid "What"
+msgstr "番組内容"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
+msgid "When"
+msgstr "番組配信時間"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
+msgid "Live Stream Input"
+msgstr "ライブ配信の入力"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
+msgid "Who"
+msgstr "DJ"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
+msgid "Style"
+msgstr "スタイル"
+
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
+msgid "Disk Space"
+msgstr "ディスク容量"
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:3
+msgid "File import in progress..."
+msgstr "ファイルをインポート中…"
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:10
+#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
+msgid "Advanced Search Options"
+msgstr "詳細検索"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
+#: airtime_mvc/application/forms/EditAudioMD.php:24
+#: airtime_mvc/application/forms/Player.php:15
+msgid "Title:"
+msgstr "タイトル:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
+#: airtime_mvc/application/forms/EditAudioMD.php:34
+msgid "Creator:"
+msgstr "アーティスト:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
+#: airtime_mvc/application/forms/EditAudioMD.php:44
+msgid "Album:"
+msgstr "アルバム:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
+msgid "Track:"
+msgstr "トラック:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
+msgid "Length:"
+msgstr "時間:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
+msgid "Sample Rate:"
+msgstr "サンプルレート:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
+msgid "Bit Rate:"
+msgstr "ビットレート:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
+#: airtime_mvc/application/forms/EditAudioMD.php:115
+msgid "Mood:"
+msgstr "ムード:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:45
+#: airtime_mvc/application/forms/EditAudioMD.php:62
+msgid "Genre:"
+msgstr "ジャンル:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
+#: airtime_mvc/application/forms/EditAudioMD.php:72
+msgid "Year:"
+msgstr "年:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
+#: airtime_mvc/application/forms/EditAudioMD.php:85
+msgid "Label:"
+msgstr "ラベル:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
+#: airtime_mvc/application/forms/EditAudioMD.php:125
+msgid "BPM:"
+msgstr "BPM:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
+#: airtime_mvc/application/forms/EditAudioMD.php:95
+msgid "Composer:"
+msgstr "作曲者"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
+#: airtime_mvc/application/forms/EditAudioMD.php:105
+msgid "Conductor:"
+msgstr "コンダクター:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
+#: airtime_mvc/application/forms/EditAudioMD.php:135
+msgid "Copyright:"
+msgstr "著作権:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
+msgid "Isrc Number:"
+msgstr "ISRC番号:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
+#: airtime_mvc/application/forms/EditAudioMD.php:155
+msgid "Website:"
+msgstr "ウェブサイト:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
+#: airtime_mvc/application/forms/EditAudioMD.php:165
+#: airtime_mvc/application/forms/EditUser.php:119
+#: airtime_mvc/application/forms/Login.php:68
+msgid "Language:"
+msgstr "言語:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
+msgid "File Path:"
+msgstr "ファイルの場所: "
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
+msgid "Web Stream"
+msgstr "ウェブ配信"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
+msgid "Dynamic Smart Block"
+msgstr "自動生成スマート・ブロック"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
+msgid "Static Smart Block"
+msgstr "スマート・ブロック"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
+msgid "Audio Track"
+msgstr "オーディオトラック"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
+msgid "Playlist Contents: "
+msgstr "プレイリストの内容:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
+msgid "Static Smart Block Contents: "
+msgstr "スマート・ブロックの内容:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
+msgid "Dynamic Smart Block Criteria: "
+msgstr "自動生成スマート・ブロックの基準:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
+msgid "Limit to "
+msgstr "次の値に制限する:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
+#: airtime_mvc/application/forms/AddShowWhat.php:36
+msgid "URL:"
+msgstr "URL:"
+
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
+msgid "Viewing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
+msgid "Listeners"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
+msgid "Stream Data Collection Status"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
+msgid "Your trial expires in"
+msgstr "試用期間終了まで:"
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
+msgid "days"
+msgstr "日"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
+msgid "Previous:"
+msgstr "前の曲:"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
+msgid "Next:"
+msgstr "次の曲:"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
+msgid "Source Streams"
+msgstr "配信ソース"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
+msgid "ON AIR"
+msgstr "ON AIR"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
+msgid "Listen"
+msgstr "試聴"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
+msgid "Logout"
+msgstr "ログアウト"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
+msgid "Playout History Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
+msgid "Log Sheet Templates"
+msgstr "配信レポートテンプレート"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
+msgid "New Log Sheet Template"
+msgstr "新規テンプレート作成"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
+msgid "No Log Sheet Templates"
+msgstr "テンプレートはありません。"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
+msgid "File Summary Templates"
+msgstr "トラック別レポートテンプレート"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
+msgid "New File Summary Template"
+msgstr "新規テンプレート作成"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
+msgid "No File Summary Templates"
+msgstr "テンプレートはありません。"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
+msgid "Creating File Summary Template"
+msgstr "トラック別レポートテンプレート作成"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
+msgid "Creating Log Sheet Template"
+msgstr "配信レポートテンプレートの作成"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
+msgid "Name"
+msgstr "名前"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
+msgid "Add more elements"
+msgstr "さらに要素を追加"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
+msgid "Add New Field"
+msgstr "あたしいフィールドの追加"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
+msgid "Set Default Template"
+msgstr "初期設定テンプレートを作成"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
+msgid "Description"
+msgstr "説明"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
+msgid "Stream URL:"
+msgstr "配信元URL:"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
+msgid "Default Length:"
+msgstr "ウェブ配信の長さ(初期値):"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
+msgid "No webstream"
+msgstr "ウェブ配信がありません。"
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
+#: airtime_mvc/application/views/scripts/error/error.phtml:6
+msgid "An error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
+msgid "Access Denied!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
+msgid "You do not have permission to access this page!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
+#: airtime_mvc/application/views/scripts/error/error.phtml:14
+#: airtime_mvc/application/configs/navigation.php:143
+msgid "Help"
+msgstr "ヘルプ"
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
+msgid "Oops!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
+msgid "Something went wrong!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
+msgid "Bad Request!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
+msgid "The requested action is not supported!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
+msgid "Page not found!"
+msgstr "ページが見つかりませんでした。"
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
+msgid "We couldn't find the page you were looking for."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error.phtml:12
+msgid "Looks like the page you were looking for doesn't exist!"
+msgstr "お探しのページは存在しないようです。"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
+msgid "previous"
+msgstr "前"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
+msgid "play"
+msgstr "再生"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
+msgid "pause"
+msgstr "一時停止"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
+msgid "next"
+msgstr "次"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
+msgid "stop"
+msgstr "停止"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
+msgid "max volume"
+msgstr "最大音量"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
+msgid "Update Required"
+msgstr "アップデートが必要です。"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
+#, php-format
+msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
+msgstr "メディアを再生するためには、お使いのブラウザを最新のバージョンにアップデートするか、%sフラッシュプラグイン%sをアップデートする必要があります。"
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
+msgid "Plan type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
+msgid "Billing cycle:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
+msgid "Payment method:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
+msgid "PayPal"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
+msgid "Credit Card via 2Checkout"
+msgstr ""
+
+#: airtime_mvc/application/forms/DateRange.php:16
+#: airtime_mvc/application/forms/ShowBuilder.php:18
+msgid "Date Start:"
+msgstr "開始日:"
+
+#: airtime_mvc/application/forms/DateRange.php:35
+#: airtime_mvc/application/forms/DateRange.php:63
+#: airtime_mvc/application/forms/ShowBuilder.php:37
+#: airtime_mvc/application/forms/ShowBuilder.php:65
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
+msgid "Invalid character entered"
+msgstr "使用できない文字が入力されました。"
+
+#: airtime_mvc/application/forms/DateRange.php:44
+#: airtime_mvc/application/forms/ShowBuilder.php:46
+#: airtime_mvc/application/forms/AddShowRepeats.php:56
+msgid "Date End:"
+msgstr "終了日:"
+
+#: airtime_mvc/application/forms/ShowBuilder.php:72
+#: airtime_mvc/application/forms/ShowBuilder.php:88
+msgid "Filter by Show"
+msgstr ""
+
+#: airtime_mvc/application/forms/ShowBuilder.php:80
+msgid "All My Shows:"
+msgstr "全ての番組:"
+
+#: airtime_mvc/application/forms/AddShowWho.php:10
+msgid "Search Users:"
+msgstr "ユーザーを検索:"
+
+#: airtime_mvc/application/forms/AddShowWho.php:24
+msgid "DJs:"
+msgstr "DJ:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:30
+#: airtime_mvc/application/forms/GeneralPreferences.php:25
+#: airtime_mvc/application/forms/SupportSettings.php:18
+msgid "Station Name"
+msgstr "ステーション名"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:39
+#: airtime_mvc/application/forms/SupportSettings.php:31
+msgid "Phone:"
+msgstr "電話:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:51
+#: airtime_mvc/application/forms/AddUser.php:67
+#: airtime_mvc/application/forms/EditUser.php:83
+#: airtime_mvc/application/forms/SupportSettings.php:43
+msgid "Email:"
+msgstr "メール:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:62
+#: airtime_mvc/application/forms/SupportSettings.php:54
+msgid "Station Web Site:"
+msgstr "ステーションのウェブサイト:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:73
+#: airtime_mvc/application/forms/SupportSettings.php:65
+msgid "Country:"
+msgstr "国:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:84
+#: airtime_mvc/application/forms/SupportSettings.php:76
+msgid "City:"
+msgstr "市:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:96
+#: airtime_mvc/application/forms/SupportSettings.php:88
+msgid "Station Description:"
+msgstr "ステーションの説明:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:106
+#: airtime_mvc/application/forms/GeneralPreferences.php:42
+msgid "Station Logo:"
+msgstr "ステーションロゴ:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:126
+#: airtime_mvc/application/forms/SupportSettings.php:108
+#, php-format
+msgid "Promote my station on %s"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:151
+#: airtime_mvc/application/forms/SupportSettings.php:120
+#, php-format
+msgid "By checking this box, I agree to %s's %sprivacy policy%s."
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:169
+#: airtime_mvc/application/forms/SupportSettings.php:143
+msgid "You have to agree to privacy policy."
+msgstr "プライバシーポリシーに同意する必要があります。"
+
+#: airtime_mvc/application/forms/AddShowRR.php:10
+msgid "Record from Line In?"
+msgstr "ライン入力から録音"
+
+#: airtime_mvc/application/forms/AddShowRR.php:16
+msgid "Rebroadcast?"
+msgstr "再配信"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
+#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
+msgid "Value is required and can't be empty"
+msgstr "値を入力してください"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
+msgid "'%value%' is no valid email address in the basic format local-part@hostname"
+msgstr "'%value%'は無効なEメールアドレスです。local-part@hostnameの形式に沿ったEメールアドレスを登録してください。"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
+msgid "'%value%' does not fit the date format '%format%'"
+msgstr "'%value%'は、'%format%'の日付形式に一致しません。"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
+msgid "'%value%' is less than %min% characters long"
+msgstr "'%value%'は、%min%文字より短くなっています。"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
+msgid "'%value%' is more than %max% characters long"
+msgstr "'%value%'は、%max%文字を越えています。"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
+msgid "'%value%' is not between '%min%' and '%max%', inclusively"
+msgstr "'%value%'は、'%min%'以上'%max%'以下の条件に一致しません。"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
+msgid "Passwords do not match"
+msgstr "パスワードが一致しません。"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
+msgid "Day must be specified"
+msgstr "日付を指定する必要があります。"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
+msgid "Time must be specified"
+msgstr "時間を指定する必要があります。"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
+msgid "Must wait at least 1 hour to rebroadcast"
+msgstr "再配信するには、1時間以上待たなければなりません"
+
+#: airtime_mvc/application/forms/PasswordRestore.php:14
+msgid "Email"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordRestore.php:36
+msgid "Reset password"
+msgstr "パスワードをリセット"
+
+#: airtime_mvc/application/forms/AddShowWhat.php:30
+msgid "Untitled Show"
+msgstr "無題の番組"
+
+#: airtime_mvc/application/forms/AddShowWhat.php:69
+msgid "Instance Description:"
+msgstr ""
+
+#: airtime_mvc/application/forms/DangerousPreferences.php:12
+msgid "Delete All Tracks in Library"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditAudioMD.php:145
+msgid "ISRC Number:"
+msgstr "ISRC番号:"
+
+#: airtime_mvc/application/forms/EditAudioMD.php:176
+msgid "OK"
+msgstr "OK"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:33
+msgid "Station Description"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:62
+msgid "Default Crossfade Duration (s):"
+msgstr "クロスフェードの時間(初期値):"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:68
+#: airtime_mvc/application/forms/GeneralPreferences.php:82
+#: airtime_mvc/application/forms/GeneralPreferences.php:96
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
+msgid "Please enter a time in seconds (eg. 0.5)"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:76
+msgid "Default Fade In (s):"
+msgstr "デフォルトフェードイン(初期値):"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:90
+msgid "Default Fade Out (s):"
+msgstr "デフォルトフェードアウト(初期値):"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:102
+msgid "Public Airtime API"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:103
+msgid "Required for embeddable schedule widget."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:105
+msgid "Disabled"
+msgstr "無効"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:106
+msgid "Enabled"
+msgstr "有効"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:109
+msgid ""
+"Enabling this feature will allow Airtime to provide schedule data\n"
+" to external widgets that can be embedded in your website."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:120
+msgid "Default Language"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:127
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
+msgid "Station Timezone"
+msgstr "ステーションのタイムゾーン"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:134
+msgid "Week Starts On"
+msgstr "週の開始曜日"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:150
+msgid "Display login button on your Radio Page?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:29
+#: airtime_mvc/application/forms/EditUser.php:37
+#: airtime_mvc/application/forms/Login.php:41
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
+msgid "Username:"
+msgstr "ユーザー名:"
+
+#: airtime_mvc/application/forms/AddUser.php:38
+#: airtime_mvc/application/forms/EditUser.php:48
+#: airtime_mvc/application/forms/Login.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
+msgid "Password:"
+msgstr "パスワード:"
+
+#: airtime_mvc/application/forms/AddUser.php:46
+#: airtime_mvc/application/forms/EditUser.php:57
+msgid "Verify Password:"
+msgstr "確認用パスワード:"
+
+#: airtime_mvc/application/forms/AddUser.php:55
+#: airtime_mvc/application/forms/EditUser.php:67
+msgid "Firstname:"
+msgstr "名:"
+
+#: airtime_mvc/application/forms/AddUser.php:61
+#: airtime_mvc/application/forms/EditUser.php:75
+msgid "Lastname:"
+msgstr "姓:"
+
+#: airtime_mvc/application/forms/AddUser.php:76
+#: airtime_mvc/application/forms/EditUser.php:94
+msgid "Mobile Phone:"
+msgstr "携帯電話:"
+
+#: airtime_mvc/application/forms/AddUser.php:82
+#: airtime_mvc/application/forms/EditUser.php:102
+msgid "Skype:"
+msgstr "Skype:"
+
+#: airtime_mvc/application/forms/AddUser.php:88
+#: airtime_mvc/application/forms/EditUser.php:110
+msgid "Jabber:"
+msgstr "Jabber:"
+
+#: airtime_mvc/application/forms/AddUser.php:95
+msgid "User Type:"
+msgstr "ユーザー種別:"
+
+#: airtime_mvc/application/forms/AddUser.php:120
+#: airtime_mvc/application/forms/EditUser.php:155
+msgid "Login name is not unique."
+msgstr "ログイン名はすでに使用されています。"
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
+msgid "Import Folder:"
+msgstr "インポートフォルダ:"
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
+msgid "Watched Folders:"
+msgstr "同期フォルダ:"
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
+msgid "Not a valid Directory"
+msgstr "正しいディレクトリではありません。"
+
+#: airtime_mvc/application/forms/BillingClient.php:126
+msgid "What is the name of your favorite childhood friend?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:127
+msgid "What school did you attend for sixth grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:128
+msgid "In what city did you meet your spouse/significant other?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:129
+msgid "What street did you live on in third grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:130
+msgid "What is the first name of the boy or girl that you first kissed?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:131
+msgid "In what city or town was your first job?"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
+msgid "Default License:"
+msgstr "ライセンス(初期値):"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
+msgid "All rights are reserved"
+msgstr "All rights are reserved"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
+msgid "The work is in the public domain"
+msgstr "The work is in the public domain"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
+msgid "Creative Commons Attribution"
+msgstr "Creative Commons Attribution"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
+msgid "Creative Commons Attribution Noncommercial"
+msgstr "Creative Commons Attribution Noncommercial"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
+msgid "Creative Commons Attribution No Derivative Works"
+msgstr "Creative Commons Attribution No Derivative Works"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
+msgid "Creative Commons Attribution Share Alike"
+msgstr "Creative Commons Attribution Share Alike"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
+msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
+msgstr "Creative Commons Attribution Noncommercial Non Derivate Works"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
+msgid "Creative Commons Attribution Noncommercial Share Alike"
+msgstr "Creative Commons Attribution Noncommercial Share Alike"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
+msgid "Default Sharing Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
+msgid "Public"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
+msgid "Private"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditUser.php:129
+msgid "Interface Timezone:"
+msgstr "インターフェイスのタイムゾーン:"
+
+#: airtime_mvc/application/forms/Player.php:14
+msgid "Now Playing"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:25
+msgid "Select Stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:28
+msgid "Auto detect the most appropriate stream to use."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:29
+msgid "Select a stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:41
+msgid " - Mobile friendly"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:45
+msgid " - The player does not support Opus streams."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:71
+msgid "Embeddable code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:72
+msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
+#: airtime_mvc/application/models/Block.php:1351
+msgid "Select criteria"
+msgstr "基準を選択してください"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
+#: airtime_mvc/application/models/Block.php:1353
+msgid "Bit Rate (Kbps)"
+msgstr "ビットレート (Kbps)"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
+#: airtime_mvc/application/models/Block.php:1374
+msgid "Sample Rate (kHz)"
+msgstr "サンプリング周波数 (kHz) "
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
+msgid "hours"
+msgstr "時間"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
+msgid "minutes"
+msgstr "分"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
+#: airtime_mvc/application/models/Block.php:333
+msgid "items"
+msgstr "項目"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
+msgid "Randomly"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
+msgid "Newest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
+msgid "Oldest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
+msgid "Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
+msgid "Static"
+msgstr "スマート・ブロック"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
+msgid "Dynamic"
+msgstr "自動生成スマート・ブロック"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
+msgid "Allow Repeated Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
+msgid "Sort Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
+msgid "Limit to:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
+msgid "Generate playlist content and save criteria"
+msgstr "プレイリストコンテンツを生成し、基準を保存"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
+msgid "Generate"
+msgstr "生成"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
+msgid "Shuffle playlist content"
+msgstr "プレイリストの内容をシャッフル"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
+msgid "Limit cannot be empty or smaller than 0"
+msgstr "制限は空欄または0以下には設定できません。"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
+msgid "Limit cannot be more than 24 hrs"
+msgstr "制限は24時間以内に設定してください。"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
+msgid "The value should be an integer"
+msgstr "値は整数である必要があります。"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
+msgid "500 is the max item limit value you can set"
+msgstr "設定できるアイテムの最大数は500です。"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
+msgid "You must select Criteria and Modifier"
+msgstr "「基準」と「条件」を選択してください。"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
+msgid "'Length' should be in '00:00:00' format"
+msgstr "「長さ」は、'00:00:00'の形式で入力してください。"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
+msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)"
+msgstr "値はタイムスタンプの形式に適合する必要があります。 (例: 0000-00-00 or 0000-00-00 00:00:00)"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:594
+msgid "The value has to be numeric"
+msgstr "値は数字である必要があります。"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
+msgid "The value should be less then 2147483648"
+msgstr "値は2147483648未満にする必要があります。"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
+#, php-format
+msgid "The value should be less than %s characters"
+msgstr "値は%s未満にする必要があります。"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
+msgid "Value cannot be empty"
+msgstr "値を入力してください。"
+
+#: airtime_mvc/application/forms/StreamSetting.php:26
+msgid "Icecast Vorbis Metadata"
+msgstr "Icecast Vorbisメタデータ"
+
+#: airtime_mvc/application/forms/StreamSetting.php:36
+msgid "Stream Label:"
+msgstr "配信表示設定:"
+
+#: airtime_mvc/application/forms/StreamSetting.php:37
+msgid "Artist - Title"
+msgstr "アーティスト - タイトル"
+
+#: airtime_mvc/application/forms/StreamSetting.php:38
+msgid "Show - Artist - Title"
+msgstr "番組 - アーティスト - タイトル"
+
+#: airtime_mvc/application/forms/StreamSetting.php:39
+msgid "Station name - Show name"
+msgstr "ステーション名 - 番組名"
+
+#: airtime_mvc/application/forms/StreamSetting.php:45
+msgid "Off Air Metadata"
+msgstr "オフエアーメタデータ"
+
+#: airtime_mvc/application/forms/StreamSetting.php:51
+msgid "Enable Replay Gain"
+msgstr "リプレイゲインを有効化"
+
+#: airtime_mvc/application/forms/StreamSetting.php:57
+msgid "Replay Gain Modifier"
+msgstr "リプレイゲイン調整"
+
+#: airtime_mvc/application/forms/StreamSetting.php:65
+msgid "Streaming Server:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Airtime Pro Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Custom / 3rd Party Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordChange.php:17
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
+msgid "Password"
+msgstr "パスワード"
-#~ msgid "enter a time in seconds 0{.0}"
-#~ msgstr "時間を秒単位で入力してください 0{.0}"
+#: airtime_mvc/application/forms/PasswordChange.php:28
+msgid "Confirm new password"
+msgstr "新しいパスワードを確認してください。"
-#~ msgid "Allow Remote Websites To Access \"Schedule\" Info?%s (Enable this to make front-end widgets work.)"
-#~ msgstr "外部サイトからの「スケジュール」情報へのアクセスを許可しますか?%s (フロントエンドのウィジェットを機能させる場合は、これを有効にしてください)"
+#: airtime_mvc/application/forms/PasswordChange.php:36
+msgid "Password confirmation does not match your password."
+msgstr "パスワード確認がパスワードと一致しません。"
-#~ msgid "Default Interface Language"
-#~ msgstr "表示言語(初期値)"
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
+msgid "Station Language"
+msgstr ""
-#~ msgid "Get new password"
-#~ msgstr "新しいパスワードを入手"
-
-#~ msgid "Set smart block type:"
-#~ msgstr "スマートブロックの形式:"
-
-#~ msgid "Allow Repeat Tracks:"
-#~ msgstr "トラックのリピートを許可:"
-
-#~ msgid "Limit to"
-#~ msgstr "最大"
-
-#~ msgid "Auto Switch Off"
-#~ msgstr "自動切り替えオフ"
-
-#~ msgid "Auto Switch On"
-#~ msgstr "自動切り替えオン"
-
-#~ msgid "Switch Transition Fade (s)"
-#~ msgstr "トランジション フェード時間 (秒)"
-
-#~ msgid "enter a time in seconds 00{.000000}"
-#~ msgstr "時間を秒数で入力してください 00{.000000}"
-
-#~ msgid "Master Username"
-#~ msgstr "マスターユーザー名"
-
-#~ msgid "Master Password"
-#~ msgstr "マスターパスワード"
-
-#~ msgid "Master Source Connection URL"
-#~ msgstr "マスターソース接続URL"
-
-#~ msgid "Show Source Connection URL"
-#~ msgstr "ソース接続URLを表示"
-
-#~ msgid "Master Source Port"
-#~ msgstr "マスターソースポート"
-
-#~ msgid "Master Source Mount Point"
-#~ msgstr "マスターソースマウントポイント"
-
-#~ msgid "Show Source Port"
-#~ msgstr "番組ソースポート"
-
-#~ msgid "Show Source Mount Point"
-#~ msgstr "番組ソースマウントポイント"
-
-#~ msgid "You cannot use same port as Master DJ port."
-#~ msgstr "マスターDJポートと同じポートを使用することはできません。"
-
-#~ msgid "Port %s is not available"
-#~ msgstr "ポート%sは利用できません。"
-
-#~ msgid "E-mail"
-#~ msgstr "メール"
-
-#~ msgid "Restore password"
-#~ msgstr "パスワードをリセット"
-
-#~ msgid "Hardware Audio Output"
-#~ msgstr "オーディオ出力"
-
-#~ msgid "Output Type"
-#~ msgstr "出力タイプ"
-
-#~ msgid "Date/Time Start:"
-#~ msgstr "開始日時:"
-
-#~ msgid "Date/Time End:"
-#~ msgstr "終了日時:"
-
-#~ msgid "Automatically Upload Recorded Shows"
-#~ msgstr "録音された番組を自動的にアップロード"
-
-#~ msgid "Enable SoundCloud Upload"
-#~ msgstr "SoundCloudへのアップロードを有効化"
-
-#~ msgid "Automatically Mark Files \"Downloadable\" on SoundCloud"
-#~ msgstr "自動的にSoundCloud上で「Downloadable」ファイルとしてアップロードする。"
-
-#~ msgid "SoundCloud Email"
-#~ msgstr "SoundCloudに登録されたメールアドレス"
-
-#~ msgid "SoundCloud Password"
-#~ msgstr "SoundCloudに登録されたパスワード"
-
-#~ msgid "SoundCloud Tags: (separate tags with spaces)"
-#~ msgstr "SoundCloudタグ:(タグはスペースで区切る)"
-
-#~ msgid "Default Genre:"
-#~ msgstr "ジャンル(初期値):"
-
-#~ msgid "Default Track Type:"
-#~ msgstr "トラックタイプ(初期値):"
-
-#~ msgid "Original"
-#~ msgstr "Original"
-
-#~ msgid "Remix"
-#~ msgstr "Remix"
-
-#~ msgid "Live"
-#~ msgstr "Live"
-
-#~ msgid "Recording"
-#~ msgstr "Recording"
-
-#~ msgid "Spoken"
-#~ msgstr "Spoken"
-
-#~ msgid "Podcast"
-#~ msgstr "Podcast"
-
-#~ msgid "Demo"
-#~ msgstr "Demo"
-
-#~ msgid "Work in progress"
-#~ msgstr "Work in progress"
-
-#~ msgid "Stem"
-#~ msgstr "Stem"
-
-#~ msgid "Loop"
-#~ msgstr "Loop"
-
-#~ msgid "Sound Effect"
-#~ msgstr "Sound Effect"
-
-#~ msgid "One Shot Sample"
-#~ msgstr "One Shot Sample"
-
-#~ msgid "Other"
-#~ msgstr "Other"
-
-#~ msgid "Enable System Emails (Password Reset)"
-#~ msgstr "システムメールを有効化 (パスワードリセット)"
-
-#~ msgid "Reset Password 'From' Email"
-#~ msgstr "メールからパスワードをリセット"
-
-#~ msgid "Configure Mail Server"
-#~ msgstr "メールサーバーを設定"
-
-#~ msgid "Requires Authentication"
-#~ msgstr "認証を要求"
-
-#~ msgid "Mail Server"
-#~ msgstr "メールサーバー"
-
-#~ msgid "Email Address"
-#~ msgstr "メールアドレス"
-
-#~ msgid "Please enter your user name and password"
-#~ msgstr "ユーザ名とパスワードを入力して下さい。"
-
-#~ msgid "Given email not found."
-#~ msgstr "メールアドレスが見つかりません。"
-
-#~ msgid "Page not found"
-#~ msgstr "ページが見つかりません。"
-
-#~ msgid "Application error"
-#~ msgstr "アプリケーションエラー"
-
-#~ msgid "Playlist / Block"
-#~ msgstr "プレイリスト・ブロック"
-
-#~ msgid "If you change the username or password values for an enabled stream the playout engine will be rebooted and your listeners will hear silence for 5-10 seconds. Changing the following fields will NOT cause a reboot: Stream Label (Global Settings), and Switch Transition Fade(s), Master Username, and Master Password (Input Stream Settings). If Airtime is recording, and if the change causes a playout engine restart, the recording will be interrupted."
-#~ msgstr "現在有効になっている配信のユーザー名またはパスワードを変更すると、システムが再起動するため5~10秒ほど配信が途切れます。配信表示設定(グローバル設定)、トランジションフェードの切替え、マスターユーザー名、マスターパスワード(入力設定)の変更は配信に影響がありません。録音中か、設定の変更によってシステムが再起動する場合は配信が途切れる場合があります。"
-
-#~ msgid "today"
-#~ msgstr "今日"
-
-#~ msgid "day"
-#~ msgstr "日"
-
-#~ msgid "week"
-#~ msgstr "週"
-
-#~ msgid "month"
-#~ msgstr "月"
-
-#~ msgid "Remove overbooked tracks"
-#~ msgstr "重複して設定されたトラックを削除"
-
-#~ msgid "Soundcloud"
-#~ msgstr "SoundCloud"
-
-#~ msgid "View on Soundcloud"
-#~ msgstr "SoundCloudで確認"
-
-#~ msgid "Re-upload to SoundCloud"
-#~ msgstr "SoundCloudへ再アップロード"
-
-#~ msgid "Upload to SoundCloud"
-#~ msgstr "SoundCloud へアップロード"
-
-#~ msgid "Could not delete some scheduled files."
-#~ msgstr "いくつかの予約されたファイルを削除できませんでした。"
-
-#~ msgid "Add Media"
-#~ msgstr "メディアを追加"
-
-#~ msgid "Library"
-#~ msgstr "ライブラリ"
-
-#~ msgid "System"
-#~ msgstr "システム"
-
-#~ msgid "Preferences"
-#~ msgstr "設定"
-
-#~ msgid "Media Folders"
-#~ msgstr "メディアフォルダ"
-
-#~ msgid "History"
-#~ msgstr "履歴"
-
-#~ msgid "Service"
-#~ msgstr "サービス"
-
-#~ msgid "Uptime"
-#~ msgstr "連続稼働時間"
-
-#~ msgid "CPU"
-#~ msgstr "CPU "
-
-#~ msgid "Memory"
-#~ msgstr "メモリ"
-
-#~ msgid "Email / Mail Server Settings"
-#~ msgstr "メール・メールサーバーの設定"
-
-#~ msgid "Connection URL: "
-#~ msgstr "接続URL:"
-
-#~ msgid "Input Stream Settings"
-#~ msgstr "入力設定"
-
-#~ msgid "Master Source Connection URL:"
-#~ msgstr "マスターソース接続URL:"
-
-#~ msgid "Override"
-#~ msgstr "オーバーライド"
-
-#~ msgid "RESET"
-#~ msgstr "リセット"
-
-#~ msgid "Show Source Connection URL:"
-#~ msgstr "番組ソース接続URL:"
-
-#~ msgid "Filter By Show:"
-#~ msgstr "番組で絞り込む:"
-
-#~ msgid "%s's Settings"
-#~ msgstr "%sの設定 "
-
-#~ msgid "Sourcefabric Privacy Policy"
-#~ msgstr "Rakuten.FM個人情報保護方針"
-
-#~ msgid "Smart Block Options"
-#~ msgstr "スマートブロック設定"
-
-#~ msgid "file meet the criteria"
-#~ msgstr "件の条件を満たすファイルがありました。"
-
-#~ msgid "New"
-#~ msgstr "新規作成"
-
-#~ msgid "New Playlist"
-#~ msgstr "新しいプレイリスト"
-
-#~ msgid "New Smart Block"
-#~ msgstr "新しいスマートブロック"
-
-#~ msgid "New Webstream"
-#~ msgstr "新しいウェブ配信"
-
-#~ msgid "View / edit description"
-#~ msgstr "説明確認・編集"
-
-#~ msgid "Global Settings"
-#~ msgstr "グローバル設定"
-
-#~ msgid "Output Stream Settings"
-#~ msgstr "出力設定"
-
-#~ msgid "Listener Count Over Time"
-#~ msgstr "リスナー視聴数"
-
-#~ msgid "Begin by adding your files to the library using the 'Add Media' menu button. You can drag and drop your files to this window too."
-#~ msgstr "「メディアを追加」メニューからライブラリにファイルを追加しましょう。画面にファイルをドラッグ&ドロップして追加することもできます。"
-
-#~ msgid "Create a show by going to 'Calendar' in the menu bar, and then clicking the '+ Show' icon. This can be either a one-time or repeating show. Only admins and program managers can add shows."
-#~ msgstr "メニューの「カレンダー」ページで「+番組」ボタンをクリックして、番組を追加してください。これは1回だけ、または繰り返し再生する番組で行えます。管理者やプログラムマネージャーのみ番組を追加できます。"
-
-#~ msgid "Add media to the show by going to your show in the Schedule calendar, left-clicking on it and selecting 'Add / Remove Content'"
-#~ msgstr "番組にメディアを追加するには、カレンダーページで番組を左クリックして、「コンテンツの追加・削除」を選択して下さい。"
-
-#~ msgid "Select your media from the left pane and drag them to your show in the right pane."
-#~ msgstr "左ウィンドウ枠からメディアを選択し、右ウィンドウの番組枠にドラッグして下さい。"
-
-#~ msgid "Then you're good to go!"
-#~ msgstr "さあ始めてみましょう!"
-
-#~ msgid "Please enter your account e-mail address. You will receive a link to create a new password via e-mail."
-#~ msgstr "アカウントのメールアドレスを入力して下さい。新しいパスワード作成用のリンクをメールで送信します。"
-
-#~ msgid "Email sent"
-#~ msgstr "メールが送信されました。"
-
-#~ msgid "An email has been sent"
-#~ msgstr "メールは送信されました。"
-
-#~ msgid "Back to login screen"
-#~ msgstr "ログイン画面に戻る"
-
-#~ msgid "Scheduled Play"
-#~ msgstr "予約配信ソース"
-
-#~ msgid "Station time"
-#~ msgstr "ステーションタイム"
-
-#~ msgid "Zend Framework Default Application"
-#~ msgstr "Zend Framework Default Application"
-
-#~ msgid "Empty smart block"
-#~ msgstr "スマートブロックを空にする"
-
-#~ msgid "Empty playlist"
-#~ msgstr "プレイリストを空にする"
-
-#~ msgid "Empty smart block content"
-#~ msgstr "スマートブロックを空にする。"
-
-#~ msgid "No open smart block"
-#~ msgstr "スマートブロックが開かれていません。"
-
-#~ msgid "Record & Rebroadcast"
-#~ msgstr "録音と再配信"
-
-#~ msgid "Failed to create 'organize' directory."
-#~ msgstr " 'organize'ディレクトリを作成できませんでした。"
-
-#~ msgid "The file was not uploaded, there is %s MB of disk space left and the file you are uploading has a size of %s MB."
-#~ msgstr "ディスクの容量不足でファイルをアップロードできませんでした。ディスクに残っている容量は %s MBですがあなたがアップロードしているファイルサイズは %s MBです。"
-
-#~ msgid "This file appears to be corrupted and will not be added to media library."
-#~ msgstr "このファイルは破損しているようです。メディアライブラリに追加されません。"
-
-#~ msgid "The file was not uploaded, this error can occur if the computer hard drive does not have enough disk space or the stor directory does not have correct write permissions."
-#~ msgstr "ファイルをアップロードできませんでした。このエラーは、コンピュータのハードドライブに十分なディスク容量がないか、ストアディレクトリに書き込む権限を持っていない場合に発生する可能性があります。"
-
-#~ msgid ""
-#~ "Hi %s, \n"
-#~ "\n"
-#~ "Click this link to reset your password: "
-#~ msgstr ""
-#~ "ようこそ %s, \n"
-#~ "\n"
-#~ "このリンクをクリックしてパスワードをリセットして下さい:"
-
-#~ msgid "Show Content"
-#~ msgstr "番組内容"
-
-#~ msgid "Remove All Content"
-#~ msgstr "全てのコンテンツを削除"
-
-#~ msgid "Cancel Current Show"
-#~ msgstr "現在の番組をキャンセル"
-
-#~ msgid "Edit This Instance"
-#~ msgstr "この配信回を編集"
-
-#~ msgid "Delete This Instance"
-#~ msgstr "この配信回を削除"
-
-#~ msgid "Delete This Instance and All Following"
-#~ msgstr "これ以降の配信回を全て削除"
-
-#~ msgid "Please selection an option"
-#~ msgstr "選択してください。"
-
-#~ msgid "No Records"
-#~ msgstr "録画なし"
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
+msgid "Enabled:"
+msgstr "有効:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
+msgid "Mobile:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
+msgid "Stream Type:"
+msgstr "配信種別:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
+msgid "Service Type:"
+msgstr "サービスタイプ:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
+msgid "Channels:"
+msgstr "再生方式"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "1 - Mono"
+msgstr "1 - モノラル"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "2 - Stereo"
+msgstr "2 - ステレオ"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
+msgid "Server"
+msgstr "サーバー"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
+msgid "Port"
+msgstr "ポート"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
+msgid "Only numbers are allowed."
+msgstr "数値で入力してください。"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
+msgid "URL"
+msgstr "URL"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
+msgid "Mount Point"
+msgstr "マウントポイント"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
+msgid "Admin User"
+msgstr "管理者"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
+msgid "Admin Password"
+msgstr "管理者パスワード"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
+msgid "Server cannot be empty."
+msgstr "サーバーを入力してください。"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
+msgid "Port cannot be empty."
+msgstr "ポートを入力してください。"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
+msgid "Mount cannot be empty with Icecast server."
+msgstr "Icecastサーバーを使用する際はマウント欄を入力してください。"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:16
+msgid "'%value%' does not fit the time format 'HH:mm'"
+msgstr "'%value%'は、'01:22'の形式に適合していません"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:22
+msgid "Start Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:37
+msgid "In the Future:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:64
+msgid "End Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:98
+msgid "Timezone:"
+msgstr "タイムゾーン:"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:107
+msgid "Repeats?"
+msgstr "定期番組に設定"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:139
+msgid "Cannot create show in the past"
+msgstr "過去の日付に番組は作成できません。"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:147
+msgid "Cannot modify start date/time of the show that is already started"
+msgstr "すでに開始されている番組の開始日、開始時間を変更することはできません。"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:156
+#: airtime_mvc/application/models/Show.php:282
+msgid "End date/time cannot be in the past"
+msgstr "終了日時は過去に設定できません。"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:164
+msgid "Cannot have duration < 0m"
+msgstr "0分以下の長さに設定することはできません。"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:168
+msgid "Cannot have duration 00h 00m"
+msgstr "00h 00mの長さに設定することはできません。"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:175
+msgid "Cannot have duration greater than 24h"
+msgstr "24時間を越える長さに設定することはできません。"
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:19
+msgid "Push metadata to your station on TuneIn?"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:24
+msgid "Station ID:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:30
+msgid "Partner Key:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:36
+msgid "Partner Id:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:77
+#: airtime_mvc/application/forms/TuneInPreferences.php:86
+msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:10
+#, php-format
+msgid "Use %s Authentication:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:16
+msgid "Use Custom Authentication:"
+msgstr "カスタム認証を使用:"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:25
+msgid "Custom Username"
+msgstr "カスタムユーザー名"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:37
+msgid "Custom Password"
+msgstr "カスタムパスワード"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:48
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
+msgid "Host:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
+msgid "Port:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:60
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
+msgid "Mount:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:77
+msgid "Username field cannot be empty."
+msgstr "ユーザー名を入力してください。"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:82
+msgid "Password field cannot be empty."
+msgstr "パスワードを入力してください。"
+
+#: airtime_mvc/application/forms/AddShowStyle.php:12
+msgid "Background Colour:"
+msgstr "背景色:"
+
+#: airtime_mvc/application/forms/AddShowStyle.php:31
+msgid "Text Colour:"
+msgstr "文字色:"
+
+#: airtime_mvc/application/forms/AddShowStyle.php:49
+msgid "Current Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:72
+msgid "Show Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:87
+msgid "Logo Preview:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Login.php:102
+msgid "Type the characters you see in the picture below."
+msgstr "下記画像の中に見える文字を入力してください。"
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
+msgid "Auto Switch Off:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
+msgid "Auto Switch On:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
+msgid "Switch Transition Fade (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:10
+msgid "Link:"
+msgstr "配信内容を同期する:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:16
+msgid "Repeat Type:"
+msgstr "リピート形式:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:19
+msgid "weekly"
+msgstr "毎週"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:20
+msgid "every 2 weeks"
+msgstr "2週間ごと"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:21
+msgid "every 3 weeks"
+msgstr "3週間ごと"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:22
+msgid "every 4 weeks"
+msgstr "4週間ごと"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:23
+msgid "monthly"
+msgstr "毎月"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:32
+msgid "Select Days:"
+msgstr "曜日を選択:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:47
+msgid "Repeat By:"
+msgstr "リピート間隔:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the month"
+msgstr "毎月特定日"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the week"
+msgstr "毎月特定曜日"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:69
+msgid "No End?"
+msgstr "無期限"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:106
+msgid "End date must be after start date"
+msgstr "終了日は開始日より後に設定してください。"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:113
+msgid "Please select a repeat day"
+msgstr "繰り返す日を選択してください"
+
+#: airtime_mvc/application/configs/navigation.php:12
+msgid "Radio Page"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:19
+msgid "Calendar"
+msgstr "カレンダー"
+
+#: airtime_mvc/application/configs/navigation.php:26
+msgid "Widgets"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:48
+msgid "Settings"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:67
+msgid "Users"
+msgstr "ユーザー"
+
+#: airtime_mvc/application/configs/navigation.php:74
+msgid "Streams"
+msgstr "配信設定"
+
+#: airtime_mvc/application/configs/navigation.php:82
+msgid "Analytics"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:90
+msgid "Listener Stats"
+msgstr "リスナー統計"
+
+#: airtime_mvc/application/configs/navigation.php:104
+msgid "History Templates"
+msgstr "配信履歴のテンプレート"
+
+#: airtime_mvc/application/configs/navigation.php:113
+msgid "Billing"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:120
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:127
+msgid "Account Details"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:134
+msgid "View Invoices"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:150
+msgid "Getting Started"
+msgstr "はじめに"
+
+#: airtime_mvc/application/configs/navigation.php:157
+msgid "FAQ"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:162
+msgid "User Manual"
+msgstr "ユーザーマニュアル"
+
+#: airtime_mvc/application/configs/navigation.php:167
+msgid "File a Support Ticket"
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:833
+#: airtime_mvc/application/models/Playlist.php:812
+msgid "Cue in and cue out are null."
+msgstr "キューインとキューアウトが設定されていません。"
+
+#: airtime_mvc/application/models/Block.php:868
+#: airtime_mvc/application/models/Block.php:924
+#: airtime_mvc/application/models/Playlist.php:851
+#: airtime_mvc/application/models/Playlist.php:895
+msgid "Can't set cue out to be greater than file length."
+msgstr "キューアウトはファイルの長さより長く設定できません。"
+
+#: airtime_mvc/application/models/Block.php:879
+#: airtime_mvc/application/models/Block.php:900
+#: airtime_mvc/application/models/Playlist.php:843
+#: airtime_mvc/application/models/Playlist.php:868
+msgid "Can't set cue in to be larger than cue out."
+msgstr "キューインをキューアウトより大きく設定することはできません。"
+
+#: airtime_mvc/application/models/Block.php:935
+#: airtime_mvc/application/models/Playlist.php:887
+msgid "Can't set cue out to be smaller than cue in."
+msgstr "キューアウトをキューインより小さく設定することはできません。"
+
+#: airtime_mvc/application/models/Block.php:1366
+msgid "Upload Time"
+msgstr ""
+
+#: airtime_mvc/application/models/ShowBuilder.php:212
+#, php-format
+msgid "Rebroadcast of %s from %s"
+msgstr "%sの再配信%sから"
+
+#: airtime_mvc/application/models/Preference.php:460
+#, php-format
+msgid "Powered by %s"
+msgstr ""
+
+#: airtime_mvc/application/models/Preference.php:588
+msgid "Select Country"
+msgstr "国の選択"
+
+#: airtime_mvc/application/models/MusicDir.php:160
+#, php-format
+msgid "%s is already watched."
+msgstr "%sは同期済みです。"
+
+#: airtime_mvc/application/models/MusicDir.php:164
+#, php-format
+msgid "%s contains nested watched directory: %s"
+msgstr "%sは同期している次のフォルダを含んでいます: %s "
+
+#: airtime_mvc/application/models/MusicDir.php:168
+#, php-format
+msgid "%s is nested within existing watched directory: %s"
+msgstr "%sは同期している次のフォルダに含まれています: %s "
+
+#: airtime_mvc/application/models/MusicDir.php:189
+#: airtime_mvc/application/models/MusicDir.php:370
+#, php-format
+msgid "%s is not a valid directory."
+msgstr "%sは有効なディレクトリではありません。"
+
+#: airtime_mvc/application/models/MusicDir.php:232
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list"
+msgstr "%sはすでに保存ディレクトリまたは同期フォルダに設定されています。"
+
+#: airtime_mvc/application/models/MusicDir.php:388
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list."
+msgstr "%sはすでに保存ディレクトリまたは同期フォルダに設定されています。"
+
+#: airtime_mvc/application/models/MusicDir.php:431
+#, php-format
+msgid "%s doesn't exist in the watched list."
+msgstr "%sは同期リストの中に存在しません。"
+
+#: airtime_mvc/application/models/Auth.php:33
+#, php-format
+msgid ""
+"Hi %s, \n"
+"\n"
+"Please click this link to reset your password: "
+msgstr ""
+
+#: airtime_mvc/application/models/Auth.php:38
+#, php-format
+msgid "%s Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/models/Show.php:184
+msgid "Shows can have a max length of 24 hours."
+msgstr "番組は最大24時間まで設定可能です。"
+
+#: airtime_mvc/application/models/Show.php:293
+msgid ""
+"Cannot schedule overlapping shows.\n"
+"Note: Resizing a repeating show affects all of its repeats."
+msgstr ""
+"番組を重複して予約することはできません。\n"
+"注意:再配信番組のサイズ変更は全ての再配信に反映されます。"
+
+#: airtime_mvc/application/models/Scheduler.php:73
+msgid "Cannot move items out of linked shows"
+msgstr "リンクした番組の外に項目を移動することはできません。"
+
+#: airtime_mvc/application/models/Scheduler.php:119
+msgid "The schedule you're viewing is out of date! (sched mismatch)"
+msgstr "参照中のスケジュールはの有効ではありません。"
+
+#: airtime_mvc/application/models/Scheduler.php:124
+msgid "The schedule you're viewing is out of date! (instance mismatch)"
+msgstr "参照中のスケジュールは有効ではありません。"
+
+#: airtime_mvc/application/models/Scheduler.php:132
+#: airtime_mvc/application/models/Scheduler.php:458
+#: airtime_mvc/application/models/Scheduler.php:490
+msgid "The schedule you're viewing is out of date!"
+msgstr "参照中のスケジュールは有効ではありません。"
+
+#: airtime_mvc/application/models/Scheduler.php:142
+#, php-format
+msgid "You are not allowed to schedule show %s."
+msgstr "番組を%sに予約することはできません。"
+
+#: airtime_mvc/application/models/Scheduler.php:146
+msgid "You cannot add files to recording shows."
+msgstr "録音中の番組にファイルを追加することはできません。"
+
+#: airtime_mvc/application/models/Scheduler.php:152
+#, php-format
+msgid "The show %s is over and cannot be scheduled."
+msgstr "番組 %s は終了しておりスケジュールに入れることができません。"
+
+#: airtime_mvc/application/models/Scheduler.php:159
+#, php-format
+msgid "The show %s has been previously updated!"
+msgstr "番組 %s は以前に更新されています。"
+
+#: airtime_mvc/application/models/Scheduler.php:178
+msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
+msgstr "同期された配信内容を配信中に変更することはできません。"
+
+#: airtime_mvc/application/models/Scheduler.php:195
+msgid "Cannot schedule a playlist that contains missing files."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:216
+#: airtime_mvc/application/models/Scheduler.php:305
+msgid "A selected File does not exist!"
+msgstr "選択したファイルは存在しません。"
+
+#: airtime_mvc/application/models/Schedule.php:206
+msgid "livestream"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:166
+msgid "Length needs to be greater than 0 minutes"
+msgstr "再生時間は0分以上である必要があります。"
+
+#: airtime_mvc/application/models/Webstream.php:171
+msgid "Length should be of form \"00h 00m\""
+msgstr "時間は \"00h 00m\"の形式にしてください。"
+
+#: airtime_mvc/application/models/Webstream.php:184
+msgid "URL should be of form \"http://domain\""
+msgstr "URL は\"http://domain\"の形式で入力してください。"
+
+#: airtime_mvc/application/models/Webstream.php:187
+msgid "URL should be 512 characters or less"
+msgstr "URLは512文字以下にしてください。"
+
+#: airtime_mvc/application/models/Webstream.php:193
+msgid "No MIME type found for webstream."
+msgstr "ウェブ配信用のMIMEタイプは見つかりませんでした。"
+
+#: airtime_mvc/application/models/Webstream.php:209
+msgid "Webstream name cannot be empty"
+msgstr "ウェブ配信名を入力して下さい。"
+
+#: airtime_mvc/application/models/Webstream.php:278
+msgid "Could not parse XSPF playlist"
+msgstr "XSPFプレイリストを解析できませんでした。"
+
+#: airtime_mvc/application/models/Webstream.php:298
+msgid "Could not parse PLS playlist"
+msgstr "PLSプレイリストを解析できませんでした。"
+
+#: airtime_mvc/application/models/Webstream.php:318
+msgid "Could not parse M3U playlist"
+msgstr "M3Uプレイリストを解析できませんでした。"
+
+#: airtime_mvc/application/models/Webstream.php:332
+msgid "Invalid webstream - This appears to be a file download."
+msgstr "無効なウェブ配信です。"
+
+#: airtime_mvc/application/models/Webstream.php:336
+#, php-format
+msgid "Unrecognized stream type: %s"
+msgstr "不明な配信種別です: %s"
+
+#: airtime_mvc/public/setup/rabbitmq-setup.php:78
+msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
+msgstr ""
+
+#~ msgid "My Account"
+#~ msgstr "マイアカウント"
diff --git a/airtime_mvc/locale/ja/LC_MESSAGES/pro.po b/airtime_mvc/locale/ja/LC_MESSAGES/pro.po
index 866ee0acb..f59b52c3d 100644
--- a/airtime_mvc/locale/ja/LC_MESSAGES/pro.po
+++ b/airtime_mvc/locale/ja/LC_MESSAGES/pro.po
@@ -1,3 +1,139 @@
+#: airtime_mvc/application/controllers/LoginController.php:170
+#, php-format
+msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
+#, php-format
+msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
+#, php-format
+msgid "If you are the primary owner of this station, please reset your password here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
+msgid "Thank you!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
+msgid "Your station has been upgraded successfully."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
+msgid "Return to Airtime"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+#, php-format
+msgid "Purchase an %s plan!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+msgid "My Account"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
+msgid "Upgrade today to get more listeners and storage space!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
+msgid "View Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:257
+msgid "Your Current Plan:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:291
+msgid "Please enter your payment details:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
+msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
+msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:17
+msgid "First Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:26
+msgid "Last Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:35
+msgid "Company Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:44
+msgid "Email Address:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:54
+msgid "Address 1:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:63
+msgid "Address 2:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:70
+msgid "City:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:80
+msgid "State/Region:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:89
+msgid "Zip Code / Postal Code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:102
+msgid "Country:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:112
+msgid "Phone Number:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:121
+msgid "Please choose a security question:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:135
+msgid "Please enter an answer:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:152
+msgid "VAT/Tax ID (EU only)"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:162
+msgid "Subscribe to Sourcefabric newsletter"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:172
+msgid "Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:181
+msgid "Verify Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:193
+msgid "Save"
+msgstr ""
+
#: airtime_mvc/application/models/Auth.php:35
#, php-format
msgid ""
@@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
-msgid "Thank you!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
-msgid "Your station has been upgraded successfully."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
-msgid "Return to Airtime"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
-#, php-format
-msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
-msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
-msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
-#, php-format
-msgid "If you are the primary owner of this station, please reset your password here."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:170
-#, php-format
-msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
-msgstr ""
diff --git a/airtime_mvc/locale/ja_JP/LC_MESSAGES/airtime.po b/airtime_mvc/locale/ja_JP/LC_MESSAGES/airtime.po
index e038d4da7..549413e32 100644
--- a/airtime_mvc/locale/ja_JP/LC_MESSAGES/airtime.po
+++ b/airtime_mvc/locale/ja_JP/LC_MESSAGES/airtime.po
@@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Airtime\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-09-03 10:24-0400\n"
+"POT-Creation-Date: 2015-09-04 11:17-0400\n"
"PO-Revision-Date: 2014-07-28 11:49+0000\n"
"Last-Translator: Daniel James \n"
"Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/airtime/language/ja_JP/)\n"
@@ -15,132 +15,6 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-#: airtime_mvc/public/setup/rabbitmq-setup.php:78
-msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1117
-#: airtime_mvc/application/services/HistoryService.php:1157
-#: airtime_mvc/application/services/HistoryService.php:1174
-#: airtime_mvc/application/models/Block.php:1375
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
-#: airtime_mvc/application/controllers/LocaleController.php:76
-msgid "Title"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1118
-#: airtime_mvc/application/services/HistoryService.php:1158
-#: airtime_mvc/application/services/HistoryService.php:1175
-#: airtime_mvc/application/models/Block.php:1360
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
-#: airtime_mvc/application/controllers/LocaleController.php:77
-msgid "Creator"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1119
-#: airtime_mvc/application/models/Block.php:1352
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
-#: airtime_mvc/application/controllers/LocaleController.php:78
-msgid "Album"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1120
-#: airtime_mvc/application/services/HistoryService.php:1177
-#: airtime_mvc/application/models/Block.php:1369
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
-#: airtime_mvc/application/controllers/LocaleController.php:91
-msgid "Length"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1121
-#: airtime_mvc/application/models/Block.php:1362
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
-#: airtime_mvc/application/controllers/LocaleController.php:85
-msgid "Genre"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1122
-#: airtime_mvc/application/models/Block.php:1371
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
-#: airtime_mvc/application/controllers/LocaleController.php:93
-msgid "Mood"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1123
-#: airtime_mvc/application/models/Block.php:1364
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
-#: airtime_mvc/application/controllers/LocaleController.php:87
-msgid "Label"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1124
-#: airtime_mvc/application/services/HistoryService.php:1178
-#: airtime_mvc/application/models/Block.php:1355
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
-#: airtime_mvc/application/controllers/LocaleController.php:81
-msgid "Composer"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1125
-#: airtime_mvc/application/models/Block.php:1363
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
-#: airtime_mvc/application/controllers/LocaleController.php:86
-msgid "ISRC"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1126
-#: airtime_mvc/application/services/HistoryService.php:1179
-#: airtime_mvc/application/models/Block.php:1357
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
-#: airtime_mvc/application/controllers/LocaleController.php:83
-msgid "Copyright"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1127
-#: airtime_mvc/application/models/Block.php:1379
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
-#: airtime_mvc/application/controllers/LocaleController.php:100
-msgid "Year"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1128
-msgid "Track"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1129
-#: airtime_mvc/application/models/Block.php:1356
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
-#: airtime_mvc/application/controllers/LocaleController.php:82
-msgid "Conductor"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1130
-#: airtime_mvc/application/models/Block.php:1365
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
-#: airtime_mvc/application/controllers/LocaleController.php:88
-msgid "Language"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1155
-#: airtime_mvc/application/forms/EditHistoryItem.php:32
-msgid "Start Time"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1156
-#: airtime_mvc/application/forms/EditHistoryItem.php:44
-msgid "End Time"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1176
-msgid "Played"
-msgstr ""
-
#: airtime_mvc/application/services/CalendarService.php:50
msgid "Record file doesn't exist"
msgstr ""
@@ -236,2601 +110,380 @@ msgstr ""
msgid "Must wait 1 hour to rebroadcast."
msgstr ""
-#: airtime_mvc/application/models/Schedule.php:206
-msgid "livestream"
+#: airtime_mvc/application/services/HistoryService.php:1117
+#: airtime_mvc/application/services/HistoryService.php:1157
+#: airtime_mvc/application/services/HistoryService.php:1174
+#: airtime_mvc/application/controllers/LocaleController.php:76
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
+#: airtime_mvc/application/models/Block.php:1375
+msgid "Title"
msgstr ""
-#: airtime_mvc/application/models/ShowBuilder.php:212
+#: airtime_mvc/application/services/HistoryService.php:1118
+#: airtime_mvc/application/services/HistoryService.php:1158
+#: airtime_mvc/application/services/HistoryService.php:1175
+#: airtime_mvc/application/controllers/LocaleController.php:77
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
+#: airtime_mvc/application/models/Block.php:1360
+msgid "Creator"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1119
+#: airtime_mvc/application/controllers/LocaleController.php:78
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
+#: airtime_mvc/application/models/Block.php:1352
+msgid "Album"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1120
+#: airtime_mvc/application/services/HistoryService.php:1177
+#: airtime_mvc/application/controllers/LocaleController.php:91
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
+#: airtime_mvc/application/models/Block.php:1369
+msgid "Length"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1121
+#: airtime_mvc/application/controllers/LocaleController.php:85
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
+#: airtime_mvc/application/models/Block.php:1362
+msgid "Genre"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1122
+#: airtime_mvc/application/controllers/LocaleController.php:93
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
+#: airtime_mvc/application/models/Block.php:1371
+msgid "Mood"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1123
+#: airtime_mvc/application/controllers/LocaleController.php:87
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
+#: airtime_mvc/application/models/Block.php:1364
+msgid "Label"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1124
+#: airtime_mvc/application/services/HistoryService.php:1178
+#: airtime_mvc/application/controllers/LocaleController.php:81
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
+#: airtime_mvc/application/models/Block.php:1355
+msgid "Composer"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1125
+#: airtime_mvc/application/controllers/LocaleController.php:86
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
+#: airtime_mvc/application/models/Block.php:1363
+msgid "ISRC"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1126
+#: airtime_mvc/application/services/HistoryService.php:1179
+#: airtime_mvc/application/controllers/LocaleController.php:83
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
+#: airtime_mvc/application/models/Block.php:1357
+msgid "Copyright"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1127
+#: airtime_mvc/application/controllers/LocaleController.php:100
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
+#: airtime_mvc/application/models/Block.php:1379
+msgid "Year"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1128
+msgid "Track"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1129
+#: airtime_mvc/application/controllers/LocaleController.php:82
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
+#: airtime_mvc/application/models/Block.php:1356
+msgid "Conductor"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1130
+#: airtime_mvc/application/controllers/LocaleController.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
+#: airtime_mvc/application/models/Block.php:1365
+msgid "Language"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1155
+#: airtime_mvc/application/forms/EditHistoryItem.php:32
+msgid "Start Time"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1156
+#: airtime_mvc/application/forms/EditHistoryItem.php:44
+msgid "End Time"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1176
+msgid "Played"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:31
+#: airtime_mvc/application/controllers/PlaylistController.php:147
#, php-format
-msgid "Rebroadcast of %s from %s"
+msgid "%s not found"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:166
-msgid "Length needs to be greater than 0 minutes"
+#: airtime_mvc/application/controllers/LibraryController.php:40
+#: airtime_mvc/application/controllers/PlaylistController.php:168
+msgid "Something went wrong."
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:171
-msgid "Length should be of form \"00h 00m\""
+#: airtime_mvc/application/controllers/LibraryController.php:95
+#: airtime_mvc/application/controllers/ShowbuilderController.php:136
+msgid "Preview"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:184
-msgid "URL should be of form \"http://domain\""
+#: airtime_mvc/application/controllers/LibraryController.php:115
+#: airtime_mvc/application/controllers/LibraryController.php:177
+#: airtime_mvc/application/controllers/LibraryController.php:200
+msgid "Add to Playlist"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:187
-msgid "URL should be 512 characters or less"
+#: airtime_mvc/application/controllers/LibraryController.php:117
+msgid "Add to Smart Block"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:193
-msgid "No MIME type found for webstream."
+#: airtime_mvc/application/controllers/LibraryController.php:123
+#: airtime_mvc/application/controllers/LocaleController.php:66
+msgid "Edit Metadata"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:209
-msgid "Webstream name cannot be empty"
+#: airtime_mvc/application/controllers/LibraryController.php:131
+#: airtime_mvc/application/controllers/ScheduleController.php:712
+msgid "Download"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:278
-msgid "Could not parse XSPF playlist"
+#: airtime_mvc/application/controllers/LibraryController.php:147
+msgid "View track"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:298
-msgid "Could not parse PLS playlist"
+#: airtime_mvc/application/controllers/LibraryController.php:148
+msgid "Remove track"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:318
-msgid "Could not parse M3U playlist"
+#: airtime_mvc/application/controllers/LibraryController.php:154
+#: airtime_mvc/application/controllers/LibraryController.php:159
+msgid "Upload track"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:332
-msgid "Invalid webstream - This appears to be a file download."
+#: airtime_mvc/application/controllers/LibraryController.php:169
+msgid "Duplicate Playlist"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:336
+#: airtime_mvc/application/controllers/LibraryController.php:213
+msgid "No action available"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:233
+msgid "You don't have permission to delete selected items."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:279
+msgid "Could not delete file because it is scheduled in the future."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:282
+msgid "Could not delete file(s)."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:322
#, php-format
-msgid "Unrecognized stream type: %s"
+msgid "Copy of %s"
msgstr ""
-#: airtime_mvc/application/models/Preference.php:460
-#, php-format
-msgid "Powered by %s"
+#: airtime_mvc/application/controllers/WebstreamController.php:28
+#: airtime_mvc/application/controllers/WebstreamController.php:32
+msgid "Untitled Webstream"
msgstr ""
-#: airtime_mvc/application/models/Preference.php:588
-msgid "Select Country"
+#: airtime_mvc/application/controllers/WebstreamController.php:150
+msgid "Webstream saved."
msgstr ""
-#: airtime_mvc/application/models/MusicDir.php:160
-#, php-format
-msgid "%s is already watched."
+#: airtime_mvc/application/controllers/WebstreamController.php:158
+msgid "Invalid form values."
msgstr ""
-#: airtime_mvc/application/models/MusicDir.php:164
-#, php-format
-msgid "%s contains nested watched directory: %s"
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:168
-#, php-format
-msgid "%s is nested within existing watched directory: %s"
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:189
-#: airtime_mvc/application/models/MusicDir.php:370
-#, php-format
-msgid "%s is not a valid directory."
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:232
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list"
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:388
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list."
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:431
-#, php-format
-msgid "%s doesn't exist in the watched list."
-msgstr ""
-
-#: airtime_mvc/application/models/Show.php:184
-msgid "Shows can have a max length of 24 hours."
-msgstr ""
-
-#: airtime_mvc/application/models/Show.php:282
-#: airtime_mvc/application/forms/AddShowWhen.php:156
-msgid "End date/time cannot be in the past"
-msgstr ""
-
-#: airtime_mvc/application/models/Show.php:293
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
msgid ""
-"Cannot schedule overlapping shows.\n"
-"Note: Resizing a repeating show affects all of its repeats."
+"To configure and use the embeddable player you must:
\n"
+" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
+" 2. Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/models/Auth.php:33
-#, php-format
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
msgid ""
-"Hi %s, \n"
-"\n"
-"Please click this link to reset your password: "
+"To use the embeddable weekly schedule widget you must:
\n"
+" Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/models/Auth.php:38
+#: airtime_mvc/application/controllers/ListenerstatController.php:51
+msgid "Please make sure admin user/password is correct on System->Streams page."
+msgstr ""
+
+#: airtime_mvc/application/controllers/UserController.php:86
+msgid "User added successfully!"
+msgstr ""
+
+#: airtime_mvc/application/controllers/UserController.php:88
+msgid "User updated successfully!"
+msgstr ""
+
+#: airtime_mvc/application/controllers/UserController.php:187
+msgid "Settings updated successfully!"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PlaylistController.php:53
#, php-format
-msgid "%s Password Reset"
+msgid "You are viewing an older version of %s"
msgstr ""
-#: airtime_mvc/application/models/Block.php:333
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
-msgid "items"
+#: airtime_mvc/application/controllers/PlaylistController.php:140
+msgid "You cannot add tracks to dynamic blocks."
msgstr ""
-#: airtime_mvc/application/models/Block.php:833
-#: airtime_mvc/application/models/Playlist.php:812
-msgid "Cue in and cue out are null."
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:868
-#: airtime_mvc/application/models/Block.php:924
-#: airtime_mvc/application/models/Playlist.php:851
-#: airtime_mvc/application/models/Playlist.php:895
-msgid "Can't set cue out to be greater than file length."
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:879
-#: airtime_mvc/application/models/Block.php:900
-#: airtime_mvc/application/models/Playlist.php:843
-#: airtime_mvc/application/models/Playlist.php:868
-msgid "Can't set cue in to be larger than cue out."
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:935
-#: airtime_mvc/application/models/Playlist.php:887
-msgid "Can't set cue out to be smaller than cue in."
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1351
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
-msgid "Select criteria"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1353
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
-msgid "Bit Rate (Kbps)"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1354
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
-#: airtime_mvc/application/controllers/LocaleController.php:80
-msgid "BPM"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1358
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
-#: airtime_mvc/application/controllers/LocaleController.php:281
-#: airtime_mvc/application/layouts/scripts/layout.phtml:140
-msgid "Cue In"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1359
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:282
-#: airtime_mvc/application/layouts/scripts/layout.phtml:147
-msgid "Cue Out"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1361
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
-#: airtime_mvc/application/controllers/LocaleController.php:84
-msgid "Encoded By"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1366
-msgid "Upload Time"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1367
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
-#: airtime_mvc/application/controllers/LocaleController.php:89
-msgid "Last Modified"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1368
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
-#: airtime_mvc/application/controllers/LocaleController.php:90
-msgid "Last Played"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1370
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
-#: airtime_mvc/application/controllers/LocaleController.php:92
-msgid "Mime"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1372
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
-#: airtime_mvc/application/controllers/LocaleController.php:94
-msgid "Owner"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1373
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
-#: airtime_mvc/application/controllers/LocaleController.php:95
-msgid "Replay Gain"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1374
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
-msgid "Sample Rate (kHz)"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1376
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
-#: airtime_mvc/application/controllers/LocaleController.php:97
-msgid "Track Number"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1377
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
-#: airtime_mvc/application/controllers/LocaleController.php:98
-msgid "Uploaded"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1378
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
-#: airtime_mvc/application/controllers/LocaleController.php:99
-msgid "Website"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1383
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
-#: airtime_mvc/application/controllers/LocaleController.php:151
-msgid "Select modifier"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1384
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
-#: airtime_mvc/application/controllers/LocaleController.php:152
-msgid "contains"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1385
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
-#: airtime_mvc/application/controllers/LocaleController.php:153
-msgid "does not contain"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1386
-#: airtime_mvc/application/models/Block.php:1390
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
-#: airtime_mvc/application/controllers/LocaleController.php:154
-msgid "is"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1387
-#: airtime_mvc/application/models/Block.php:1391
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
-#: airtime_mvc/application/controllers/LocaleController.php:155
-msgid "is not"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1388
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
-#: airtime_mvc/application/controllers/LocaleController.php:156
-msgid "starts with"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1389
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
-#: airtime_mvc/application/controllers/LocaleController.php:157
-msgid "ends with"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
-#: airtime_mvc/application/controllers/LocaleController.php:158
-msgid "is greater than"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1393
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
-#: airtime_mvc/application/controllers/LocaleController.php:159
-msgid "is less than"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1394
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
-#: airtime_mvc/application/controllers/LocaleController.php:160
-msgid "is in the range"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:73
-msgid "Cannot move items out of linked shows"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:119
-msgid "The schedule you're viewing is out of date! (sched mismatch)"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:124
-msgid "The schedule you're viewing is out of date! (instance mismatch)"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:132
-#: airtime_mvc/application/models/Scheduler.php:458
-#: airtime_mvc/application/models/Scheduler.php:490
-msgid "The schedule you're viewing is out of date!"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:142
+#: airtime_mvc/application/controllers/PlaylistController.php:161
#, php-format
-msgid "You are not allowed to schedule show %s."
+msgid "You don't have permission to delete selected %s(s)."
msgstr ""
-#: airtime_mvc/application/models/Scheduler.php:146
-msgid "You cannot add files to recording shows."
+#: airtime_mvc/application/controllers/PlaylistController.php:174
+msgid "You can only add tracks to smart block."
msgstr ""
-#: airtime_mvc/application/models/Scheduler.php:152
+#: airtime_mvc/application/controllers/PlaylistController.php:180
+#: airtime_mvc/application/controllers/LocaleController.php:50
+msgid "You can only add tracks, smart blocks, and webstreams to playlists."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PlaylistController.php:192
+msgid "Untitled Playlist"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PlaylistController.php:194
+msgid "Untitled Smart Block"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PlaylistController.php:522
+msgid "Unknown Playlist"
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:78
+msgid "Page not found."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:87
+msgid "The requested action is not supported."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:98
+msgid "You do not have permission to access this resource."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:109
+msgid "An internal application error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/controllers/Apiv2Controller.php:77
+#: airtime_mvc/application/controllers/ApiController.php:79
+msgid "You are not allowed to access this resource."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:72
+msgid "Preferences updated."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:115
+msgid "Support setting updated."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:123
+msgid "Support Feedback"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:251
+msgid "Stream Setting Updated."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:342
+msgid "path should be specified"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:437
+msgid "Problem with Liquidsoap..."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:493
+msgid "Request method not accepted"
+msgstr ""
+
+#: airtime_mvc/application/controllers/DashboardController.php:35
+#: airtime_mvc/application/controllers/DashboardController.php:84
+msgid "You don't have permission to disconnect source."
+msgstr ""
+
+#: airtime_mvc/application/controllers/DashboardController.php:37
+#: airtime_mvc/application/controllers/DashboardController.php:86
+msgid "There is no source connected to this input."
+msgstr ""
+
+#: airtime_mvc/application/controllers/DashboardController.php:81
+msgid "You don't have permission to switch source."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:43
+msgid "Please enter your username and password."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:93
+msgid "Wrong username or password provided. Please try again."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:167
+msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:173
+msgid "There was a problem with the username or email address you entered."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ApiController.php:244
+#: airtime_mvc/application/controllers/ApiController.php:317
+#: airtime_mvc/application/controllers/ApiController.php:392
+#: airtime_mvc/application/controllers/ApiController.php:435
+#: airtime_mvc/application/controllers/ApiController.php:474
+#: airtime_mvc/application/controllers/ApiController.php:507
+msgid "You are not allowed to access this resource. "
+msgstr ""
+
+#: airtime_mvc/application/controllers/ApiController.php:698
+#: airtime_mvc/application/controllers/ApiController.php:718
+#: airtime_mvc/application/controllers/ApiController.php:730
#, php-format
-msgid "The show %s is over and cannot be scheduled."
+msgid "File does not exist in %s"
msgstr ""
-#: airtime_mvc/application/models/Scheduler.php:159
-#, php-format
-msgid "The show %s has been previously updated!"
+#: airtime_mvc/application/controllers/ApiController.php:781
+msgid "Bad request. no 'mode' parameter passed."
msgstr ""
-#: airtime_mvc/application/models/Scheduler.php:178
-msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:195
-msgid "Cannot schedule a playlist that contains missing files."
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:216
-#: airtime_mvc/application/models/Scheduler.php:305
-msgid "A selected File does not exist!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
-#: airtime_mvc/application/configs/navigation.php:40
-msgid "Weekly Schedule"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
-#: airtime_mvc/application/forms/Player.php:77
-msgid "Preview:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
-#: airtime_mvc/application/configs/navigation.php:34
-msgid "Player"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
-#: airtime_mvc/application/controllers/LocaleController.php:362
-#: airtime_mvc/application/controllers/LocaleController.php:390
-msgid "Close"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Add this show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Update show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
-msgid "What"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
-msgid "When"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
-msgid "Live Stream Input"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
-msgid "Who"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
-msgid "Style"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
-#: airtime_mvc/application/controllers/LocaleController.php:273
-msgid "Start"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
-msgid "Password Reset"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
-msgid "Email Sent!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
-msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
-msgid "Back"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
-msgid "New password"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
-msgid "Please enter and confirm your new password in the fields below."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:3
-#: airtime_mvc/application/forms/Login.php:83
-msgid "Login"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:7
-#, php-format
-msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:97
-msgid "Playout History"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
-msgid "Log Sheet"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
-msgid "File Summary"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
-msgid "Show Summary"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
-msgid "Your trial expires in"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
-msgid "days"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-#, php-format
-msgid "Purchase an %s Pro plan!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-msgid "My Account"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
-msgid "Previous:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
-msgid "Next:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
-msgid "Source Streams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
-msgid "Master Source"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
-msgid "Show Source"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
-msgid "ON AIR"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
-msgid "Listen"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
-msgid "Logout"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
-msgid "Drop files here or click to browse your computer."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
-#: airtime_mvc/application/controllers/LocaleController.php:314
-msgid "in use"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
-#: airtime_mvc/application/controllers/LocaleController.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:401
-msgid "All"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
-msgid "Failed"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
-msgid "Pending"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
-msgid "Recent Uploads"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
-#: airtime_mvc/application/configs/navigation.php:120
-msgid "Account Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
-msgid "Upgrade today to get more listeners and storage space!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
-msgid "View Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
-msgid "About"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
-#, php-format
-msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
-#, php-format
-msgid "%1$s %2$s is distributed under the %3$s"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
-#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
-msgid "Live stream"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
-msgid "Share"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
-msgid "Select stream:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
-msgid "mute"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
-msgid "unmute"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
-#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
-#, php-format
-msgid "Welcome to %s!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
-#, php-format
-msgid "Here's how you can get started using %s to automate your broadcasts: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
-msgid "Upload audio tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
-msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
-msgid "Schedule a show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
-msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
-msgid "Add tracks to your show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
-msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
-msgid "Now you're good to go!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
-#, php-format
-msgid "For more detailed help, read the %suser manual%s."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
-msgid "Listeners"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
-msgid "Stream Data Collection Status"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
-#: airtime_mvc/application/views/scripts/error/error.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
-msgid "An error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
-msgid "Access Denied!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
-msgid "You do not have permission to access this page!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
-#: airtime_mvc/application/views/scripts/error/error.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
-#: airtime_mvc/application/configs/navigation.php:143
-msgid "Help"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
-msgid "Page not found!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
-msgid "We couldn't find the page you were looking for."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error.phtml:12
-msgid "Looks like the page you were looking for doesn't exist!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
-msgid "Oops!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
-msgid "Something went wrong!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
-msgid "Bad Request!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
-msgid "The requested action is not supported!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
-msgid "Viewing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
-msgid "Editing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:3
-msgid "File import in progress..."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:10
-#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
-msgid "Advanced Search Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
-#: airtime_mvc/application/forms/Player.php:15
-#: airtime_mvc/application/forms/EditAudioMD.php:24
-msgid "Title:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
-#: airtime_mvc/application/forms/EditAudioMD.php:34
-msgid "Creator:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
-#: airtime_mvc/application/forms/EditAudioMD.php:44
-msgid "Album:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
-msgid "Track:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
-msgid "Length:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
-msgid "Sample Rate:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
-msgid "Bit Rate:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
-#: airtime_mvc/application/forms/EditAudioMD.php:115
-msgid "Mood:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
-#: airtime_mvc/application/forms/EditAudioMD.php:62
-#: airtime_mvc/application/forms/AddShowWhat.php:45
-msgid "Genre:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
-#: airtime_mvc/application/forms/EditAudioMD.php:72
-msgid "Year:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
-#: airtime_mvc/application/forms/EditAudioMD.php:85
-msgid "Label:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
-#: airtime_mvc/application/forms/EditAudioMD.php:125
-msgid "BPM:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
-#: airtime_mvc/application/forms/EditAudioMD.php:95
-msgid "Composer:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
-#: airtime_mvc/application/forms/EditAudioMD.php:105
-msgid "Conductor:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
-#: airtime_mvc/application/forms/EditAudioMD.php:135
-msgid "Copyright:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
-msgid "Isrc Number:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
-#: airtime_mvc/application/forms/EditAudioMD.php:155
-msgid "Website:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
-#: airtime_mvc/application/forms/EditUser.php:119
-#: airtime_mvc/application/forms/EditAudioMD.php:165
-#: airtime_mvc/application/forms/Login.php:68
-msgid "Language:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
-msgid "File Path:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
-#: airtime_mvc/application/forms/AddShowWhat.php:26
-msgid "Name:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
-#: airtime_mvc/application/forms/AddShowWhat.php:54
-msgid "Description:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
-msgid "Web Stream"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
-msgid "Dynamic Smart Block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
-msgid "Static Smart Block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
-msgid "Audio Track"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
-msgid "Playlist Contents: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
-msgid "Static Smart Block Contents: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
-msgid "Dynamic Smart Block Criteria: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
-msgid "Limit to "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
-#: airtime_mvc/application/forms/AddShowWhat.php:36
-msgid "URL:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/login.phtml:41
-msgid "Forgot your password?"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
-#, php-format
-msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
-#, php-format
-msgid "Click the box below to promote your station on %s."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
-msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
-msgid "(Required)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
-msgid "(for verification purposes only, will not be published)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
-msgid "Choose folder"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
-msgid "Set"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
-msgid "Current Import Folder:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
-msgid "Add"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
-#, php-format
-msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
-msgid "Remove watched directory"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
-msgid "You are not watching any media folders."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
-msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
-msgid "Live Broadcasting"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
-msgid "Use these settings in your broadcasting software to stream live at any time."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
-msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
-msgid "Choose Show Instance"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
-#: airtime_mvc/application/forms/EditHistoryItem.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:400
-msgid "No Show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
-msgid "Find"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
-msgid "Choose Days:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
-#: airtime_mvc/application/forms/AddShowStyle.php:64
-#: airtime_mvc/application/forms/GeneralPreferences.php:53
-msgid "Remove"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
-msgid "Stream "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
-msgid "Additional Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
-msgid "The following info will be displayed to listeners in their media player:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
-msgid "(Your radio station website)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
-msgid "Stream URL: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
-msgid "Find Shows"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
-msgid "TuneIn Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
-msgid "SoundCloud Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
-msgid "Dangerous Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
-msgid "Search Criteria:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
-msgid "New Criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
-msgid "or"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
-msgid "and"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
-msgid "New Modifier"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
-msgid " to "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
-msgid "files meet the criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
-msgid "file meets the criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
-msgid "Filter History"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
-#: airtime_mvc/application/configs/navigation.php:61
-msgid "My Profile"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
-#, php-format
-msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
-#: airtime_mvc/application/forms/Preferences.php:40
-#: airtime_mvc/application/forms/PasswordChange.php:43
-#: airtime_mvc/application/forms/AddUser.php:110
-#: airtime_mvc/application/forms/BillingClient.php:193
-#: airtime_mvc/application/forms/SupportSettings.php:131
-#: airtime_mvc/application/forms/EditHistory.php:131
-#: airtime_mvc/application/controllers/LocaleController.php:294
-msgid "Save"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
-msgid "Repeat Days:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
-msgid "Register Airtime"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
-#: airtime_mvc/application/forms/GeneralPreferences.php:43
-msgid "Note: Anything larger than 600x600 will be resized."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
-msgid "Show me what I am sending "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
-msgid "Terms and Conditions"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
-msgid "Creating File Summary Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
-msgid "Creating Log Sheet Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
-msgid "Name"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
-msgid "Add more elements"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
-msgid "Add New Field"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
-msgid "Set Default Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
-msgid "Playout History Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
-msgid "Log Sheet Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
-msgid "New Log Sheet Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
-msgid "No Log Sheet Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
-#: airtime_mvc/application/controllers/LocaleController.php:397
-msgid "Set Default"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
-msgid "File Summary Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
-msgid "New File Summary Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
-msgid "No File Summary Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
-msgid "Disk Space"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
-#: airtime_mvc/application/controllers/LocaleController.php:315
-msgid "Disk"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
-#: airtime_mvc/application/forms/AddShowWhen.php:89
-msgid "Duration:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
-msgid "Toggle Details"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
-msgid "Playlist crossfade"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-msgid "Remove all content from this smart block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Clear"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "Fade in: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "(ss.t)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-msgid "Fade out: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
-#: airtime_mvc/application/forms/EditAudioMD.php:186
-#: airtime_mvc/application/forms/EditHistory.php:141
-#: airtime_mvc/application/controllers/LocaleController.php:295
-#: airtime_mvc/application/controllers/LocaleController.php:318
-msgid "Cancel"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
-msgid "No smart block currently open"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
-msgid "Show Waveform"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-msgid "Cue In: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "(hh:mm:ss.t)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "Cue Out: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
-msgid "Original Length:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
-msgid "Expand Static Block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
-msgid "Expand Dynamic Block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
-msgid "Choose some search criteria above and click Generate to create this playlist."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
-msgid "A track list will be generated when you schedule this smart block into a show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
-msgid "Drag tracks here from your library to add them to the playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-msgid "Shuffle playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
-msgid "Shuffle"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Empty playlist content"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-msgid "Save playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
-msgid "No open playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
-msgid "previous"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
-msgid "play"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
-msgid "pause"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
-msgid "next"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
-msgid "stop"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
-msgid "max volume"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
-msgid "Update Required"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
-#, php-format
-msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
-msgid "Stream Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
-msgid "Global"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
-msgid "dB"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
-msgid "Output Streams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
-#: airtime_mvc/application/controllers/LocaleController.php:166
-msgid "Manage Media Folders"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:56
-msgid "General"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
-msgid "Description"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
-msgid "Stream URL:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
-msgid "Default Length:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
-msgid "No webstream"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
-msgid "Manage Users"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
-msgid "New User"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
-msgid "id"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
-#: airtime_mvc/application/forms/PasswordRestore.php:25
-msgid "Username"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
-msgid "First Name"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
-msgid "Last Name"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
-msgid "User Type"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
-#, php-format
-msgid "Super Admin details can be changed in your Billing Settings."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
-#: airtime_mvc/application/controllers/LocaleController.php:74
-#: airtime_mvc/application/layouts/scripts/layout.phtml:78
-msgid "Tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
-#: airtime_mvc/application/controllers/LocaleController.php:104
-#: airtime_mvc/application/layouts/scripts/layout.phtml:80
-msgid "Playlists"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
-#: airtime_mvc/application/controllers/LocaleController.php:105
-#: airtime_mvc/application/layouts/scripts/layout.phtml:82
-msgid "Smart Blocks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
-#: airtime_mvc/application/layouts/scripts/layout.phtml:84
-msgid "Webstreams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
-#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
-#: airtime_mvc/application/layouts/scripts/layout.phtml:76
-msgid "Dashboard"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:12
-msgid "Radio Page"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:19
-msgid "Calendar"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:26
-msgid "Widgets"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:48
-msgid "Settings"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:67
-msgid "Users"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:74
-msgid "Streams"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:82
-msgid "Analytics"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:90
-msgid "Listener Stats"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:104
-msgid "History Templates"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:113
-msgid "Billing"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:127
-msgid "Account Details"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:134
-msgid "View Invoices"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:150
-msgid "Getting Started"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:157
-msgid "FAQ"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:162
-msgid "User Manual"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:167
-msgid "File a Support Ticket"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:12
-msgid "Background Colour:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:31
-msgid "Text Colour:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:49
-msgid "Current Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:72
-msgid "Show Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:87
-msgid "Logo Preview:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:19
-msgid "Push metadata to your station on TuneIn?"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:24
-msgid "Station ID:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:30
-msgid "Partner Key:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:36
-msgid "Partner Id:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:77
-#: airtime_mvc/application/forms/TuneInPreferences.php:86
-msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:14
-msgid "Now Playing"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:25
-msgid "Select Stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:28
-msgid "Auto detect the most appropriate stream to use."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:29
-msgid "Select a stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:41
-msgid " - Mobile friendly"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:45
-msgid " - The player does not support Opus streams."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:71
-msgid "Embeddable code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:72
-msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:37
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
-#: airtime_mvc/application/forms/Login.php:41
-#: airtime_mvc/application/forms/AddUser.php:29
-msgid "Username:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:48
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
-#: airtime_mvc/application/forms/Login.php:54
-#: airtime_mvc/application/forms/AddUser.php:38
-#: airtime_mvc/application/forms/BillingClient.php:172
-msgid "Password:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:57
-#: airtime_mvc/application/forms/AddUser.php:46
-#: airtime_mvc/application/forms/BillingClient.php:181
-msgid "Verify Password:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:67
-#: airtime_mvc/application/forms/AddUser.php:55
-msgid "Firstname:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:75
-#: airtime_mvc/application/forms/AddUser.php:61
-msgid "Lastname:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:83
-#: airtime_mvc/application/forms/RegisterAirtime.php:51
-#: airtime_mvc/application/forms/AddUser.php:67
-#: airtime_mvc/application/forms/SupportSettings.php:43
-msgid "Email:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:94
-#: airtime_mvc/application/forms/AddUser.php:76
-msgid "Mobile Phone:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:102
-#: airtime_mvc/application/forms/AddUser.php:82
-msgid "Skype:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:110
-#: airtime_mvc/application/forms/AddUser.php:88
-msgid "Jabber:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:129
-msgid "Interface Timezone:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:155
-#: airtime_mvc/application/forms/AddUser.php:120
-msgid "Login name is not unique."
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRR.php:10
-msgid "Record from Line In?"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRR.php:16
-msgid "Rebroadcast?"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:16
-msgid "'%value%' does not fit the time format 'HH:mm'"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:22
-msgid "Start Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:37
-msgid "In the Future:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:64
-msgid "End Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:98
-msgid "Timezone:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:107
-msgid "Repeats?"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:139
-msgid "Cannot create show in the past"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:147
-msgid "Cannot modify start date/time of the show that is already started"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:164
-msgid "Cannot have duration < 0m"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:168
-msgid "Cannot have duration 00h 00m"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:175
-msgid "Cannot have duration greater than 24h"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWho.php:10
-msgid "Search Users:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWho.php:24
-msgid "DJs:"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordChange.php:17
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
-msgid "Password"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordChange.php:28
-msgid "Confirm new password"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordChange.php:36
-msgid "Password confirmation does not match your password."
-msgstr ""
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
-msgid "Station Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
-#: airtime_mvc/application/forms/GeneralPreferences.php:127
-msgid "Station Timezone"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
-msgid "Auto Switch Off:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
-msgid "Auto Switch On:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
-msgid "Switch Transition Fade (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
-#: airtime_mvc/application/forms/GeneralPreferences.php:68
-#: airtime_mvc/application/forms/GeneralPreferences.php:82
-#: airtime_mvc/application/forms/GeneralPreferences.php:96
-msgid "Please enter a time in seconds (eg. 0.5)"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
-#: airtime_mvc/application/forms/AddShowLiveStream.php:48
-msgid "Host:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
-#: airtime_mvc/application/forms/AddShowLiveStream.php:54
-msgid "Port:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
-#: airtime_mvc/application/forms/AddShowLiveStream.php:60
-msgid "Mount:"
-msgstr ""
-
-#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
-msgid "Value is required and can't be empty"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:25
-#: airtime_mvc/application/forms/RegisterAirtime.php:30
-#: airtime_mvc/application/forms/SupportSettings.php:18
-msgid "Station Name"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:33
-msgid "Station Description"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:42
-#: airtime_mvc/application/forms/RegisterAirtime.php:106
-msgid "Station Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:62
-msgid "Default Crossfade Duration (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:76
-msgid "Default Fade In (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:90
-msgid "Default Fade Out (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:102
-msgid "Public Airtime API"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:103
-msgid "Required for embeddable schedule widget."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:105
-msgid "Disabled"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:106
-msgid "Enabled"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:109
-msgid ""
-"Enabling this feature will allow Airtime to provide schedule data\n"
-" to external widgets that can be embedded in your website."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:120
-msgid "Default Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:134
-msgid "Week Starts On"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:150
-msgid "Display login button on your Radio Page?"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:158
-#: airtime_mvc/application/controllers/LocaleController.php:249
-msgid "Sunday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:159
-#: airtime_mvc/application/controllers/LocaleController.php:250
-msgid "Monday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:160
-#: airtime_mvc/application/controllers/LocaleController.php:251
-msgid "Tuesday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:161
-#: airtime_mvc/application/controllers/LocaleController.php:252
-msgid "Wednesday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:162
-#: airtime_mvc/application/controllers/LocaleController.php:253
-msgid "Thursday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:163
-#: airtime_mvc/application/controllers/LocaleController.php:254
-msgid "Friday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:164
-#: airtime_mvc/application/controllers/LocaleController.php:255
-msgid "Saturday"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
-msgid "Default License:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
-msgid "All rights are reserved"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
-msgid "The work is in the public domain"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
-msgid "Creative Commons Attribution"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
-msgid "Creative Commons Attribution Noncommercial"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
-msgid "Creative Commons Attribution No Derivative Works"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
-msgid "Creative Commons Attribution Share Alike"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
-msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
-msgid "Creative Commons Attribution Noncommercial Share Alike"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
-msgid "Default Sharing Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
-msgid "Public"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
-msgid "Private"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:18
-#: airtime_mvc/application/forms/DateRange.php:16
-msgid "Date Start:"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:37
-#: airtime_mvc/application/forms/ShowBuilder.php:65
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
-#: airtime_mvc/application/forms/DateRange.php:35
-#: airtime_mvc/application/forms/DateRange.php:63
-msgid "Invalid character entered"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:46
-#: airtime_mvc/application/forms/AddShowRepeats.php:56
-#: airtime_mvc/application/forms/DateRange.php:44
-msgid "Date End:"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:72
-#: airtime_mvc/application/forms/ShowBuilder.php:88
-msgid "Filter by Show"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:80
-msgid "All My Shows:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditAudioMD.php:145
-msgid "ISRC Number:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditAudioMD.php:176
-msgid "OK"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
-msgid "Day must be specified"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
-msgid "Time must be specified"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
-msgid "Must wait at least 1 hour to rebroadcast"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhat.php:30
-msgid "Untitled Show"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhat.php:69
-msgid "Instance Description:"
-msgstr ""
-
-#: airtime_mvc/application/forms/DangerousPreferences.php:12
-msgid "Delete All Tracks in Library"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:39
-#: airtime_mvc/application/forms/SupportSettings.php:31
-msgid "Phone:"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:62
-#: airtime_mvc/application/forms/SupportSettings.php:54
-msgid "Station Web Site:"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:73
-#: airtime_mvc/application/forms/BillingClient.php:102
-#: airtime_mvc/application/forms/SupportSettings.php:65
-msgid "Country:"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:84
-#: airtime_mvc/application/forms/BillingClient.php:70
-#: airtime_mvc/application/forms/SupportSettings.php:76
-msgid "City:"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:96
-#: airtime_mvc/application/forms/SupportSettings.php:88
-msgid "Station Description:"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:116
-#: airtime_mvc/application/forms/SupportSettings.php:98
-#: airtime_mvc/application/controllers/LocaleController.php:341
-msgid "Send support feedback"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:126
-#: airtime_mvc/application/forms/SupportSettings.php:108
-#, php-format
-msgid "Promote my station on %s"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:151
-#: airtime_mvc/application/forms/SupportSettings.php:120
-#, php-format
-msgid "By checking this box, I agree to %s's %sprivacy policy%s."
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:169
-#: airtime_mvc/application/forms/SupportSettings.php:143
-msgid "You have to agree to privacy policy."
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:10
-msgid "Link:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:16
-msgid "Repeat Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:19
-msgid "weekly"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:20
-msgid "every 2 weeks"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:21
-msgid "every 3 weeks"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:22
-msgid "every 4 weeks"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:23
-msgid "monthly"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:32
-msgid "Select Days:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:35
-#: airtime_mvc/application/controllers/LocaleController.php:256
-msgid "Sun"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:36
-#: airtime_mvc/application/controllers/LocaleController.php:257
-msgid "Mon"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:37
-#: airtime_mvc/application/controllers/LocaleController.php:258
-msgid "Tue"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:38
-#: airtime_mvc/application/controllers/LocaleController.php:259
-msgid "Wed"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:39
-#: airtime_mvc/application/controllers/LocaleController.php:260
-msgid "Thu"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:40
-#: airtime_mvc/application/controllers/LocaleController.php:261
-msgid "Fri"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:41
-#: airtime_mvc/application/controllers/LocaleController.php:262
-msgid "Sat"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:47
-msgid "Repeat By:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the month"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the week"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:69
-msgid "No End?"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:106
-msgid "End date must be after start date"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:113
-msgid "Please select a repeat day"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:10
-#, php-format
-msgid "Use %s Authentication:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:16
-msgid "Use Custom Authentication:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:25
-msgid "Custom Username"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:37
-msgid "Custom Password"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:77
-msgid "Username field cannot be empty."
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:82
-msgid "Password field cannot be empty."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
-msgid "Enabled:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
-msgid "Mobile:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
-msgid "Stream Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
-msgid "Service Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
-msgid "Channels:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "1 - Mono"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "2 - Stereo"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
-msgid "Server"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
-msgid "Port"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
-msgid "Only numbers are allowed."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
-msgid "URL"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
-msgid "Mount Point"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
-msgid "Admin User"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
-msgid "Admin Password"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
-#: airtime_mvc/application/controllers/LocaleController.php:173
-msgid "Getting information from the server..."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
-msgid "Server cannot be empty."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
-msgid "Port cannot be empty."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
-msgid "Mount cannot be empty with Icecast server."
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
-msgid "'%value%' is no valid email address in the basic format local-part@hostname"
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
-msgid "'%value%' does not fit the date format '%format%'"
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
-msgid "'%value%' is less than %min% characters long"
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
-msgid "'%value%' is more than %max% characters long"
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
-msgid "'%value%' is not between '%min%' and '%max%', inclusively"
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
-msgid "Passwords do not match"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
-msgid "hours"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
-msgid "minutes"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
-msgid "Randomly"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
-msgid "Newest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
-msgid "Oldest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
-msgid "Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
-msgid "Static"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
-msgid "Dynamic"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
-msgid "Allow Repeated Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
-msgid "Sort Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
-msgid "Limit to:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
-msgid "Generate playlist content and save criteria"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
-msgid "Generate"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
-msgid "Shuffle playlist content"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
-msgid "Limit cannot be empty or smaller than 0"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
-msgid "Limit cannot be more than 24 hrs"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
-msgid "The value should be an integer"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
-msgid "500 is the max item limit value you can set"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
-msgid "You must select Criteria and Modifier"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
-msgid "'Length' should be in '00:00:00' format"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
-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:594
-msgid "The value has to be numeric"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
-msgid "The value should be less then 2147483648"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
-#, php-format
-msgid "The value should be less than %s characters"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
-msgid "Value cannot be empty"
-msgstr ""
-
-#: airtime_mvc/application/forms/Login.php:102
-msgid "Type the characters you see in the picture below."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:26
-msgid "Icecast Vorbis Metadata"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:36
-msgid "Stream Label:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:37
-msgid "Artist - Title"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:38
-msgid "Show - Artist - Title"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:39
-msgid "Station name - Show name"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:45
-msgid "Off Air Metadata"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:51
-msgid "Enable Replay Gain"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:57
-msgid "Replay Gain Modifier"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:65
-msgid "Streaming Server:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Airtime Pro Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Custom / 3rd Party Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:95
-msgid "User Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:99
-#: airtime_mvc/application/controllers/LocaleController.php:324
-msgid "Guest"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:100
-#: airtime_mvc/application/controllers/LocaleController.php:322
-msgid "DJ"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:101
-#: airtime_mvc/application/controllers/LocaleController.php:323
-msgid "Program Manager"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:321
-msgid "Admin"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:17
-msgid "First Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:26
-msgid "Last Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:35
-msgid "Company Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:44
-msgid "Email Address:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:54
-msgid "Address 1:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:63
-msgid "Address 2:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:80
-msgid "State/Region:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:89
-msgid "Zip Code / Postal Code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:112
-msgid "Phone Number:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:121
-msgid "Please choose a security question:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:126
-msgid "What is the name of your favorite childhood friend?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:127
-msgid "What school did you attend for sixth grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:128
-msgid "In what city did you meet your spouse/significant other?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:129
-msgid "What street did you live on in third grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:130
-msgid "What is the first name of the boy or girl that you first kissed?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:131
-msgid "In what city or town was your first job?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:135
-msgid "Please enter an answer:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:152
-msgid "VAT/Tax ID (EU only)"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:162
-msgid "Subscribe to Sourcefabric newsletter"
-msgstr ""
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
-msgid "Import Folder:"
-msgstr ""
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
-msgid "Watched Folders:"
-msgstr ""
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
-msgid "Not a valid Directory"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordRestore.php:14
-msgid "Email"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordRestore.php:36
-msgid "Reset password"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
-msgid "Plan type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
-msgid "Billing cycle:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
-msgid "Payment method:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
-msgid "PayPal"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
-msgid "Credit Card via 2Checkout"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:213
-#, php-format
-msgid "The year %s must be within the range of 1753 - 9999"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:216
-#, php-format
-msgid "%s-%s-%s is not a valid date"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:240
-#, php-format
-msgid "%s:%s:%s is not a valid time"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:55
-msgid "Upload some tracks below to add them to your library!"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:57
-#, php-format
-msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:63
-msgid "Click the 'New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:65
-#, php-format
-msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:73
-msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:75
-#, php-format
-msgid ""
-"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
-" %sCreate an unlinked show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:80
-msgid "To start broadcasting, click on the current show and select 'Schedule Show'"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:82
-#, php-format
-msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:89
-msgid "Click on the show starting next and select 'Schedule Show'"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:91
-#, php-format
-msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+#: airtime_mvc/application/controllers/ApiController.php:791
+msgid "Bad request. 'mode' parameter is invalid"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:30
@@ -2903,11 +556,6 @@ msgstr ""
msgid "You can only add tracks to smart blocks."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:50
-#: airtime_mvc/application/controllers/PlaylistController.php:180
-msgid "You can only add tracks, smart blocks, and webstreams to playlists."
-msgstr ""
-
#: airtime_mvc/application/controllers/LocaleController.php:53
msgid "Please select a cursor position on timeline."
msgstr ""
@@ -2948,11 +596,6 @@ msgstr ""
msgid "Click 'New' to create one."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:66
-#: airtime_mvc/application/controllers/LibraryController.php:123
-msgid "Edit Metadata"
-msgstr ""
-
#: airtime_mvc/application/controllers/LocaleController.php:67
msgid "Add to selected show"
msgstr ""
@@ -2981,6 +624,12 @@ msgstr ""
msgid "Scheduled"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:74
+#: airtime_mvc/application/layouts/scripts/layout.phtml:78
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
+msgid "Tracks"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:75
#: airtime_mvc/application/layouts/scripts/layout.phtml:60
msgid "Playlist"
@@ -2990,18 +639,96 @@ msgstr ""
msgid "Bit Rate"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:80
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
+#: airtime_mvc/application/models/Block.php:1354
+msgid "BPM"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:84
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
+#: airtime_mvc/application/models/Block.php:1361
+msgid "Encoded By"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:89
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
+#: airtime_mvc/application/models/Block.php:1367
+msgid "Last Modified"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:90
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
+#: airtime_mvc/application/models/Block.php:1368
+msgid "Last Played"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
+#: airtime_mvc/application/models/Block.php:1370
+msgid "Mime"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:94
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
+#: airtime_mvc/application/models/Block.php:1372
+msgid "Owner"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:95
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
+#: airtime_mvc/application/models/Block.php:1373
+msgid "Replay Gain"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:96
msgid "Sample Rate"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:97
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
+#: airtime_mvc/application/models/Block.php:1376
+msgid "Track Number"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:98
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
+#: airtime_mvc/application/models/Block.php:1377
+msgid "Uploaded"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:99
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
+#: airtime_mvc/application/models/Block.php:1378
+msgid "Website"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:101
msgid "Loading..."
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:102
+#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
+msgid "All"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:103
msgid "Files"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:104
+#: airtime_mvc/application/layouts/scripts/layout.phtml:80
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
+msgid "Playlists"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:105
+#: airtime_mvc/application/layouts/scripts/layout.phtml:82
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
+msgid "Smart Blocks"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:106
msgid "Web Streams"
msgstr ""
@@ -3146,6 +873,74 @@ msgstr ""
msgid "Processing..."
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:151
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
+#: airtime_mvc/application/models/Block.php:1383
+msgid "Select modifier"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:152
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
+#: airtime_mvc/application/models/Block.php:1384
+msgid "contains"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:153
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
+#: airtime_mvc/application/models/Block.php:1385
+msgid "does not contain"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:154
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
+#: airtime_mvc/application/models/Block.php:1386
+#: airtime_mvc/application/models/Block.php:1390
+msgid "is"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:155
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
+#: airtime_mvc/application/models/Block.php:1387
+#: airtime_mvc/application/models/Block.php:1391
+msgid "is not"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:156
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
+#: airtime_mvc/application/models/Block.php:1388
+msgid "starts with"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:157
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
+#: airtime_mvc/application/models/Block.php:1389
+msgid "ends with"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:158
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
+#: airtime_mvc/application/models/Block.php:1392
+msgid "is greater than"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:159
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
+#: airtime_mvc/application/models/Block.php:1393
+msgid "is less than"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:160
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
+#: airtime_mvc/application/models/Block.php:1394
+msgid "is in the range"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:162
msgid "Choose Storage Folder"
msgstr ""
@@ -3160,6 +955,11 @@ msgid ""
"This will remove the files from your Airtime library!"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:166
+#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
+msgid "Manage Media Folders"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:167
msgid "Are you sure you want to remove the watched folder?"
msgstr ""
@@ -3181,6 +981,11 @@ msgstr ""
msgid "The stream is disabled"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:173
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
+msgid "Getting information from the server..."
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:174
msgid "Can not connect to the streaming server"
msgstr ""
@@ -3408,6 +1213,76 @@ msgstr ""
msgid "Month"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:249
+#: airtime_mvc/application/forms/GeneralPreferences.php:158
+msgid "Sunday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:250
+#: airtime_mvc/application/forms/GeneralPreferences.php:159
+msgid "Monday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:251
+#: airtime_mvc/application/forms/GeneralPreferences.php:160
+msgid "Tuesday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:252
+#: airtime_mvc/application/forms/GeneralPreferences.php:161
+msgid "Wednesday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:253
+#: airtime_mvc/application/forms/GeneralPreferences.php:162
+msgid "Thursday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:254
+#: airtime_mvc/application/forms/GeneralPreferences.php:163
+msgid "Friday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:255
+#: airtime_mvc/application/forms/GeneralPreferences.php:164
+msgid "Saturday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:256
+#: airtime_mvc/application/forms/AddShowRepeats.php:35
+msgid "Sun"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:257
+#: airtime_mvc/application/forms/AddShowRepeats.php:36
+msgid "Mon"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:258
+#: airtime_mvc/application/forms/AddShowRepeats.php:37
+msgid "Tue"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:259
+#: airtime_mvc/application/forms/AddShowRepeats.php:38
+msgid "Wed"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:260
+#: airtime_mvc/application/forms/AddShowRepeats.php:39
+msgid "Thu"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:261
+#: airtime_mvc/application/forms/AddShowRepeats.php:40
+msgid "Fri"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:262
+#: airtime_mvc/application/forms/AddShowRepeats.php:41
+msgid "Sat"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:263
msgid "Shows longer than their scheduled time will be cut off by a following show."
msgstr ""
@@ -3417,7 +1292,7 @@ msgid "Cancel Current Show?"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:265
-#: airtime_mvc/application/controllers/LocaleController.php:309
+#: airtime_mvc/application/controllers/LocaleController.php:312
msgid "Stop recording current show?"
msgstr ""
@@ -3437,6 +1312,11 @@ msgstr ""
msgid "Delete selected item(s)?"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:273
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
+msgid "Start"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:274
msgid "End"
msgstr ""
@@ -3445,580 +1325,467 @@ msgstr ""
msgid "Duration"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:283
+#: airtime_mvc/application/controllers/LocaleController.php:276
+msgid "Filtering out "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:277
+msgid " of "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:278
+msgid " records"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/layouts/scripts/layout.phtml:140
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
+#: airtime_mvc/application/models/Block.php:1358
+msgid "Cue In"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/layouts/scripts/layout.phtml:147
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
+#: airtime_mvc/application/models/Block.php:1359
+msgid "Cue Out"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:286
#: airtime_mvc/application/layouts/scripts/layout.phtml:167
msgid "Fade In"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/controllers/LocaleController.php:287
#: airtime_mvc/application/layouts/scripts/layout.phtml:168
msgid "Fade Out"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/controllers/LocaleController.php:288
msgid "Show Empty"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:286
+#: airtime_mvc/application/controllers/LocaleController.php:289
msgid "Recording From Line In"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:287
+#: airtime_mvc/application/controllers/LocaleController.php:290
msgid "Track preview"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:291
+#: airtime_mvc/application/controllers/LocaleController.php:294
msgid "Cannot schedule outside a show."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:292
+#: airtime_mvc/application/controllers/LocaleController.php:295
msgid "Moving 1 Item"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:293
+#: airtime_mvc/application/controllers/LocaleController.php:296
#, php-format
msgid "Moving %s Items"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:296
-msgid "Fade Editor"
-msgstr ""
-
#: airtime_mvc/application/controllers/LocaleController.php:297
-msgid "Cue Editor"
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
+#: airtime_mvc/application/forms/Preferences.php:40
+#: airtime_mvc/application/forms/EditHistory.php:131
+#: airtime_mvc/application/forms/AddUser.php:110
+#: airtime_mvc/application/forms/PasswordChange.php:43
+#: airtime_mvc/application/forms/SupportSettings.php:131
+msgid "Save"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:298
-msgid "Waveform features are available in a browser supporting the Web Audio API"
+#: airtime_mvc/application/controllers/LocaleController.php:321
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
+#: airtime_mvc/application/forms/EditHistory.php:141
+#: airtime_mvc/application/forms/EditAudioMD.php:186
+msgid "Cancel"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:299
+msgid "Fade Editor"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:300
+msgid "Cue Editor"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:301
-msgid "Select all"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LocaleController.php:302
-msgid "Select none"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LocaleController.php:303
-msgid "Trim overbooked shows"
+msgid "Waveform features are available in a browser supporting the Web Audio API"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:304
-msgid "Remove selected scheduled items"
+msgid "Select all"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:305
-msgid "Jump to the current playing track"
+msgid "Select none"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:306
+msgid "Trim overbooked shows"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:307
+msgid "Remove selected scheduled items"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:308
+msgid "Jump to the current playing track"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:309
msgid "Cancel current show"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:311
+#: airtime_mvc/application/controllers/LocaleController.php:314
msgid "Open library to add or remove content"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:312
+#: airtime_mvc/application/controllers/LocaleController.php:315
msgid "Add / Remove Content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:317
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
+msgid "in use"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:318
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
+msgid "Disk"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:320
msgid "Look in"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:319
+#: airtime_mvc/application/controllers/LocaleController.php:322
msgid "Open"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:324
+#: airtime_mvc/application/forms/AddUser.php:102
+msgid "Admin"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:325
-msgid "Guests can do the following:"
+#: airtime_mvc/application/forms/AddUser.php:100
+msgid "DJ"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:326
-msgid "View schedule"
+#: airtime_mvc/application/forms/AddUser.php:101
+msgid "Program Manager"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:327
-msgid "View show content"
+#: airtime_mvc/application/forms/AddUser.php:99
+msgid "Guest"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:328
-msgid "DJs can do the following:"
+msgid "Guests can do the following:"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:329
-msgid "Manage assigned show content"
+msgid "View schedule"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:330
-msgid "Import media files"
+msgid "View show content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:331
-msgid "Create playlists, smart blocks, and webstreams"
+msgid "DJs can do the following:"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:332
-msgid "Manage their own library content"
+msgid "Manage assigned show content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:333
-msgid "Progam Managers can do the following:"
+msgid "Import media files"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:334
-msgid "View and manage show content"
+msgid "Create playlists, smart blocks, and webstreams"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:335
-msgid "Schedule shows"
+msgid "Manage their own library content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:336
-msgid "Manage all library content"
+msgid "Progam Managers can do the following:"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:337
-msgid "Admins can do the following:"
+msgid "View and manage show content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:338
-msgid "Manage preferences"
+msgid "Schedule shows"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:339
-msgid "Manage users"
+msgid "Manage all library content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:340
-msgid "Manage watched folders"
+msgid "Admins can do the following:"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:341
+msgid "Manage preferences"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:342
-msgid "View system status"
+msgid "Manage users"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:343
-msgid "Access playout history"
+msgid "Manage watched folders"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:344
-msgid "View listener stats"
+#: airtime_mvc/application/forms/RegisterAirtime.php:116
+#: airtime_mvc/application/forms/SupportSettings.php:98
+msgid "Send support feedback"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:345
+msgid "View system status"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:346
-msgid "Show / hide columns"
+msgid "Access playout history"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:348
-msgid "From {from} to {to}"
+#: airtime_mvc/application/controllers/LocaleController.php:347
+msgid "View listener stats"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:349
-msgid "kbps"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LocaleController.php:350
-msgid "yyyy-mm-dd"
+msgid "Show / hide columns"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:351
-msgid "hh:mm:ss.t"
+msgid "From {from} to {to}"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:352
-msgid "kHz"
+msgid "kbps"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:353
+msgid "yyyy-mm-dd"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:354
+msgid "hh:mm:ss.t"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:355
-msgid "Su"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LocaleController.php:356
-msgid "Mo"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LocaleController.php:357
-msgid "Tu"
+msgid "kHz"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:358
-msgid "We"
+msgid "Su"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:359
-msgid "Th"
+msgid "Mo"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:360
-msgid "Fr"
+msgid "Tu"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:361
-msgid "Sa"
+msgid "We"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:362
+msgid "Th"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:363
+msgid "Fr"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:364
-msgid "Hour"
+msgid "Sa"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
+msgid "Close"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:367
+msgid "Hour"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:368
msgid "Minute"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:366
+#: airtime_mvc/application/controllers/LocaleController.php:369
msgid "Done"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:369
+#: airtime_mvc/application/controllers/LocaleController.php:372
msgid "Select files"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:370
-#: airtime_mvc/application/controllers/LocaleController.php:371
+#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:374
msgid "Add files to the upload queue and click the start button."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:372
-#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:376
msgid "Status"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:374
+#: airtime_mvc/application/controllers/LocaleController.php:377
msgid "Add Files"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:378
msgid "Stop Upload"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:376
+#: airtime_mvc/application/controllers/LocaleController.php:379
msgid "Start upload"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:377
+#: airtime_mvc/application/controllers/LocaleController.php:380
msgid "Add files"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:378
+#: airtime_mvc/application/controllers/LocaleController.php:381
#, php-format
msgid "Uploaded %d/%d files"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:379
+#: airtime_mvc/application/controllers/LocaleController.php:382
msgid "N/A"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:380
+#: airtime_mvc/application/controllers/LocaleController.php:383
msgid "Drag files here."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:381
+#: airtime_mvc/application/controllers/LocaleController.php:384
msgid "File extension error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:382
+#: airtime_mvc/application/controllers/LocaleController.php:385
msgid "File size error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:383
+#: airtime_mvc/application/controllers/LocaleController.php:386
msgid "File count error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:384
+#: airtime_mvc/application/controllers/LocaleController.php:387
msgid "Init error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:385
+#: airtime_mvc/application/controllers/LocaleController.php:388
msgid "HTTP Error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:386
+#: airtime_mvc/application/controllers/LocaleController.php:389
msgid "Security error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:387
+#: airtime_mvc/application/controllers/LocaleController.php:390
msgid "Generic error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:388
+#: airtime_mvc/application/controllers/LocaleController.php:391
msgid "IO error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:389
+#: airtime_mvc/application/controllers/LocaleController.php:392
#, php-format
msgid "File: %s"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:391
+#: airtime_mvc/application/controllers/LocaleController.php:394
#, php-format
msgid "%d files queued"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:392
+#: airtime_mvc/application/controllers/LocaleController.php:395
msgid "File: %f, size: %s, max file size: %m"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/controllers/LocaleController.php:396
msgid "Upload URL might be wrong or doesn't exist"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:394
+#: airtime_mvc/application/controllers/LocaleController.php:397
msgid "Error: File too large: "
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:395
+#: airtime_mvc/application/controllers/LocaleController.php:398
msgid "Error: Invalid file extension: "
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:398
+#: airtime_mvc/application/controllers/LocaleController.php:400
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
+msgid "Set Default"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:401
msgid "Create Entry"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:399
+#: airtime_mvc/application/controllers/LocaleController.php:402
msgid "Edit History Record"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:402
+#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
+#: airtime_mvc/application/forms/EditHistoryItem.php:57
+msgid "No Show"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:405
#, php-format
msgid "Copied %s row%s to the clipboard"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/controllers/LocaleController.php:406
#, php-format
msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/controllers/LocaleController.php:407
msgid "New Show"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:405
+#: airtime_mvc/application/controllers/LocaleController.php:408
msgid "New Log Entry"
msgstr ""
-#: airtime_mvc/application/controllers/ScheduleController.php:389
-#, php-format
-msgid "Rebroadcast of show %s from %s at %s"
-msgstr ""
-
-#: airtime_mvc/application/controllers/ScheduleController.php:712
-#: airtime_mvc/application/controllers/LibraryController.php:131
-msgid "Download"
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:78
-msgid "Page not found."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:87
-msgid "The requested action is not supported."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:98
-msgid "You do not have permission to access this resource."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:109
-msgid "An internal application error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ListenerstatController.php:51
-msgid "Please make sure admin user/password is correct on System->Streams page."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:53
-#, php-format
-msgid "You are viewing an older version of %s"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:140
-msgid "You cannot add tracks to dynamic blocks."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:147
-#: airtime_mvc/application/controllers/LibraryController.php:31
-#, php-format
-msgid "%s not found"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:161
-#, php-format
-msgid "You don't have permission to delete selected %s(s)."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:168
-#: airtime_mvc/application/controllers/LibraryController.php:40
-msgid "Something went wrong."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:174
-msgid "You can only add tracks to smart block."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:192
-msgid "Untitled Playlist"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:194
-msgid "Untitled Smart Block"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:522
-msgid "Unknown Playlist"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:43
-msgid "Please enter your username and password."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:93
-msgid "Wrong username or password provided. Please try again."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:167
-msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:173
-msgid "There was a problem with the username or email address you entered."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:35
-#: airtime_mvc/application/controllers/DashboardController.php:84
-msgid "You don't have permission to disconnect source."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:37
-#: airtime_mvc/application/controllers/DashboardController.php:86
-msgid "There is no source connected to this input."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:81
-msgid "You don't have permission to switch source."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:72
-msgid "Preferences updated."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:115
-msgid "Support setting updated."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:123
-msgid "Support Feedback"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:251
-msgid "Stream Setting Updated."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:342
-msgid "path should be specified"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:437
-msgid "Problem with Liquidsoap..."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:493
-msgid "Request method not accepted"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:86
-msgid "User added successfully!"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:88
-msgid "User updated successfully!"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:187
-msgid "Settings updated successfully!"
-msgstr ""
-
-#: airtime_mvc/application/controllers/WebstreamController.php:28
-#: airtime_mvc/application/controllers/WebstreamController.php:32
-msgid "Untitled Webstream"
-msgstr ""
-
-#: airtime_mvc/application/controllers/WebstreamController.php:150
-msgid "Webstream saved."
-msgstr ""
-
-#: airtime_mvc/application/controllers/WebstreamController.php:158
-msgid "Invalid form values."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:95
-#: airtime_mvc/application/controllers/ShowbuilderController.php:136
-msgid "Preview"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:115
-#: airtime_mvc/application/controllers/LibraryController.php:177
-#: airtime_mvc/application/controllers/LibraryController.php:200
-msgid "Add to Playlist"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:117
-msgid "Add to Smart Block"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:147
-msgid "View track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:148
-msgid "Remove track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:154
-#: airtime_mvc/application/controllers/LibraryController.php:159
-msgid "Upload track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:169
-msgid "Duplicate Playlist"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:213
-msgid "No action available"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:233
-msgid "You don't have permission to delete selected items."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:279
-msgid "Could not delete file because it is scheduled in the future."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:282
-msgid "Could not delete file(s)."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:322
-#, php-format
-msgid "Copy of %s"
-msgstr ""
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
-msgid ""
-"To configure and use the embeddable player you must:
\n"
-" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
-" 2. Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
-msgid ""
-"To use the embeddable weekly schedule widget you must:
\n"
-" Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
#: airtime_mvc/application/controllers/ShowbuilderController.php:138
msgid "Select cursor"
msgstr ""
@@ -4031,37 +1798,76 @@ msgstr ""
msgid "show does not exist"
msgstr ""
-#: airtime_mvc/application/controllers/ApiController.php:79
-msgid "You are not allowed to access this resource."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ApiController.php:244
-#: airtime_mvc/application/controllers/ApiController.php:317
-#: airtime_mvc/application/controllers/ApiController.php:392
-#: airtime_mvc/application/controllers/ApiController.php:435
-#: airtime_mvc/application/controllers/ApiController.php:474
-#: airtime_mvc/application/controllers/ApiController.php:507
-msgid "You are not allowed to access this resource. "
-msgstr ""
-
-#: airtime_mvc/application/controllers/ApiController.php:698
-#: airtime_mvc/application/controllers/ApiController.php:718
-#: airtime_mvc/application/controllers/ApiController.php:730
+#: airtime_mvc/application/controllers/ScheduleController.php:389
#, php-format
-msgid "File does not exist in %s"
+msgid "Rebroadcast of show %s from %s at %s"
msgstr ""
-#: airtime_mvc/application/controllers/ApiController.php:781
-msgid "Bad request. no 'mode' parameter passed."
+#: airtime_mvc/application/common/UsabilityHints.php:55
+msgid "Upload some tracks below to add them to your library!"
msgstr ""
-#: airtime_mvc/application/controllers/ApiController.php:791
-msgid "Bad request. 'mode' parameter is invalid"
-msgstr ""
-
-#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#: airtime_mvc/application/common/UsabilityHints.php:57
#, php-format
-msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:63
+msgid "Click the 'New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:65
+#, php-format
+msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:73
+msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:75
+#, php-format
+msgid ""
+"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
+" %sCreate an unlinked show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:80
+msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:82
+#, php-format
+msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:89
+msgid "Click on the show starting next and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:91
+#, php-format
+msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/DateHelper.php:213
+#, php-format
+msgid "The year %s must be within the range of 1753 - 9999"
+msgstr ""
+
+#: airtime_mvc/application/common/DateHelper.php:216
+#, php-format
+msgid "%s-%s-%s is not a valid date"
+msgstr ""
+
+#: airtime_mvc/application/common/DateHelper.php:240
+#, php-format
+msgid "%s:%s:%s is not a valid time"
+msgstr ""
+
+#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
+msgid "Live stream"
msgstr ""
#: airtime_mvc/application/layouts/scripts/layout.phtml:63
@@ -4076,6 +1882,17 @@ msgstr ""
msgid "Upload"
msgstr ""
+#: airtime_mvc/application/layouts/scripts/layout.phtml:76
+#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
+msgid "Dashboard"
+msgstr ""
+
+#: airtime_mvc/application/layouts/scripts/layout.phtml:84
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
+msgid "Webstreams"
+msgstr ""
+
#: airtime_mvc/application/layouts/scripts/layout.phtml:135
#: airtime_mvc/application/layouts/scripts/layout.phtml:161
msgid "Play"
@@ -4097,3 +1914,2124 @@ msgstr ""
#: airtime_mvc/application/layouts/scripts/layout.phtml:166
msgid "Cursor"
msgstr ""
+
+#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#, php-format
+msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
+msgid "Drop files here or click to browse your computer."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
+msgid "Failed"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
+msgid "Pending"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
+msgid "Recent Uploads"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
+msgid "Share"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
+msgid "Select stream:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
+msgid "mute"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
+msgid "unmute"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
+msgid "About"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
+#, php-format
+msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
+#, php-format
+msgid "%1$s %2$s is distributed under the %3$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
+#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
+#, php-format
+msgid "Welcome to %s!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
+#, php-format
+msgid "Here's how you can get started using %s to automate your broadcasts: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
+msgid "Upload audio tracks"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
+msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
+msgid "Schedule a show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
+msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
+msgid "Add tracks to your show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
+msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
+msgid "Now you're good to go!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
+#, php-format
+msgid "For more detailed help, read the %suser manual%s."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
+#: airtime_mvc/application/configs/navigation.php:40
+msgid "Weekly Schedule"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
+#: airtime_mvc/application/forms/Player.php:77
+msgid "Preview:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
+#: airtime_mvc/application/configs/navigation.php:34
+msgid "Player"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:97
+msgid "Playout History"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
+msgid "Log Sheet"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
+msgid "File Summary"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
+msgid "Show Summary"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
+msgid "Expand Static Block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
+msgid "Expand Dynamic Block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
+msgid "Choose some search criteria above and click Generate to create this playlist."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
+msgid "A track list will be generated when you schedule this smart block into a show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
+msgid "Drag tracks here from your library to add them to the playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
+msgid "Editing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:26
+msgid "Name:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
+#: airtime_mvc/application/forms/AddShowWhat.php:54
+msgid "Description:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
+#: airtime_mvc/application/forms/AddShowWhen.php:89
+msgid "Duration:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
+msgid "Toggle Details"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+msgid "Shuffle playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
+msgid "Shuffle"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
+msgid "Playlist crossfade"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+msgid "Empty playlist content"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Clear"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+msgid "Fade in: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "Fade out: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+msgid "Save playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
+msgid "No open playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
+msgid "Show Waveform"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "(ss.t)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Remove all content from this smart block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
+msgid "No smart block currently open"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+msgid "Cue In: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "(hh:mm:ss.t)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "Cue Out: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
+msgid "Original Length:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:56
+msgid "General"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
+msgid "Stream Settings"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
+msgid "Global"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
+msgid "dB"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
+msgid "Output Streams"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:3
+#: airtime_mvc/application/forms/Login.php:83
+msgid "Login"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:7
+#, php-format
+msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
+msgid "Email Sent!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
+msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
+msgid "Back"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
+msgid "Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
+msgid "New password"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
+msgid "Please enter and confirm your new password in the fields below."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
+msgid "Manage Users"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
+msgid "New User"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
+msgid "id"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
+#: airtime_mvc/application/forms/PasswordRestore.php:25
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
+msgid "Username"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
+msgid "First Name"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
+msgid "Last Name"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
+msgid "User Type"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
+#, php-format
+msgid "Super Admin details can be changed in your Billing Settings."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
+msgid "Find Shows"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
+msgid "Choose Show Instance"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
+msgid "Find"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
+#: airtime_mvc/application/configs/navigation.php:61
+msgid "My Profile"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
+#, php-format
+msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
+msgid "Repeat Days:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
+#: airtime_mvc/application/forms/GeneralPreferences.php:53
+#: airtime_mvc/application/forms/AddShowStyle.php:64
+msgid "Remove"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
+msgid "Add"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
+msgid "Show Source"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
+msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
+msgid "Register Airtime"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
+#, php-format
+msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
+#, php-format
+msgid "Click the box below to promote your station on %s."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
+msgid "(Required)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
+msgid "(for verification purposes only, will not be published)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
+#: airtime_mvc/application/forms/GeneralPreferences.php:43
+msgid "Note: Anything larger than 600x600 will be resized."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
+msgid "Show me what I am sending "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
+msgid "Terms and Conditions"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
+msgid "Choose Days:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
+msgid "Search Criteria:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
+msgid "New Criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
+msgid "or"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
+msgid "and"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
+msgid "New Modifier"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
+msgid " to "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
+msgid "files meet the criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
+msgid "file meets the criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
+msgid "Filter History"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/login.phtml:41
+msgid "Forgot your password?"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
+msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
+msgid "Stream "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
+msgid "Additional Options"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
+msgid "The following info will be displayed to listeners in their media player:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
+msgid "(Your radio station website)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
+msgid "Stream URL: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
+msgid "Choose folder"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
+msgid "Set"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
+msgid "Current Import Folder:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
+#, php-format
+msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
+msgid "Remove watched directory"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
+msgid "You are not watching any media folders."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
+msgid "Live Broadcasting"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
+msgid "Master Source"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
+msgid "Use these settings in your broadcasting software to stream live at any time."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
+msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
+msgid "TuneIn Settings"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
+msgid "SoundCloud Settings"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
+msgid "Dangerous Options"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Add this show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Update show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
+msgid "What"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
+msgid "When"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
+msgid "Live Stream Input"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
+msgid "Who"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
+msgid "Style"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
+msgid "Disk Space"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:3
+msgid "File import in progress..."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:10
+#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
+msgid "Advanced Search Options"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
+#: airtime_mvc/application/forms/EditAudioMD.php:24
+#: airtime_mvc/application/forms/Player.php:15
+msgid "Title:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
+#: airtime_mvc/application/forms/EditAudioMD.php:34
+msgid "Creator:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
+#: airtime_mvc/application/forms/EditAudioMD.php:44
+msgid "Album:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
+msgid "Track:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
+msgid "Length:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
+msgid "Sample Rate:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
+msgid "Bit Rate:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
+#: airtime_mvc/application/forms/EditAudioMD.php:115
+msgid "Mood:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:45
+#: airtime_mvc/application/forms/EditAudioMD.php:62
+msgid "Genre:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
+#: airtime_mvc/application/forms/EditAudioMD.php:72
+msgid "Year:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
+#: airtime_mvc/application/forms/EditAudioMD.php:85
+msgid "Label:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
+#: airtime_mvc/application/forms/EditAudioMD.php:125
+msgid "BPM:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
+#: airtime_mvc/application/forms/EditAudioMD.php:95
+msgid "Composer:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
+#: airtime_mvc/application/forms/EditAudioMD.php:105
+msgid "Conductor:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
+#: airtime_mvc/application/forms/EditAudioMD.php:135
+msgid "Copyright:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
+msgid "Isrc Number:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
+#: airtime_mvc/application/forms/EditAudioMD.php:155
+msgid "Website:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
+#: airtime_mvc/application/forms/EditAudioMD.php:165
+#: airtime_mvc/application/forms/EditUser.php:119
+#: airtime_mvc/application/forms/Login.php:68
+msgid "Language:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
+msgid "File Path:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
+msgid "Web Stream"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
+msgid "Dynamic Smart Block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
+msgid "Static Smart Block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
+msgid "Audio Track"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
+msgid "Playlist Contents: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
+msgid "Static Smart Block Contents: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
+msgid "Dynamic Smart Block Criteria: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
+msgid "Limit to "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
+#: airtime_mvc/application/forms/AddShowWhat.php:36
+msgid "URL:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
+msgid "Viewing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
+msgid "Listeners"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
+msgid "Stream Data Collection Status"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
+msgid "Your trial expires in"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
+msgid "days"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
+msgid "Previous:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
+msgid "Next:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
+msgid "Source Streams"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
+msgid "ON AIR"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
+msgid "Listen"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
+msgid "Logout"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
+msgid "Playout History Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
+msgid "Log Sheet Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
+msgid "New Log Sheet Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
+msgid "No Log Sheet Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
+msgid "File Summary Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
+msgid "New File Summary Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
+msgid "No File Summary Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
+msgid "Creating File Summary Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
+msgid "Creating Log Sheet Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
+msgid "Name"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
+msgid "Add more elements"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
+msgid "Add New Field"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
+msgid "Set Default Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
+msgid "Description"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
+msgid "Stream URL:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
+msgid "Default Length:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
+msgid "No webstream"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
+#: airtime_mvc/application/views/scripts/error/error.phtml:6
+msgid "An error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
+msgid "Access Denied!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
+msgid "You do not have permission to access this page!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
+#: airtime_mvc/application/views/scripts/error/error.phtml:14
+#: airtime_mvc/application/configs/navigation.php:143
+msgid "Help"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
+msgid "Oops!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
+msgid "Something went wrong!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
+msgid "Bad Request!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
+msgid "The requested action is not supported!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
+msgid "Page not found!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
+msgid "We couldn't find the page you were looking for."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error.phtml:12
+msgid "Looks like the page you were looking for doesn't exist!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
+msgid "previous"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
+msgid "play"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
+msgid "pause"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
+msgid "next"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
+msgid "stop"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
+msgid "max volume"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
+msgid "Update Required"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
+#, php-format
+msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
+msgid "Plan type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
+msgid "Billing cycle:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
+msgid "Payment method:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
+msgid "PayPal"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
+msgid "Credit Card via 2Checkout"
+msgstr ""
+
+#: airtime_mvc/application/forms/DateRange.php:16
+#: airtime_mvc/application/forms/ShowBuilder.php:18
+msgid "Date Start:"
+msgstr ""
+
+#: airtime_mvc/application/forms/DateRange.php:35
+#: airtime_mvc/application/forms/DateRange.php:63
+#: airtime_mvc/application/forms/ShowBuilder.php:37
+#: airtime_mvc/application/forms/ShowBuilder.php:65
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
+msgid "Invalid character entered"
+msgstr ""
+
+#: airtime_mvc/application/forms/DateRange.php:44
+#: airtime_mvc/application/forms/ShowBuilder.php:46
+#: airtime_mvc/application/forms/AddShowRepeats.php:56
+msgid "Date End:"
+msgstr ""
+
+#: airtime_mvc/application/forms/ShowBuilder.php:72
+#: airtime_mvc/application/forms/ShowBuilder.php:88
+msgid "Filter by Show"
+msgstr ""
+
+#: airtime_mvc/application/forms/ShowBuilder.php:80
+msgid "All My Shows:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWho.php:10
+msgid "Search Users:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWho.php:24
+msgid "DJs:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:30
+#: airtime_mvc/application/forms/GeneralPreferences.php:25
+#: airtime_mvc/application/forms/SupportSettings.php:18
+msgid "Station Name"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:39
+#: airtime_mvc/application/forms/SupportSettings.php:31
+msgid "Phone:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:51
+#: airtime_mvc/application/forms/AddUser.php:67
+#: airtime_mvc/application/forms/EditUser.php:83
+#: airtime_mvc/application/forms/SupportSettings.php:43
+msgid "Email:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:62
+#: airtime_mvc/application/forms/SupportSettings.php:54
+msgid "Station Web Site:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:73
+#: airtime_mvc/application/forms/SupportSettings.php:65
+msgid "Country:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:84
+#: airtime_mvc/application/forms/SupportSettings.php:76
+msgid "City:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:96
+#: airtime_mvc/application/forms/SupportSettings.php:88
+msgid "Station Description:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:106
+#: airtime_mvc/application/forms/GeneralPreferences.php:42
+msgid "Station Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:126
+#: airtime_mvc/application/forms/SupportSettings.php:108
+#, php-format
+msgid "Promote my station on %s"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:151
+#: airtime_mvc/application/forms/SupportSettings.php:120
+#, php-format
+msgid "By checking this box, I agree to %s's %sprivacy policy%s."
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:169
+#: airtime_mvc/application/forms/SupportSettings.php:143
+msgid "You have to agree to privacy policy."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRR.php:10
+msgid "Record from Line In?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRR.php:16
+msgid "Rebroadcast?"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
+#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
+msgid "Value is required and can't be empty"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
+msgid "'%value%' is no valid email address in the basic format local-part@hostname"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
+msgid "'%value%' does not fit the date format '%format%'"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
+msgid "'%value%' is less than %min% characters long"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
+msgid "'%value%' is more than %max% characters long"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
+msgid "'%value%' is not between '%min%' and '%max%', inclusively"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
+msgid "Passwords do not match"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
+msgid "Day must be specified"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
+msgid "Time must be specified"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
+msgid "Must wait at least 1 hour to rebroadcast"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordRestore.php:14
+msgid "Email"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordRestore.php:36
+msgid "Reset password"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhat.php:30
+msgid "Untitled Show"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhat.php:69
+msgid "Instance Description:"
+msgstr ""
+
+#: airtime_mvc/application/forms/DangerousPreferences.php:12
+msgid "Delete All Tracks in Library"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditAudioMD.php:145
+msgid "ISRC Number:"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditAudioMD.php:176
+msgid "OK"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:33
+msgid "Station Description"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:62
+msgid "Default Crossfade Duration (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:68
+#: airtime_mvc/application/forms/GeneralPreferences.php:82
+#: airtime_mvc/application/forms/GeneralPreferences.php:96
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
+msgid "Please enter a time in seconds (eg. 0.5)"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:76
+msgid "Default Fade In (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:90
+msgid "Default Fade Out (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:102
+msgid "Public Airtime API"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:103
+msgid "Required for embeddable schedule widget."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:105
+msgid "Disabled"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:106
+msgid "Enabled"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:109
+msgid ""
+"Enabling this feature will allow Airtime to provide schedule data\n"
+" to external widgets that can be embedded in your website."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:120
+msgid "Default Language"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:127
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
+msgid "Station Timezone"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:134
+msgid "Week Starts On"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:150
+msgid "Display login button on your Radio Page?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:29
+#: airtime_mvc/application/forms/EditUser.php:37
+#: airtime_mvc/application/forms/Login.php:41
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
+msgid "Username:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:38
+#: airtime_mvc/application/forms/EditUser.php:48
+#: airtime_mvc/application/forms/Login.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
+msgid "Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:46
+#: airtime_mvc/application/forms/EditUser.php:57
+msgid "Verify Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:55
+#: airtime_mvc/application/forms/EditUser.php:67
+msgid "Firstname:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:61
+#: airtime_mvc/application/forms/EditUser.php:75
+msgid "Lastname:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:76
+#: airtime_mvc/application/forms/EditUser.php:94
+msgid "Mobile Phone:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:82
+#: airtime_mvc/application/forms/EditUser.php:102
+msgid "Skype:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:88
+#: airtime_mvc/application/forms/EditUser.php:110
+msgid "Jabber:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:95
+msgid "User Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:120
+#: airtime_mvc/application/forms/EditUser.php:155
+msgid "Login name is not unique."
+msgstr ""
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
+msgid "Import Folder:"
+msgstr ""
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
+msgid "Watched Folders:"
+msgstr ""
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
+msgid "Not a valid Directory"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:126
+msgid "What is the name of your favorite childhood friend?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:127
+msgid "What school did you attend for sixth grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:128
+msgid "In what city did you meet your spouse/significant other?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:129
+msgid "What street did you live on in third grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:130
+msgid "What is the first name of the boy or girl that you first kissed?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:131
+msgid "In what city or town was your first job?"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
+msgid "Default License:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
+msgid "All rights are reserved"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
+msgid "The work is in the public domain"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
+msgid "Creative Commons Attribution"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
+msgid "Creative Commons Attribution Noncommercial"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
+msgid "Creative Commons Attribution No Derivative Works"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
+msgid "Creative Commons Attribution Share Alike"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
+msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
+msgid "Creative Commons Attribution Noncommercial Share Alike"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
+msgid "Default Sharing Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
+msgid "Public"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
+msgid "Private"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditUser.php:129
+msgid "Interface Timezone:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:14
+msgid "Now Playing"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:25
+msgid "Select Stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:28
+msgid "Auto detect the most appropriate stream to use."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:29
+msgid "Select a stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:41
+msgid " - Mobile friendly"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:45
+msgid " - The player does not support Opus streams."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:71
+msgid "Embeddable code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:72
+msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
+#: airtime_mvc/application/models/Block.php:1351
+msgid "Select criteria"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
+#: airtime_mvc/application/models/Block.php:1353
+msgid "Bit Rate (Kbps)"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
+#: airtime_mvc/application/models/Block.php:1374
+msgid "Sample Rate (kHz)"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
+msgid "hours"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
+msgid "minutes"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
+#: airtime_mvc/application/models/Block.php:333
+msgid "items"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
+msgid "Randomly"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
+msgid "Newest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
+msgid "Oldest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
+msgid "Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
+msgid "Static"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
+msgid "Dynamic"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
+msgid "Allow Repeated Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
+msgid "Sort Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
+msgid "Limit to:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
+msgid "Generate playlist content and save criteria"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
+msgid "Generate"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
+msgid "Shuffle playlist content"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
+msgid "Limit cannot be empty or smaller than 0"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
+msgid "Limit cannot be more than 24 hrs"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
+msgid "The value should be an integer"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
+msgid "500 is the max item limit value you can set"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
+msgid "You must select Criteria and Modifier"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
+msgid "'Length' should be in '00:00:00' format"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
+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:594
+msgid "The value has to be numeric"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
+msgid "The value should be less then 2147483648"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
+#, php-format
+msgid "The value should be less than %s characters"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
+msgid "Value cannot be empty"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:26
+msgid "Icecast Vorbis Metadata"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:36
+msgid "Stream Label:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:37
+msgid "Artist - Title"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:38
+msgid "Show - Artist - Title"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:39
+msgid "Station name - Show name"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:45
+msgid "Off Air Metadata"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:51
+msgid "Enable Replay Gain"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:57
+msgid "Replay Gain Modifier"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:65
+msgid "Streaming Server:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Airtime Pro Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Custom / 3rd Party Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordChange.php:17
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
+msgid "Password"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordChange.php:28
+msgid "Confirm new password"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordChange.php:36
+msgid "Password confirmation does not match your password."
+msgstr ""
+
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
+msgid "Station Language"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
+msgid "Enabled:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
+msgid "Mobile:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
+msgid "Stream Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
+msgid "Service Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
+msgid "Channels:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "1 - Mono"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "2 - Stereo"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
+msgid "Server"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
+msgid "Port"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
+msgid "Only numbers are allowed."
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
+msgid "URL"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
+msgid "Mount Point"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
+msgid "Admin User"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
+msgid "Admin Password"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
+msgid "Server cannot be empty."
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
+msgid "Port cannot be empty."
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
+msgid "Mount cannot be empty with Icecast server."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:16
+msgid "'%value%' does not fit the time format 'HH:mm'"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:22
+msgid "Start Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:37
+msgid "In the Future:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:64
+msgid "End Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:98
+msgid "Timezone:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:107
+msgid "Repeats?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:139
+msgid "Cannot create show in the past"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:147
+msgid "Cannot modify start date/time of the show that is already started"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:156
+#: airtime_mvc/application/models/Show.php:282
+msgid "End date/time cannot be in the past"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:164
+msgid "Cannot have duration < 0m"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:168
+msgid "Cannot have duration 00h 00m"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:175
+msgid "Cannot have duration greater than 24h"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:19
+msgid "Push metadata to your station on TuneIn?"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:24
+msgid "Station ID:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:30
+msgid "Partner Key:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:36
+msgid "Partner Id:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:77
+#: airtime_mvc/application/forms/TuneInPreferences.php:86
+msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:10
+#, php-format
+msgid "Use %s Authentication:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:16
+msgid "Use Custom Authentication:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:25
+msgid "Custom Username"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:37
+msgid "Custom Password"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:48
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
+msgid "Host:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
+msgid "Port:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:60
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
+msgid "Mount:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:77
+msgid "Username field cannot be empty."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:82
+msgid "Password field cannot be empty."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:12
+msgid "Background Colour:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:31
+msgid "Text Colour:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:49
+msgid "Current Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:72
+msgid "Show Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:87
+msgid "Logo Preview:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Login.php:102
+msgid "Type the characters you see in the picture below."
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
+msgid "Auto Switch Off:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
+msgid "Auto Switch On:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
+msgid "Switch Transition Fade (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:10
+msgid "Link:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:16
+msgid "Repeat Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:19
+msgid "weekly"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:20
+msgid "every 2 weeks"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:21
+msgid "every 3 weeks"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:22
+msgid "every 4 weeks"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:23
+msgid "monthly"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:32
+msgid "Select Days:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:47
+msgid "Repeat By:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the month"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the week"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:69
+msgid "No End?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:106
+msgid "End date must be after start date"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:113
+msgid "Please select a repeat day"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:12
+msgid "Radio Page"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:19
+msgid "Calendar"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:26
+msgid "Widgets"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:48
+msgid "Settings"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:67
+msgid "Users"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:74
+msgid "Streams"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:82
+msgid "Analytics"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:90
+msgid "Listener Stats"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:104
+msgid "History Templates"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:113
+msgid "Billing"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:120
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:127
+msgid "Account Details"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:134
+msgid "View Invoices"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:150
+msgid "Getting Started"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:157
+msgid "FAQ"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:162
+msgid "User Manual"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:167
+msgid "File a Support Ticket"
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:833
+#: airtime_mvc/application/models/Playlist.php:812
+msgid "Cue in and cue out are null."
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:868
+#: airtime_mvc/application/models/Block.php:924
+#: airtime_mvc/application/models/Playlist.php:851
+#: airtime_mvc/application/models/Playlist.php:895
+msgid "Can't set cue out to be greater than file length."
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:879
+#: airtime_mvc/application/models/Block.php:900
+#: airtime_mvc/application/models/Playlist.php:843
+#: airtime_mvc/application/models/Playlist.php:868
+msgid "Can't set cue in to be larger than cue out."
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:935
+#: airtime_mvc/application/models/Playlist.php:887
+msgid "Can't set cue out to be smaller than cue in."
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:1366
+msgid "Upload Time"
+msgstr ""
+
+#: airtime_mvc/application/models/ShowBuilder.php:212
+#, php-format
+msgid "Rebroadcast of %s from %s"
+msgstr ""
+
+#: airtime_mvc/application/models/Preference.php:460
+#, php-format
+msgid "Powered by %s"
+msgstr ""
+
+#: airtime_mvc/application/models/Preference.php:588
+msgid "Select Country"
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:160
+#, php-format
+msgid "%s is already watched."
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:164
+#, php-format
+msgid "%s contains nested watched directory: %s"
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:168
+#, php-format
+msgid "%s is nested within existing watched directory: %s"
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:189
+#: airtime_mvc/application/models/MusicDir.php:370
+#, php-format
+msgid "%s is not a valid directory."
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:232
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list"
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:388
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list."
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:431
+#, php-format
+msgid "%s doesn't exist in the watched list."
+msgstr ""
+
+#: airtime_mvc/application/models/Auth.php:33
+#, php-format
+msgid ""
+"Hi %s, \n"
+"\n"
+"Please click this link to reset your password: "
+msgstr ""
+
+#: airtime_mvc/application/models/Auth.php:38
+#, php-format
+msgid "%s Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/models/Show.php:184
+msgid "Shows can have a max length of 24 hours."
+msgstr ""
+
+#: airtime_mvc/application/models/Show.php:293
+msgid ""
+"Cannot schedule overlapping shows.\n"
+"Note: Resizing a repeating show affects all of its repeats."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:73
+msgid "Cannot move items out of linked shows"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:119
+msgid "The schedule you're viewing is out of date! (sched mismatch)"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:124
+msgid "The schedule you're viewing is out of date! (instance mismatch)"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:132
+#: airtime_mvc/application/models/Scheduler.php:458
+#: airtime_mvc/application/models/Scheduler.php:490
+msgid "The schedule you're viewing is out of date!"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:142
+#, php-format
+msgid "You are not allowed to schedule show %s."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:146
+msgid "You cannot add files to recording shows."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:152
+#, php-format
+msgid "The show %s is over and cannot be scheduled."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:159
+#, php-format
+msgid "The show %s has been previously updated!"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:178
+msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:195
+msgid "Cannot schedule a playlist that contains missing files."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:216
+#: airtime_mvc/application/models/Scheduler.php:305
+msgid "A selected File does not exist!"
+msgstr ""
+
+#: airtime_mvc/application/models/Schedule.php:206
+msgid "livestream"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:166
+msgid "Length needs to be greater than 0 minutes"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:171
+msgid "Length should be of form \"00h 00m\""
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:184
+msgid "URL should be of form \"http://domain\""
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:187
+msgid "URL should be 512 characters or less"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:193
+msgid "No MIME type found for webstream."
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:209
+msgid "Webstream name cannot be empty"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:278
+msgid "Could not parse XSPF playlist"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:298
+msgid "Could not parse PLS playlist"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:318
+msgid "Could not parse M3U playlist"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:332
+msgid "Invalid webstream - This appears to be a file download."
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:336
+#, php-format
+msgid "Unrecognized stream type: %s"
+msgstr ""
+
+#: airtime_mvc/public/setup/rabbitmq-setup.php:78
+msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
+msgstr ""
diff --git a/airtime_mvc/locale/ja_JP/LC_MESSAGES/pro.po b/airtime_mvc/locale/ja_JP/LC_MESSAGES/pro.po
index 866ee0acb..f59b52c3d 100644
--- a/airtime_mvc/locale/ja_JP/LC_MESSAGES/pro.po
+++ b/airtime_mvc/locale/ja_JP/LC_MESSAGES/pro.po
@@ -1,3 +1,139 @@
+#: airtime_mvc/application/controllers/LoginController.php:170
+#, php-format
+msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
+#, php-format
+msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
+#, php-format
+msgid "If you are the primary owner of this station, please reset your password here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
+msgid "Thank you!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
+msgid "Your station has been upgraded successfully."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
+msgid "Return to Airtime"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+#, php-format
+msgid "Purchase an %s plan!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+msgid "My Account"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
+msgid "Upgrade today to get more listeners and storage space!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
+msgid "View Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:257
+msgid "Your Current Plan:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:291
+msgid "Please enter your payment details:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
+msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
+msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:17
+msgid "First Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:26
+msgid "Last Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:35
+msgid "Company Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:44
+msgid "Email Address:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:54
+msgid "Address 1:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:63
+msgid "Address 2:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:70
+msgid "City:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:80
+msgid "State/Region:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:89
+msgid "Zip Code / Postal Code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:102
+msgid "Country:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:112
+msgid "Phone Number:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:121
+msgid "Please choose a security question:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:135
+msgid "Please enter an answer:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:152
+msgid "VAT/Tax ID (EU only)"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:162
+msgid "Subscribe to Sourcefabric newsletter"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:172
+msgid "Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:181
+msgid "Verify Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:193
+msgid "Save"
+msgstr ""
+
#: airtime_mvc/application/models/Auth.php:35
#, php-format
msgid ""
@@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
-msgid "Thank you!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
-msgid "Your station has been upgraded successfully."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
-msgid "Return to Airtime"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
-#, php-format
-msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
-msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
-msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
-#, php-format
-msgid "If you are the primary owner of this station, please reset your password here."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:170
-#, php-format
-msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
-msgstr ""
diff --git a/airtime_mvc/locale/ka/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/ka/LC_MESSAGES/airtime.mo
index 4ac9e1996..c5bce36e5 100644
Binary files a/airtime_mvc/locale/ka/LC_MESSAGES/airtime.mo and b/airtime_mvc/locale/ka/LC_MESSAGES/airtime.mo differ
diff --git a/airtime_mvc/locale/ka/LC_MESSAGES/airtime.po b/airtime_mvc/locale/ka/LC_MESSAGES/airtime.po
index 0c6883b71..c48fff019 100644
--- a/airtime_mvc/locale/ka/LC_MESSAGES/airtime.po
+++ b/airtime_mvc/locale/ka/LC_MESSAGES/airtime.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Airtime\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-09-03 10:24-0400\n"
-"PO-Revision-Date: 2015-07-02 10:15+0000\n"
+"POT-Creation-Date: 2015-09-04 11:17-0400\n"
+"PO-Revision-Date: 2015-09-04 08:15+0000\n"
"Last-Translator: Daniel James \n"
"Language-Team: Georgian (http://www.transifex.com/sourcefabric/airtime/language/ka/)\n"
"Language: ka\n"
@@ -17,132 +17,6 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-#: airtime_mvc/public/setup/rabbitmq-setup.php:78
-msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1117
-#: airtime_mvc/application/services/HistoryService.php:1157
-#: airtime_mvc/application/services/HistoryService.php:1174
-#: airtime_mvc/application/models/Block.php:1375
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
-#: airtime_mvc/application/controllers/LocaleController.php:76
-msgid "Title"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1118
-#: airtime_mvc/application/services/HistoryService.php:1158
-#: airtime_mvc/application/services/HistoryService.php:1175
-#: airtime_mvc/application/models/Block.php:1360
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
-#: airtime_mvc/application/controllers/LocaleController.php:77
-msgid "Creator"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1119
-#: airtime_mvc/application/models/Block.php:1352
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
-#: airtime_mvc/application/controllers/LocaleController.php:78
-msgid "Album"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1120
-#: airtime_mvc/application/services/HistoryService.php:1177
-#: airtime_mvc/application/models/Block.php:1369
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
-#: airtime_mvc/application/controllers/LocaleController.php:91
-msgid "Length"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1121
-#: airtime_mvc/application/models/Block.php:1362
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
-#: airtime_mvc/application/controllers/LocaleController.php:85
-msgid "Genre"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1122
-#: airtime_mvc/application/models/Block.php:1371
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
-#: airtime_mvc/application/controllers/LocaleController.php:93
-msgid "Mood"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1123
-#: airtime_mvc/application/models/Block.php:1364
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
-#: airtime_mvc/application/controllers/LocaleController.php:87
-msgid "Label"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1124
-#: airtime_mvc/application/services/HistoryService.php:1178
-#: airtime_mvc/application/models/Block.php:1355
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
-#: airtime_mvc/application/controllers/LocaleController.php:81
-msgid "Composer"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1125
-#: airtime_mvc/application/models/Block.php:1363
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
-#: airtime_mvc/application/controllers/LocaleController.php:86
-msgid "ISRC"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1126
-#: airtime_mvc/application/services/HistoryService.php:1179
-#: airtime_mvc/application/models/Block.php:1357
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
-#: airtime_mvc/application/controllers/LocaleController.php:83
-msgid "Copyright"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1127
-#: airtime_mvc/application/models/Block.php:1379
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
-#: airtime_mvc/application/controllers/LocaleController.php:100
-msgid "Year"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1128
-msgid "Track"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1129
-#: airtime_mvc/application/models/Block.php:1356
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
-#: airtime_mvc/application/controllers/LocaleController.php:82
-msgid "Conductor"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1130
-#: airtime_mvc/application/models/Block.php:1365
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
-#: airtime_mvc/application/controllers/LocaleController.php:88
-msgid "Language"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1155
-#: airtime_mvc/application/forms/EditHistoryItem.php:32
-msgid "Start Time"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1156
-#: airtime_mvc/application/forms/EditHistoryItem.php:44
-msgid "End Time"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1176
-msgid "Played"
-msgstr ""
-
#: airtime_mvc/application/services/CalendarService.php:50
msgid "Record file doesn't exist"
msgstr ""
@@ -238,2601 +112,380 @@ msgstr ""
msgid "Must wait 1 hour to rebroadcast."
msgstr ""
-#: airtime_mvc/application/models/Schedule.php:206
-msgid "livestream"
+#: airtime_mvc/application/services/HistoryService.php:1117
+#: airtime_mvc/application/services/HistoryService.php:1157
+#: airtime_mvc/application/services/HistoryService.php:1174
+#: airtime_mvc/application/controllers/LocaleController.php:76
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
+#: airtime_mvc/application/models/Block.php:1375
+msgid "Title"
msgstr ""
-#: airtime_mvc/application/models/ShowBuilder.php:212
+#: airtime_mvc/application/services/HistoryService.php:1118
+#: airtime_mvc/application/services/HistoryService.php:1158
+#: airtime_mvc/application/services/HistoryService.php:1175
+#: airtime_mvc/application/controllers/LocaleController.php:77
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
+#: airtime_mvc/application/models/Block.php:1360
+msgid "Creator"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1119
+#: airtime_mvc/application/controllers/LocaleController.php:78
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
+#: airtime_mvc/application/models/Block.php:1352
+msgid "Album"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1120
+#: airtime_mvc/application/services/HistoryService.php:1177
+#: airtime_mvc/application/controllers/LocaleController.php:91
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
+#: airtime_mvc/application/models/Block.php:1369
+msgid "Length"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1121
+#: airtime_mvc/application/controllers/LocaleController.php:85
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
+#: airtime_mvc/application/models/Block.php:1362
+msgid "Genre"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1122
+#: airtime_mvc/application/controllers/LocaleController.php:93
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
+#: airtime_mvc/application/models/Block.php:1371
+msgid "Mood"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1123
+#: airtime_mvc/application/controllers/LocaleController.php:87
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
+#: airtime_mvc/application/models/Block.php:1364
+msgid "Label"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1124
+#: airtime_mvc/application/services/HistoryService.php:1178
+#: airtime_mvc/application/controllers/LocaleController.php:81
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
+#: airtime_mvc/application/models/Block.php:1355
+msgid "Composer"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1125
+#: airtime_mvc/application/controllers/LocaleController.php:86
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
+#: airtime_mvc/application/models/Block.php:1363
+msgid "ISRC"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1126
+#: airtime_mvc/application/services/HistoryService.php:1179
+#: airtime_mvc/application/controllers/LocaleController.php:83
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
+#: airtime_mvc/application/models/Block.php:1357
+msgid "Copyright"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1127
+#: airtime_mvc/application/controllers/LocaleController.php:100
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
+#: airtime_mvc/application/models/Block.php:1379
+msgid "Year"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1128
+msgid "Track"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1129
+#: airtime_mvc/application/controllers/LocaleController.php:82
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
+#: airtime_mvc/application/models/Block.php:1356
+msgid "Conductor"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1130
+#: airtime_mvc/application/controllers/LocaleController.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
+#: airtime_mvc/application/models/Block.php:1365
+msgid "Language"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1155
+#: airtime_mvc/application/forms/EditHistoryItem.php:32
+msgid "Start Time"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1156
+#: airtime_mvc/application/forms/EditHistoryItem.php:44
+msgid "End Time"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1176
+msgid "Played"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:31
+#: airtime_mvc/application/controllers/PlaylistController.php:147
#, php-format
-msgid "Rebroadcast of %s from %s"
+msgid "%s not found"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:166
-msgid "Length needs to be greater than 0 minutes"
+#: airtime_mvc/application/controllers/LibraryController.php:40
+#: airtime_mvc/application/controllers/PlaylistController.php:168
+msgid "Something went wrong."
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:171
-msgid "Length should be of form \"00h 00m\""
+#: airtime_mvc/application/controllers/LibraryController.php:95
+#: airtime_mvc/application/controllers/ShowbuilderController.php:136
+msgid "Preview"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:184
-msgid "URL should be of form \"http://domain\""
+#: airtime_mvc/application/controllers/LibraryController.php:115
+#: airtime_mvc/application/controllers/LibraryController.php:177
+#: airtime_mvc/application/controllers/LibraryController.php:200
+msgid "Add to Playlist"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:187
-msgid "URL should be 512 characters or less"
+#: airtime_mvc/application/controllers/LibraryController.php:117
+msgid "Add to Smart Block"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:193
-msgid "No MIME type found for webstream."
+#: airtime_mvc/application/controllers/LibraryController.php:123
+#: airtime_mvc/application/controllers/LocaleController.php:66
+msgid "Edit Metadata"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:209
-msgid "Webstream name cannot be empty"
+#: airtime_mvc/application/controllers/LibraryController.php:131
+#: airtime_mvc/application/controllers/ScheduleController.php:712
+msgid "Download"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:278
-msgid "Could not parse XSPF playlist"
+#: airtime_mvc/application/controllers/LibraryController.php:147
+msgid "View track"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:298
-msgid "Could not parse PLS playlist"
+#: airtime_mvc/application/controllers/LibraryController.php:148
+msgid "Remove track"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:318
-msgid "Could not parse M3U playlist"
+#: airtime_mvc/application/controllers/LibraryController.php:154
+#: airtime_mvc/application/controllers/LibraryController.php:159
+msgid "Upload track"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:332
-msgid "Invalid webstream - This appears to be a file download."
+#: airtime_mvc/application/controllers/LibraryController.php:169
+msgid "Duplicate Playlist"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:336
+#: airtime_mvc/application/controllers/LibraryController.php:213
+msgid "No action available"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:233
+msgid "You don't have permission to delete selected items."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:279
+msgid "Could not delete file because it is scheduled in the future."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:282
+msgid "Could not delete file(s)."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:322
#, php-format
-msgid "Unrecognized stream type: %s"
+msgid "Copy of %s"
msgstr ""
-#: airtime_mvc/application/models/Preference.php:460
-#, php-format
-msgid "Powered by %s"
+#: airtime_mvc/application/controllers/WebstreamController.php:28
+#: airtime_mvc/application/controllers/WebstreamController.php:32
+msgid "Untitled Webstream"
msgstr ""
-#: airtime_mvc/application/models/Preference.php:588
-msgid "Select Country"
+#: airtime_mvc/application/controllers/WebstreamController.php:150
+msgid "Webstream saved."
msgstr ""
-#: airtime_mvc/application/models/MusicDir.php:160
-#, php-format
-msgid "%s is already watched."
+#: airtime_mvc/application/controllers/WebstreamController.php:158
+msgid "Invalid form values."
msgstr ""
-#: airtime_mvc/application/models/MusicDir.php:164
-#, php-format
-msgid "%s contains nested watched directory: %s"
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:168
-#, php-format
-msgid "%s is nested within existing watched directory: %s"
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:189
-#: airtime_mvc/application/models/MusicDir.php:370
-#, php-format
-msgid "%s is not a valid directory."
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:232
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list"
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:388
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list."
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:431
-#, php-format
-msgid "%s doesn't exist in the watched list."
-msgstr ""
-
-#: airtime_mvc/application/models/Show.php:184
-msgid "Shows can have a max length of 24 hours."
-msgstr ""
-
-#: airtime_mvc/application/models/Show.php:282
-#: airtime_mvc/application/forms/AddShowWhen.php:156
-msgid "End date/time cannot be in the past"
-msgstr ""
-
-#: airtime_mvc/application/models/Show.php:293
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
msgid ""
-"Cannot schedule overlapping shows.\n"
-"Note: Resizing a repeating show affects all of its repeats."
+"To configure and use the embeddable player you must:
\n"
+" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
+" 2. Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/models/Auth.php:33
-#, php-format
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
msgid ""
-"Hi %s, \n"
-"\n"
-"Please click this link to reset your password: "
+"To use the embeddable weekly schedule widget you must:
\n"
+" Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/models/Auth.php:38
+#: airtime_mvc/application/controllers/ListenerstatController.php:51
+msgid "Please make sure admin user/password is correct on System->Streams page."
+msgstr ""
+
+#: airtime_mvc/application/controllers/UserController.php:86
+msgid "User added successfully!"
+msgstr ""
+
+#: airtime_mvc/application/controllers/UserController.php:88
+msgid "User updated successfully!"
+msgstr ""
+
+#: airtime_mvc/application/controllers/UserController.php:187
+msgid "Settings updated successfully!"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PlaylistController.php:53
#, php-format
-msgid "%s Password Reset"
+msgid "You are viewing an older version of %s"
msgstr ""
-#: airtime_mvc/application/models/Block.php:333
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
-msgid "items"
+#: airtime_mvc/application/controllers/PlaylistController.php:140
+msgid "You cannot add tracks to dynamic blocks."
msgstr ""
-#: airtime_mvc/application/models/Block.php:833
-#: airtime_mvc/application/models/Playlist.php:812
-msgid "Cue in and cue out are null."
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:868
-#: airtime_mvc/application/models/Block.php:924
-#: airtime_mvc/application/models/Playlist.php:851
-#: airtime_mvc/application/models/Playlist.php:895
-msgid "Can't set cue out to be greater than file length."
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:879
-#: airtime_mvc/application/models/Block.php:900
-#: airtime_mvc/application/models/Playlist.php:843
-#: airtime_mvc/application/models/Playlist.php:868
-msgid "Can't set cue in to be larger than cue out."
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:935
-#: airtime_mvc/application/models/Playlist.php:887
-msgid "Can't set cue out to be smaller than cue in."
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1351
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
-msgid "Select criteria"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1353
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
-msgid "Bit Rate (Kbps)"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1354
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
-#: airtime_mvc/application/controllers/LocaleController.php:80
-msgid "BPM"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1358
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
-#: airtime_mvc/application/controllers/LocaleController.php:281
-#: airtime_mvc/application/layouts/scripts/layout.phtml:140
-msgid "Cue In"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1359
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:282
-#: airtime_mvc/application/layouts/scripts/layout.phtml:147
-msgid "Cue Out"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1361
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
-#: airtime_mvc/application/controllers/LocaleController.php:84
-msgid "Encoded By"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1366
-msgid "Upload Time"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1367
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
-#: airtime_mvc/application/controllers/LocaleController.php:89
-msgid "Last Modified"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1368
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
-#: airtime_mvc/application/controllers/LocaleController.php:90
-msgid "Last Played"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1370
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
-#: airtime_mvc/application/controllers/LocaleController.php:92
-msgid "Mime"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1372
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
-#: airtime_mvc/application/controllers/LocaleController.php:94
-msgid "Owner"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1373
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
-#: airtime_mvc/application/controllers/LocaleController.php:95
-msgid "Replay Gain"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1374
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
-msgid "Sample Rate (kHz)"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1376
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
-#: airtime_mvc/application/controllers/LocaleController.php:97
-msgid "Track Number"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1377
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
-#: airtime_mvc/application/controllers/LocaleController.php:98
-msgid "Uploaded"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1378
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
-#: airtime_mvc/application/controllers/LocaleController.php:99
-msgid "Website"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1383
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
-#: airtime_mvc/application/controllers/LocaleController.php:151
-msgid "Select modifier"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1384
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
-#: airtime_mvc/application/controllers/LocaleController.php:152
-msgid "contains"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1385
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
-#: airtime_mvc/application/controllers/LocaleController.php:153
-msgid "does not contain"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1386
-#: airtime_mvc/application/models/Block.php:1390
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
-#: airtime_mvc/application/controllers/LocaleController.php:154
-msgid "is"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1387
-#: airtime_mvc/application/models/Block.php:1391
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
-#: airtime_mvc/application/controllers/LocaleController.php:155
-msgid "is not"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1388
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
-#: airtime_mvc/application/controllers/LocaleController.php:156
-msgid "starts with"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1389
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
-#: airtime_mvc/application/controllers/LocaleController.php:157
-msgid "ends with"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
-#: airtime_mvc/application/controllers/LocaleController.php:158
-msgid "is greater than"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1393
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
-#: airtime_mvc/application/controllers/LocaleController.php:159
-msgid "is less than"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1394
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
-#: airtime_mvc/application/controllers/LocaleController.php:160
-msgid "is in the range"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:73
-msgid "Cannot move items out of linked shows"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:119
-msgid "The schedule you're viewing is out of date! (sched mismatch)"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:124
-msgid "The schedule you're viewing is out of date! (instance mismatch)"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:132
-#: airtime_mvc/application/models/Scheduler.php:458
-#: airtime_mvc/application/models/Scheduler.php:490
-msgid "The schedule you're viewing is out of date!"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:142
+#: airtime_mvc/application/controllers/PlaylistController.php:161
#, php-format
-msgid "You are not allowed to schedule show %s."
+msgid "You don't have permission to delete selected %s(s)."
msgstr ""
-#: airtime_mvc/application/models/Scheduler.php:146
-msgid "You cannot add files to recording shows."
+#: airtime_mvc/application/controllers/PlaylistController.php:174
+msgid "You can only add tracks to smart block."
msgstr ""
-#: airtime_mvc/application/models/Scheduler.php:152
+#: airtime_mvc/application/controllers/PlaylistController.php:180
+#: airtime_mvc/application/controllers/LocaleController.php:50
+msgid "You can only add tracks, smart blocks, and webstreams to playlists."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PlaylistController.php:192
+msgid "Untitled Playlist"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PlaylistController.php:194
+msgid "Untitled Smart Block"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PlaylistController.php:522
+msgid "Unknown Playlist"
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:78
+msgid "Page not found."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:87
+msgid "The requested action is not supported."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:98
+msgid "You do not have permission to access this resource."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:109
+msgid "An internal application error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/controllers/Apiv2Controller.php:77
+#: airtime_mvc/application/controllers/ApiController.php:79
+msgid "You are not allowed to access this resource."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:72
+msgid "Preferences updated."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:115
+msgid "Support setting updated."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:123
+msgid "Support Feedback"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:251
+msgid "Stream Setting Updated."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:342
+msgid "path should be specified"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:437
+msgid "Problem with Liquidsoap..."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:493
+msgid "Request method not accepted"
+msgstr ""
+
+#: airtime_mvc/application/controllers/DashboardController.php:35
+#: airtime_mvc/application/controllers/DashboardController.php:84
+msgid "You don't have permission to disconnect source."
+msgstr ""
+
+#: airtime_mvc/application/controllers/DashboardController.php:37
+#: airtime_mvc/application/controllers/DashboardController.php:86
+msgid "There is no source connected to this input."
+msgstr ""
+
+#: airtime_mvc/application/controllers/DashboardController.php:81
+msgid "You don't have permission to switch source."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:43
+msgid "Please enter your username and password."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:93
+msgid "Wrong username or password provided. Please try again."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:167
+msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:173
+msgid "There was a problem with the username or email address you entered."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ApiController.php:244
+#: airtime_mvc/application/controllers/ApiController.php:317
+#: airtime_mvc/application/controllers/ApiController.php:392
+#: airtime_mvc/application/controllers/ApiController.php:435
+#: airtime_mvc/application/controllers/ApiController.php:474
+#: airtime_mvc/application/controllers/ApiController.php:507
+msgid "You are not allowed to access this resource. "
+msgstr ""
+
+#: airtime_mvc/application/controllers/ApiController.php:698
+#: airtime_mvc/application/controllers/ApiController.php:718
+#: airtime_mvc/application/controllers/ApiController.php:730
#, php-format
-msgid "The show %s is over and cannot be scheduled."
+msgid "File does not exist in %s"
msgstr ""
-#: airtime_mvc/application/models/Scheduler.php:159
-#, php-format
-msgid "The show %s has been previously updated!"
+#: airtime_mvc/application/controllers/ApiController.php:781
+msgid "Bad request. no 'mode' parameter passed."
msgstr ""
-#: airtime_mvc/application/models/Scheduler.php:178
-msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:195
-msgid "Cannot schedule a playlist that contains missing files."
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:216
-#: airtime_mvc/application/models/Scheduler.php:305
-msgid "A selected File does not exist!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
-#: airtime_mvc/application/configs/navigation.php:40
-msgid "Weekly Schedule"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
-#: airtime_mvc/application/forms/Player.php:77
-msgid "Preview:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
-#: airtime_mvc/application/configs/navigation.php:34
-msgid "Player"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
-#: airtime_mvc/application/controllers/LocaleController.php:362
-#: airtime_mvc/application/controllers/LocaleController.php:390
-msgid "Close"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Add this show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Update show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
-msgid "What"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
-msgid "When"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
-msgid "Live Stream Input"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
-msgid "Who"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
-msgid "Style"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
-#: airtime_mvc/application/controllers/LocaleController.php:273
-msgid "Start"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
-msgid "Password Reset"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
-msgid "Email Sent!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
-msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
-msgid "Back"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
-msgid "New password"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
-msgid "Please enter and confirm your new password in the fields below."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:3
-#: airtime_mvc/application/forms/Login.php:83
-msgid "Login"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:7
-#, php-format
-msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:97
-msgid "Playout History"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
-msgid "Log Sheet"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
-msgid "File Summary"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
-msgid "Show Summary"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
-msgid "Your trial expires in"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
-msgid "days"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-#, php-format
-msgid "Purchase an %s Pro plan!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-msgid "My Account"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
-msgid "Previous:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
-msgid "Next:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
-msgid "Source Streams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
-msgid "Master Source"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
-msgid "Show Source"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
-msgid "ON AIR"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
-msgid "Listen"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
-msgid "Logout"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
-msgid "Drop files here or click to browse your computer."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
-#: airtime_mvc/application/controllers/LocaleController.php:314
-msgid "in use"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
-#: airtime_mvc/application/controllers/LocaleController.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:401
-msgid "All"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
-msgid "Failed"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
-msgid "Pending"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
-msgid "Recent Uploads"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
-#: airtime_mvc/application/configs/navigation.php:120
-msgid "Account Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
-msgid "Upgrade today to get more listeners and storage space!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
-msgid "View Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
-msgid "About"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
-#, php-format
-msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
-#, php-format
-msgid "%1$s %2$s is distributed under the %3$s"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
-#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
-msgid "Live stream"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
-msgid "Share"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
-msgid "Select stream:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
-msgid "mute"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
-msgid "unmute"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
-#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
-#, php-format
-msgid "Welcome to %s!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
-#, php-format
-msgid "Here's how you can get started using %s to automate your broadcasts: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
-msgid "Upload audio tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
-msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
-msgid "Schedule a show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
-msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
-msgid "Add tracks to your show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
-msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
-msgid "Now you're good to go!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
-#, php-format
-msgid "For more detailed help, read the %suser manual%s."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
-msgid "Listeners"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
-msgid "Stream Data Collection Status"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
-#: airtime_mvc/application/views/scripts/error/error.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
-msgid "An error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
-msgid "Access Denied!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
-msgid "You do not have permission to access this page!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
-#: airtime_mvc/application/views/scripts/error/error.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
-#: airtime_mvc/application/configs/navigation.php:143
-msgid "Help"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
-msgid "Page not found!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
-msgid "We couldn't find the page you were looking for."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error.phtml:12
-msgid "Looks like the page you were looking for doesn't exist!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
-msgid "Oops!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
-msgid "Something went wrong!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
-msgid "Bad Request!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
-msgid "The requested action is not supported!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
-msgid "Viewing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
-msgid "Editing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:3
-msgid "File import in progress..."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:10
-#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
-msgid "Advanced Search Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
-#: airtime_mvc/application/forms/Player.php:15
-#: airtime_mvc/application/forms/EditAudioMD.php:24
-msgid "Title:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
-#: airtime_mvc/application/forms/EditAudioMD.php:34
-msgid "Creator:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
-#: airtime_mvc/application/forms/EditAudioMD.php:44
-msgid "Album:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
-msgid "Track:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
-msgid "Length:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
-msgid "Sample Rate:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
-msgid "Bit Rate:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
-#: airtime_mvc/application/forms/EditAudioMD.php:115
-msgid "Mood:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
-#: airtime_mvc/application/forms/EditAudioMD.php:62
-#: airtime_mvc/application/forms/AddShowWhat.php:45
-msgid "Genre:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
-#: airtime_mvc/application/forms/EditAudioMD.php:72
-msgid "Year:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
-#: airtime_mvc/application/forms/EditAudioMD.php:85
-msgid "Label:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
-#: airtime_mvc/application/forms/EditAudioMD.php:125
-msgid "BPM:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
-#: airtime_mvc/application/forms/EditAudioMD.php:95
-msgid "Composer:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
-#: airtime_mvc/application/forms/EditAudioMD.php:105
-msgid "Conductor:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
-#: airtime_mvc/application/forms/EditAudioMD.php:135
-msgid "Copyright:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
-msgid "Isrc Number:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
-#: airtime_mvc/application/forms/EditAudioMD.php:155
-msgid "Website:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
-#: airtime_mvc/application/forms/EditUser.php:119
-#: airtime_mvc/application/forms/EditAudioMD.php:165
-#: airtime_mvc/application/forms/Login.php:68
-msgid "Language:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
-msgid "File Path:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
-#: airtime_mvc/application/forms/AddShowWhat.php:26
-msgid "Name:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
-#: airtime_mvc/application/forms/AddShowWhat.php:54
-msgid "Description:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
-msgid "Web Stream"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
-msgid "Dynamic Smart Block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
-msgid "Static Smart Block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
-msgid "Audio Track"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
-msgid "Playlist Contents: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
-msgid "Static Smart Block Contents: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
-msgid "Dynamic Smart Block Criteria: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
-msgid "Limit to "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
-#: airtime_mvc/application/forms/AddShowWhat.php:36
-msgid "URL:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/login.phtml:41
-msgid "Forgot your password?"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
-#, php-format
-msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
-#, php-format
-msgid "Click the box below to promote your station on %s."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
-msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
-msgid "(Required)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
-msgid "(for verification purposes only, will not be published)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
-msgid "Choose folder"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
-msgid "Set"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
-msgid "Current Import Folder:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
-msgid "Add"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
-#, php-format
-msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
-msgid "Remove watched directory"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
-msgid "You are not watching any media folders."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
-msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
-msgid "Live Broadcasting"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
-msgid "Use these settings in your broadcasting software to stream live at any time."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
-msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
-msgid "Choose Show Instance"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
-#: airtime_mvc/application/forms/EditHistoryItem.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:400
-msgid "No Show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
-msgid "Find"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
-msgid "Choose Days:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
-#: airtime_mvc/application/forms/AddShowStyle.php:64
-#: airtime_mvc/application/forms/GeneralPreferences.php:53
-msgid "Remove"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
-msgid "Stream "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
-msgid "Additional Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
-msgid "The following info will be displayed to listeners in their media player:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
-msgid "(Your radio station website)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
-msgid "Stream URL: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
-msgid "Find Shows"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
-msgid "TuneIn Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
-msgid "SoundCloud Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
-msgid "Dangerous Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
-msgid "Search Criteria:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
-msgid "New Criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
-msgid "or"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
-msgid "and"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
-msgid "New Modifier"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
-msgid " to "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
-msgid "files meet the criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
-msgid "file meets the criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
-msgid "Filter History"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
-#: airtime_mvc/application/configs/navigation.php:61
-msgid "My Profile"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
-#, php-format
-msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
-#: airtime_mvc/application/forms/Preferences.php:40
-#: airtime_mvc/application/forms/PasswordChange.php:43
-#: airtime_mvc/application/forms/AddUser.php:110
-#: airtime_mvc/application/forms/BillingClient.php:193
-#: airtime_mvc/application/forms/SupportSettings.php:131
-#: airtime_mvc/application/forms/EditHistory.php:131
-#: airtime_mvc/application/controllers/LocaleController.php:294
-msgid "Save"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
-msgid "Repeat Days:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
-msgid "Register Airtime"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
-#: airtime_mvc/application/forms/GeneralPreferences.php:43
-msgid "Note: Anything larger than 600x600 will be resized."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
-msgid "Show me what I am sending "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
-msgid "Terms and Conditions"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
-msgid "Creating File Summary Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
-msgid "Creating Log Sheet Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
-msgid "Name"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
-msgid "Add more elements"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
-msgid "Add New Field"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
-msgid "Set Default Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
-msgid "Playout History Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
-msgid "Log Sheet Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
-msgid "New Log Sheet Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
-msgid "No Log Sheet Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
-#: airtime_mvc/application/controllers/LocaleController.php:397
-msgid "Set Default"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
-msgid "File Summary Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
-msgid "New File Summary Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
-msgid "No File Summary Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
-msgid "Disk Space"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
-#: airtime_mvc/application/controllers/LocaleController.php:315
-msgid "Disk"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
-#: airtime_mvc/application/forms/AddShowWhen.php:89
-msgid "Duration:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
-msgid "Toggle Details"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
-msgid "Playlist crossfade"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-msgid "Remove all content from this smart block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Clear"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "Fade in: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "(ss.t)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-msgid "Fade out: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
-#: airtime_mvc/application/forms/EditAudioMD.php:186
-#: airtime_mvc/application/forms/EditHistory.php:141
-#: airtime_mvc/application/controllers/LocaleController.php:295
-#: airtime_mvc/application/controllers/LocaleController.php:318
-msgid "Cancel"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
-msgid "No smart block currently open"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
-msgid "Show Waveform"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-msgid "Cue In: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "(hh:mm:ss.t)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "Cue Out: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
-msgid "Original Length:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
-msgid "Expand Static Block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
-msgid "Expand Dynamic Block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
-msgid "Choose some search criteria above and click Generate to create this playlist."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
-msgid "A track list will be generated when you schedule this smart block into a show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
-msgid "Drag tracks here from your library to add them to the playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-msgid "Shuffle playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
-msgid "Shuffle"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Empty playlist content"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-msgid "Save playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
-msgid "No open playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
-msgid "previous"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
-msgid "play"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
-msgid "pause"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
-msgid "next"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
-msgid "stop"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
-msgid "max volume"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
-msgid "Update Required"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
-#, php-format
-msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
-msgid "Stream Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
-msgid "Global"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
-msgid "dB"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
-msgid "Output Streams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
-#: airtime_mvc/application/controllers/LocaleController.php:166
-msgid "Manage Media Folders"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:56
-msgid "General"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
-msgid "Description"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
-msgid "Stream URL:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
-msgid "Default Length:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
-msgid "No webstream"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
-msgid "Manage Users"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
-msgid "New User"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
-msgid "id"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
-#: airtime_mvc/application/forms/PasswordRestore.php:25
-msgid "Username"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
-msgid "First Name"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
-msgid "Last Name"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
-msgid "User Type"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
-#, php-format
-msgid "Super Admin details can be changed in your Billing Settings."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
-#: airtime_mvc/application/controllers/LocaleController.php:74
-#: airtime_mvc/application/layouts/scripts/layout.phtml:78
-msgid "Tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
-#: airtime_mvc/application/controllers/LocaleController.php:104
-#: airtime_mvc/application/layouts/scripts/layout.phtml:80
-msgid "Playlists"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
-#: airtime_mvc/application/controllers/LocaleController.php:105
-#: airtime_mvc/application/layouts/scripts/layout.phtml:82
-msgid "Smart Blocks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
-#: airtime_mvc/application/layouts/scripts/layout.phtml:84
-msgid "Webstreams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
-#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
-#: airtime_mvc/application/layouts/scripts/layout.phtml:76
-msgid "Dashboard"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:12
-msgid "Radio Page"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:19
-msgid "Calendar"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:26
-msgid "Widgets"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:48
-msgid "Settings"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:67
-msgid "Users"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:74
-msgid "Streams"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:82
-msgid "Analytics"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:90
-msgid "Listener Stats"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:104
-msgid "History Templates"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:113
-msgid "Billing"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:127
-msgid "Account Details"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:134
-msgid "View Invoices"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:150
-msgid "Getting Started"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:157
-msgid "FAQ"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:162
-msgid "User Manual"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:167
-msgid "File a Support Ticket"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:12
-msgid "Background Colour:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:31
-msgid "Text Colour:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:49
-msgid "Current Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:72
-msgid "Show Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:87
-msgid "Logo Preview:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:19
-msgid "Push metadata to your station on TuneIn?"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:24
-msgid "Station ID:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:30
-msgid "Partner Key:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:36
-msgid "Partner Id:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:77
-#: airtime_mvc/application/forms/TuneInPreferences.php:86
-msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:14
-msgid "Now Playing"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:25
-msgid "Select Stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:28
-msgid "Auto detect the most appropriate stream to use."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:29
-msgid "Select a stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:41
-msgid " - Mobile friendly"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:45
-msgid " - The player does not support Opus streams."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:71
-msgid "Embeddable code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:72
-msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:37
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
-#: airtime_mvc/application/forms/Login.php:41
-#: airtime_mvc/application/forms/AddUser.php:29
-msgid "Username:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:48
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
-#: airtime_mvc/application/forms/Login.php:54
-#: airtime_mvc/application/forms/AddUser.php:38
-#: airtime_mvc/application/forms/BillingClient.php:172
-msgid "Password:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:57
-#: airtime_mvc/application/forms/AddUser.php:46
-#: airtime_mvc/application/forms/BillingClient.php:181
-msgid "Verify Password:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:67
-#: airtime_mvc/application/forms/AddUser.php:55
-msgid "Firstname:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:75
-#: airtime_mvc/application/forms/AddUser.php:61
-msgid "Lastname:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:83
-#: airtime_mvc/application/forms/RegisterAirtime.php:51
-#: airtime_mvc/application/forms/AddUser.php:67
-#: airtime_mvc/application/forms/SupportSettings.php:43
-msgid "Email:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:94
-#: airtime_mvc/application/forms/AddUser.php:76
-msgid "Mobile Phone:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:102
-#: airtime_mvc/application/forms/AddUser.php:82
-msgid "Skype:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:110
-#: airtime_mvc/application/forms/AddUser.php:88
-msgid "Jabber:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:129
-msgid "Interface Timezone:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:155
-#: airtime_mvc/application/forms/AddUser.php:120
-msgid "Login name is not unique."
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRR.php:10
-msgid "Record from Line In?"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRR.php:16
-msgid "Rebroadcast?"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:16
-msgid "'%value%' does not fit the time format 'HH:mm'"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:22
-msgid "Start Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:37
-msgid "In the Future:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:64
-msgid "End Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:98
-msgid "Timezone:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:107
-msgid "Repeats?"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:139
-msgid "Cannot create show in the past"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:147
-msgid "Cannot modify start date/time of the show that is already started"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:164
-msgid "Cannot have duration < 0m"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:168
-msgid "Cannot have duration 00h 00m"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:175
-msgid "Cannot have duration greater than 24h"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWho.php:10
-msgid "Search Users:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWho.php:24
-msgid "DJs:"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordChange.php:17
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
-msgid "Password"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordChange.php:28
-msgid "Confirm new password"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordChange.php:36
-msgid "Password confirmation does not match your password."
-msgstr ""
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
-msgid "Station Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
-#: airtime_mvc/application/forms/GeneralPreferences.php:127
-msgid "Station Timezone"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
-msgid "Auto Switch Off:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
-msgid "Auto Switch On:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
-msgid "Switch Transition Fade (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
-#: airtime_mvc/application/forms/GeneralPreferences.php:68
-#: airtime_mvc/application/forms/GeneralPreferences.php:82
-#: airtime_mvc/application/forms/GeneralPreferences.php:96
-msgid "Please enter a time in seconds (eg. 0.5)"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
-#: airtime_mvc/application/forms/AddShowLiveStream.php:48
-msgid "Host:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
-#: airtime_mvc/application/forms/AddShowLiveStream.php:54
-msgid "Port:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
-#: airtime_mvc/application/forms/AddShowLiveStream.php:60
-msgid "Mount:"
-msgstr ""
-
-#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
-msgid "Value is required and can't be empty"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:25
-#: airtime_mvc/application/forms/RegisterAirtime.php:30
-#: airtime_mvc/application/forms/SupportSettings.php:18
-msgid "Station Name"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:33
-msgid "Station Description"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:42
-#: airtime_mvc/application/forms/RegisterAirtime.php:106
-msgid "Station Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:62
-msgid "Default Crossfade Duration (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:76
-msgid "Default Fade In (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:90
-msgid "Default Fade Out (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:102
-msgid "Public Airtime API"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:103
-msgid "Required for embeddable schedule widget."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:105
-msgid "Disabled"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:106
-msgid "Enabled"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:109
-msgid ""
-"Enabling this feature will allow Airtime to provide schedule data\n"
-" to external widgets that can be embedded in your website."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:120
-msgid "Default Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:134
-msgid "Week Starts On"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:150
-msgid "Display login button on your Radio Page?"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:158
-#: airtime_mvc/application/controllers/LocaleController.php:249
-msgid "Sunday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:159
-#: airtime_mvc/application/controllers/LocaleController.php:250
-msgid "Monday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:160
-#: airtime_mvc/application/controllers/LocaleController.php:251
-msgid "Tuesday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:161
-#: airtime_mvc/application/controllers/LocaleController.php:252
-msgid "Wednesday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:162
-#: airtime_mvc/application/controllers/LocaleController.php:253
-msgid "Thursday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:163
-#: airtime_mvc/application/controllers/LocaleController.php:254
-msgid "Friday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:164
-#: airtime_mvc/application/controllers/LocaleController.php:255
-msgid "Saturday"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
-msgid "Default License:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
-msgid "All rights are reserved"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
-msgid "The work is in the public domain"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
-msgid "Creative Commons Attribution"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
-msgid "Creative Commons Attribution Noncommercial"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
-msgid "Creative Commons Attribution No Derivative Works"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
-msgid "Creative Commons Attribution Share Alike"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
-msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
-msgid "Creative Commons Attribution Noncommercial Share Alike"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
-msgid "Default Sharing Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
-msgid "Public"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
-msgid "Private"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:18
-#: airtime_mvc/application/forms/DateRange.php:16
-msgid "Date Start:"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:37
-#: airtime_mvc/application/forms/ShowBuilder.php:65
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
-#: airtime_mvc/application/forms/DateRange.php:35
-#: airtime_mvc/application/forms/DateRange.php:63
-msgid "Invalid character entered"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:46
-#: airtime_mvc/application/forms/AddShowRepeats.php:56
-#: airtime_mvc/application/forms/DateRange.php:44
-msgid "Date End:"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:72
-#: airtime_mvc/application/forms/ShowBuilder.php:88
-msgid "Filter by Show"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:80
-msgid "All My Shows:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditAudioMD.php:145
-msgid "ISRC Number:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditAudioMD.php:176
-msgid "OK"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
-msgid "Day must be specified"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
-msgid "Time must be specified"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
-msgid "Must wait at least 1 hour to rebroadcast"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhat.php:30
-msgid "Untitled Show"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhat.php:69
-msgid "Instance Description:"
-msgstr ""
-
-#: airtime_mvc/application/forms/DangerousPreferences.php:12
-msgid "Delete All Tracks in Library"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:39
-#: airtime_mvc/application/forms/SupportSettings.php:31
-msgid "Phone:"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:62
-#: airtime_mvc/application/forms/SupportSettings.php:54
-msgid "Station Web Site:"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:73
-#: airtime_mvc/application/forms/BillingClient.php:102
-#: airtime_mvc/application/forms/SupportSettings.php:65
-msgid "Country:"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:84
-#: airtime_mvc/application/forms/BillingClient.php:70
-#: airtime_mvc/application/forms/SupportSettings.php:76
-msgid "City:"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:96
-#: airtime_mvc/application/forms/SupportSettings.php:88
-msgid "Station Description:"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:116
-#: airtime_mvc/application/forms/SupportSettings.php:98
-#: airtime_mvc/application/controllers/LocaleController.php:341
-msgid "Send support feedback"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:126
-#: airtime_mvc/application/forms/SupportSettings.php:108
-#, php-format
-msgid "Promote my station on %s"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:151
-#: airtime_mvc/application/forms/SupportSettings.php:120
-#, php-format
-msgid "By checking this box, I agree to %s's %sprivacy policy%s."
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:169
-#: airtime_mvc/application/forms/SupportSettings.php:143
-msgid "You have to agree to privacy policy."
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:10
-msgid "Link:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:16
-msgid "Repeat Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:19
-msgid "weekly"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:20
-msgid "every 2 weeks"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:21
-msgid "every 3 weeks"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:22
-msgid "every 4 weeks"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:23
-msgid "monthly"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:32
-msgid "Select Days:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:35
-#: airtime_mvc/application/controllers/LocaleController.php:256
-msgid "Sun"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:36
-#: airtime_mvc/application/controllers/LocaleController.php:257
-msgid "Mon"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:37
-#: airtime_mvc/application/controllers/LocaleController.php:258
-msgid "Tue"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:38
-#: airtime_mvc/application/controllers/LocaleController.php:259
-msgid "Wed"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:39
-#: airtime_mvc/application/controllers/LocaleController.php:260
-msgid "Thu"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:40
-#: airtime_mvc/application/controllers/LocaleController.php:261
-msgid "Fri"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:41
-#: airtime_mvc/application/controllers/LocaleController.php:262
-msgid "Sat"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:47
-msgid "Repeat By:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the month"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the week"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:69
-msgid "No End?"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:106
-msgid "End date must be after start date"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:113
-msgid "Please select a repeat day"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:10
-#, php-format
-msgid "Use %s Authentication:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:16
-msgid "Use Custom Authentication:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:25
-msgid "Custom Username"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:37
-msgid "Custom Password"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:77
-msgid "Username field cannot be empty."
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:82
-msgid "Password field cannot be empty."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
-msgid "Enabled:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
-msgid "Mobile:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
-msgid "Stream Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
-msgid "Service Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
-msgid "Channels:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "1 - Mono"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "2 - Stereo"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
-msgid "Server"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
-msgid "Port"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
-msgid "Only numbers are allowed."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
-msgid "URL"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
-msgid "Mount Point"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
-msgid "Admin User"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
-msgid "Admin Password"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
-#: airtime_mvc/application/controllers/LocaleController.php:173
-msgid "Getting information from the server..."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
-msgid "Server cannot be empty."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
-msgid "Port cannot be empty."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
-msgid "Mount cannot be empty with Icecast server."
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
-msgid "'%value%' is no valid email address in the basic format local-part@hostname"
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
-msgid "'%value%' does not fit the date format '%format%'"
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
-msgid "'%value%' is less than %min% characters long"
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
-msgid "'%value%' is more than %max% characters long"
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
-msgid "'%value%' is not between '%min%' and '%max%', inclusively"
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
-msgid "Passwords do not match"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
-msgid "hours"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
-msgid "minutes"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
-msgid "Randomly"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
-msgid "Newest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
-msgid "Oldest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
-msgid "Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
-msgid "Static"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
-msgid "Dynamic"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
-msgid "Allow Repeated Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
-msgid "Sort Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
-msgid "Limit to:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
-msgid "Generate playlist content and save criteria"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
-msgid "Generate"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
-msgid "Shuffle playlist content"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
-msgid "Limit cannot be empty or smaller than 0"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
-msgid "Limit cannot be more than 24 hrs"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
-msgid "The value should be an integer"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
-msgid "500 is the max item limit value you can set"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
-msgid "You must select Criteria and Modifier"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
-msgid "'Length' should be in '00:00:00' format"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
-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:594
-msgid "The value has to be numeric"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
-msgid "The value should be less then 2147483648"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
-#, php-format
-msgid "The value should be less than %s characters"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
-msgid "Value cannot be empty"
-msgstr ""
-
-#: airtime_mvc/application/forms/Login.php:102
-msgid "Type the characters you see in the picture below."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:26
-msgid "Icecast Vorbis Metadata"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:36
-msgid "Stream Label:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:37
-msgid "Artist - Title"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:38
-msgid "Show - Artist - Title"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:39
-msgid "Station name - Show name"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:45
-msgid "Off Air Metadata"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:51
-msgid "Enable Replay Gain"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:57
-msgid "Replay Gain Modifier"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:65
-msgid "Streaming Server:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Airtime Pro Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Custom / 3rd Party Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:95
-msgid "User Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:99
-#: airtime_mvc/application/controllers/LocaleController.php:324
-msgid "Guest"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:100
-#: airtime_mvc/application/controllers/LocaleController.php:322
-msgid "DJ"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:101
-#: airtime_mvc/application/controllers/LocaleController.php:323
-msgid "Program Manager"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:321
-msgid "Admin"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:17
-msgid "First Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:26
-msgid "Last Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:35
-msgid "Company Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:44
-msgid "Email Address:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:54
-msgid "Address 1:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:63
-msgid "Address 2:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:80
-msgid "State/Region:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:89
-msgid "Zip Code / Postal Code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:112
-msgid "Phone Number:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:121
-msgid "Please choose a security question:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:126
-msgid "What is the name of your favorite childhood friend?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:127
-msgid "What school did you attend for sixth grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:128
-msgid "In what city did you meet your spouse/significant other?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:129
-msgid "What street did you live on in third grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:130
-msgid "What is the first name of the boy or girl that you first kissed?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:131
-msgid "In what city or town was your first job?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:135
-msgid "Please enter an answer:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:152
-msgid "VAT/Tax ID (EU only)"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:162
-msgid "Subscribe to Sourcefabric newsletter"
-msgstr ""
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
-msgid "Import Folder:"
-msgstr ""
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
-msgid "Watched Folders:"
-msgstr ""
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
-msgid "Not a valid Directory"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordRestore.php:14
-msgid "Email"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordRestore.php:36
-msgid "Reset password"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
-msgid "Plan type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
-msgid "Billing cycle:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
-msgid "Payment method:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
-msgid "PayPal"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
-msgid "Credit Card via 2Checkout"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:213
-#, php-format
-msgid "The year %s must be within the range of 1753 - 9999"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:216
-#, php-format
-msgid "%s-%s-%s is not a valid date"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:240
-#, php-format
-msgid "%s:%s:%s is not a valid time"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:55
-msgid "Upload some tracks below to add them to your library!"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:57
-#, php-format
-msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:63
-msgid "Click the 'New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:65
-#, php-format
-msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:73
-msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:75
-#, php-format
-msgid ""
-"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
-" %sCreate an unlinked show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:80
-msgid "To start broadcasting, click on the current show and select 'Schedule Show'"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:82
-#, php-format
-msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:89
-msgid "Click on the show starting next and select 'Schedule Show'"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:91
-#, php-format
-msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+#: airtime_mvc/application/controllers/ApiController.php:791
+msgid "Bad request. 'mode' parameter is invalid"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:30
@@ -2905,11 +558,6 @@ msgstr ""
msgid "You can only add tracks to smart blocks."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:50
-#: airtime_mvc/application/controllers/PlaylistController.php:180
-msgid "You can only add tracks, smart blocks, and webstreams to playlists."
-msgstr ""
-
#: airtime_mvc/application/controllers/LocaleController.php:53
msgid "Please select a cursor position on timeline."
msgstr ""
@@ -2950,11 +598,6 @@ msgstr ""
msgid "Click 'New' to create one."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:66
-#: airtime_mvc/application/controllers/LibraryController.php:123
-msgid "Edit Metadata"
-msgstr ""
-
#: airtime_mvc/application/controllers/LocaleController.php:67
msgid "Add to selected show"
msgstr ""
@@ -2983,6 +626,12 @@ msgstr ""
msgid "Scheduled"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:74
+#: airtime_mvc/application/layouts/scripts/layout.phtml:78
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
+msgid "Tracks"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:75
#: airtime_mvc/application/layouts/scripts/layout.phtml:60
msgid "Playlist"
@@ -2992,18 +641,96 @@ msgstr ""
msgid "Bit Rate"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:80
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
+#: airtime_mvc/application/models/Block.php:1354
+msgid "BPM"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:84
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
+#: airtime_mvc/application/models/Block.php:1361
+msgid "Encoded By"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:89
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
+#: airtime_mvc/application/models/Block.php:1367
+msgid "Last Modified"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:90
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
+#: airtime_mvc/application/models/Block.php:1368
+msgid "Last Played"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
+#: airtime_mvc/application/models/Block.php:1370
+msgid "Mime"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:94
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
+#: airtime_mvc/application/models/Block.php:1372
+msgid "Owner"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:95
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
+#: airtime_mvc/application/models/Block.php:1373
+msgid "Replay Gain"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:96
msgid "Sample Rate"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:97
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
+#: airtime_mvc/application/models/Block.php:1376
+msgid "Track Number"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:98
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
+#: airtime_mvc/application/models/Block.php:1377
+msgid "Uploaded"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:99
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
+#: airtime_mvc/application/models/Block.php:1378
+msgid "Website"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:101
msgid "Loading..."
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:102
+#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
+msgid "All"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:103
msgid "Files"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:104
+#: airtime_mvc/application/layouts/scripts/layout.phtml:80
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
+msgid "Playlists"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:105
+#: airtime_mvc/application/layouts/scripts/layout.phtml:82
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
+msgid "Smart Blocks"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:106
msgid "Web Streams"
msgstr ""
@@ -3148,6 +875,74 @@ msgstr ""
msgid "Processing..."
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:151
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
+#: airtime_mvc/application/models/Block.php:1383
+msgid "Select modifier"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:152
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
+#: airtime_mvc/application/models/Block.php:1384
+msgid "contains"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:153
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
+#: airtime_mvc/application/models/Block.php:1385
+msgid "does not contain"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:154
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
+#: airtime_mvc/application/models/Block.php:1386
+#: airtime_mvc/application/models/Block.php:1390
+msgid "is"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:155
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
+#: airtime_mvc/application/models/Block.php:1387
+#: airtime_mvc/application/models/Block.php:1391
+msgid "is not"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:156
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
+#: airtime_mvc/application/models/Block.php:1388
+msgid "starts with"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:157
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
+#: airtime_mvc/application/models/Block.php:1389
+msgid "ends with"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:158
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
+#: airtime_mvc/application/models/Block.php:1392
+msgid "is greater than"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:159
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
+#: airtime_mvc/application/models/Block.php:1393
+msgid "is less than"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:160
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
+#: airtime_mvc/application/models/Block.php:1394
+msgid "is in the range"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:162
msgid "Choose Storage Folder"
msgstr ""
@@ -3162,6 +957,11 @@ msgid ""
"This will remove the files from your Airtime library!"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:166
+#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
+msgid "Manage Media Folders"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:167
msgid "Are you sure you want to remove the watched folder?"
msgstr ""
@@ -3183,6 +983,11 @@ msgstr ""
msgid "The stream is disabled"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:173
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
+msgid "Getting information from the server..."
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:174
msgid "Can not connect to the streaming server"
msgstr ""
@@ -3410,6 +1215,76 @@ msgstr ""
msgid "Month"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:249
+#: airtime_mvc/application/forms/GeneralPreferences.php:158
+msgid "Sunday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:250
+#: airtime_mvc/application/forms/GeneralPreferences.php:159
+msgid "Monday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:251
+#: airtime_mvc/application/forms/GeneralPreferences.php:160
+msgid "Tuesday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:252
+#: airtime_mvc/application/forms/GeneralPreferences.php:161
+msgid "Wednesday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:253
+#: airtime_mvc/application/forms/GeneralPreferences.php:162
+msgid "Thursday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:254
+#: airtime_mvc/application/forms/GeneralPreferences.php:163
+msgid "Friday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:255
+#: airtime_mvc/application/forms/GeneralPreferences.php:164
+msgid "Saturday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:256
+#: airtime_mvc/application/forms/AddShowRepeats.php:35
+msgid "Sun"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:257
+#: airtime_mvc/application/forms/AddShowRepeats.php:36
+msgid "Mon"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:258
+#: airtime_mvc/application/forms/AddShowRepeats.php:37
+msgid "Tue"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:259
+#: airtime_mvc/application/forms/AddShowRepeats.php:38
+msgid "Wed"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:260
+#: airtime_mvc/application/forms/AddShowRepeats.php:39
+msgid "Thu"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:261
+#: airtime_mvc/application/forms/AddShowRepeats.php:40
+msgid "Fri"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:262
+#: airtime_mvc/application/forms/AddShowRepeats.php:41
+msgid "Sat"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:263
msgid "Shows longer than their scheduled time will be cut off by a following show."
msgstr ""
@@ -3419,7 +1294,7 @@ msgid "Cancel Current Show?"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:265
-#: airtime_mvc/application/controllers/LocaleController.php:309
+#: airtime_mvc/application/controllers/LocaleController.php:312
msgid "Stop recording current show?"
msgstr ""
@@ -3439,6 +1314,11 @@ msgstr ""
msgid "Delete selected item(s)?"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:273
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
+msgid "Start"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:274
msgid "End"
msgstr ""
@@ -3447,580 +1327,467 @@ msgstr ""
msgid "Duration"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:283
+#: airtime_mvc/application/controllers/LocaleController.php:276
+msgid "Filtering out "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:277
+msgid " of "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:278
+msgid " records"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/layouts/scripts/layout.phtml:140
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
+#: airtime_mvc/application/models/Block.php:1358
+msgid "Cue In"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/layouts/scripts/layout.phtml:147
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
+#: airtime_mvc/application/models/Block.php:1359
+msgid "Cue Out"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:286
#: airtime_mvc/application/layouts/scripts/layout.phtml:167
msgid "Fade In"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/controllers/LocaleController.php:287
#: airtime_mvc/application/layouts/scripts/layout.phtml:168
msgid "Fade Out"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/controllers/LocaleController.php:288
msgid "Show Empty"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:286
+#: airtime_mvc/application/controllers/LocaleController.php:289
msgid "Recording From Line In"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:287
+#: airtime_mvc/application/controllers/LocaleController.php:290
msgid "Track preview"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:291
+#: airtime_mvc/application/controllers/LocaleController.php:294
msgid "Cannot schedule outside a show."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:292
+#: airtime_mvc/application/controllers/LocaleController.php:295
msgid "Moving 1 Item"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:293
+#: airtime_mvc/application/controllers/LocaleController.php:296
#, php-format
msgid "Moving %s Items"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:296
-msgid "Fade Editor"
-msgstr ""
-
#: airtime_mvc/application/controllers/LocaleController.php:297
-msgid "Cue Editor"
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
+#: airtime_mvc/application/forms/Preferences.php:40
+#: airtime_mvc/application/forms/EditHistory.php:131
+#: airtime_mvc/application/forms/AddUser.php:110
+#: airtime_mvc/application/forms/PasswordChange.php:43
+#: airtime_mvc/application/forms/SupportSettings.php:131
+msgid "Save"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:298
-msgid "Waveform features are available in a browser supporting the Web Audio API"
+#: airtime_mvc/application/controllers/LocaleController.php:321
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
+#: airtime_mvc/application/forms/EditHistory.php:141
+#: airtime_mvc/application/forms/EditAudioMD.php:186
+msgid "Cancel"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:299
+msgid "Fade Editor"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:300
+msgid "Cue Editor"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:301
-msgid "Select all"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LocaleController.php:302
-msgid "Select none"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LocaleController.php:303
-msgid "Trim overbooked shows"
+msgid "Waveform features are available in a browser supporting the Web Audio API"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:304
-msgid "Remove selected scheduled items"
+msgid "Select all"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:305
-msgid "Jump to the current playing track"
+msgid "Select none"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:306
+msgid "Trim overbooked shows"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:307
+msgid "Remove selected scheduled items"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:308
+msgid "Jump to the current playing track"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:309
msgid "Cancel current show"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:311
+#: airtime_mvc/application/controllers/LocaleController.php:314
msgid "Open library to add or remove content"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:312
+#: airtime_mvc/application/controllers/LocaleController.php:315
msgid "Add / Remove Content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:317
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
+msgid "in use"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:318
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
+msgid "Disk"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:320
msgid "Look in"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:319
+#: airtime_mvc/application/controllers/LocaleController.php:322
msgid "Open"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:324
+#: airtime_mvc/application/forms/AddUser.php:102
+msgid "Admin"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:325
-msgid "Guests can do the following:"
+#: airtime_mvc/application/forms/AddUser.php:100
+msgid "DJ"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:326
-msgid "View schedule"
+#: airtime_mvc/application/forms/AddUser.php:101
+msgid "Program Manager"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:327
-msgid "View show content"
+#: airtime_mvc/application/forms/AddUser.php:99
+msgid "Guest"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:328
-msgid "DJs can do the following:"
+msgid "Guests can do the following:"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:329
-msgid "Manage assigned show content"
+msgid "View schedule"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:330
-msgid "Import media files"
+msgid "View show content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:331
-msgid "Create playlists, smart blocks, and webstreams"
+msgid "DJs can do the following:"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:332
-msgid "Manage their own library content"
+msgid "Manage assigned show content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:333
-msgid "Progam Managers can do the following:"
+msgid "Import media files"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:334
-msgid "View and manage show content"
+msgid "Create playlists, smart blocks, and webstreams"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:335
-msgid "Schedule shows"
+msgid "Manage their own library content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:336
-msgid "Manage all library content"
+msgid "Progam Managers can do the following:"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:337
-msgid "Admins can do the following:"
+msgid "View and manage show content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:338
-msgid "Manage preferences"
+msgid "Schedule shows"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:339
-msgid "Manage users"
+msgid "Manage all library content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:340
-msgid "Manage watched folders"
+msgid "Admins can do the following:"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:341
+msgid "Manage preferences"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:342
-msgid "View system status"
+msgid "Manage users"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:343
-msgid "Access playout history"
+msgid "Manage watched folders"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:344
-msgid "View listener stats"
+#: airtime_mvc/application/forms/RegisterAirtime.php:116
+#: airtime_mvc/application/forms/SupportSettings.php:98
+msgid "Send support feedback"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:345
+msgid "View system status"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:346
-msgid "Show / hide columns"
+msgid "Access playout history"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:348
-msgid "From {from} to {to}"
+#: airtime_mvc/application/controllers/LocaleController.php:347
+msgid "View listener stats"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:349
-msgid "kbps"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LocaleController.php:350
-msgid "yyyy-mm-dd"
+msgid "Show / hide columns"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:351
-msgid "hh:mm:ss.t"
+msgid "From {from} to {to}"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:352
-msgid "kHz"
+msgid "kbps"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:353
+msgid "yyyy-mm-dd"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:354
+msgid "hh:mm:ss.t"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:355
-msgid "Su"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LocaleController.php:356
-msgid "Mo"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LocaleController.php:357
-msgid "Tu"
+msgid "kHz"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:358
-msgid "We"
+msgid "Su"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:359
-msgid "Th"
+msgid "Mo"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:360
-msgid "Fr"
+msgid "Tu"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:361
-msgid "Sa"
+msgid "We"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:362
+msgid "Th"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:363
+msgid "Fr"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:364
-msgid "Hour"
+msgid "Sa"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
+msgid "Close"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:367
+msgid "Hour"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:368
msgid "Minute"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:366
+#: airtime_mvc/application/controllers/LocaleController.php:369
msgid "Done"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:369
+#: airtime_mvc/application/controllers/LocaleController.php:372
msgid "Select files"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:370
-#: airtime_mvc/application/controllers/LocaleController.php:371
+#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:374
msgid "Add files to the upload queue and click the start button."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:372
-#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:376
msgid "Status"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:374
+#: airtime_mvc/application/controllers/LocaleController.php:377
msgid "Add Files"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:378
msgid "Stop Upload"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:376
+#: airtime_mvc/application/controllers/LocaleController.php:379
msgid "Start upload"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:377
+#: airtime_mvc/application/controllers/LocaleController.php:380
msgid "Add files"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:378
+#: airtime_mvc/application/controllers/LocaleController.php:381
#, php-format
msgid "Uploaded %d/%d files"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:379
+#: airtime_mvc/application/controllers/LocaleController.php:382
msgid "N/A"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:380
+#: airtime_mvc/application/controllers/LocaleController.php:383
msgid "Drag files here."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:381
+#: airtime_mvc/application/controllers/LocaleController.php:384
msgid "File extension error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:382
+#: airtime_mvc/application/controllers/LocaleController.php:385
msgid "File size error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:383
+#: airtime_mvc/application/controllers/LocaleController.php:386
msgid "File count error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:384
+#: airtime_mvc/application/controllers/LocaleController.php:387
msgid "Init error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:385
+#: airtime_mvc/application/controllers/LocaleController.php:388
msgid "HTTP Error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:386
+#: airtime_mvc/application/controllers/LocaleController.php:389
msgid "Security error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:387
+#: airtime_mvc/application/controllers/LocaleController.php:390
msgid "Generic error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:388
+#: airtime_mvc/application/controllers/LocaleController.php:391
msgid "IO error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:389
+#: airtime_mvc/application/controllers/LocaleController.php:392
#, php-format
msgid "File: %s"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:391
+#: airtime_mvc/application/controllers/LocaleController.php:394
#, php-format
msgid "%d files queued"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:392
+#: airtime_mvc/application/controllers/LocaleController.php:395
msgid "File: %f, size: %s, max file size: %m"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/controllers/LocaleController.php:396
msgid "Upload URL might be wrong or doesn't exist"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:394
+#: airtime_mvc/application/controllers/LocaleController.php:397
msgid "Error: File too large: "
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:395
+#: airtime_mvc/application/controllers/LocaleController.php:398
msgid "Error: Invalid file extension: "
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:398
+#: airtime_mvc/application/controllers/LocaleController.php:400
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
+msgid "Set Default"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:401
msgid "Create Entry"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:399
+#: airtime_mvc/application/controllers/LocaleController.php:402
msgid "Edit History Record"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:402
+#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
+#: airtime_mvc/application/forms/EditHistoryItem.php:57
+msgid "No Show"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:405
#, php-format
msgid "Copied %s row%s to the clipboard"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/controllers/LocaleController.php:406
#, php-format
msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/controllers/LocaleController.php:407
msgid "New Show"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:405
+#: airtime_mvc/application/controllers/LocaleController.php:408
msgid "New Log Entry"
msgstr ""
-#: airtime_mvc/application/controllers/ScheduleController.php:389
-#, php-format
-msgid "Rebroadcast of show %s from %s at %s"
-msgstr ""
-
-#: airtime_mvc/application/controllers/ScheduleController.php:712
-#: airtime_mvc/application/controllers/LibraryController.php:131
-msgid "Download"
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:78
-msgid "Page not found."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:87
-msgid "The requested action is not supported."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:98
-msgid "You do not have permission to access this resource."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:109
-msgid "An internal application error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ListenerstatController.php:51
-msgid "Please make sure admin user/password is correct on System->Streams page."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:53
-#, php-format
-msgid "You are viewing an older version of %s"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:140
-msgid "You cannot add tracks to dynamic blocks."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:147
-#: airtime_mvc/application/controllers/LibraryController.php:31
-#, php-format
-msgid "%s not found"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:161
-#, php-format
-msgid "You don't have permission to delete selected %s(s)."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:168
-#: airtime_mvc/application/controllers/LibraryController.php:40
-msgid "Something went wrong."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:174
-msgid "You can only add tracks to smart block."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:192
-msgid "Untitled Playlist"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:194
-msgid "Untitled Smart Block"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:522
-msgid "Unknown Playlist"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:43
-msgid "Please enter your username and password."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:93
-msgid "Wrong username or password provided. Please try again."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:167
-msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:173
-msgid "There was a problem with the username or email address you entered."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:35
-#: airtime_mvc/application/controllers/DashboardController.php:84
-msgid "You don't have permission to disconnect source."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:37
-#: airtime_mvc/application/controllers/DashboardController.php:86
-msgid "There is no source connected to this input."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:81
-msgid "You don't have permission to switch source."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:72
-msgid "Preferences updated."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:115
-msgid "Support setting updated."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:123
-msgid "Support Feedback"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:251
-msgid "Stream Setting Updated."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:342
-msgid "path should be specified"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:437
-msgid "Problem with Liquidsoap..."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:493
-msgid "Request method not accepted"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:86
-msgid "User added successfully!"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:88
-msgid "User updated successfully!"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:187
-msgid "Settings updated successfully!"
-msgstr ""
-
-#: airtime_mvc/application/controllers/WebstreamController.php:28
-#: airtime_mvc/application/controllers/WebstreamController.php:32
-msgid "Untitled Webstream"
-msgstr ""
-
-#: airtime_mvc/application/controllers/WebstreamController.php:150
-msgid "Webstream saved."
-msgstr ""
-
-#: airtime_mvc/application/controllers/WebstreamController.php:158
-msgid "Invalid form values."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:95
-#: airtime_mvc/application/controllers/ShowbuilderController.php:136
-msgid "Preview"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:115
-#: airtime_mvc/application/controllers/LibraryController.php:177
-#: airtime_mvc/application/controllers/LibraryController.php:200
-msgid "Add to Playlist"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:117
-msgid "Add to Smart Block"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:147
-msgid "View track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:148
-msgid "Remove track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:154
-#: airtime_mvc/application/controllers/LibraryController.php:159
-msgid "Upload track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:169
-msgid "Duplicate Playlist"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:213
-msgid "No action available"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:233
-msgid "You don't have permission to delete selected items."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:279
-msgid "Could not delete file because it is scheduled in the future."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:282
-msgid "Could not delete file(s)."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:322
-#, php-format
-msgid "Copy of %s"
-msgstr ""
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
-msgid ""
-"To configure and use the embeddable player you must:
\n"
-" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
-" 2. Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
-msgid ""
-"To use the embeddable weekly schedule widget you must:
\n"
-" Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
#: airtime_mvc/application/controllers/ShowbuilderController.php:138
msgid "Select cursor"
msgstr ""
@@ -4033,37 +1800,76 @@ msgstr ""
msgid "show does not exist"
msgstr ""
-#: airtime_mvc/application/controllers/ApiController.php:79
-msgid "You are not allowed to access this resource."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ApiController.php:244
-#: airtime_mvc/application/controllers/ApiController.php:317
-#: airtime_mvc/application/controllers/ApiController.php:392
-#: airtime_mvc/application/controllers/ApiController.php:435
-#: airtime_mvc/application/controllers/ApiController.php:474
-#: airtime_mvc/application/controllers/ApiController.php:507
-msgid "You are not allowed to access this resource. "
-msgstr ""
-
-#: airtime_mvc/application/controllers/ApiController.php:698
-#: airtime_mvc/application/controllers/ApiController.php:718
-#: airtime_mvc/application/controllers/ApiController.php:730
+#: airtime_mvc/application/controllers/ScheduleController.php:389
#, php-format
-msgid "File does not exist in %s"
+msgid "Rebroadcast of show %s from %s at %s"
msgstr ""
-#: airtime_mvc/application/controllers/ApiController.php:781
-msgid "Bad request. no 'mode' parameter passed."
+#: airtime_mvc/application/common/UsabilityHints.php:55
+msgid "Upload some tracks below to add them to your library!"
msgstr ""
-#: airtime_mvc/application/controllers/ApiController.php:791
-msgid "Bad request. 'mode' parameter is invalid"
-msgstr ""
-
-#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#: airtime_mvc/application/common/UsabilityHints.php:57
#, php-format
-msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:63
+msgid "Click the 'New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:65
+#, php-format
+msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:73
+msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:75
+#, php-format
+msgid ""
+"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
+" %sCreate an unlinked show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:80
+msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:82
+#, php-format
+msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:89
+msgid "Click on the show starting next and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:91
+#, php-format
+msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/DateHelper.php:213
+#, php-format
+msgid "The year %s must be within the range of 1753 - 9999"
+msgstr ""
+
+#: airtime_mvc/application/common/DateHelper.php:216
+#, php-format
+msgid "%s-%s-%s is not a valid date"
+msgstr ""
+
+#: airtime_mvc/application/common/DateHelper.php:240
+#, php-format
+msgid "%s:%s:%s is not a valid time"
+msgstr ""
+
+#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
+msgid "Live stream"
msgstr ""
#: airtime_mvc/application/layouts/scripts/layout.phtml:63
@@ -4078,6 +1884,17 @@ msgstr ""
msgid "Upload"
msgstr ""
+#: airtime_mvc/application/layouts/scripts/layout.phtml:76
+#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
+msgid "Dashboard"
+msgstr ""
+
+#: airtime_mvc/application/layouts/scripts/layout.phtml:84
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
+msgid "Webstreams"
+msgstr ""
+
#: airtime_mvc/application/layouts/scripts/layout.phtml:135
#: airtime_mvc/application/layouts/scripts/layout.phtml:161
msgid "Play"
@@ -4099,3 +1916,2124 @@ msgstr ""
#: airtime_mvc/application/layouts/scripts/layout.phtml:166
msgid "Cursor"
msgstr ""
+
+#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#, php-format
+msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
+msgid "Drop files here or click to browse your computer."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
+msgid "Failed"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
+msgid "Pending"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
+msgid "Recent Uploads"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
+msgid "Share"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
+msgid "Select stream:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
+msgid "mute"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
+msgid "unmute"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
+msgid "About"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
+#, php-format
+msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
+#, php-format
+msgid "%1$s %2$s is distributed under the %3$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
+#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
+#, php-format
+msgid "Welcome to %s!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
+#, php-format
+msgid "Here's how you can get started using %s to automate your broadcasts: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
+msgid "Upload audio tracks"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
+msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
+msgid "Schedule a show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
+msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
+msgid "Add tracks to your show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
+msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
+msgid "Now you're good to go!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
+#, php-format
+msgid "For more detailed help, read the %suser manual%s."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
+#: airtime_mvc/application/configs/navigation.php:40
+msgid "Weekly Schedule"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
+#: airtime_mvc/application/forms/Player.php:77
+msgid "Preview:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
+#: airtime_mvc/application/configs/navigation.php:34
+msgid "Player"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:97
+msgid "Playout History"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
+msgid "Log Sheet"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
+msgid "File Summary"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
+msgid "Show Summary"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
+msgid "Expand Static Block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
+msgid "Expand Dynamic Block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
+msgid "Choose some search criteria above and click Generate to create this playlist."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
+msgid "A track list will be generated when you schedule this smart block into a show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
+msgid "Drag tracks here from your library to add them to the playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
+msgid "Editing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:26
+msgid "Name:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
+#: airtime_mvc/application/forms/AddShowWhat.php:54
+msgid "Description:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
+#: airtime_mvc/application/forms/AddShowWhen.php:89
+msgid "Duration:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
+msgid "Toggle Details"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+msgid "Shuffle playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
+msgid "Shuffle"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
+msgid "Playlist crossfade"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+msgid "Empty playlist content"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Clear"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+msgid "Fade in: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "Fade out: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+msgid "Save playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
+msgid "No open playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
+msgid "Show Waveform"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "(ss.t)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Remove all content from this smart block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
+msgid "No smart block currently open"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+msgid "Cue In: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "(hh:mm:ss.t)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "Cue Out: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
+msgid "Original Length:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:56
+msgid "General"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
+msgid "Stream Settings"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
+msgid "Global"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
+msgid "dB"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
+msgid "Output Streams"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:3
+#: airtime_mvc/application/forms/Login.php:83
+msgid "Login"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:7
+#, php-format
+msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
+msgid "Email Sent!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
+msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
+msgid "Back"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
+msgid "Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
+msgid "New password"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
+msgid "Please enter and confirm your new password in the fields below."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
+msgid "Manage Users"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
+msgid "New User"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
+msgid "id"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
+#: airtime_mvc/application/forms/PasswordRestore.php:25
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
+msgid "Username"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
+msgid "First Name"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
+msgid "Last Name"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
+msgid "User Type"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
+#, php-format
+msgid "Super Admin details can be changed in your Billing Settings."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
+msgid "Find Shows"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
+msgid "Choose Show Instance"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
+msgid "Find"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
+#: airtime_mvc/application/configs/navigation.php:61
+msgid "My Profile"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
+#, php-format
+msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
+msgid "Repeat Days:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
+#: airtime_mvc/application/forms/GeneralPreferences.php:53
+#: airtime_mvc/application/forms/AddShowStyle.php:64
+msgid "Remove"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
+msgid "Add"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
+msgid "Show Source"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
+msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
+msgid "Register Airtime"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
+#, php-format
+msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
+#, php-format
+msgid "Click the box below to promote your station on %s."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
+msgid "(Required)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
+msgid "(for verification purposes only, will not be published)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
+#: airtime_mvc/application/forms/GeneralPreferences.php:43
+msgid "Note: Anything larger than 600x600 will be resized."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
+msgid "Show me what I am sending "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
+msgid "Terms and Conditions"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
+msgid "Choose Days:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
+msgid "Search Criteria:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
+msgid "New Criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
+msgid "or"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
+msgid "and"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
+msgid "New Modifier"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
+msgid " to "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
+msgid "files meet the criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
+msgid "file meets the criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
+msgid "Filter History"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/login.phtml:41
+msgid "Forgot your password?"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
+msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
+msgid "Stream "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
+msgid "Additional Options"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
+msgid "The following info will be displayed to listeners in their media player:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
+msgid "(Your radio station website)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
+msgid "Stream URL: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
+msgid "Choose folder"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
+msgid "Set"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
+msgid "Current Import Folder:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
+#, php-format
+msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
+msgid "Remove watched directory"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
+msgid "You are not watching any media folders."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
+msgid "Live Broadcasting"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
+msgid "Master Source"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
+msgid "Use these settings in your broadcasting software to stream live at any time."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
+msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
+msgid "TuneIn Settings"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
+msgid "SoundCloud Settings"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
+msgid "Dangerous Options"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Add this show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Update show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
+msgid "What"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
+msgid "When"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
+msgid "Live Stream Input"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
+msgid "Who"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
+msgid "Style"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
+msgid "Disk Space"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:3
+msgid "File import in progress..."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:10
+#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
+msgid "Advanced Search Options"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
+#: airtime_mvc/application/forms/EditAudioMD.php:24
+#: airtime_mvc/application/forms/Player.php:15
+msgid "Title:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
+#: airtime_mvc/application/forms/EditAudioMD.php:34
+msgid "Creator:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
+#: airtime_mvc/application/forms/EditAudioMD.php:44
+msgid "Album:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
+msgid "Track:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
+msgid "Length:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
+msgid "Sample Rate:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
+msgid "Bit Rate:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
+#: airtime_mvc/application/forms/EditAudioMD.php:115
+msgid "Mood:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:45
+#: airtime_mvc/application/forms/EditAudioMD.php:62
+msgid "Genre:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
+#: airtime_mvc/application/forms/EditAudioMD.php:72
+msgid "Year:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
+#: airtime_mvc/application/forms/EditAudioMD.php:85
+msgid "Label:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
+#: airtime_mvc/application/forms/EditAudioMD.php:125
+msgid "BPM:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
+#: airtime_mvc/application/forms/EditAudioMD.php:95
+msgid "Composer:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
+#: airtime_mvc/application/forms/EditAudioMD.php:105
+msgid "Conductor:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
+#: airtime_mvc/application/forms/EditAudioMD.php:135
+msgid "Copyright:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
+msgid "Isrc Number:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
+#: airtime_mvc/application/forms/EditAudioMD.php:155
+msgid "Website:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
+#: airtime_mvc/application/forms/EditAudioMD.php:165
+#: airtime_mvc/application/forms/EditUser.php:119
+#: airtime_mvc/application/forms/Login.php:68
+msgid "Language:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
+msgid "File Path:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
+msgid "Web Stream"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
+msgid "Dynamic Smart Block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
+msgid "Static Smart Block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
+msgid "Audio Track"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
+msgid "Playlist Contents: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
+msgid "Static Smart Block Contents: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
+msgid "Dynamic Smart Block Criteria: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
+msgid "Limit to "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
+#: airtime_mvc/application/forms/AddShowWhat.php:36
+msgid "URL:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
+msgid "Viewing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
+msgid "Listeners"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
+msgid "Stream Data Collection Status"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
+msgid "Your trial expires in"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
+msgid "days"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
+msgid "Previous:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
+msgid "Next:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
+msgid "Source Streams"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
+msgid "ON AIR"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
+msgid "Listen"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
+msgid "Logout"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
+msgid "Playout History Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
+msgid "Log Sheet Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
+msgid "New Log Sheet Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
+msgid "No Log Sheet Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
+msgid "File Summary Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
+msgid "New File Summary Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
+msgid "No File Summary Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
+msgid "Creating File Summary Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
+msgid "Creating Log Sheet Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
+msgid "Name"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
+msgid "Add more elements"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
+msgid "Add New Field"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
+msgid "Set Default Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
+msgid "Description"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
+msgid "Stream URL:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
+msgid "Default Length:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
+msgid "No webstream"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
+#: airtime_mvc/application/views/scripts/error/error.phtml:6
+msgid "An error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
+msgid "Access Denied!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
+msgid "You do not have permission to access this page!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
+#: airtime_mvc/application/views/scripts/error/error.phtml:14
+#: airtime_mvc/application/configs/navigation.php:143
+msgid "Help"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
+msgid "Oops!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
+msgid "Something went wrong!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
+msgid "Bad Request!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
+msgid "The requested action is not supported!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
+msgid "Page not found!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
+msgid "We couldn't find the page you were looking for."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error.phtml:12
+msgid "Looks like the page you were looking for doesn't exist!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
+msgid "previous"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
+msgid "play"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
+msgid "pause"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
+msgid "next"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
+msgid "stop"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
+msgid "max volume"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
+msgid "Update Required"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
+#, php-format
+msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
+msgid "Plan type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
+msgid "Billing cycle:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
+msgid "Payment method:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
+msgid "PayPal"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
+msgid "Credit Card via 2Checkout"
+msgstr ""
+
+#: airtime_mvc/application/forms/DateRange.php:16
+#: airtime_mvc/application/forms/ShowBuilder.php:18
+msgid "Date Start:"
+msgstr ""
+
+#: airtime_mvc/application/forms/DateRange.php:35
+#: airtime_mvc/application/forms/DateRange.php:63
+#: airtime_mvc/application/forms/ShowBuilder.php:37
+#: airtime_mvc/application/forms/ShowBuilder.php:65
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
+msgid "Invalid character entered"
+msgstr ""
+
+#: airtime_mvc/application/forms/DateRange.php:44
+#: airtime_mvc/application/forms/ShowBuilder.php:46
+#: airtime_mvc/application/forms/AddShowRepeats.php:56
+msgid "Date End:"
+msgstr ""
+
+#: airtime_mvc/application/forms/ShowBuilder.php:72
+#: airtime_mvc/application/forms/ShowBuilder.php:88
+msgid "Filter by Show"
+msgstr ""
+
+#: airtime_mvc/application/forms/ShowBuilder.php:80
+msgid "All My Shows:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWho.php:10
+msgid "Search Users:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWho.php:24
+msgid "DJs:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:30
+#: airtime_mvc/application/forms/GeneralPreferences.php:25
+#: airtime_mvc/application/forms/SupportSettings.php:18
+msgid "Station Name"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:39
+#: airtime_mvc/application/forms/SupportSettings.php:31
+msgid "Phone:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:51
+#: airtime_mvc/application/forms/AddUser.php:67
+#: airtime_mvc/application/forms/EditUser.php:83
+#: airtime_mvc/application/forms/SupportSettings.php:43
+msgid "Email:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:62
+#: airtime_mvc/application/forms/SupportSettings.php:54
+msgid "Station Web Site:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:73
+#: airtime_mvc/application/forms/SupportSettings.php:65
+msgid "Country:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:84
+#: airtime_mvc/application/forms/SupportSettings.php:76
+msgid "City:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:96
+#: airtime_mvc/application/forms/SupportSettings.php:88
+msgid "Station Description:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:106
+#: airtime_mvc/application/forms/GeneralPreferences.php:42
+msgid "Station Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:126
+#: airtime_mvc/application/forms/SupportSettings.php:108
+#, php-format
+msgid "Promote my station on %s"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:151
+#: airtime_mvc/application/forms/SupportSettings.php:120
+#, php-format
+msgid "By checking this box, I agree to %s's %sprivacy policy%s."
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:169
+#: airtime_mvc/application/forms/SupportSettings.php:143
+msgid "You have to agree to privacy policy."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRR.php:10
+msgid "Record from Line In?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRR.php:16
+msgid "Rebroadcast?"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
+#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
+msgid "Value is required and can't be empty"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
+msgid "'%value%' is no valid email address in the basic format local-part@hostname"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
+msgid "'%value%' does not fit the date format '%format%'"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
+msgid "'%value%' is less than %min% characters long"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
+msgid "'%value%' is more than %max% characters long"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
+msgid "'%value%' is not between '%min%' and '%max%', inclusively"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
+msgid "Passwords do not match"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
+msgid "Day must be specified"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
+msgid "Time must be specified"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
+msgid "Must wait at least 1 hour to rebroadcast"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordRestore.php:14
+msgid "Email"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordRestore.php:36
+msgid "Reset password"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhat.php:30
+msgid "Untitled Show"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhat.php:69
+msgid "Instance Description:"
+msgstr ""
+
+#: airtime_mvc/application/forms/DangerousPreferences.php:12
+msgid "Delete All Tracks in Library"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditAudioMD.php:145
+msgid "ISRC Number:"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditAudioMD.php:176
+msgid "OK"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:33
+msgid "Station Description"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:62
+msgid "Default Crossfade Duration (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:68
+#: airtime_mvc/application/forms/GeneralPreferences.php:82
+#: airtime_mvc/application/forms/GeneralPreferences.php:96
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
+msgid "Please enter a time in seconds (eg. 0.5)"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:76
+msgid "Default Fade In (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:90
+msgid "Default Fade Out (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:102
+msgid "Public Airtime API"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:103
+msgid "Required for embeddable schedule widget."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:105
+msgid "Disabled"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:106
+msgid "Enabled"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:109
+msgid ""
+"Enabling this feature will allow Airtime to provide schedule data\n"
+" to external widgets that can be embedded in your website."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:120
+msgid "Default Language"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:127
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
+msgid "Station Timezone"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:134
+msgid "Week Starts On"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:150
+msgid "Display login button on your Radio Page?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:29
+#: airtime_mvc/application/forms/EditUser.php:37
+#: airtime_mvc/application/forms/Login.php:41
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
+msgid "Username:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:38
+#: airtime_mvc/application/forms/EditUser.php:48
+#: airtime_mvc/application/forms/Login.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
+msgid "Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:46
+#: airtime_mvc/application/forms/EditUser.php:57
+msgid "Verify Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:55
+#: airtime_mvc/application/forms/EditUser.php:67
+msgid "Firstname:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:61
+#: airtime_mvc/application/forms/EditUser.php:75
+msgid "Lastname:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:76
+#: airtime_mvc/application/forms/EditUser.php:94
+msgid "Mobile Phone:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:82
+#: airtime_mvc/application/forms/EditUser.php:102
+msgid "Skype:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:88
+#: airtime_mvc/application/forms/EditUser.php:110
+msgid "Jabber:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:95
+msgid "User Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:120
+#: airtime_mvc/application/forms/EditUser.php:155
+msgid "Login name is not unique."
+msgstr ""
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
+msgid "Import Folder:"
+msgstr ""
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
+msgid "Watched Folders:"
+msgstr ""
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
+msgid "Not a valid Directory"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:126
+msgid "What is the name of your favorite childhood friend?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:127
+msgid "What school did you attend for sixth grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:128
+msgid "In what city did you meet your spouse/significant other?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:129
+msgid "What street did you live on in third grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:130
+msgid "What is the first name of the boy or girl that you first kissed?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:131
+msgid "In what city or town was your first job?"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
+msgid "Default License:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
+msgid "All rights are reserved"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
+msgid "The work is in the public domain"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
+msgid "Creative Commons Attribution"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
+msgid "Creative Commons Attribution Noncommercial"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
+msgid "Creative Commons Attribution No Derivative Works"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
+msgid "Creative Commons Attribution Share Alike"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
+msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
+msgid "Creative Commons Attribution Noncommercial Share Alike"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
+msgid "Default Sharing Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
+msgid "Public"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
+msgid "Private"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditUser.php:129
+msgid "Interface Timezone:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:14
+msgid "Now Playing"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:25
+msgid "Select Stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:28
+msgid "Auto detect the most appropriate stream to use."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:29
+msgid "Select a stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:41
+msgid " - Mobile friendly"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:45
+msgid " - The player does not support Opus streams."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:71
+msgid "Embeddable code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:72
+msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
+#: airtime_mvc/application/models/Block.php:1351
+msgid "Select criteria"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
+#: airtime_mvc/application/models/Block.php:1353
+msgid "Bit Rate (Kbps)"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
+#: airtime_mvc/application/models/Block.php:1374
+msgid "Sample Rate (kHz)"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
+msgid "hours"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
+msgid "minutes"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
+#: airtime_mvc/application/models/Block.php:333
+msgid "items"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
+msgid "Randomly"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
+msgid "Newest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
+msgid "Oldest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
+msgid "Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
+msgid "Static"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
+msgid "Dynamic"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
+msgid "Allow Repeated Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
+msgid "Sort Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
+msgid "Limit to:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
+msgid "Generate playlist content and save criteria"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
+msgid "Generate"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
+msgid "Shuffle playlist content"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
+msgid "Limit cannot be empty or smaller than 0"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
+msgid "Limit cannot be more than 24 hrs"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
+msgid "The value should be an integer"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
+msgid "500 is the max item limit value you can set"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
+msgid "You must select Criteria and Modifier"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
+msgid "'Length' should be in '00:00:00' format"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
+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:594
+msgid "The value has to be numeric"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
+msgid "The value should be less then 2147483648"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
+#, php-format
+msgid "The value should be less than %s characters"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
+msgid "Value cannot be empty"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:26
+msgid "Icecast Vorbis Metadata"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:36
+msgid "Stream Label:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:37
+msgid "Artist - Title"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:38
+msgid "Show - Artist - Title"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:39
+msgid "Station name - Show name"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:45
+msgid "Off Air Metadata"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:51
+msgid "Enable Replay Gain"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:57
+msgid "Replay Gain Modifier"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:65
+msgid "Streaming Server:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Airtime Pro Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Custom / 3rd Party Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordChange.php:17
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
+msgid "Password"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordChange.php:28
+msgid "Confirm new password"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordChange.php:36
+msgid "Password confirmation does not match your password."
+msgstr ""
+
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
+msgid "Station Language"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
+msgid "Enabled:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
+msgid "Mobile:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
+msgid "Stream Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
+msgid "Service Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
+msgid "Channels:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "1 - Mono"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "2 - Stereo"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
+msgid "Server"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
+msgid "Port"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
+msgid "Only numbers are allowed."
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
+msgid "URL"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
+msgid "Mount Point"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
+msgid "Admin User"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
+msgid "Admin Password"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
+msgid "Server cannot be empty."
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
+msgid "Port cannot be empty."
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
+msgid "Mount cannot be empty with Icecast server."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:16
+msgid "'%value%' does not fit the time format 'HH:mm'"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:22
+msgid "Start Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:37
+msgid "In the Future:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:64
+msgid "End Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:98
+msgid "Timezone:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:107
+msgid "Repeats?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:139
+msgid "Cannot create show in the past"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:147
+msgid "Cannot modify start date/time of the show that is already started"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:156
+#: airtime_mvc/application/models/Show.php:282
+msgid "End date/time cannot be in the past"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:164
+msgid "Cannot have duration < 0m"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:168
+msgid "Cannot have duration 00h 00m"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:175
+msgid "Cannot have duration greater than 24h"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:19
+msgid "Push metadata to your station on TuneIn?"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:24
+msgid "Station ID:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:30
+msgid "Partner Key:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:36
+msgid "Partner Id:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:77
+#: airtime_mvc/application/forms/TuneInPreferences.php:86
+msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:10
+#, php-format
+msgid "Use %s Authentication:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:16
+msgid "Use Custom Authentication:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:25
+msgid "Custom Username"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:37
+msgid "Custom Password"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:48
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
+msgid "Host:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
+msgid "Port:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:60
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
+msgid "Mount:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:77
+msgid "Username field cannot be empty."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:82
+msgid "Password field cannot be empty."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:12
+msgid "Background Colour:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:31
+msgid "Text Colour:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:49
+msgid "Current Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:72
+msgid "Show Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:87
+msgid "Logo Preview:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Login.php:102
+msgid "Type the characters you see in the picture below."
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
+msgid "Auto Switch Off:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
+msgid "Auto Switch On:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
+msgid "Switch Transition Fade (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:10
+msgid "Link:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:16
+msgid "Repeat Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:19
+msgid "weekly"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:20
+msgid "every 2 weeks"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:21
+msgid "every 3 weeks"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:22
+msgid "every 4 weeks"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:23
+msgid "monthly"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:32
+msgid "Select Days:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:47
+msgid "Repeat By:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the month"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the week"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:69
+msgid "No End?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:106
+msgid "End date must be after start date"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:113
+msgid "Please select a repeat day"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:12
+msgid "Radio Page"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:19
+msgid "Calendar"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:26
+msgid "Widgets"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:48
+msgid "Settings"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:67
+msgid "Users"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:74
+msgid "Streams"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:82
+msgid "Analytics"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:90
+msgid "Listener Stats"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:104
+msgid "History Templates"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:113
+msgid "Billing"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:120
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:127
+msgid "Account Details"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:134
+msgid "View Invoices"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:150
+msgid "Getting Started"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:157
+msgid "FAQ"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:162
+msgid "User Manual"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:167
+msgid "File a Support Ticket"
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:833
+#: airtime_mvc/application/models/Playlist.php:812
+msgid "Cue in and cue out are null."
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:868
+#: airtime_mvc/application/models/Block.php:924
+#: airtime_mvc/application/models/Playlist.php:851
+#: airtime_mvc/application/models/Playlist.php:895
+msgid "Can't set cue out to be greater than file length."
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:879
+#: airtime_mvc/application/models/Block.php:900
+#: airtime_mvc/application/models/Playlist.php:843
+#: airtime_mvc/application/models/Playlist.php:868
+msgid "Can't set cue in to be larger than cue out."
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:935
+#: airtime_mvc/application/models/Playlist.php:887
+msgid "Can't set cue out to be smaller than cue in."
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:1366
+msgid "Upload Time"
+msgstr ""
+
+#: airtime_mvc/application/models/ShowBuilder.php:212
+#, php-format
+msgid "Rebroadcast of %s from %s"
+msgstr ""
+
+#: airtime_mvc/application/models/Preference.php:460
+#, php-format
+msgid "Powered by %s"
+msgstr ""
+
+#: airtime_mvc/application/models/Preference.php:588
+msgid "Select Country"
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:160
+#, php-format
+msgid "%s is already watched."
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:164
+#, php-format
+msgid "%s contains nested watched directory: %s"
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:168
+#, php-format
+msgid "%s is nested within existing watched directory: %s"
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:189
+#: airtime_mvc/application/models/MusicDir.php:370
+#, php-format
+msgid "%s is not a valid directory."
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:232
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list"
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:388
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list."
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:431
+#, php-format
+msgid "%s doesn't exist in the watched list."
+msgstr ""
+
+#: airtime_mvc/application/models/Auth.php:33
+#, php-format
+msgid ""
+"Hi %s, \n"
+"\n"
+"Please click this link to reset your password: "
+msgstr ""
+
+#: airtime_mvc/application/models/Auth.php:38
+#, php-format
+msgid "%s Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/models/Show.php:184
+msgid "Shows can have a max length of 24 hours."
+msgstr ""
+
+#: airtime_mvc/application/models/Show.php:293
+msgid ""
+"Cannot schedule overlapping shows.\n"
+"Note: Resizing a repeating show affects all of its repeats."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:73
+msgid "Cannot move items out of linked shows"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:119
+msgid "The schedule you're viewing is out of date! (sched mismatch)"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:124
+msgid "The schedule you're viewing is out of date! (instance mismatch)"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:132
+#: airtime_mvc/application/models/Scheduler.php:458
+#: airtime_mvc/application/models/Scheduler.php:490
+msgid "The schedule you're viewing is out of date!"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:142
+#, php-format
+msgid "You are not allowed to schedule show %s."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:146
+msgid "You cannot add files to recording shows."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:152
+#, php-format
+msgid "The show %s is over and cannot be scheduled."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:159
+#, php-format
+msgid "The show %s has been previously updated!"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:178
+msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:195
+msgid "Cannot schedule a playlist that contains missing files."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:216
+#: airtime_mvc/application/models/Scheduler.php:305
+msgid "A selected File does not exist!"
+msgstr ""
+
+#: airtime_mvc/application/models/Schedule.php:206
+msgid "livestream"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:166
+msgid "Length needs to be greater than 0 minutes"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:171
+msgid "Length should be of form \"00h 00m\""
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:184
+msgid "URL should be of form \"http://domain\""
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:187
+msgid "URL should be 512 characters or less"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:193
+msgid "No MIME type found for webstream."
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:209
+msgid "Webstream name cannot be empty"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:278
+msgid "Could not parse XSPF playlist"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:298
+msgid "Could not parse PLS playlist"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:318
+msgid "Could not parse M3U playlist"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:332
+msgid "Invalid webstream - This appears to be a file download."
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:336
+#, php-format
+msgid "Unrecognized stream type: %s"
+msgstr ""
+
+#: airtime_mvc/public/setup/rabbitmq-setup.php:78
+msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
+msgstr ""
diff --git a/airtime_mvc/locale/ka/LC_MESSAGES/pro.po b/airtime_mvc/locale/ka/LC_MESSAGES/pro.po
index 866ee0acb..f59b52c3d 100644
--- a/airtime_mvc/locale/ka/LC_MESSAGES/pro.po
+++ b/airtime_mvc/locale/ka/LC_MESSAGES/pro.po
@@ -1,3 +1,139 @@
+#: airtime_mvc/application/controllers/LoginController.php:170
+#, php-format
+msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
+#, php-format
+msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
+#, php-format
+msgid "If you are the primary owner of this station, please reset your password here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
+msgid "Thank you!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
+msgid "Your station has been upgraded successfully."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
+msgid "Return to Airtime"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+#, php-format
+msgid "Purchase an %s plan!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+msgid "My Account"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
+msgid "Upgrade today to get more listeners and storage space!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
+msgid "View Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:257
+msgid "Your Current Plan:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:291
+msgid "Please enter your payment details:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
+msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
+msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:17
+msgid "First Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:26
+msgid "Last Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:35
+msgid "Company Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:44
+msgid "Email Address:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:54
+msgid "Address 1:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:63
+msgid "Address 2:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:70
+msgid "City:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:80
+msgid "State/Region:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:89
+msgid "Zip Code / Postal Code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:102
+msgid "Country:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:112
+msgid "Phone Number:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:121
+msgid "Please choose a security question:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:135
+msgid "Please enter an answer:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:152
+msgid "VAT/Tax ID (EU only)"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:162
+msgid "Subscribe to Sourcefabric newsletter"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:172
+msgid "Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:181
+msgid "Verify Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:193
+msgid "Save"
+msgstr ""
+
#: airtime_mvc/application/models/Auth.php:35
#, php-format
msgid ""
@@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
-msgid "Thank you!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
-msgid "Your station has been upgraded successfully."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
-msgid "Return to Airtime"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
-#, php-format
-msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
-msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
-msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
-#, php-format
-msgid "If you are the primary owner of this station, please reset your password here."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:170
-#, php-format
-msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
-msgstr ""
diff --git a/airtime_mvc/locale/ko_KR/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/ko_KR/LC_MESSAGES/airtime.mo
index 19730ad16..5514101f3 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 5fde94f8d..8bf3613aa 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 @@ msgid ""
msgstr ""
"Project-Id-Version: Airtime\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-09-03 10:24-0400\n"
-"PO-Revision-Date: 2014-11-14 09:58+0000\n"
+"POT-Creation-Date: 2015-09-04 11:17-0400\n"
+"PO-Revision-Date: 2015-09-04 08:15+0000\n"
"Last-Translator: Daniel James \n"
"Language-Team: Korean (Korea) (http://www.transifex.com/sourcefabric/airtime/language/ko_KR/)\n"
"Language: ko_KR\n"
@@ -18,132 +18,6 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-#: airtime_mvc/public/setup/rabbitmq-setup.php:78
-msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1117
-#: airtime_mvc/application/services/HistoryService.php:1157
-#: airtime_mvc/application/services/HistoryService.php:1174
-#: airtime_mvc/application/models/Block.php:1375
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
-#: airtime_mvc/application/controllers/LocaleController.php:76
-msgid "Title"
-msgstr "제목"
-
-#: airtime_mvc/application/services/HistoryService.php:1118
-#: airtime_mvc/application/services/HistoryService.php:1158
-#: airtime_mvc/application/services/HistoryService.php:1175
-#: airtime_mvc/application/models/Block.php:1360
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
-#: airtime_mvc/application/controllers/LocaleController.php:77
-msgid "Creator"
-msgstr "제작자"
-
-#: airtime_mvc/application/services/HistoryService.php:1119
-#: airtime_mvc/application/models/Block.php:1352
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
-#: airtime_mvc/application/controllers/LocaleController.php:78
-msgid "Album"
-msgstr "앨범"
-
-#: airtime_mvc/application/services/HistoryService.php:1120
-#: airtime_mvc/application/services/HistoryService.php:1177
-#: airtime_mvc/application/models/Block.php:1369
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
-#: airtime_mvc/application/controllers/LocaleController.php:91
-msgid "Length"
-msgstr "길이"
-
-#: airtime_mvc/application/services/HistoryService.php:1121
-#: airtime_mvc/application/models/Block.php:1362
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
-#: airtime_mvc/application/controllers/LocaleController.php:85
-msgid "Genre"
-msgstr "장르"
-
-#: airtime_mvc/application/services/HistoryService.php:1122
-#: airtime_mvc/application/models/Block.php:1371
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
-#: airtime_mvc/application/controllers/LocaleController.php:93
-msgid "Mood"
-msgstr "무드"
-
-#: airtime_mvc/application/services/HistoryService.php:1123
-#: airtime_mvc/application/models/Block.php:1364
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
-#: airtime_mvc/application/controllers/LocaleController.php:87
-msgid "Label"
-msgstr "레이블"
-
-#: airtime_mvc/application/services/HistoryService.php:1124
-#: airtime_mvc/application/services/HistoryService.php:1178
-#: airtime_mvc/application/models/Block.php:1355
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
-#: airtime_mvc/application/controllers/LocaleController.php:81
-msgid "Composer"
-msgstr "작곡가"
-
-#: airtime_mvc/application/services/HistoryService.php:1125
-#: airtime_mvc/application/models/Block.php:1363
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
-#: airtime_mvc/application/controllers/LocaleController.php:86
-msgid "ISRC"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1126
-#: airtime_mvc/application/services/HistoryService.php:1179
-#: airtime_mvc/application/models/Block.php:1357
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
-#: airtime_mvc/application/controllers/LocaleController.php:83
-msgid "Copyright"
-msgstr "저작권"
-
-#: airtime_mvc/application/services/HistoryService.php:1127
-#: airtime_mvc/application/models/Block.php:1379
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
-#: airtime_mvc/application/controllers/LocaleController.php:100
-msgid "Year"
-msgstr "년도"
-
-#: airtime_mvc/application/services/HistoryService.php:1128
-msgid "Track"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1129
-#: airtime_mvc/application/models/Block.php:1356
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
-#: airtime_mvc/application/controllers/LocaleController.php:82
-msgid "Conductor"
-msgstr "지휘자"
-
-#: airtime_mvc/application/services/HistoryService.php:1130
-#: airtime_mvc/application/models/Block.php:1365
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
-#: airtime_mvc/application/controllers/LocaleController.php:88
-msgid "Language"
-msgstr "언어"
-
-#: airtime_mvc/application/services/HistoryService.php:1155
-#: airtime_mvc/application/forms/EditHistoryItem.php:32
-msgid "Start Time"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1156
-#: airtime_mvc/application/forms/EditHistoryItem.php:44
-msgid "End Time"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1176
-msgid "Played"
-msgstr "방송됨"
-
#: airtime_mvc/application/services/CalendarService.php:50
msgid "Record file doesn't exist"
msgstr ""
@@ -239,2603 +113,380 @@ msgstr "녹화 쇼가 없으로 쇼가 삭제 되었습니다"
msgid "Must wait 1 hour to rebroadcast."
msgstr "녹화 쇼와 재방송 사이에는 1시간의 간격이 필요합니다 "
-#: airtime_mvc/application/models/Schedule.php:206
-msgid "livestream"
-msgstr ""
-
-#: airtime_mvc/application/models/ShowBuilder.php:212
-#, php-format
-msgid "Rebroadcast of %s from %s"
-msgstr "%s 재방송( %s에 시작) "
-
-#: airtime_mvc/application/models/Webstream.php:166
-msgid "Length needs to be greater than 0 minutes"
-msgstr "길이가 0분 보다 길어야 합니다"
-
-#: airtime_mvc/application/models/Webstream.php:171
-msgid "Length should be of form \"00h 00m\""
-msgstr "길이는 \"00h 00m\"의 형태 여야 합니다 "
-
-#: airtime_mvc/application/models/Webstream.php:184
-msgid "URL should be of form \"http://domain\""
-msgstr "URL은 \"http://domain\" 형태여야 합니다"
-
-#: airtime_mvc/application/models/Webstream.php:187
-msgid "URL should be 512 characters or less"
-msgstr "URL은 512캐릭터 까지 허용합니다"
-
-#: airtime_mvc/application/models/Webstream.php:193
-msgid "No MIME type found for webstream."
-msgstr "웹 스트림의 MIME 타입을 찾을수 없습니다"
-
-#: airtime_mvc/application/models/Webstream.php:209
-msgid "Webstream name cannot be empty"
-msgstr "웹스트림의 이름을 지정하십시오"
-
-#: airtime_mvc/application/models/Webstream.php:278
-msgid "Could not parse XSPF playlist"
-msgstr "XSPF 재생목록을 분석 할수 없습니다"
-
-#: airtime_mvc/application/models/Webstream.php:298
-msgid "Could not parse PLS playlist"
-msgstr "PLS 재생목록을 분석 할수 없습니다"
-
-#: airtime_mvc/application/models/Webstream.php:318
-msgid "Could not parse M3U playlist"
-msgstr "M3U 재생목록을 분석할수 없습니다"
-
-#: airtime_mvc/application/models/Webstream.php:332
-msgid "Invalid webstream - This appears to be a file download."
-msgstr "잘못된 웹스트림 - 웹스트림이 아니고 파일 다운로드 링크입니다"
-
-#: airtime_mvc/application/models/Webstream.php:336
-#, php-format
-msgid "Unrecognized stream type: %s"
-msgstr "알수 없는 스트림 타입: %s"
-
-#: airtime_mvc/application/models/Preference.php:460
-#, php-format
-msgid "Powered by %s"
-msgstr ""
-
-#: airtime_mvc/application/models/Preference.php:588
-msgid "Select Country"
-msgstr "국가 선택"
-
-#: airtime_mvc/application/models/MusicDir.php:160
-#, php-format
-msgid "%s is already watched."
-msgstr "%s는 이미 모니터 중입니다 "
-
-#: airtime_mvc/application/models/MusicDir.php:164
-#, php-format
-msgid "%s contains nested watched directory: %s"
-msgstr "%s는 이미 모니터중인 폴더를 포함하고 있습니다: %s"
-
-#: airtime_mvc/application/models/MusicDir.php:168
-#, php-format
-msgid "%s is nested within existing watched directory: %s"
-msgstr "%s를 포함하는 폴더를 이미 모니터 중입니다: %s"
-
-#: airtime_mvc/application/models/MusicDir.php:189
-#: airtime_mvc/application/models/MusicDir.php:370
-#, php-format
-msgid "%s is not a valid directory."
-msgstr "%s는 옳은 경로가 아닙니다."
-
-#: airtime_mvc/application/models/MusicDir.php:232
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list"
-msgstr "%s는 이미 현재 저장 폴더로 지정이 되었거나 모니터중인 폴더 입니다."
-
-#: airtime_mvc/application/models/MusicDir.php:388
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list."
-msgstr "%s는 이미 현재 저장 폴더로 지정이 되었거나 모니터중인 폴더 입니다."
-
-#: airtime_mvc/application/models/MusicDir.php:431
-#, php-format
-msgid "%s doesn't exist in the watched list."
-msgstr "%s가 모니터 목록에 없습니다"
-
-#: airtime_mvc/application/models/Show.php:184
-msgid "Shows can have a max length of 24 hours."
-msgstr "쇼 길이는 24시간을 넘을수 없습니다."
-
-#: airtime_mvc/application/models/Show.php:282
-#: airtime_mvc/application/forms/AddShowWhen.php:156
-msgid "End date/time cannot be in the past"
-msgstr "종료 날짜/시간을 과거로 설정할수 없습니다"
-
-#: airtime_mvc/application/models/Show.php:293
-msgid ""
-"Cannot schedule overlapping shows.\n"
-"Note: Resizing a repeating show affects all of its repeats."
-msgstr ""
-"쇼를 중복되게 스케줄 할수 없습니다.\n"
-"주의: 반복 쇼의 크기를 조정하면, 모든 반복 쇼의 크기가 바뀝니다."
-
-#: airtime_mvc/application/models/Auth.php:33
-#, php-format
-msgid ""
-"Hi %s, \n"
-"\n"
-"Please click this link to reset your password: "
-msgstr ""
-
-#: airtime_mvc/application/models/Auth.php:38
-#, php-format
-msgid "%s Password Reset"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:333
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
-msgid "items"
-msgstr "아이템"
-
-#: airtime_mvc/application/models/Block.php:833
-#: airtime_mvc/application/models/Playlist.php:812
-msgid "Cue in and cue out are null."
-msgstr "큐-인 과 큐 -아웃 이 null 입니다"
-
-#: airtime_mvc/application/models/Block.php:868
-#: airtime_mvc/application/models/Block.php:924
-#: airtime_mvc/application/models/Playlist.php:851
-#: airtime_mvc/application/models/Playlist.php:895
-msgid "Can't set cue out to be greater than file length."
-msgstr "큐-아웃 값은 파일 길이보다 클수 없습니다"
-
-#: airtime_mvc/application/models/Block.php:879
-#: airtime_mvc/application/models/Block.php:900
-#: airtime_mvc/application/models/Playlist.php:843
-#: airtime_mvc/application/models/Playlist.php:868
-msgid "Can't set cue in to be larger than cue out."
-msgstr "큐-인 값은 큐-아웃 값보다 클수 없습니다."
-
-#: airtime_mvc/application/models/Block.php:935
-#: airtime_mvc/application/models/Playlist.php:887
-msgid "Can't set cue out to be smaller than cue in."
-msgstr "큐-아웃 값은 큐-인 값보다 작을수 없습니다."
-
-#: airtime_mvc/application/models/Block.php:1351
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
-msgid "Select criteria"
-msgstr "기준 선택"
-
-#: airtime_mvc/application/models/Block.php:1353
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
-msgid "Bit Rate (Kbps)"
-msgstr "비트 레이트(Kbps)"
-
-#: airtime_mvc/application/models/Block.php:1354
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
-#: airtime_mvc/application/controllers/LocaleController.php:80
-msgid "BPM"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1358
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
-#: airtime_mvc/application/controllers/LocaleController.php:281
-#: airtime_mvc/application/layouts/scripts/layout.phtml:140
-msgid "Cue In"
-msgstr "큐 인"
-
-#: airtime_mvc/application/models/Block.php:1359
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:282
-#: airtime_mvc/application/layouts/scripts/layout.phtml:147
-msgid "Cue Out"
-msgstr "큐 아웃"
-
-#: airtime_mvc/application/models/Block.php:1361
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
-#: airtime_mvc/application/controllers/LocaleController.php:84
-msgid "Encoded By"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1366
-msgid "Upload Time"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1367
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
-#: airtime_mvc/application/controllers/LocaleController.php:89
-msgid "Last Modified"
-msgstr "마지막 수정일"
-
-#: airtime_mvc/application/models/Block.php:1368
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
-#: airtime_mvc/application/controllers/LocaleController.php:90
-msgid "Last Played"
-msgstr "마지막 방송일"
-
-#: airtime_mvc/application/models/Block.php:1370
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
-#: airtime_mvc/application/controllers/LocaleController.php:92
-msgid "Mime"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1372
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
-#: airtime_mvc/application/controllers/LocaleController.php:94
-msgid "Owner"
-msgstr "소유자"
-
-#: airtime_mvc/application/models/Block.php:1373
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
-#: airtime_mvc/application/controllers/LocaleController.php:95
-msgid "Replay Gain"
-msgstr "리플레이 게인"
-
-#: airtime_mvc/application/models/Block.php:1374
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
-msgid "Sample Rate (kHz)"
-msgstr "샘플 레이트"
-
-#: airtime_mvc/application/models/Block.php:1376
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
-#: airtime_mvc/application/controllers/LocaleController.php:97
-msgid "Track Number"
-msgstr "트랙 번호"
-
-#: airtime_mvc/application/models/Block.php:1377
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
-#: airtime_mvc/application/controllers/LocaleController.php:98
-msgid "Uploaded"
-msgstr "업로드 날짜"
-
-#: airtime_mvc/application/models/Block.php:1378
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
-#: airtime_mvc/application/controllers/LocaleController.php:99
-msgid "Website"
-msgstr "웹싸이트"
-
-#: airtime_mvc/application/models/Block.php:1383
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
-#: airtime_mvc/application/controllers/LocaleController.php:151
-msgid "Select modifier"
-msgstr "모디파이어 선택"
-
-#: airtime_mvc/application/models/Block.php:1384
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
-#: airtime_mvc/application/controllers/LocaleController.php:152
-msgid "contains"
-msgstr "다음을 포합"
-
-#: airtime_mvc/application/models/Block.php:1385
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
-#: airtime_mvc/application/controllers/LocaleController.php:153
-msgid "does not contain"
-msgstr "다음을 포함하지 않는"
-
-#: airtime_mvc/application/models/Block.php:1386
-#: airtime_mvc/application/models/Block.php:1390
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
-#: airtime_mvc/application/controllers/LocaleController.php:154
-msgid "is"
-msgstr "다음과 같음"
-
-#: airtime_mvc/application/models/Block.php:1387
-#: airtime_mvc/application/models/Block.php:1391
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
-#: airtime_mvc/application/controllers/LocaleController.php:155
-msgid "is not"
-msgstr "다음과 같지 않음"
-
-#: airtime_mvc/application/models/Block.php:1388
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
-#: airtime_mvc/application/controllers/LocaleController.php:156
-msgid "starts with"
-msgstr "다음으로 시작"
-
-#: airtime_mvc/application/models/Block.php:1389
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
-#: airtime_mvc/application/controllers/LocaleController.php:157
-msgid "ends with"
-msgstr "다음으로 끝남"
-
-#: airtime_mvc/application/models/Block.php:1392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
-#: airtime_mvc/application/controllers/LocaleController.php:158
-msgid "is greater than"
-msgstr "다음 보다 큰"
-
-#: airtime_mvc/application/models/Block.php:1393
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
-#: airtime_mvc/application/controllers/LocaleController.php:159
-msgid "is less than"
-msgstr "다음 보타 작은"
-
-#: airtime_mvc/application/models/Block.php:1394
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
-#: airtime_mvc/application/controllers/LocaleController.php:160
-msgid "is in the range"
-msgstr "다음 범위 안에 있는 "
-
-#: airtime_mvc/application/models/Scheduler.php:73
-msgid "Cannot move items out of linked shows"
-msgstr "링크 쇼에서 아이템을 분리 할수 없습니다"
-
-#: airtime_mvc/application/models/Scheduler.php:119
-msgid "The schedule you're viewing is out of date! (sched mismatch)"
-msgstr "현재 보고 계신 스케쥴이 맞지 않습니다(sched mismatch)"
-
-#: airtime_mvc/application/models/Scheduler.php:124
-msgid "The schedule you're viewing is out of date! (instance mismatch)"
-msgstr "현재 보고 계신 스케쥴이 맞지 않습니다(instance mismatch)"
-
-#: airtime_mvc/application/models/Scheduler.php:132
-#: airtime_mvc/application/models/Scheduler.php:458
-#: airtime_mvc/application/models/Scheduler.php:490
-msgid "The schedule you're viewing is out of date!"
-msgstr "현재 보고 계신 스케쥴이 맞지 않습니다"
-
-#: airtime_mvc/application/models/Scheduler.php:142
-#, php-format
-msgid "You are not allowed to schedule show %s."
-msgstr "쇼를 스케쥴 할수 있는 권한이 없습니다 %s."
-
-#: airtime_mvc/application/models/Scheduler.php:146
-msgid "You cannot add files to recording shows."
-msgstr "녹화 쇼에는 파일을 추가 할수 없습니다"
-
-#: airtime_mvc/application/models/Scheduler.php:152
-#, php-format
-msgid "The show %s is over and cannot be scheduled."
-msgstr "지난 쇼(%s)에 더이상 스케쥴을 할수 없스니다"
-
-#: airtime_mvc/application/models/Scheduler.php:159
-#, php-format
-msgid "The show %s has been previously updated!"
-msgstr "쇼 %s 업데이트 되었습니다!"
-
-#: airtime_mvc/application/models/Scheduler.php:178
-msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
-msgstr "링크 쇼의 내용은 이미 방송된 쇼의 전후에만 스케쥴 할수 있습니다"
-
-#: airtime_mvc/application/models/Scheduler.php:195
-msgid "Cannot schedule a playlist that contains missing files."
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:216
-#: airtime_mvc/application/models/Scheduler.php:305
-msgid "A selected File does not exist!"
-msgstr "선택하신 파일이 존재 하지 않습니다"
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
-#: airtime_mvc/application/configs/navigation.php:40
-msgid "Weekly Schedule"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
-#: airtime_mvc/application/forms/Player.php:77
-msgid "Preview:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
-#: airtime_mvc/application/configs/navigation.php:34
-msgid "Player"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
-#: airtime_mvc/application/controllers/LocaleController.php:362
-#: airtime_mvc/application/controllers/LocaleController.php:390
-msgid "Close"
-msgstr "닫기"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Add this show"
-msgstr "쇼 추가"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Update show"
-msgstr "쇼 업데이트"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
-msgid "What"
-msgstr "무엇"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
-msgid "When"
-msgstr "언제"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
-msgid "Live Stream Input"
-msgstr "라이브 스트림"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
-msgid "Who"
-msgstr "누구"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
-msgid "Style"
-msgstr "스타일"
-
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
-#: airtime_mvc/application/controllers/LocaleController.php:273
-msgid "Start"
-msgstr "시작"
-
-#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
-msgid "Password Reset"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
-msgid "Email Sent!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
-msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
-msgid "Back"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
-msgid "New password"
-msgstr "새 암호"
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
-msgid "Please enter and confirm your new password in the fields below."
-msgstr "새 암호 확인"
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:3
-#: airtime_mvc/application/forms/Login.php:83
-msgid "Login"
-msgstr "로그인"
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:7
-#, php-format
-msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:97
-msgid "Playout History"
-msgstr "방송 기록"
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
-msgid "Log Sheet"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
-msgid "File Summary"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
-msgid "Show Summary"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
-msgid "Your trial expires in"
-msgstr " "
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
-msgid "days"
-msgstr "일"
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-#, php-format
-msgid "Purchase an %s Pro plan!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-msgid "My Account"
-msgstr "내 계정"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
-msgid "Previous:"
-msgstr "이전:"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
-msgid "Next:"
-msgstr "다음:"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
-msgid "Source Streams"
-msgstr "소스 스트림"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
-msgid "Master Source"
-msgstr "마스터 소스"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
-msgid "Show Source"
-msgstr "쇼 소스"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
-msgid "ON AIR"
-msgstr "방송중"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
-msgid "Listen"
-msgstr "듣기"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
-msgid "Logout"
-msgstr "로그아웃"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
-msgid "Drop files here or click to browse your computer."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
-#: airtime_mvc/application/controllers/LocaleController.php:314
-msgid "in use"
-msgstr "사용중"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
-#: airtime_mvc/application/controllers/LocaleController.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:401
-msgid "All"
-msgstr "전체"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
-msgid "Failed"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
-msgid "Pending"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
-msgid "Recent Uploads"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
-#: airtime_mvc/application/configs/navigation.php:120
-msgid "Account Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
-msgid "Upgrade today to get more listeners and storage space!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
-msgid "View Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
-msgid "About"
-msgstr "정보"
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
-#, php-format
-msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
-#, php-format
-msgid "%1$s %2$s is distributed under the %3$s"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
-#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
-msgid "Live stream"
-msgstr "라이브 스트림"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
-msgid "Share"
-msgstr "공유"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
-msgid "Select stream:"
-msgstr "스트림 선택"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
-msgid "mute"
-msgstr "음소거"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
-msgid "unmute"
-msgstr "음소거 해제"
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
-#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
-#, php-format
-msgid "Welcome to %s!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
-#, php-format
-msgid "Here's how you can get started using %s to automate your broadcasts: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
-msgid "Upload audio tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
-msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
-msgid "Schedule a show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
-msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
-msgid "Add tracks to your show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
-msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
-msgid "Now you're good to go!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
-#, php-format
-msgid "For more detailed help, read the %suser manual%s."
-msgstr "더 자세한 도움을 원하시면, 메뉴얼을 참고 하여 주세요. %suser manual%s"
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
-msgid "Listeners"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
-msgid "Stream Data Collection Status"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
-#: airtime_mvc/application/views/scripts/error/error.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
-msgid "An error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
-msgid "Access Denied!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
-msgid "You do not have permission to access this page!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
-#: airtime_mvc/application/views/scripts/error/error.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
-#: airtime_mvc/application/configs/navigation.php:143
-msgid "Help"
-msgstr "도움"
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
-msgid "Page not found!"
-msgstr "페이지를 찾을수 없습니다!"
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
-msgid "We couldn't find the page you were looking for."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error.phtml:12
-msgid "Looks like the page you were looking for doesn't exist!"
-msgstr "찾는 페이지가 존재 하지 않습니다!"
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
-msgid "Oops!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
-msgid "Something went wrong!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
-msgid "Bad Request!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
-msgid "The requested action is not supported!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
-msgid "Viewing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
-msgid "Editing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:3
-msgid "File import in progress..."
-msgstr "파일 가져오기 진행중"
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:10
-#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
-msgid "Advanced Search Options"
-msgstr "고급 검색 옵션"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
-#: airtime_mvc/application/forms/Player.php:15
-#: airtime_mvc/application/forms/EditAudioMD.php:24
-msgid "Title:"
-msgstr "제목:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
-#: airtime_mvc/application/forms/EditAudioMD.php:34
-msgid "Creator:"
-msgstr "제작자:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
-#: airtime_mvc/application/forms/EditAudioMD.php:44
-msgid "Album:"
-msgstr "앨범:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
-msgid "Track:"
-msgstr "트랙:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
-msgid "Length:"
-msgstr "길이:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
-msgid "Sample Rate:"
-msgstr "샘플 레이트:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
-msgid "Bit Rate:"
-msgstr "비트 레이트:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
-#: airtime_mvc/application/forms/EditAudioMD.php:115
-msgid "Mood:"
+#: airtime_mvc/application/services/HistoryService.php:1117
+#: airtime_mvc/application/services/HistoryService.php:1157
+#: airtime_mvc/application/services/HistoryService.php:1174
+#: airtime_mvc/application/controllers/LocaleController.php:76
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
+#: airtime_mvc/application/models/Block.php:1375
+msgid "Title"
+msgstr "제목"
+
+#: airtime_mvc/application/services/HistoryService.php:1118
+#: airtime_mvc/application/services/HistoryService.php:1158
+#: airtime_mvc/application/services/HistoryService.php:1175
+#: airtime_mvc/application/controllers/LocaleController.php:77
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
+#: airtime_mvc/application/models/Block.php:1360
+msgid "Creator"
+msgstr "제작자"
+
+#: airtime_mvc/application/services/HistoryService.php:1119
+#: airtime_mvc/application/controllers/LocaleController.php:78
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
+#: airtime_mvc/application/models/Block.php:1352
+msgid "Album"
+msgstr "앨범"
+
+#: airtime_mvc/application/services/HistoryService.php:1120
+#: airtime_mvc/application/services/HistoryService.php:1177
+#: airtime_mvc/application/controllers/LocaleController.php:91
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
+#: airtime_mvc/application/models/Block.php:1369
+msgid "Length"
+msgstr "길이"
+
+#: airtime_mvc/application/services/HistoryService.php:1121
+#: airtime_mvc/application/controllers/LocaleController.php:85
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
+#: airtime_mvc/application/models/Block.php:1362
+msgid "Genre"
+msgstr "장르"
+
+#: airtime_mvc/application/services/HistoryService.php:1122
+#: airtime_mvc/application/controllers/LocaleController.php:93
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
+#: airtime_mvc/application/models/Block.php:1371
+msgid "Mood"
msgstr "무드"
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
-#: airtime_mvc/application/forms/EditAudioMD.php:62
-#: airtime_mvc/application/forms/AddShowWhat.php:45
-msgid "Genre:"
-msgstr "장르:"
+#: airtime_mvc/application/services/HistoryService.php:1123
+#: airtime_mvc/application/controllers/LocaleController.php:87
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
+#: airtime_mvc/application/models/Block.php:1364
+msgid "Label"
+msgstr "레이블"
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
-#: airtime_mvc/application/forms/EditAudioMD.php:72
-msgid "Year:"
-msgstr "년도:"
+#: airtime_mvc/application/services/HistoryService.php:1124
+#: airtime_mvc/application/services/HistoryService.php:1178
+#: airtime_mvc/application/controllers/LocaleController.php:81
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
+#: airtime_mvc/application/models/Block.php:1355
+msgid "Composer"
+msgstr "작곡가"
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
-#: airtime_mvc/application/forms/EditAudioMD.php:85
-msgid "Label:"
-msgstr "상표:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
-#: airtime_mvc/application/forms/EditAudioMD.php:125
-msgid "BPM:"
+#: airtime_mvc/application/services/HistoryService.php:1125
+#: airtime_mvc/application/controllers/LocaleController.php:86
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
+#: airtime_mvc/application/models/Block.php:1363
+msgid "ISRC"
msgstr ""
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
-#: airtime_mvc/application/forms/EditAudioMD.php:95
-msgid "Composer:"
-msgstr "작곡가:"
+#: airtime_mvc/application/services/HistoryService.php:1126
+#: airtime_mvc/application/services/HistoryService.php:1179
+#: airtime_mvc/application/controllers/LocaleController.php:83
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
+#: airtime_mvc/application/models/Block.php:1357
+msgid "Copyright"
+msgstr "저작권"
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
-#: airtime_mvc/application/forms/EditAudioMD.php:105
-msgid "Conductor:"
+#: airtime_mvc/application/services/HistoryService.php:1127
+#: airtime_mvc/application/controllers/LocaleController.php:100
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
+#: airtime_mvc/application/models/Block.php:1379
+msgid "Year"
+msgstr "년도"
+
+#: airtime_mvc/application/services/HistoryService.php:1128
+msgid "Track"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1129
+#: airtime_mvc/application/controllers/LocaleController.php:82
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
+#: airtime_mvc/application/models/Block.php:1356
+msgid "Conductor"
msgstr "지휘자"
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
-#: airtime_mvc/application/forms/EditAudioMD.php:135
-msgid "Copyright:"
-msgstr "저작권:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
-msgid "Isrc Number:"
-msgstr "ISRC 넘버:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
-#: airtime_mvc/application/forms/EditAudioMD.php:155
-msgid "Website:"
-msgstr "웹사이트"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
-#: airtime_mvc/application/forms/EditUser.php:119
-#: airtime_mvc/application/forms/EditAudioMD.php:165
-#: airtime_mvc/application/forms/Login.php:68
-msgid "Language:"
+#: airtime_mvc/application/services/HistoryService.php:1130
+#: airtime_mvc/application/controllers/LocaleController.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
+#: airtime_mvc/application/models/Block.php:1365
+msgid "Language"
msgstr "언어"
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
-msgid "File Path:"
-msgstr "파일 위치:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
-#: airtime_mvc/application/forms/AddShowWhat.php:26
-msgid "Name:"
-msgstr "이름:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
-#: airtime_mvc/application/forms/AddShowWhat.php:54
-msgid "Description:"
-msgstr "설명:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
-msgid "Web Stream"
-msgstr "웹스트림"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
-msgid "Dynamic Smart Block"
-msgstr "동적 스마트 블록"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
-msgid "Static Smart Block"
-msgstr "정적 스마트 블록"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
-msgid "Audio Track"
-msgstr "오디오 트랙"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
-msgid "Playlist Contents: "
-msgstr "재생목록 내용"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
-msgid "Static Smart Block Contents: "
-msgstr "정적 스마트 블록 내용: "
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
-msgid "Dynamic Smart Block Criteria: "
-msgstr "동적 스마트 블록 내용: "
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
-msgid "Limit to "
-msgstr "길이 제한 "
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
-#: airtime_mvc/application/forms/AddShowWhat.php:36
-msgid "URL:"
+#: airtime_mvc/application/services/HistoryService.php:1155
+#: airtime_mvc/application/forms/EditHistoryItem.php:32
+msgid "Start Time"
msgstr ""
-#: airtime_mvc/application/views/scripts/form/login.phtml:41
-msgid "Forgot your password?"
+#: airtime_mvc/application/services/HistoryService.php:1156
+#: airtime_mvc/application/forms/EditHistoryItem.php:44
+msgid "End Time"
msgstr ""
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
+#: airtime_mvc/application/services/HistoryService.php:1176
+msgid "Played"
+msgstr "방송됨"
+
+#: airtime_mvc/application/controllers/LibraryController.php:31
+#: airtime_mvc/application/controllers/PlaylistController.php:147
#, php-format
-msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
+msgid "%s not found"
+msgstr "%s를 찾을수 없습니다"
+
+#: airtime_mvc/application/controllers/LibraryController.php:40
+#: airtime_mvc/application/controllers/PlaylistController.php:168
+msgid "Something went wrong."
+msgstr "알수없는 에러."
+
+#: airtime_mvc/application/controllers/LibraryController.php:95
+#: airtime_mvc/application/controllers/ShowbuilderController.php:136
+msgid "Preview"
+msgstr "프리뷰"
+
+#: airtime_mvc/application/controllers/LibraryController.php:115
+#: airtime_mvc/application/controllers/LibraryController.php:177
+#: airtime_mvc/application/controllers/LibraryController.php:200
+msgid "Add to Playlist"
+msgstr "재생 목록에 추가"
+
+#: airtime_mvc/application/controllers/LibraryController.php:117
+msgid "Add to Smart Block"
+msgstr "스마트 블록에 추가"
+
+#: airtime_mvc/application/controllers/LibraryController.php:123
+#: airtime_mvc/application/controllers/LocaleController.php:66
+msgid "Edit Metadata"
+msgstr "메타데이타 수정"
+
+#: airtime_mvc/application/controllers/LibraryController.php:131
+#: airtime_mvc/application/controllers/ScheduleController.php:712
+msgid "Download"
+msgstr "다운로드"
+
+#: airtime_mvc/application/controllers/LibraryController.php:147
+msgid "View track"
msgstr ""
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
+#: airtime_mvc/application/controllers/LibraryController.php:148
+msgid "Remove track"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:154
+#: airtime_mvc/application/controllers/LibraryController.php:159
+msgid "Upload track"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:169
+msgid "Duplicate Playlist"
+msgstr "중복된 플레이 리스트"
+
+#: airtime_mvc/application/controllers/LibraryController.php:213
+msgid "No action available"
+msgstr "액션 없음"
+
+#: airtime_mvc/application/controllers/LibraryController.php:233
+msgid "You don't have permission to delete selected items."
+msgstr "선택된 아이템을 지울수 있는 권한이 부족합니다."
+
+#: airtime_mvc/application/controllers/LibraryController.php:279
+msgid "Could not delete file because it is scheduled in the future."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:282
+msgid "Could not delete file(s)."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:322
#, php-format
-msgid "Click the box below to promote your station on %s."
-msgstr ""
+msgid "Copy of %s"
+msgstr "%s의 사본"
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
-msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
-msgstr "(체크 하기 위해선 '피드백 보내기'를 체크 하셔야 합니다)"
+#: airtime_mvc/application/controllers/WebstreamController.php:28
+#: airtime_mvc/application/controllers/WebstreamController.php:32
+msgid "Untitled Webstream"
+msgstr "제목없는 웹스트림"
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
-msgid "(Required)"
-msgstr "(*)"
+#: airtime_mvc/application/controllers/WebstreamController.php:150
+msgid "Webstream saved."
+msgstr "웹스트림이 저장 되었습니다"
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
-msgid "(for verification purposes only, will not be published)"
-msgstr "(확인을 위한것입니다, 이 정보는 어디에도 게시 되지 않습니다)"
+#: airtime_mvc/application/controllers/WebstreamController.php:158
+msgid "Invalid form values."
+msgstr "잘못된 값입니다"
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
-msgid "Choose folder"
-msgstr "폴더 선택"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
-msgid "Set"
-msgstr "저장"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
-msgid "Current Import Folder:"
-msgstr "현재 저장 폴더:"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
-msgid "Add"
-msgstr "추가"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
-#, php-format
-msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
-msgid "Remove watched directory"
-msgstr "모니터중인 폴더를 리스트에서 삭제"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
-msgid "You are not watching any media folders."
-msgstr "모니터중인 폴더가 없습니다"
-
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
-msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
-msgid "Live Broadcasting"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
-msgid "Use these settings in your broadcasting software to stream live at any time."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
-msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
-msgid "Choose Show Instance"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
-#: airtime_mvc/application/forms/EditHistoryItem.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:400
-msgid "No Show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
-msgid "Find"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
-msgid "Choose Days:"
-msgstr "날짜 선택"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
-#: airtime_mvc/application/forms/AddShowStyle.php:64
-#: airtime_mvc/application/forms/GeneralPreferences.php:53
-msgid "Remove"
-msgstr "제거"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
-msgid "Stream "
-msgstr "스트림 "
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
-msgid "Additional Options"
-msgstr "추가 설정"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
-msgid "The following info will be displayed to listeners in their media player:"
-msgstr "밑에 정보들은 청취자에 플래이어에 표시 됩니다:"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
-msgid "(Your radio station website)"
-msgstr "(방송국 웹사이트 주소)"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
-msgid "Stream URL: "
-msgstr "스트림 URL: "
-
-#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
-msgid "Find Shows"
-msgstr "쇼 찾기"
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
-msgid "TuneIn Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
-msgid "SoundCloud Settings"
-msgstr "SoundCloud 설정"
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
-msgid "Dangerous Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
-msgid "Search Criteria:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
-msgid "New Criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
-msgid "or"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
-msgid "and"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
-msgid "New Modifier"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
-msgid " to "
-msgstr " 부터 "
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
-msgid "files meet the criteria"
-msgstr "개의 파일들"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
-msgid "file meets the criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
-msgid "Filter History"
-msgstr "필터 히스토리"
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
-#: airtime_mvc/application/configs/navigation.php:61
-msgid "My Profile"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
-#, php-format
-msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
-#: airtime_mvc/application/forms/Preferences.php:40
-#: airtime_mvc/application/forms/PasswordChange.php:43
-#: airtime_mvc/application/forms/AddUser.php:110
-#: airtime_mvc/application/forms/BillingClient.php:193
-#: airtime_mvc/application/forms/SupportSettings.php:131
-#: airtime_mvc/application/forms/EditHistory.php:131
-#: airtime_mvc/application/controllers/LocaleController.php:294
-msgid "Save"
-msgstr "저장"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
-msgid "Repeat Days:"
-msgstr "반복 날짜:"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
-msgid "Register Airtime"
-msgstr "Airtime 등록"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
-#: airtime_mvc/application/forms/GeneralPreferences.php:43
-msgid "Note: Anything larger than 600x600 will be resized."
-msgstr "주의: 600*600보다 큰 이미지는 사이즈가 수정 됩니다"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
-msgid "Show me what I am sending "
-msgstr "보내지는 데이타 보기"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
-msgid "Terms and Conditions"
-msgstr "사용자 약관"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
-msgid "Creating File Summary Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
-msgid "Creating Log Sheet Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
-msgid "Name"
-msgstr "이름"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
-msgid "Add more elements"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
-msgid "Add New Field"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
-msgid "Set Default Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
-msgid "Playout History Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
-msgid "Log Sheet Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
-msgid "New Log Sheet Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
-msgid "No Log Sheet Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
-#: airtime_mvc/application/controllers/LocaleController.php:397
-msgid "Set Default"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
-msgid "File Summary Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
-msgid "New File Summary Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
-msgid "No File Summary Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
-msgid "Disk Space"
-msgstr "디스크 공간"
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
-#: airtime_mvc/application/controllers/LocaleController.php:315
-msgid "Disk"
-msgstr "디스크"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
-#: airtime_mvc/application/forms/AddShowWhen.php:89
-msgid "Duration:"
-msgstr "길이:"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
-msgid "Toggle Details"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
-msgid "Playlist crossfade"
-msgstr "재생 목록 크로스페이드"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-msgid "Remove all content from this smart block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Clear"
-msgstr "지우기"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "Fade in: "
-msgstr "페이드 인: "
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "(ss.t)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-msgid "Fade out: "
-msgstr "페이드 아웃:"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
-#: airtime_mvc/application/forms/EditAudioMD.php:186
-#: airtime_mvc/application/forms/EditHistory.php:141
-#: airtime_mvc/application/controllers/LocaleController.php:295
-#: airtime_mvc/application/controllers/LocaleController.php:318
-msgid "Cancel"
-msgstr "취소"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
-msgid "No smart block currently open"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
-msgid "Show Waveform"
-msgstr "웨이브 폼 보기"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-msgid "Cue In: "
-msgstr "큐 인:"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "(hh:mm:ss.t)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "Cue Out: "
-msgstr "큐 아웃:"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
-msgid "Original Length:"
-msgstr "오리지날 길이"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
-msgid "Expand Static Block"
-msgstr "정적 블록 확장"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
-msgid "Expand Dynamic Block"
-msgstr "동적 블록 확장"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
-msgid "Choose some search criteria above and click Generate to create this playlist."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
-msgid "A track list will be generated when you schedule this smart block into a show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
-msgid "Drag tracks here from your library to add them to the playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-msgid "Shuffle playlist"
-msgstr "재생 목록 셔플"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
-msgid "Shuffle"
-msgstr "셔플"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Empty playlist content"
-msgstr "재생 목록 비우기"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-msgid "Save playlist"
-msgstr "재생 목록 저장"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
-msgid "No open playlist"
-msgstr "열린 재생 목록 없음"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
-msgid "previous"
-msgstr "이전"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
-msgid "play"
-msgstr "재생"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
-msgid "pause"
-msgstr "중지"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
-msgid "next"
-msgstr "다음"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
-msgid "stop"
-msgstr "정지"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
-msgid "max volume"
-msgstr "최대 음량 "
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
-msgid "Update Required"
-msgstr "업데이트가 필요함"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
-#, php-format
-msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
-msgstr "미디어를 재생하기 위해선, 브라우저를 최신 버젼으로 업데이트 하시고, %sFlash plugin%s도 업데이트 해주세요"
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
-msgid "Stream Settings"
-msgstr "락스트림 설정"
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
-msgid "Global"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
-msgid "dB"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
-msgid "Output Streams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
-#: airtime_mvc/application/controllers/LocaleController.php:166
-msgid "Manage Media Folders"
-msgstr "미디어 폴더 관리"
-
-#: airtime_mvc/application/views/scripts/preference/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:56
-msgid "General"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
-msgid "Description"
-msgstr "설명"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
-msgid "Stream URL:"
-msgstr "스트림 URL:"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
-msgid "Default Length:"
-msgstr "기본 길이:"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
-msgid "No webstream"
-msgstr "열린 웹스트림 없음"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
-msgid "Manage Users"
-msgstr "사용자 관리"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
-msgid "New User"
-msgstr "새 사용자"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
-msgid "id"
-msgstr "아이디"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
-#: airtime_mvc/application/forms/PasswordRestore.php:25
-msgid "Username"
-msgstr "아이디"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
-msgid "First Name"
-msgstr "이름"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
-msgid "Last Name"
-msgstr "성"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
-msgid "User Type"
-msgstr "사용자 유형"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
-#, php-format
-msgid "Super Admin details can be changed in your Billing Settings."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
-#: airtime_mvc/application/controllers/LocaleController.php:74
-#: airtime_mvc/application/layouts/scripts/layout.phtml:78
-msgid "Tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
-#: airtime_mvc/application/controllers/LocaleController.php:104
-#: airtime_mvc/application/layouts/scripts/layout.phtml:80
-msgid "Playlists"
-msgstr "재생 목록"
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
-#: airtime_mvc/application/controllers/LocaleController.php:105
-#: airtime_mvc/application/layouts/scripts/layout.phtml:82
-msgid "Smart Blocks"
-msgstr "스마트 블록"
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
-#: airtime_mvc/application/layouts/scripts/layout.phtml:84
-msgid "Webstreams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
-#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
-#: airtime_mvc/application/layouts/scripts/layout.phtml:76
-msgid "Dashboard"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:12
-msgid "Radio Page"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:19
-msgid "Calendar"
-msgstr "스케쥴"
-
-#: airtime_mvc/application/configs/navigation.php:26
-msgid "Widgets"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:48
-msgid "Settings"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:67
-msgid "Users"
-msgstr "계정"
-
-#: airtime_mvc/application/configs/navigation.php:74
-msgid "Streams"
-msgstr "스트림"
-
-#: airtime_mvc/application/configs/navigation.php:82
-msgid "Analytics"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:90
-msgid "Listener Stats"
-msgstr "청취자 통계"
-
-#: airtime_mvc/application/configs/navigation.php:104
-msgid "History Templates"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:113
-msgid "Billing"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:127
-msgid "Account Details"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:134
-msgid "View Invoices"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:150
-msgid "Getting Started"
-msgstr "초보자 가이드"
-
-#: airtime_mvc/application/configs/navigation.php:157
-msgid "FAQ"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:162
-msgid "User Manual"
-msgstr "사용자 메뉴얼"
-
-#: airtime_mvc/application/configs/navigation.php:167
-msgid "File a Support Ticket"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:12
-msgid "Background Colour:"
-msgstr "배경 색:"
-
-#: airtime_mvc/application/forms/AddShowStyle.php:31
-msgid "Text Colour:"
-msgstr "글자 색:"
-
-#: airtime_mvc/application/forms/AddShowStyle.php:49
-msgid "Current Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:72
-msgid "Show Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:87
-msgid "Logo Preview:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:19
-msgid "Push metadata to your station on TuneIn?"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:24
-msgid "Station ID:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:30
-msgid "Partner Key:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:36
-msgid "Partner Id:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:77
-#: airtime_mvc/application/forms/TuneInPreferences.php:86
-msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:14
-msgid "Now Playing"
-msgstr "방송중"
-
-#: airtime_mvc/application/forms/Player.php:25
-msgid "Select Stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:28
-msgid "Auto detect the most appropriate stream to use."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:29
-msgid "Select a stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:41
-msgid " - Mobile friendly"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:45
-msgid " - The player does not support Opus streams."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:71
-msgid "Embeddable code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:72
-msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:37
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
-#: airtime_mvc/application/forms/Login.php:41
-#: airtime_mvc/application/forms/AddUser.php:29
-msgid "Username:"
-msgstr "아이디: "
-
-#: airtime_mvc/application/forms/EditUser.php:48
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
-#: airtime_mvc/application/forms/Login.php:54
-#: airtime_mvc/application/forms/AddUser.php:38
-#: airtime_mvc/application/forms/BillingClient.php:172
-msgid "Password:"
-msgstr "암호: "
-
-#: airtime_mvc/application/forms/EditUser.php:57
-#: airtime_mvc/application/forms/AddUser.php:46
-#: airtime_mvc/application/forms/BillingClient.php:181
-msgid "Verify Password:"
-msgstr "암호 확인:"
-
-#: airtime_mvc/application/forms/EditUser.php:67
-#: airtime_mvc/application/forms/AddUser.php:55
-msgid "Firstname:"
-msgstr "이름:"
-
-#: airtime_mvc/application/forms/EditUser.php:75
-#: airtime_mvc/application/forms/AddUser.php:61
-msgid "Lastname:"
-msgstr "성:"
-
-#: airtime_mvc/application/forms/EditUser.php:83
-#: airtime_mvc/application/forms/RegisterAirtime.php:51
-#: airtime_mvc/application/forms/AddUser.php:67
-#: airtime_mvc/application/forms/SupportSettings.php:43
-msgid "Email:"
-msgstr "이메일"
-
-#: airtime_mvc/application/forms/EditUser.php:94
-#: airtime_mvc/application/forms/AddUser.php:76
-msgid "Mobile Phone:"
-msgstr "휴대전화:"
-
-#: airtime_mvc/application/forms/EditUser.php:102
-#: airtime_mvc/application/forms/AddUser.php:82
-msgid "Skype:"
-msgstr "스카입:"
-
-#: airtime_mvc/application/forms/EditUser.php:110
-#: airtime_mvc/application/forms/AddUser.php:88
-msgid "Jabber:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:129
-msgid "Interface Timezone:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:155
-#: airtime_mvc/application/forms/AddUser.php:120
-msgid "Login name is not unique."
-msgstr "사용할수 없는 아이디 입니다"
-
-#: airtime_mvc/application/forms/AddShowRR.php:10
-msgid "Record from Line In?"
-msgstr "Line In으로 녹음"
-
-#: airtime_mvc/application/forms/AddShowRR.php:16
-msgid "Rebroadcast?"
-msgstr "재방송?"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:16
-msgid "'%value%' does not fit the time format 'HH:mm'"
-msgstr "'%value%'은 시간 형식('HH:mm')에 맞지 않습니다."
-
-#: airtime_mvc/application/forms/AddShowWhen.php:22
-msgid "Start Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:37
-msgid "In the Future:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:64
-msgid "End Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:98
-msgid "Timezone:"
-msgstr "시간대:"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:107
-msgid "Repeats?"
-msgstr "반복?"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:139
-msgid "Cannot create show in the past"
-msgstr "쇼를 과거에 생성 할수 없습니다"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:147
-msgid "Cannot modify start date/time of the show that is already started"
-msgstr "이미 시작한 쇼의 시작 날짜/시간을 바꿀수 없습니다"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:164
-msgid "Cannot have duration < 0m"
-msgstr "길이가 0m 보다 작을수 없습니다"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:168
-msgid "Cannot have duration 00h 00m"
-msgstr "길이가 00h 00m인 쇼를 생성 할수 없습니다"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:175
-msgid "Cannot have duration greater than 24h"
-msgstr "쇼의 길이가 24h를 넘을수 없습니다"
-
-#: airtime_mvc/application/forms/AddShowWho.php:10
-msgid "Search Users:"
-msgstr "사용자 검색:"
-
-#: airtime_mvc/application/forms/AddShowWho.php:24
-msgid "DJs:"
-msgstr "DJ들:"
-
-#: airtime_mvc/application/forms/PasswordChange.php:17
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
-msgid "Password"
-msgstr "암호"
-
-#: airtime_mvc/application/forms/PasswordChange.php:28
-msgid "Confirm new password"
-msgstr "새 암호 확인"
-
-#: airtime_mvc/application/forms/PasswordChange.php:36
-msgid "Password confirmation does not match your password."
-msgstr "암호와 암호 확인 값이 일치 하지 않습니다."
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
-msgid "Station Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
-#: airtime_mvc/application/forms/GeneralPreferences.php:127
-msgid "Station Timezone"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
-msgid "Auto Switch Off:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
-msgid "Auto Switch On:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
-msgid "Switch Transition Fade (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
-#: airtime_mvc/application/forms/GeneralPreferences.php:68
-#: airtime_mvc/application/forms/GeneralPreferences.php:82
-#: airtime_mvc/application/forms/GeneralPreferences.php:96
-msgid "Please enter a time in seconds (eg. 0.5)"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
-#: airtime_mvc/application/forms/AddShowLiveStream.php:48
-msgid "Host:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
-#: airtime_mvc/application/forms/AddShowLiveStream.php:54
-msgid "Port:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
-#: airtime_mvc/application/forms/AddShowLiveStream.php:60
-msgid "Mount:"
-msgstr ""
-
-#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
-msgid "Value is required and can't be empty"
-msgstr "이 필드는 비워둘수 없습니다."
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:25
-#: airtime_mvc/application/forms/RegisterAirtime.php:30
-#: airtime_mvc/application/forms/SupportSettings.php:18
-msgid "Station Name"
-msgstr "방송국 이름"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:33
-msgid "Station Description"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:42
-#: airtime_mvc/application/forms/RegisterAirtime.php:106
-msgid "Station Logo:"
-msgstr "방송국 로고"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:62
-msgid "Default Crossfade Duration (s):"
-msgstr "기본 크로스페이드 길이(s)"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:76
-msgid "Default Fade In (s):"
-msgstr "기본 페이드 인(s)"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:90
-msgid "Default Fade Out (s):"
-msgstr "기본 페이드 아웃(s)"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:102
-msgid "Public Airtime API"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:103
-msgid "Required for embeddable schedule widget."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:105
-msgid "Disabled"
-msgstr "미사용"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:106
-msgid "Enabled"
-msgstr "사용"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:109
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
msgid ""
-"Enabling this feature will allow Airtime to provide schedule data\n"
-" to external widgets that can be embedded in your website."
+"To configure and use the embeddable player you must:
\n"
+" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
+" 2. Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/forms/GeneralPreferences.php:120
-msgid "Default Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:134
-msgid "Week Starts On"
-msgstr "주 시작일"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:150
-msgid "Display login button on your Radio Page?"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:158
-#: airtime_mvc/application/controllers/LocaleController.php:249
-msgid "Sunday"
-msgstr "일요일"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:159
-#: airtime_mvc/application/controllers/LocaleController.php:250
-msgid "Monday"
-msgstr "월요일"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:160
-#: airtime_mvc/application/controllers/LocaleController.php:251
-msgid "Tuesday"
-msgstr "화요일"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:161
-#: airtime_mvc/application/controllers/LocaleController.php:252
-msgid "Wednesday"
-msgstr "수요일"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:162
-#: airtime_mvc/application/controllers/LocaleController.php:253
-msgid "Thursday"
-msgstr "목요일"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:163
-#: airtime_mvc/application/controllers/LocaleController.php:254
-msgid "Friday"
-msgstr "금요일"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:164
-#: airtime_mvc/application/controllers/LocaleController.php:255
-msgid "Saturday"
-msgstr "토요일"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
-msgid "Default License:"
-msgstr "기본 라이센스:"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
-msgid "All rights are reserved"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
-msgid "The work is in the public domain"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
-msgid "Creative Commons Attribution"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
-msgid "Creative Commons Attribution Noncommercial"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
-msgid "Creative Commons Attribution No Derivative Works"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
-msgid "Creative Commons Attribution Share Alike"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
-msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
-msgid "Creative Commons Attribution Noncommercial Share Alike"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
-msgid "Default Sharing Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
-msgid "Public"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
-msgid "Private"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:18
-#: airtime_mvc/application/forms/DateRange.php:16
-msgid "Date Start:"
-msgstr "시작"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:37
-#: airtime_mvc/application/forms/ShowBuilder.php:65
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
-#: airtime_mvc/application/forms/DateRange.php:35
-#: airtime_mvc/application/forms/DateRange.php:63
-msgid "Invalid character entered"
-msgstr "허용되지 않는 문자입니다"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:46
-#: airtime_mvc/application/forms/AddShowRepeats.php:56
-#: airtime_mvc/application/forms/DateRange.php:44
-msgid "Date End:"
-msgstr "종료"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:72
-#: airtime_mvc/application/forms/ShowBuilder.php:88
-msgid "Filter by Show"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:80
-msgid "All My Shows:"
-msgstr "내 쇼:"
-
-#: airtime_mvc/application/forms/EditAudioMD.php:145
-msgid "ISRC Number:"
-msgstr "ISRC 넘버"
-
-#: airtime_mvc/application/forms/EditAudioMD.php:176
-msgid "OK"
-msgstr "확인"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
-msgid "Day must be specified"
-msgstr "날짜를 설정하세요"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
-msgid "Time must be specified"
-msgstr "시간을 설정하세요"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
-msgid "Must wait at least 1 hour to rebroadcast"
-msgstr "재방송 설정까지 1시간 기간이 필요합니다"
-
-#: airtime_mvc/application/forms/AddShowWhat.php:30
-msgid "Untitled Show"
-msgstr "이름없는 쇼"
-
-#: airtime_mvc/application/forms/AddShowWhat.php:69
-msgid "Instance Description:"
-msgstr ""
-
-#: airtime_mvc/application/forms/DangerousPreferences.php:12
-msgid "Delete All Tracks in Library"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:39
-#: airtime_mvc/application/forms/SupportSettings.php:31
-msgid "Phone:"
-msgstr "전화"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:62
-#: airtime_mvc/application/forms/SupportSettings.php:54
-msgid "Station Web Site:"
-msgstr "방송국 웹사이트"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:73
-#: airtime_mvc/application/forms/BillingClient.php:102
-#: airtime_mvc/application/forms/SupportSettings.php:65
-msgid "Country:"
-msgstr "나라"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:84
-#: airtime_mvc/application/forms/BillingClient.php:70
-#: airtime_mvc/application/forms/SupportSettings.php:76
-msgid "City:"
-msgstr "도시"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:96
-#: airtime_mvc/application/forms/SupportSettings.php:88
-msgid "Station Description:"
-msgstr "방송국 설명"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:116
-#: airtime_mvc/application/forms/SupportSettings.php:98
-#: airtime_mvc/application/controllers/LocaleController.php:341
-msgid "Send support feedback"
-msgstr "사용자 피드백을 보냄"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:126
-#: airtime_mvc/application/forms/SupportSettings.php:108
-#, php-format
-msgid "Promote my station on %s"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:151
-#: airtime_mvc/application/forms/SupportSettings.php:120
-#, php-format
-msgid "By checking this box, I agree to %s's %sprivacy policy%s."
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:169
-#: airtime_mvc/application/forms/SupportSettings.php:143
-msgid "You have to agree to privacy policy."
-msgstr "사용자 약관에 동의 하십시오"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:10
-msgid "Link:"
-msgstr "링크:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:16
-msgid "Repeat Type:"
-msgstr "반복 유형:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:19
-msgid "weekly"
-msgstr "주간"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:20
-msgid "every 2 weeks"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:21
-msgid "every 3 weeks"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:22
-msgid "every 4 weeks"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:23
-msgid "monthly"
-msgstr "월간"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:32
-msgid "Select Days:"
-msgstr "날짜 선택"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:35
-#: airtime_mvc/application/controllers/LocaleController.php:256
-msgid "Sun"
-msgstr "일"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:36
-#: airtime_mvc/application/controllers/LocaleController.php:257
-msgid "Mon"
-msgstr "월"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:37
-#: airtime_mvc/application/controllers/LocaleController.php:258
-msgid "Tue"
-msgstr "화"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:38
-#: airtime_mvc/application/controllers/LocaleController.php:259
-msgid "Wed"
-msgstr "수"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:39
-#: airtime_mvc/application/controllers/LocaleController.php:260
-msgid "Thu"
-msgstr "목"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:40
-#: airtime_mvc/application/controllers/LocaleController.php:261
-msgid "Fri"
-msgstr "금"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:41
-#: airtime_mvc/application/controllers/LocaleController.php:262
-msgid "Sat"
-msgstr "토"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:47
-msgid "Repeat By:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the month"
-msgstr "월중 날짜"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the week"
-msgstr "주중 날짜"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:69
-msgid "No End?"
-msgstr "무한 반복?"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:106
-msgid "End date must be after start date"
-msgstr "종료 일이 시작일 보다 먼져 입니다."
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:113
-msgid "Please select a repeat day"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:10
-#, php-format
-msgid "Use %s Authentication:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:16
-msgid "Use Custom Authentication:"
-msgstr "Custom 인증 사용"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:25
-msgid "Custom Username"
-msgstr "Custom 아이디"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:37
-msgid "Custom Password"
-msgstr "Custom 암호"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:77
-msgid "Username field cannot be empty."
-msgstr "아이디를 입력해주세요"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:82
-msgid "Password field cannot be empty."
-msgstr "암호를 입력해주세요"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
-msgid "Enabled:"
-msgstr "사용:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
-msgid "Mobile:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
-msgid "Stream Type:"
-msgstr "스트림 타입:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
-msgid "Service Type:"
-msgstr "서비스 타입:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
-msgid "Channels:"
-msgstr "채널:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "1 - Mono"
-msgstr "1 - 모노"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "2 - Stereo"
-msgstr "2 - 스테레오"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
-msgid "Server"
-msgstr "서버"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
-msgid "Port"
-msgstr "포트"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
-msgid "Only numbers are allowed."
-msgstr "숫자만 허용 됩니다"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
-msgid "URL"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
-msgid "Mount Point"
-msgstr "마운트 지점"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
-msgid "Admin User"
-msgstr "관리자 아이디"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
-msgid "Admin Password"
-msgstr "관리자 암호"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
-#: airtime_mvc/application/controllers/LocaleController.php:173
-msgid "Getting information from the server..."
-msgstr "서버에서 정보를 받는중..."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
-msgid "Server cannot be empty."
-msgstr "서버를 지정해주세요"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
-msgid "Port cannot be empty."
-msgstr "포트를 지정해주세요"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
-msgid "Mount cannot be empty with Icecast server."
-msgstr "Icecast 서버는 마운트 지점을 지정해야 합니다"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
-msgid "'%value%' is no valid email address in the basic format local-part@hostname"
-msgstr "'%value%'은 맞지 않는 이메일 형식 입니다."
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
-msgid "'%value%' does not fit the date format '%format%'"
-msgstr "'%value%'은 날짜 형식('%format%')에 맞지 않습니다."
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
-msgid "'%value%' is less than %min% characters long"
-msgstr "'%value%'는 %min%글자 보다 짧을수 없습니다"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
-msgid "'%value%' is more than %max% characters long"
-msgstr "'%value%'는 %max%글자 보다 길수 없습니다"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
-msgid "'%value%' is not between '%min%' and '%max%', inclusively"
-msgstr "'%value%'은 '%min%'와 '%max%' 사이에 있지 않습니다."
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
-msgid "Passwords do not match"
-msgstr "암호가 맞지 않습니다"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
-msgid "hours"
-msgstr "시간"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
-msgid "minutes"
-msgstr "분"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
-msgid "Randomly"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
-msgid "Newest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
-msgid "Oldest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
-msgid "Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
-msgid "Static"
-msgstr "정적(Static)"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
-msgid "Dynamic"
-msgstr "동적(Dynamic)"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
-msgid "Allow Repeated Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
-msgid "Sort Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
-msgid "Limit to:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
-msgid "Generate playlist content and save criteria"
-msgstr "재생 목록 내용 생성후 설정 저장"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
-msgid "Generate"
-msgstr "생성"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
-msgid "Shuffle playlist content"
-msgstr "재생 목록 내용 셔플하기"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
-msgid "Limit cannot be empty or smaller than 0"
-msgstr "길이 제한은 비어두거나 0으로 설정할수 없습니다"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
-msgid "Limit cannot be more than 24 hrs"
-msgstr "길이 제한은 24h 보다 클수 없습니다"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
-msgid "The value should be an integer"
-msgstr "이 값은 정수(integer) 입니다"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
-msgid "500 is the max item limit value you can set"
-msgstr "아이템 곗수의 최대값은 500 입니다"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
-msgid "You must select Criteria and Modifier"
-msgstr "기준과 모디파이어를 골라주세요"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
-msgid "'Length' should be in '00:00:00' format"
-msgstr "길이는 00:00:00 형태로 입력하세요"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
-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:594
-msgid "The value has to be numeric"
-msgstr "이 값은 숫자만 허용 됩니다"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
-msgid "The value should be less then 2147483648"
-msgstr "이 값은 2147483648보다 작은 수만 허용 됩니다"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
-#, php-format
-msgid "The value should be less than %s characters"
-msgstr "이 값은 %s 문자보다 작은 길이만 허용 됩니다"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
-msgid "Value cannot be empty"
-msgstr "이 값은 비어둘수 없습니다"
-
-#: airtime_mvc/application/forms/Login.php:102
-msgid "Type the characters you see in the picture below."
-msgstr "밑에 보이는 그림에 나온 문자를 입력하세요"
-
-#: airtime_mvc/application/forms/StreamSetting.php:26
-msgid "Icecast Vorbis Metadata"
-msgstr "Icecast Vorbis 메타데이타"
-
-#: airtime_mvc/application/forms/StreamSetting.php:36
-msgid "Stream Label:"
-msgstr "스트림 레이블"
-
-#: airtime_mvc/application/forms/StreamSetting.php:37
-msgid "Artist - Title"
-msgstr "아티스트 - 제목"
-
-#: airtime_mvc/application/forms/StreamSetting.php:38
-msgid "Show - Artist - Title"
-msgstr "쇼 - 아티스트 - 제목"
-
-#: airtime_mvc/application/forms/StreamSetting.php:39
-msgid "Station name - Show name"
-msgstr "방송국 이름 - 쇼 이름"
-
-#: airtime_mvc/application/forms/StreamSetting.php:45
-msgid "Off Air Metadata"
-msgstr "오프 에어 메타데이타"
-
-#: airtime_mvc/application/forms/StreamSetting.php:51
-msgid "Enable Replay Gain"
-msgstr "리플레이 게인 활성화"
-
-#: airtime_mvc/application/forms/StreamSetting.php:57
-msgid "Replay Gain Modifier"
-msgstr "리플레이 게인 설정"
-
-#: airtime_mvc/application/forms/StreamSetting.php:65
-msgid "Streaming Server:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Airtime Pro Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Custom / 3rd Party Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:95
-msgid "User Type:"
-msgstr "유저 타입"
-
-#: airtime_mvc/application/forms/AddUser.php:99
-#: airtime_mvc/application/controllers/LocaleController.php:324
-msgid "Guest"
-msgstr "손님"
-
-#: airtime_mvc/application/forms/AddUser.php:100
-#: airtime_mvc/application/controllers/LocaleController.php:322
-msgid "DJ"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:101
-#: airtime_mvc/application/controllers/LocaleController.php:323
-msgid "Program Manager"
-msgstr "프로그램 매니저"
-
-#: airtime_mvc/application/forms/AddUser.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:321
-msgid "Admin"
-msgstr "관리자"
-
-#: airtime_mvc/application/forms/BillingClient.php:17
-msgid "First Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:26
-msgid "Last Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:35
-msgid "Company Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:44
-msgid "Email Address:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:54
-msgid "Address 1:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:63
-msgid "Address 2:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:80
-msgid "State/Region:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:89
-msgid "Zip Code / Postal Code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:112
-msgid "Phone Number:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:121
-msgid "Please choose a security question:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:126
-msgid "What is the name of your favorite childhood friend?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:127
-msgid "What school did you attend for sixth grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:128
-msgid "In what city did you meet your spouse/significant other?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:129
-msgid "What street did you live on in third grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:130
-msgid "What is the first name of the boy or girl that you first kissed?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:131
-msgid "In what city or town was your first job?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:135
-msgid "Please enter an answer:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:152
-msgid "VAT/Tax ID (EU only)"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:162
-msgid "Subscribe to Sourcefabric newsletter"
-msgstr ""
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
-msgid "Import Folder:"
-msgstr "폴더 가져오기"
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
-msgid "Watched Folders:"
-msgstr "모니터중인 폴더"
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
-msgid "Not a valid Directory"
-msgstr "옳치 않은 폴더 입니다"
-
-#: airtime_mvc/application/forms/PasswordRestore.php:14
-msgid "Email"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordRestore.php:36
-msgid "Reset password"
-msgstr "암호 초기화"
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
-msgid "Plan type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
-msgid "Billing cycle:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
-msgid "Payment method:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
-msgid "PayPal"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
-msgid "Credit Card via 2Checkout"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:213
-#, php-format
-msgid "The year %s must be within the range of 1753 - 9999"
-msgstr "년도 값은 %s 1753 - 9999 입니다"
-
-#: airtime_mvc/application/common/DateHelper.php:216
-#, php-format
-msgid "%s-%s-%s is not a valid date"
-msgstr "%s-%s-%s는 맞지 않는 날짜 입니다"
-
-#: airtime_mvc/application/common/DateHelper.php:240
-#, php-format
-msgid "%s:%s:%s is not a valid time"
-msgstr "%s:%s:%s는 맞지 않는 시간 입니다"
-
-#: airtime_mvc/application/common/UsabilityHints.php:55
-msgid "Upload some tracks below to add them to your library!"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:57
-#, php-format
-msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:63
-msgid "Click the 'New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:65
-#, php-format
-msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:73
-msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:75
-#, php-format
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
msgid ""
-"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
-" %sCreate an unlinked show now%s."
+"To use the embeddable weekly schedule widget you must:
\n"
+" Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/common/UsabilityHints.php:80
-msgid "To start broadcasting, click on the current show and select 'Schedule Show'"
-msgstr ""
+#: airtime_mvc/application/controllers/ListenerstatController.php:51
+msgid "Please make sure admin user/password is correct on System->Streams page."
+msgstr "시스템->스트림 에서 관리자 아이디/암호를 다시 확인하세요."
-#: airtime_mvc/application/common/UsabilityHints.php:82
+#: airtime_mvc/application/controllers/UserController.php:86
+msgid "User added successfully!"
+msgstr "사용자가 추가 되었습니다!"
+
+#: airtime_mvc/application/controllers/UserController.php:88
+msgid "User updated successfully!"
+msgstr "사용자 정보가 업데이트 되었습니다!"
+
+#: airtime_mvc/application/controllers/UserController.php:187
+msgid "Settings updated successfully!"
+msgstr "세팅이 성공적으로 업데이트 되었습니다!"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:53
#, php-format
-msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
-msgstr ""
+msgid "You are viewing an older version of %s"
+msgstr "오래된 %s를 보고 있습니다"
-#: airtime_mvc/application/common/UsabilityHints.php:89
-msgid "Click on the show starting next and select 'Schedule Show'"
-msgstr ""
+#: airtime_mvc/application/controllers/PlaylistController.php:140
+msgid "You cannot add tracks to dynamic blocks."
+msgstr "동적인 스마트 블록에는 트랙을 추가 할수 없습니다"
-#: airtime_mvc/application/common/UsabilityHints.php:91
+#: airtime_mvc/application/controllers/PlaylistController.php:161
#, php-format
-msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+msgid "You don't have permission to delete selected %s(s)."
+msgstr "선택하신 %s를 삭제 할수 있는 권한이 부족합니다."
+
+#: airtime_mvc/application/controllers/PlaylistController.php:174
+msgid "You can only add tracks to smart block."
+msgstr "스마트 블록에는 트랙만 추가 가능합니다"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:180
+#: airtime_mvc/application/controllers/LocaleController.php:50
+msgid "You can only add tracks, smart blocks, and webstreams to playlists."
+msgstr "재생 몰록에는 파일, 스마트 블록, 웹스트림만 추가 가능합니다"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:192
+msgid "Untitled Playlist"
+msgstr "제목없는 재생목록"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:194
+msgid "Untitled Smart Block"
+msgstr "제목없는 스마트 블록"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:522
+msgid "Unknown Playlist"
+msgstr "모르는 재생목록"
+
+#: airtime_mvc/application/controllers/ErrorController.php:78
+msgid "Page not found."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:87
+msgid "The requested action is not supported."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:98
+msgid "You do not have permission to access this resource."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:109
+msgid "An internal application error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/controllers/Apiv2Controller.php:77
+#: airtime_mvc/application/controllers/ApiController.php:79
+msgid "You are not allowed to access this resource."
+msgstr "권한이 부족합니다"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:72
+msgid "Preferences updated."
+msgstr "설정이 업데이트 되었습니다"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:115
+msgid "Support setting updated."
+msgstr "지원 설정이 업데이트 되었습니다"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:123
+msgid "Support Feedback"
+msgstr "사용자 피드백"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:251
+msgid "Stream Setting Updated."
+msgstr "스트림 설정이 업데이트 되었습니다"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:342
+msgid "path should be specified"
+msgstr "경로를 입력해주세요"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:437
+msgid "Problem with Liquidsoap..."
+msgstr "Liquidsoap 문제..."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:493
+msgid "Request method not accepted"
+msgstr ""
+
+#: airtime_mvc/application/controllers/DashboardController.php:35
+#: airtime_mvc/application/controllers/DashboardController.php:84
+msgid "You don't have permission to disconnect source."
+msgstr "소스를 끊을수 있는 권한이 부족합니다"
+
+#: airtime_mvc/application/controllers/DashboardController.php:37
+#: airtime_mvc/application/controllers/DashboardController.php:86
+msgid "There is no source connected to this input."
+msgstr "연결된 소스가 없습니다"
+
+#: airtime_mvc/application/controllers/DashboardController.php:81
+msgid "You don't have permission to switch source."
+msgstr "소스를 바꿀수 있는 권한이 부족합니다"
+
+#: airtime_mvc/application/controllers/LoginController.php:43
+msgid "Please enter your username and password."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:93
+msgid "Wrong username or password provided. Please try again."
+msgstr "아이디와 암호가 맞지 않습니다. 다시 시도해주세요"
+
+#: airtime_mvc/application/controllers/LoginController.php:167
+msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
+msgstr "이메일을 전송 할수 없습니다. 메일 서버 세팅을 다시 확인 하여 주세요"
+
+#: airtime_mvc/application/controllers/LoginController.php:173
+msgid "There was a problem with the username or email address you entered."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ApiController.php:244
+#: airtime_mvc/application/controllers/ApiController.php:317
+#: airtime_mvc/application/controllers/ApiController.php:392
+#: airtime_mvc/application/controllers/ApiController.php:435
+#: airtime_mvc/application/controllers/ApiController.php:474
+#: airtime_mvc/application/controllers/ApiController.php:507
+msgid "You are not allowed to access this resource. "
+msgstr "권한이 부족합니다"
+
+#: airtime_mvc/application/controllers/ApiController.php:698
+#: airtime_mvc/application/controllers/ApiController.php:718
+#: airtime_mvc/application/controllers/ApiController.php:730
+#, php-format
+msgid "File does not exist in %s"
+msgstr ""
+
+#: airtime_mvc/application/controllers/ApiController.php:781
+msgid "Bad request. no 'mode' parameter passed."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ApiController.php:791
+msgid "Bad request. 'mode' parameter is invalid"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:30
@@ -2908,11 +559,6 @@ msgstr "아이템 %s개 추가"
msgid "You can only add tracks to smart blocks."
msgstr "스마트 블록에는 파일만 추가 가능합니다"
-#: airtime_mvc/application/controllers/LocaleController.php:50
-#: airtime_mvc/application/controllers/PlaylistController.php:180
-msgid "You can only add tracks, smart blocks, and webstreams to playlists."
-msgstr "재생 몰록에는 파일, 스마트 블록, 웹스트림만 추가 가능합니다"
-
#: airtime_mvc/application/controllers/LocaleController.php:53
msgid "Please select a cursor position on timeline."
msgstr "타임 라인에서 커서를 먼져 선택 하여 주세요."
@@ -2953,11 +599,6 @@ msgstr ""
msgid "Click 'New' to create one."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:66
-#: airtime_mvc/application/controllers/LibraryController.php:123
-msgid "Edit Metadata"
-msgstr "메타데이타 수정"
-
#: airtime_mvc/application/controllers/LocaleController.php:67
msgid "Add to selected show"
msgstr "선택된 쇼에 추가"
@@ -2986,6 +627,12 @@ msgstr "선택된 아이템들을 모두 지우시겠습니다?"
msgid "Scheduled"
msgstr "스케쥴됨"
+#: airtime_mvc/application/controllers/LocaleController.php:74
+#: airtime_mvc/application/layouts/scripts/layout.phtml:78
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
+msgid "Tracks"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:75
#: airtime_mvc/application/layouts/scripts/layout.phtml:60
msgid "Playlist"
@@ -2995,18 +642,96 @@ msgstr ""
msgid "Bit Rate"
msgstr "비트 레이트"
+#: airtime_mvc/application/controllers/LocaleController.php:80
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
+#: airtime_mvc/application/models/Block.php:1354
+msgid "BPM"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:84
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
+#: airtime_mvc/application/models/Block.php:1361
+msgid "Encoded By"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:89
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
+#: airtime_mvc/application/models/Block.php:1367
+msgid "Last Modified"
+msgstr "마지막 수정일"
+
+#: airtime_mvc/application/controllers/LocaleController.php:90
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
+#: airtime_mvc/application/models/Block.php:1368
+msgid "Last Played"
+msgstr "마지막 방송일"
+
+#: airtime_mvc/application/controllers/LocaleController.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
+#: airtime_mvc/application/models/Block.php:1370
+msgid "Mime"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:94
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
+#: airtime_mvc/application/models/Block.php:1372
+msgid "Owner"
+msgstr "소유자"
+
+#: airtime_mvc/application/controllers/LocaleController.php:95
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
+#: airtime_mvc/application/models/Block.php:1373
+msgid "Replay Gain"
+msgstr "리플레이 게인"
+
#: airtime_mvc/application/controllers/LocaleController.php:96
msgid "Sample Rate"
msgstr "샘플 레이트"
+#: airtime_mvc/application/controllers/LocaleController.php:97
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
+#: airtime_mvc/application/models/Block.php:1376
+msgid "Track Number"
+msgstr "트랙 번호"
+
+#: airtime_mvc/application/controllers/LocaleController.php:98
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
+#: airtime_mvc/application/models/Block.php:1377
+msgid "Uploaded"
+msgstr "업로드 날짜"
+
+#: airtime_mvc/application/controllers/LocaleController.php:99
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
+#: airtime_mvc/application/models/Block.php:1378
+msgid "Website"
+msgstr "웹싸이트"
+
#: airtime_mvc/application/controllers/LocaleController.php:101
msgid "Loading..."
msgstr "로딩..."
+#: airtime_mvc/application/controllers/LocaleController.php:102
+#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
+msgid "All"
+msgstr "전체"
+
#: airtime_mvc/application/controllers/LocaleController.php:103
msgid "Files"
msgstr "파일"
+#: airtime_mvc/application/controllers/LocaleController.php:104
+#: airtime_mvc/application/layouts/scripts/layout.phtml:80
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
+msgid "Playlists"
+msgstr "재생 목록"
+
+#: airtime_mvc/application/controllers/LocaleController.php:105
+#: airtime_mvc/application/layouts/scripts/layout.phtml:82
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
+msgid "Smart Blocks"
+msgstr "스마트 블록"
+
#: airtime_mvc/application/controllers/LocaleController.php:106
msgid "Web Streams"
msgstr "웹스트림"
@@ -3151,6 +876,74 @@ msgstr "스마트 블록이 저장 되었습니다"
msgid "Processing..."
msgstr "진행중..."
+#: airtime_mvc/application/controllers/LocaleController.php:151
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
+#: airtime_mvc/application/models/Block.php:1383
+msgid "Select modifier"
+msgstr "모디파이어 선택"
+
+#: airtime_mvc/application/controllers/LocaleController.php:152
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
+#: airtime_mvc/application/models/Block.php:1384
+msgid "contains"
+msgstr "다음을 포합"
+
+#: airtime_mvc/application/controllers/LocaleController.php:153
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
+#: airtime_mvc/application/models/Block.php:1385
+msgid "does not contain"
+msgstr "다음을 포함하지 않는"
+
+#: airtime_mvc/application/controllers/LocaleController.php:154
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
+#: airtime_mvc/application/models/Block.php:1386
+#: airtime_mvc/application/models/Block.php:1390
+msgid "is"
+msgstr "다음과 같음"
+
+#: airtime_mvc/application/controllers/LocaleController.php:155
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
+#: airtime_mvc/application/models/Block.php:1387
+#: airtime_mvc/application/models/Block.php:1391
+msgid "is not"
+msgstr "다음과 같지 않음"
+
+#: airtime_mvc/application/controllers/LocaleController.php:156
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
+#: airtime_mvc/application/models/Block.php:1388
+msgid "starts with"
+msgstr "다음으로 시작"
+
+#: airtime_mvc/application/controllers/LocaleController.php:157
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
+#: airtime_mvc/application/models/Block.php:1389
+msgid "ends with"
+msgstr "다음으로 끝남"
+
+#: airtime_mvc/application/controllers/LocaleController.php:158
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
+#: airtime_mvc/application/models/Block.php:1392
+msgid "is greater than"
+msgstr "다음 보다 큰"
+
+#: airtime_mvc/application/controllers/LocaleController.php:159
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
+#: airtime_mvc/application/models/Block.php:1393
+msgid "is less than"
+msgstr "다음 보타 작은"
+
+#: airtime_mvc/application/controllers/LocaleController.php:160
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
+#: airtime_mvc/application/models/Block.php:1394
+msgid "is in the range"
+msgstr "다음 범위 안에 있는 "
+
#: airtime_mvc/application/controllers/LocaleController.php:162
msgid "Choose Storage Folder"
msgstr "저장 폴더 선택"
@@ -3165,6 +958,11 @@ msgid ""
"This will remove the files from your Airtime library!"
msgstr "저장 폴더를 수정하길 원하십니까? 수정시 모든 파일이 라이브러리에서 사라집니다."
+#: airtime_mvc/application/controllers/LocaleController.php:166
+#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
+msgid "Manage Media Folders"
+msgstr "미디어 폴더 관리"
+
#: airtime_mvc/application/controllers/LocaleController.php:167
msgid "Are you sure you want to remove the watched folder?"
msgstr "선택하신 폴더를 모니터 리스트에서 삭제 하시겠습ㄴ지까?"
@@ -3186,6 +984,11 @@ msgstr "스트리밍 서버에 접속됨"
msgid "The stream is disabled"
msgstr "스트림이 사용되지 않음"
+#: airtime_mvc/application/controllers/LocaleController.php:173
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
+msgid "Getting information from the server..."
+msgstr "서버에서 정보를 받는중..."
+
#: airtime_mvc/application/controllers/LocaleController.php:174
msgid "Can not connect to the streaming server"
msgstr "스트리밍 서버에 접속 할수 없음"
@@ -3413,6 +1216,76 @@ msgstr ""
msgid "Month"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:249
+#: airtime_mvc/application/forms/GeneralPreferences.php:158
+msgid "Sunday"
+msgstr "일요일"
+
+#: airtime_mvc/application/controllers/LocaleController.php:250
+#: airtime_mvc/application/forms/GeneralPreferences.php:159
+msgid "Monday"
+msgstr "월요일"
+
+#: airtime_mvc/application/controllers/LocaleController.php:251
+#: airtime_mvc/application/forms/GeneralPreferences.php:160
+msgid "Tuesday"
+msgstr "화요일"
+
+#: airtime_mvc/application/controllers/LocaleController.php:252
+#: airtime_mvc/application/forms/GeneralPreferences.php:161
+msgid "Wednesday"
+msgstr "수요일"
+
+#: airtime_mvc/application/controllers/LocaleController.php:253
+#: airtime_mvc/application/forms/GeneralPreferences.php:162
+msgid "Thursday"
+msgstr "목요일"
+
+#: airtime_mvc/application/controllers/LocaleController.php:254
+#: airtime_mvc/application/forms/GeneralPreferences.php:163
+msgid "Friday"
+msgstr "금요일"
+
+#: airtime_mvc/application/controllers/LocaleController.php:255
+#: airtime_mvc/application/forms/GeneralPreferences.php:164
+msgid "Saturday"
+msgstr "토요일"
+
+#: airtime_mvc/application/controllers/LocaleController.php:256
+#: airtime_mvc/application/forms/AddShowRepeats.php:35
+msgid "Sun"
+msgstr "일"
+
+#: airtime_mvc/application/controllers/LocaleController.php:257
+#: airtime_mvc/application/forms/AddShowRepeats.php:36
+msgid "Mon"
+msgstr "월"
+
+#: airtime_mvc/application/controllers/LocaleController.php:258
+#: airtime_mvc/application/forms/AddShowRepeats.php:37
+msgid "Tue"
+msgstr "화"
+
+#: airtime_mvc/application/controllers/LocaleController.php:259
+#: airtime_mvc/application/forms/AddShowRepeats.php:38
+msgid "Wed"
+msgstr "수"
+
+#: airtime_mvc/application/controllers/LocaleController.php:260
+#: airtime_mvc/application/forms/AddShowRepeats.php:39
+msgid "Thu"
+msgstr "목"
+
+#: airtime_mvc/application/controllers/LocaleController.php:261
+#: airtime_mvc/application/forms/AddShowRepeats.php:40
+msgid "Fri"
+msgstr "금"
+
+#: airtime_mvc/application/controllers/LocaleController.php:262
+#: airtime_mvc/application/forms/AddShowRepeats.php:41
+msgid "Sat"
+msgstr "토"
+
#: airtime_mvc/application/controllers/LocaleController.php:263
msgid "Shows longer than their scheduled time will be cut off by a following show."
msgstr "쇼가 자신의 길이보다 더 길게 스케쥴 되었다면, 쇼 길이에 맞게 짤라지며, 다음 쇼가 시작 됩니다"
@@ -3422,7 +1295,7 @@ msgid "Cancel Current Show?"
msgstr "현재 방송중인 쇼를 중단 하시겠습니까?"
#: airtime_mvc/application/controllers/LocaleController.php:265
-#: airtime_mvc/application/controllers/LocaleController.php:309
+#: airtime_mvc/application/controllers/LocaleController.php:312
msgid "Stop recording current show?"
msgstr "현재 녹음 중인 쇼를 중단 하시겠습니까?"
@@ -3442,6 +1315,11 @@ msgstr "모든 내용물 삭제하시겠습까?"
msgid "Delete selected item(s)?"
msgstr "선택한 아이템을 삭제 하시겠습니까?"
+#: airtime_mvc/application/controllers/LocaleController.php:273
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
+msgid "Start"
+msgstr "시작"
+
#: airtime_mvc/application/controllers/LocaleController.php:274
msgid "End"
msgstr "종료"
@@ -3450,580 +1328,467 @@ msgstr "종료"
msgid "Duration"
msgstr "길이"
-#: airtime_mvc/application/controllers/LocaleController.php:283
+#: airtime_mvc/application/controllers/LocaleController.php:276
+msgid "Filtering out "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:277
+msgid " of "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:278
+msgid " records"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/layouts/scripts/layout.phtml:140
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
+#: airtime_mvc/application/models/Block.php:1358
+msgid "Cue In"
+msgstr "큐 인"
+
+#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/layouts/scripts/layout.phtml:147
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
+#: airtime_mvc/application/models/Block.php:1359
+msgid "Cue Out"
+msgstr "큐 아웃"
+
+#: airtime_mvc/application/controllers/LocaleController.php:286
#: airtime_mvc/application/layouts/scripts/layout.phtml:167
msgid "Fade In"
msgstr "페이드 인"
-#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/controllers/LocaleController.php:287
#: airtime_mvc/application/layouts/scripts/layout.phtml:168
msgid "Fade Out"
msgstr "패이드 아웃"
-#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/controllers/LocaleController.php:288
msgid "Show Empty"
msgstr "내용 없음"
-#: airtime_mvc/application/controllers/LocaleController.php:286
+#: airtime_mvc/application/controllers/LocaleController.php:289
msgid "Recording From Line In"
msgstr "라인 인으로 부터 녹음"
-#: airtime_mvc/application/controllers/LocaleController.php:287
+#: airtime_mvc/application/controllers/LocaleController.php:290
msgid "Track preview"
msgstr "트랙 프리뷰"
-#: airtime_mvc/application/controllers/LocaleController.php:291
+#: airtime_mvc/application/controllers/LocaleController.php:294
msgid "Cannot schedule outside a show."
msgstr "쇼 범위 밖에 스케쥴 할수 없습니다"
-#: airtime_mvc/application/controllers/LocaleController.php:292
+#: airtime_mvc/application/controllers/LocaleController.php:295
msgid "Moving 1 Item"
msgstr "아이템 1개 이동"
-#: airtime_mvc/application/controllers/LocaleController.php:293
+#: airtime_mvc/application/controllers/LocaleController.php:296
#, php-format
msgid "Moving %s Items"
msgstr "아이템 %s개 이동"
-#: airtime_mvc/application/controllers/LocaleController.php:296
+#: airtime_mvc/application/controllers/LocaleController.php:297
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
+#: airtime_mvc/application/forms/Preferences.php:40
+#: airtime_mvc/application/forms/EditHistory.php:131
+#: airtime_mvc/application/forms/AddUser.php:110
+#: airtime_mvc/application/forms/PasswordChange.php:43
+#: airtime_mvc/application/forms/SupportSettings.php:131
+msgid "Save"
+msgstr "저장"
+
+#: airtime_mvc/application/controllers/LocaleController.php:298
+#: airtime_mvc/application/controllers/LocaleController.php:321
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
+#: airtime_mvc/application/forms/EditHistory.php:141
+#: airtime_mvc/application/forms/EditAudioMD.php:186
+msgid "Cancel"
+msgstr "취소"
+
+#: airtime_mvc/application/controllers/LocaleController.php:299
msgid "Fade Editor"
msgstr "페이드 에디터"
-#: airtime_mvc/application/controllers/LocaleController.php:297
+#: airtime_mvc/application/controllers/LocaleController.php:300
msgid "Cue Editor"
msgstr "큐 에디터"
-#: airtime_mvc/application/controllers/LocaleController.php:298
+#: airtime_mvc/application/controllers/LocaleController.php:301
msgid "Waveform features are available in a browser supporting the Web Audio API"
msgstr "웨이브 폼 기능은 Web Audio API를 지원하면 브라우저에서만 사용 가능합니다"
-#: airtime_mvc/application/controllers/LocaleController.php:301
+#: airtime_mvc/application/controllers/LocaleController.php:304
msgid "Select all"
msgstr "전체 선택"
-#: airtime_mvc/application/controllers/LocaleController.php:302
+#: airtime_mvc/application/controllers/LocaleController.php:305
msgid "Select none"
msgstr "전체 선택 취소"
-#: airtime_mvc/application/controllers/LocaleController.php:303
+#: airtime_mvc/application/controllers/LocaleController.php:306
msgid "Trim overbooked shows"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:304
+#: airtime_mvc/application/controllers/LocaleController.php:307
msgid "Remove selected scheduled items"
msgstr "선택된 아이템 제거"
-#: airtime_mvc/application/controllers/LocaleController.php:305
+#: airtime_mvc/application/controllers/LocaleController.php:308
msgid "Jump to the current playing track"
msgstr "현재 방송중인 트랙으로 가기"
-#: airtime_mvc/application/controllers/LocaleController.php:306
+#: airtime_mvc/application/controllers/LocaleController.php:309
msgid "Cancel current show"
msgstr "현재 쇼 취소"
-#: airtime_mvc/application/controllers/LocaleController.php:311
+#: airtime_mvc/application/controllers/LocaleController.php:314
msgid "Open library to add or remove content"
msgstr "라이브러리 열기"
-#: airtime_mvc/application/controllers/LocaleController.php:312
+#: airtime_mvc/application/controllers/LocaleController.php:315
msgid "Add / Remove Content"
msgstr "내용 추가/제거"
#: airtime_mvc/application/controllers/LocaleController.php:317
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
+msgid "in use"
+msgstr "사용중"
+
+#: airtime_mvc/application/controllers/LocaleController.php:318
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
+msgid "Disk"
+msgstr "디스크"
+
+#: airtime_mvc/application/controllers/LocaleController.php:320
msgid "Look in"
msgstr "경로"
-#: airtime_mvc/application/controllers/LocaleController.php:319
+#: airtime_mvc/application/controllers/LocaleController.php:322
msgid "Open"
msgstr "열기"
+#: airtime_mvc/application/controllers/LocaleController.php:324
+#: airtime_mvc/application/forms/AddUser.php:102
+msgid "Admin"
+msgstr "관리자"
+
#: airtime_mvc/application/controllers/LocaleController.php:325
+#: airtime_mvc/application/forms/AddUser.php:100
+msgid "DJ"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:326
+#: airtime_mvc/application/forms/AddUser.php:101
+msgid "Program Manager"
+msgstr "프로그램 매니저"
+
+#: airtime_mvc/application/controllers/LocaleController.php:327
+#: airtime_mvc/application/forms/AddUser.php:99
+msgid "Guest"
+msgstr "손님"
+
+#: airtime_mvc/application/controllers/LocaleController.php:328
msgid "Guests can do the following:"
msgstr "손님의 권한:"
-#: airtime_mvc/application/controllers/LocaleController.php:326
+#: airtime_mvc/application/controllers/LocaleController.php:329
msgid "View schedule"
msgstr "스케쥴 보기"
-#: airtime_mvc/application/controllers/LocaleController.php:327
+#: airtime_mvc/application/controllers/LocaleController.php:330
msgid "View show content"
msgstr "쇼 내용 보기"
-#: airtime_mvc/application/controllers/LocaleController.php:328
+#: airtime_mvc/application/controllers/LocaleController.php:331
msgid "DJs can do the following:"
msgstr "DJ의 권한:"
-#: airtime_mvc/application/controllers/LocaleController.php:329
+#: airtime_mvc/application/controllers/LocaleController.php:332
msgid "Manage assigned show content"
msgstr "할당된 쇼의 내용 관리"
-#: airtime_mvc/application/controllers/LocaleController.php:330
+#: airtime_mvc/application/controllers/LocaleController.php:333
msgid "Import media files"
msgstr "미디아 파일 추가"
-#: airtime_mvc/application/controllers/LocaleController.php:331
+#: airtime_mvc/application/controllers/LocaleController.php:334
msgid "Create playlists, smart blocks, and webstreams"
msgstr "플레이 리스트, 스마트 블록, 웹스트림 생성"
-#: airtime_mvc/application/controllers/LocaleController.php:332
+#: airtime_mvc/application/controllers/LocaleController.php:335
msgid "Manage their own library content"
msgstr "자신의 라이브러리 내용 관리"
-#: airtime_mvc/application/controllers/LocaleController.php:333
+#: airtime_mvc/application/controllers/LocaleController.php:336
msgid "Progam Managers can do the following:"
msgstr "프로그램 매니저의 권한:"
-#: airtime_mvc/application/controllers/LocaleController.php:334
+#: airtime_mvc/application/controllers/LocaleController.php:337
msgid "View and manage show content"
msgstr "쇼 내용 보기및 관리"
-#: airtime_mvc/application/controllers/LocaleController.php:335
+#: airtime_mvc/application/controllers/LocaleController.php:338
msgid "Schedule shows"
msgstr "쇼 스케쥴 하기"
-#: airtime_mvc/application/controllers/LocaleController.php:336
+#: airtime_mvc/application/controllers/LocaleController.php:339
msgid "Manage all library content"
msgstr "모든 라이브러리 내용 관리"
-#: airtime_mvc/application/controllers/LocaleController.php:337
+#: airtime_mvc/application/controllers/LocaleController.php:340
msgid "Admins can do the following:"
msgstr "관리자의 권한:"
-#: airtime_mvc/application/controllers/LocaleController.php:338
+#: airtime_mvc/application/controllers/LocaleController.php:341
msgid "Manage preferences"
msgstr "설정 관리"
-#: airtime_mvc/application/controllers/LocaleController.php:339
+#: airtime_mvc/application/controllers/LocaleController.php:342
msgid "Manage users"
msgstr "사용자 관리"
-#: airtime_mvc/application/controllers/LocaleController.php:340
+#: airtime_mvc/application/controllers/LocaleController.php:343
msgid "Manage watched folders"
msgstr "모니터 폴터 관리"
-#: airtime_mvc/application/controllers/LocaleController.php:342
+#: airtime_mvc/application/controllers/LocaleController.php:344
+#: airtime_mvc/application/forms/RegisterAirtime.php:116
+#: airtime_mvc/application/forms/SupportSettings.php:98
+msgid "Send support feedback"
+msgstr "사용자 피드백을 보냄"
+
+#: airtime_mvc/application/controllers/LocaleController.php:345
msgid "View system status"
msgstr "이시스템 상황 보기"
-#: airtime_mvc/application/controllers/LocaleController.php:343
+#: airtime_mvc/application/controllers/LocaleController.php:346
msgid "Access playout history"
msgstr "방송 기록 접근 권한"
-#: airtime_mvc/application/controllers/LocaleController.php:344
+#: airtime_mvc/application/controllers/LocaleController.php:347
msgid "View listener stats"
msgstr "청취자 통계 보기"
-#: airtime_mvc/application/controllers/LocaleController.php:346
+#: airtime_mvc/application/controllers/LocaleController.php:349
msgid "Show / hide columns"
msgstr "컬럼 보이기/숨기기"
-#: airtime_mvc/application/controllers/LocaleController.php:348
+#: airtime_mvc/application/controllers/LocaleController.php:351
msgid "From {from} to {to}"
msgstr " {from}부터 {to}까지"
-#: airtime_mvc/application/controllers/LocaleController.php:349
+#: airtime_mvc/application/controllers/LocaleController.php:352
msgid "kbps"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:350
+#: airtime_mvc/application/controllers/LocaleController.php:353
msgid "yyyy-mm-dd"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:351
+#: airtime_mvc/application/controllers/LocaleController.php:354
msgid "hh:mm:ss.t"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:352
+#: airtime_mvc/application/controllers/LocaleController.php:355
msgid "kHz"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:355
+#: airtime_mvc/application/controllers/LocaleController.php:358
msgid "Su"
msgstr "일"
-#: airtime_mvc/application/controllers/LocaleController.php:356
+#: airtime_mvc/application/controllers/LocaleController.php:359
msgid "Mo"
msgstr "월"
-#: airtime_mvc/application/controllers/LocaleController.php:357
+#: airtime_mvc/application/controllers/LocaleController.php:360
msgid "Tu"
msgstr "화"
-#: airtime_mvc/application/controllers/LocaleController.php:358
+#: airtime_mvc/application/controllers/LocaleController.php:361
msgid "We"
msgstr "수"
-#: airtime_mvc/application/controllers/LocaleController.php:359
+#: airtime_mvc/application/controllers/LocaleController.php:362
msgid "Th"
msgstr "목"
-#: airtime_mvc/application/controllers/LocaleController.php:360
+#: airtime_mvc/application/controllers/LocaleController.php:363
msgid "Fr"
msgstr "금"
-#: airtime_mvc/application/controllers/LocaleController.php:361
+#: airtime_mvc/application/controllers/LocaleController.php:364
msgid "Sa"
msgstr "토"
-#: airtime_mvc/application/controllers/LocaleController.php:364
+#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
+msgid "Close"
+msgstr "닫기"
+
+#: airtime_mvc/application/controllers/LocaleController.php:367
msgid "Hour"
msgstr "시"
-#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:368
msgid "Minute"
msgstr "분"
-#: airtime_mvc/application/controllers/LocaleController.php:366
+#: airtime_mvc/application/controllers/LocaleController.php:369
msgid "Done"
msgstr "확인"
-#: airtime_mvc/application/controllers/LocaleController.php:369
+#: airtime_mvc/application/controllers/LocaleController.php:372
msgid "Select files"
msgstr "파일 선택"
-#: airtime_mvc/application/controllers/LocaleController.php:370
-#: airtime_mvc/application/controllers/LocaleController.php:371
+#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:374
msgid "Add files to the upload queue and click the start button."
msgstr "업로드를 원하는 파일을 선택하신후 시작 버틑을 눌러주세요."
-#: airtime_mvc/application/controllers/LocaleController.php:372
-#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:376
msgid "Status"
msgstr "상태"
-#: airtime_mvc/application/controllers/LocaleController.php:374
+#: airtime_mvc/application/controllers/LocaleController.php:377
msgid "Add Files"
msgstr "파일 추가"
-#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:378
msgid "Stop Upload"
msgstr "업로드 중지"
-#: airtime_mvc/application/controllers/LocaleController.php:376
+#: airtime_mvc/application/controllers/LocaleController.php:379
msgid "Start upload"
msgstr "업로드 시작"
-#: airtime_mvc/application/controllers/LocaleController.php:377
+#: airtime_mvc/application/controllers/LocaleController.php:380
msgid "Add files"
msgstr "파일 추가"
-#: airtime_mvc/application/controllers/LocaleController.php:378
+#: airtime_mvc/application/controllers/LocaleController.php:381
#, php-format
msgid "Uploaded %d/%d files"
msgstr "%d/%d 파일이 업로드됨"
-#: airtime_mvc/application/controllers/LocaleController.php:379
+#: airtime_mvc/application/controllers/LocaleController.php:382
msgid "N/A"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:380
+#: airtime_mvc/application/controllers/LocaleController.php:383
msgid "Drag files here."
msgstr "파일을 여기로 드래그 앤 드랍 하세요"
-#: airtime_mvc/application/controllers/LocaleController.php:381
+#: airtime_mvc/application/controllers/LocaleController.php:384
msgid "File extension error."
msgstr "파일 확장자 에러."
-#: airtime_mvc/application/controllers/LocaleController.php:382
+#: airtime_mvc/application/controllers/LocaleController.php:385
msgid "File size error."
msgstr "파일 크기 에러."
-#: airtime_mvc/application/controllers/LocaleController.php:383
+#: airtime_mvc/application/controllers/LocaleController.php:386
msgid "File count error."
msgstr "파일 갯수 에러."
-#: airtime_mvc/application/controllers/LocaleController.php:384
+#: airtime_mvc/application/controllers/LocaleController.php:387
msgid "Init error."
msgstr "초기화 에러."
-#: airtime_mvc/application/controllers/LocaleController.php:385
+#: airtime_mvc/application/controllers/LocaleController.php:388
msgid "HTTP Error."
msgstr "HTTP 에러."
-#: airtime_mvc/application/controllers/LocaleController.php:386
+#: airtime_mvc/application/controllers/LocaleController.php:389
msgid "Security error."
msgstr "보안 에러."
-#: airtime_mvc/application/controllers/LocaleController.php:387
+#: airtime_mvc/application/controllers/LocaleController.php:390
msgid "Generic error."
msgstr "일반적인 에러."
-#: airtime_mvc/application/controllers/LocaleController.php:388
+#: airtime_mvc/application/controllers/LocaleController.php:391
msgid "IO error."
msgstr "IO 에러."
-#: airtime_mvc/application/controllers/LocaleController.php:389
+#: airtime_mvc/application/controllers/LocaleController.php:392
#, php-format
msgid "File: %s"
msgstr "파일: %s"
-#: airtime_mvc/application/controllers/LocaleController.php:391
+#: airtime_mvc/application/controllers/LocaleController.php:394
#, php-format
msgid "%d files queued"
msgstr "%d개의 파일이 대기중"
-#: airtime_mvc/application/controllers/LocaleController.php:392
+#: airtime_mvc/application/controllers/LocaleController.php:395
msgid "File: %f, size: %s, max file size: %m"
msgstr "파일: %f, 크기: %s, 최대 파일 크기: %m"
-#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/controllers/LocaleController.php:396
msgid "Upload URL might be wrong or doesn't exist"
msgstr "업로드 URL이 맞지 않거나 존재 하지 않습니다"
-#: airtime_mvc/application/controllers/LocaleController.php:394
+#: airtime_mvc/application/controllers/LocaleController.php:397
msgid "Error: File too large: "
msgstr "에러: 파일이 너무 큽니다:"
-#: airtime_mvc/application/controllers/LocaleController.php:395
+#: airtime_mvc/application/controllers/LocaleController.php:398
msgid "Error: Invalid file extension: "
msgstr "에러: 지원하지 않는 확장자:"
-#: airtime_mvc/application/controllers/LocaleController.php:398
+#: airtime_mvc/application/controllers/LocaleController.php:400
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
+msgid "Set Default"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:401
msgid "Create Entry"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:399
+#: airtime_mvc/application/controllers/LocaleController.php:402
msgid "Edit History Record"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:402
+#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
+#: airtime_mvc/application/forms/EditHistoryItem.php:57
+msgid "No Show"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:405
#, php-format
msgid "Copied %s row%s to the clipboard"
msgstr "%s row %s를 클립보드로 복사 하였습니다"
-#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/controllers/LocaleController.php:406
#, php-format
msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished."
msgstr "%sPrint view%s프린트를 하려면 브라우저의 프린트 기능을 사용하여주세요. 종료를 원하시면 ESC키를 누르세요"
-#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/controllers/LocaleController.php:407
msgid "New Show"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:405
+#: airtime_mvc/application/controllers/LocaleController.php:408
msgid "New Log Entry"
msgstr ""
-#: airtime_mvc/application/controllers/ScheduleController.php:389
-#, php-format
-msgid "Rebroadcast of show %s from %s at %s"
-msgstr "%s의 재방송 %s부터 %s까지"
-
-#: airtime_mvc/application/controllers/ScheduleController.php:712
-#: airtime_mvc/application/controllers/LibraryController.php:131
-msgid "Download"
-msgstr "다운로드"
-
-#: airtime_mvc/application/controllers/ErrorController.php:78
-msgid "Page not found."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:87
-msgid "The requested action is not supported."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:98
-msgid "You do not have permission to access this resource."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:109
-msgid "An internal application error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ListenerstatController.php:51
-msgid "Please make sure admin user/password is correct on System->Streams page."
-msgstr "시스템->스트림 에서 관리자 아이디/암호를 다시 확인하세요."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:53
-#, php-format
-msgid "You are viewing an older version of %s"
-msgstr "오래된 %s를 보고 있습니다"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:140
-msgid "You cannot add tracks to dynamic blocks."
-msgstr "동적인 스마트 블록에는 트랙을 추가 할수 없습니다"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:147
-#: airtime_mvc/application/controllers/LibraryController.php:31
-#, php-format
-msgid "%s not found"
-msgstr "%s를 찾을수 없습니다"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:161
-#, php-format
-msgid "You don't have permission to delete selected %s(s)."
-msgstr "선택하신 %s를 삭제 할수 있는 권한이 부족합니다."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:168
-#: airtime_mvc/application/controllers/LibraryController.php:40
-msgid "Something went wrong."
-msgstr "알수없는 에러."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:174
-msgid "You can only add tracks to smart block."
-msgstr "스마트 블록에는 트랙만 추가 가능합니다"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:192
-msgid "Untitled Playlist"
-msgstr "제목없는 재생목록"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:194
-msgid "Untitled Smart Block"
-msgstr "제목없는 스마트 블록"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:522
-msgid "Unknown Playlist"
-msgstr "모르는 재생목록"
-
-#: airtime_mvc/application/controllers/LoginController.php:43
-msgid "Please enter your username and password."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:93
-msgid "Wrong username or password provided. Please try again."
-msgstr "아이디와 암호가 맞지 않습니다. 다시 시도해주세요"
-
-#: airtime_mvc/application/controllers/LoginController.php:167
-msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
-msgstr "이메일을 전송 할수 없습니다. 메일 서버 세팅을 다시 확인 하여 주세요"
-
-#: airtime_mvc/application/controllers/LoginController.php:173
-msgid "There was a problem with the username or email address you entered."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:35
-#: airtime_mvc/application/controllers/DashboardController.php:84
-msgid "You don't have permission to disconnect source."
-msgstr "소스를 끊을수 있는 권한이 부족합니다"
-
-#: airtime_mvc/application/controllers/DashboardController.php:37
-#: airtime_mvc/application/controllers/DashboardController.php:86
-msgid "There is no source connected to this input."
-msgstr "연결된 소스가 없습니다"
-
-#: airtime_mvc/application/controllers/DashboardController.php:81
-msgid "You don't have permission to switch source."
-msgstr "소스를 바꿀수 있는 권한이 부족합니다"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:72
-msgid "Preferences updated."
-msgstr "설정이 업데이트 되었습니다"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:115
-msgid "Support setting updated."
-msgstr "지원 설정이 업데이트 되었습니다"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:123
-msgid "Support Feedback"
-msgstr "사용자 피드백"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:251
-msgid "Stream Setting Updated."
-msgstr "스트림 설정이 업데이트 되었습니다"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:342
-msgid "path should be specified"
-msgstr "경로를 입력해주세요"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:437
-msgid "Problem with Liquidsoap..."
-msgstr "Liquidsoap 문제..."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:493
-msgid "Request method not accepted"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:86
-msgid "User added successfully!"
-msgstr "사용자가 추가 되었습니다!"
-
-#: airtime_mvc/application/controllers/UserController.php:88
-msgid "User updated successfully!"
-msgstr "사용자 정보가 업데이트 되었습니다!"
-
-#: airtime_mvc/application/controllers/UserController.php:187
-msgid "Settings updated successfully!"
-msgstr "세팅이 성공적으로 업데이트 되었습니다!"
-
-#: airtime_mvc/application/controllers/WebstreamController.php:28
-#: airtime_mvc/application/controllers/WebstreamController.php:32
-msgid "Untitled Webstream"
-msgstr "제목없는 웹스트림"
-
-#: airtime_mvc/application/controllers/WebstreamController.php:150
-msgid "Webstream saved."
-msgstr "웹스트림이 저장 되었습니다"
-
-#: airtime_mvc/application/controllers/WebstreamController.php:158
-msgid "Invalid form values."
-msgstr "잘못된 값입니다"
-
-#: airtime_mvc/application/controllers/LibraryController.php:95
-#: airtime_mvc/application/controllers/ShowbuilderController.php:136
-msgid "Preview"
-msgstr "프리뷰"
-
-#: airtime_mvc/application/controllers/LibraryController.php:115
-#: airtime_mvc/application/controllers/LibraryController.php:177
-#: airtime_mvc/application/controllers/LibraryController.php:200
-msgid "Add to Playlist"
-msgstr "재생 목록에 추가"
-
-#: airtime_mvc/application/controllers/LibraryController.php:117
-msgid "Add to Smart Block"
-msgstr "스마트 블록에 추가"
-
-#: airtime_mvc/application/controllers/LibraryController.php:147
-msgid "View track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:148
-msgid "Remove track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:154
-#: airtime_mvc/application/controllers/LibraryController.php:159
-msgid "Upload track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:169
-msgid "Duplicate Playlist"
-msgstr "중복된 플레이 리스트"
-
-#: airtime_mvc/application/controllers/LibraryController.php:213
-msgid "No action available"
-msgstr "액션 없음"
-
-#: airtime_mvc/application/controllers/LibraryController.php:233
-msgid "You don't have permission to delete selected items."
-msgstr "선택된 아이템을 지울수 있는 권한이 부족합니다."
-
-#: airtime_mvc/application/controllers/LibraryController.php:279
-msgid "Could not delete file because it is scheduled in the future."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:282
-msgid "Could not delete file(s)."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:322
-#, php-format
-msgid "Copy of %s"
-msgstr "%s의 사본"
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
-msgid ""
-"To configure and use the embeddable player you must:
\n"
-" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
-" 2. Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
-msgid ""
-"To use the embeddable weekly schedule widget you must:
\n"
-" Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
#: airtime_mvc/application/controllers/ShowbuilderController.php:138
msgid "Select cursor"
msgstr "커서 선택"
@@ -4036,39 +1801,78 @@ msgstr "커서 제거"
msgid "show does not exist"
msgstr "쇼가 존재 하지 않음"
-#: airtime_mvc/application/controllers/ApiController.php:79
-msgid "You are not allowed to access this resource."
-msgstr "권한이 부족합니다"
-
-#: airtime_mvc/application/controllers/ApiController.php:244
-#: airtime_mvc/application/controllers/ApiController.php:317
-#: airtime_mvc/application/controllers/ApiController.php:392
-#: airtime_mvc/application/controllers/ApiController.php:435
-#: airtime_mvc/application/controllers/ApiController.php:474
-#: airtime_mvc/application/controllers/ApiController.php:507
-msgid "You are not allowed to access this resource. "
-msgstr "권한이 부족합니다"
-
-#: airtime_mvc/application/controllers/ApiController.php:698
-#: airtime_mvc/application/controllers/ApiController.php:718
-#: airtime_mvc/application/controllers/ApiController.php:730
+#: airtime_mvc/application/controllers/ScheduleController.php:389
#, php-format
-msgid "File does not exist in %s"
+msgid "Rebroadcast of show %s from %s at %s"
+msgstr "%s의 재방송 %s부터 %s까지"
+
+#: airtime_mvc/application/common/UsabilityHints.php:55
+msgid "Upload some tracks below to add them to your library!"
msgstr ""
-#: airtime_mvc/application/controllers/ApiController.php:781
-msgid "Bad request. no 'mode' parameter passed."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ApiController.php:791
-msgid "Bad request. 'mode' parameter is invalid"
-msgstr ""
-
-#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#: airtime_mvc/application/common/UsabilityHints.php:57
#, php-format
-msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
msgstr ""
+#: airtime_mvc/application/common/UsabilityHints.php:63
+msgid "Click the 'New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:65
+#, php-format
+msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:73
+msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:75
+#, php-format
+msgid ""
+"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
+" %sCreate an unlinked show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:80
+msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:82
+#, php-format
+msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:89
+msgid "Click on the show starting next and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:91
+#, php-format
+msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/DateHelper.php:213
+#, php-format
+msgid "The year %s must be within the range of 1753 - 9999"
+msgstr "년도 값은 %s 1753 - 9999 입니다"
+
+#: airtime_mvc/application/common/DateHelper.php:216
+#, php-format
+msgid "%s-%s-%s is not a valid date"
+msgstr "%s-%s-%s는 맞지 않는 날짜 입니다"
+
+#: airtime_mvc/application/common/DateHelper.php:240
+#, php-format
+msgid "%s:%s:%s is not a valid time"
+msgstr "%s:%s:%s는 맞지 않는 시간 입니다"
+
+#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
+msgid "Live stream"
+msgstr "라이브 스트림"
+
#: airtime_mvc/application/layouts/scripts/layout.phtml:63
msgid "Smart Block"
msgstr ""
@@ -4081,6 +1885,17 @@ msgstr ""
msgid "Upload"
msgstr ""
+#: airtime_mvc/application/layouts/scripts/layout.phtml:76
+#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
+msgid "Dashboard"
+msgstr ""
+
+#: airtime_mvc/application/layouts/scripts/layout.phtml:84
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
+msgid "Webstreams"
+msgstr ""
+
#: airtime_mvc/application/layouts/scripts/layout.phtml:135
#: airtime_mvc/application/layouts/scripts/layout.phtml:161
msgid "Play"
@@ -4103,370 +1918,2128 @@ msgstr "큐 아웃 설정"
msgid "Cursor"
msgstr "커서"
-#~ msgid "Show:"
-#~ msgstr "쇼: "
+#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#, php-format
+msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
+msgid "Drop files here or click to browse your computer."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
+msgid "Failed"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
+msgid "Pending"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
+msgid "Recent Uploads"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
+msgid "Share"
+msgstr "공유"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
+msgid "Select stream:"
+msgstr "스트림 선택"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
+msgid "mute"
+msgstr "음소거"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
+msgid "unmute"
+msgstr "음소거 해제"
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
+msgid "About"
+msgstr "정보"
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
+#, php-format
+msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
+#, php-format
+msgid "%1$s %2$s is distributed under the %3$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
+#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
+#, php-format
+msgid "Welcome to %s!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
+#, php-format
+msgid "Here's how you can get started using %s to automate your broadcasts: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
+msgid "Upload audio tracks"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
+msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
+msgid "Schedule a show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
+msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
+msgid "Add tracks to your show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
+msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
+msgid "Now you're good to go!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
+#, php-format
+msgid "For more detailed help, read the %suser manual%s."
+msgstr "더 자세한 도움을 원하시면, 메뉴얼을 참고 하여 주세요. %suser manual%s"
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
+#: airtime_mvc/application/configs/navigation.php:40
+msgid "Weekly Schedule"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
+#: airtime_mvc/application/forms/Player.php:77
+msgid "Preview:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
+#: airtime_mvc/application/configs/navigation.php:34
+msgid "Player"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:97
+msgid "Playout History"
+msgstr "방송 기록"
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
+msgid "Log Sheet"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
+msgid "File Summary"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
+msgid "Show Summary"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
+msgid "Expand Static Block"
+msgstr "정적 블록 확장"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
+msgid "Expand Dynamic Block"
+msgstr "동적 블록 확장"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
+msgid "Choose some search criteria above and click Generate to create this playlist."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
+msgid "A track list will be generated when you schedule this smart block into a show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
+msgid "Drag tracks here from your library to add them to the playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
+msgid "Editing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:26
+msgid "Name:"
+msgstr "이름:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
+#: airtime_mvc/application/forms/AddShowWhat.php:54
+msgid "Description:"
+msgstr "설명:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
+#: airtime_mvc/application/forms/AddShowWhen.php:89
+msgid "Duration:"
+msgstr "길이:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
+msgid "Toggle Details"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+msgid "Shuffle playlist"
+msgstr "재생 목록 셔플"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
+msgid "Shuffle"
+msgstr "셔플"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
+msgid "Playlist crossfade"
+msgstr "재생 목록 크로스페이드"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+msgid "Empty playlist content"
+msgstr "재생 목록 비우기"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Clear"
+msgstr "지우기"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+msgid "Fade in: "
+msgstr "페이드 인: "
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "Fade out: "
+msgstr "페이드 아웃:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+msgid "Save playlist"
+msgstr "재생 목록 저장"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
+msgid "No open playlist"
+msgstr "열린 재생 목록 없음"
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
+msgid "Show Waveform"
+msgstr "웨이브 폼 보기"
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "(ss.t)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Remove all content from this smart block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
+msgid "No smart block currently open"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+msgid "Cue In: "
+msgstr "큐 인:"
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "(hh:mm:ss.t)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "Cue Out: "
+msgstr "큐 아웃:"
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
+msgid "Original Length:"
+msgstr "오리지날 길이"
+
+#: airtime_mvc/application/views/scripts/preference/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:56
+msgid "General"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
+msgid "Stream Settings"
+msgstr "락스트림 설정"
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
+msgid "Global"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
+msgid "dB"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
+msgid "Output Streams"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:3
+#: airtime_mvc/application/forms/Login.php:83
+msgid "Login"
+msgstr "로그인"
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:7
+#, php-format
+msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
+msgid "Email Sent!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
+msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
+msgid "Back"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
+msgid "Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
+msgid "New password"
+msgstr "새 암호"
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
+msgid "Please enter and confirm your new password in the fields below."
+msgstr "새 암호 확인"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
+msgid "Manage Users"
+msgstr "사용자 관리"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
+msgid "New User"
+msgstr "새 사용자"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
+msgid "id"
+msgstr "아이디"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
+#: airtime_mvc/application/forms/PasswordRestore.php:25
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
+msgid "Username"
+msgstr "아이디"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
+msgid "First Name"
+msgstr "이름"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
+msgid "Last Name"
+msgstr "성"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
+msgid "User Type"
+msgstr "사용자 유형"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
+#, php-format
+msgid "Super Admin details can be changed in your Billing Settings."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
+msgid "Find Shows"
+msgstr "쇼 찾기"
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
+msgid "Choose Show Instance"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
+msgid "Find"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
+#: airtime_mvc/application/configs/navigation.php:61
+msgid "My Profile"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
+#, php-format
+msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
+msgid "Repeat Days:"
+msgstr "반복 날짜:"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
+#: airtime_mvc/application/forms/GeneralPreferences.php:53
+#: airtime_mvc/application/forms/AddShowStyle.php:64
+msgid "Remove"
+msgstr "제거"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
+msgid "Add"
+msgstr "추가"
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
+msgid "Show Source"
+msgstr "쇼 소스"
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
+msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
+msgid "Register Airtime"
+msgstr "Airtime 등록"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
+#, php-format
+msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
+#, php-format
+msgid "Click the box below to promote your station on %s."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
+msgid "(Required)"
+msgstr "(*)"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
+msgid "(for verification purposes only, will not be published)"
+msgstr "(확인을 위한것입니다, 이 정보는 어디에도 게시 되지 않습니다)"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
+#: airtime_mvc/application/forms/GeneralPreferences.php:43
+msgid "Note: Anything larger than 600x600 will be resized."
+msgstr "주의: 600*600보다 큰 이미지는 사이즈가 수정 됩니다"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
+msgid "Show me what I am sending "
+msgstr "보내지는 데이타 보기"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
+msgid "Terms and Conditions"
+msgstr "사용자 약관"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
+msgid "Choose Days:"
+msgstr "날짜 선택"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
+msgid "Search Criteria:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
+msgid "New Criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
+msgid "or"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
+msgid "and"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
+msgid "New Modifier"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
+msgid " to "
+msgstr " 부터 "
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
+msgid "files meet the criteria"
+msgstr "개의 파일들"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
+msgid "file meets the criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
+msgid "Filter History"
+msgstr "필터 히스토리"
+
+#: airtime_mvc/application/views/scripts/form/login.phtml:41
+msgid "Forgot your password?"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
+msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
+msgstr "(체크 하기 위해선 '피드백 보내기'를 체크 하셔야 합니다)"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
+msgid "Stream "
+msgstr "스트림 "
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
+msgid "Additional Options"
+msgstr "추가 설정"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
+msgid "The following info will be displayed to listeners in their media player:"
+msgstr "밑에 정보들은 청취자에 플래이어에 표시 됩니다:"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
+msgid "(Your radio station website)"
+msgstr "(방송국 웹사이트 주소)"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
+msgid "Stream URL: "
+msgstr "스트림 URL: "
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
+msgid "Choose folder"
+msgstr "폴더 선택"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
+msgid "Set"
+msgstr "저장"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
+msgid "Current Import Folder:"
+msgstr "현재 저장 폴더:"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
+#, php-format
+msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
+msgid "Remove watched directory"
+msgstr "모니터중인 폴더를 리스트에서 삭제"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
+msgid "You are not watching any media folders."
+msgstr "모니터중인 폴더가 없습니다"
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
+msgid "Live Broadcasting"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
+msgid "Master Source"
+msgstr "마스터 소스"
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
+msgid "Use these settings in your broadcasting software to stream live at any time."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
+msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
+msgid "TuneIn Settings"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
+msgid "SoundCloud Settings"
+msgstr "SoundCloud 설정"
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
+msgid "Dangerous Options"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Add this show"
+msgstr "쇼 추가"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Update show"
+msgstr "쇼 업데이트"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
+msgid "What"
+msgstr "무엇"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
+msgid "When"
+msgstr "언제"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
+msgid "Live Stream Input"
+msgstr "라이브 스트림"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
+msgid "Who"
+msgstr "누구"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
+msgid "Style"
+msgstr "스타일"
+
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
+msgid "Disk Space"
+msgstr "디스크 공간"
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:3
+msgid "File import in progress..."
+msgstr "파일 가져오기 진행중"
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:10
+#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
+msgid "Advanced Search Options"
+msgstr "고급 검색 옵션"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
+#: airtime_mvc/application/forms/EditAudioMD.php:24
+#: airtime_mvc/application/forms/Player.php:15
+msgid "Title:"
+msgstr "제목:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
+#: airtime_mvc/application/forms/EditAudioMD.php:34
+msgid "Creator:"
+msgstr "제작자:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
+#: airtime_mvc/application/forms/EditAudioMD.php:44
+msgid "Album:"
+msgstr "앨범:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
+msgid "Track:"
+msgstr "트랙:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
+msgid "Length:"
+msgstr "길이:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
+msgid "Sample Rate:"
+msgstr "샘플 레이트:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
+msgid "Bit Rate:"
+msgstr "비트 레이트:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
+#: airtime_mvc/application/forms/EditAudioMD.php:115
+msgid "Mood:"
+msgstr "무드"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:45
+#: airtime_mvc/application/forms/EditAudioMD.php:62
+msgid "Genre:"
+msgstr "장르:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
+#: airtime_mvc/application/forms/EditAudioMD.php:72
+msgid "Year:"
+msgstr "년도:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
+#: airtime_mvc/application/forms/EditAudioMD.php:85
+msgid "Label:"
+msgstr "상표:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
+#: airtime_mvc/application/forms/EditAudioMD.php:125
+msgid "BPM:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
+#: airtime_mvc/application/forms/EditAudioMD.php:95
+msgid "Composer:"
+msgstr "작곡가:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
+#: airtime_mvc/application/forms/EditAudioMD.php:105
+msgid "Conductor:"
+msgstr "지휘자"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
+#: airtime_mvc/application/forms/EditAudioMD.php:135
+msgid "Copyright:"
+msgstr "저작권:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
+msgid "Isrc Number:"
+msgstr "ISRC 넘버:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
+#: airtime_mvc/application/forms/EditAudioMD.php:155
+msgid "Website:"
+msgstr "웹사이트"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
+#: airtime_mvc/application/forms/EditAudioMD.php:165
+#: airtime_mvc/application/forms/EditUser.php:119
+#: airtime_mvc/application/forms/Login.php:68
+msgid "Language:"
+msgstr "언어"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
+msgid "File Path:"
+msgstr "파일 위치:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
+msgid "Web Stream"
+msgstr "웹스트림"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
+msgid "Dynamic Smart Block"
+msgstr "동적 스마트 블록"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
+msgid "Static Smart Block"
+msgstr "정적 스마트 블록"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
+msgid "Audio Track"
+msgstr "오디오 트랙"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
+msgid "Playlist Contents: "
+msgstr "재생목록 내용"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
+msgid "Static Smart Block Contents: "
+msgstr "정적 스마트 블록 내용: "
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
+msgid "Dynamic Smart Block Criteria: "
+msgstr "동적 스마트 블록 내용: "
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
+msgid "Limit to "
+msgstr "길이 제한 "
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
+#: airtime_mvc/application/forms/AddShowWhat.php:36
+msgid "URL:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
+msgid "Viewing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
+msgid "Listeners"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
+msgid "Stream Data Collection Status"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
+msgid "Your trial expires in"
+msgstr " "
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
+msgid "days"
+msgstr "일"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
+msgid "Previous:"
+msgstr "이전:"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
+msgid "Next:"
+msgstr "다음:"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
+msgid "Source Streams"
+msgstr "소스 스트림"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
+msgid "ON AIR"
+msgstr "방송중"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
+msgid "Listen"
+msgstr "듣기"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
+msgid "Logout"
+msgstr "로그아웃"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
+msgid "Playout History Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
+msgid "Log Sheet Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
+msgid "New Log Sheet Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
+msgid "No Log Sheet Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
+msgid "File Summary Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
+msgid "New File Summary Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
+msgid "No File Summary Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
+msgid "Creating File Summary Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
+msgid "Creating Log Sheet Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
+msgid "Name"
+msgstr "이름"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
+msgid "Add more elements"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
+msgid "Add New Field"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
+msgid "Set Default Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
+msgid "Description"
+msgstr "설명"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
+msgid "Stream URL:"
+msgstr "스트림 URL:"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
+msgid "Default Length:"
+msgstr "기본 길이:"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
+msgid "No webstream"
+msgstr "열린 웹스트림 없음"
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
+#: airtime_mvc/application/views/scripts/error/error.phtml:6
+msgid "An error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
+msgid "Access Denied!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
+msgid "You do not have permission to access this page!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
+#: airtime_mvc/application/views/scripts/error/error.phtml:14
+#: airtime_mvc/application/configs/navigation.php:143
+msgid "Help"
+msgstr "도움"
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
+msgid "Oops!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
+msgid "Something went wrong!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
+msgid "Bad Request!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
+msgid "The requested action is not supported!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
+msgid "Page not found!"
+msgstr "페이지를 찾을수 없습니다!"
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
+msgid "We couldn't find the page you were looking for."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error.phtml:12
+msgid "Looks like the page you were looking for doesn't exist!"
+msgstr "찾는 페이지가 존재 하지 않습니다!"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
+msgid "previous"
+msgstr "이전"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
+msgid "play"
+msgstr "재생"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
+msgid "pause"
+msgstr "중지"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
+msgid "next"
+msgstr "다음"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
+msgid "stop"
+msgstr "정지"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
+msgid "max volume"
+msgstr "최대 음량 "
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
+msgid "Update Required"
+msgstr "업데이트가 필요함"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
+#, php-format
+msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
+msgstr "미디어를 재생하기 위해선, 브라우저를 최신 버젼으로 업데이트 하시고, %sFlash plugin%s도 업데이트 해주세요"
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
+msgid "Plan type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
+msgid "Billing cycle:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
+msgid "Payment method:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
+msgid "PayPal"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
+msgid "Credit Card via 2Checkout"
+msgstr ""
+
+#: airtime_mvc/application/forms/DateRange.php:16
+#: airtime_mvc/application/forms/ShowBuilder.php:18
+msgid "Date Start:"
+msgstr "시작"
+
+#: airtime_mvc/application/forms/DateRange.php:35
+#: airtime_mvc/application/forms/DateRange.php:63
+#: airtime_mvc/application/forms/ShowBuilder.php:37
+#: airtime_mvc/application/forms/ShowBuilder.php:65
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
+msgid "Invalid character entered"
+msgstr "허용되지 않는 문자입니다"
+
+#: airtime_mvc/application/forms/DateRange.php:44
+#: airtime_mvc/application/forms/ShowBuilder.php:46
+#: airtime_mvc/application/forms/AddShowRepeats.php:56
+msgid "Date End:"
+msgstr "종료"
+
+#: airtime_mvc/application/forms/ShowBuilder.php:72
+#: airtime_mvc/application/forms/ShowBuilder.php:88
+msgid "Filter by Show"
+msgstr ""
+
+#: airtime_mvc/application/forms/ShowBuilder.php:80
+msgid "All My Shows:"
+msgstr "내 쇼:"
+
+#: airtime_mvc/application/forms/AddShowWho.php:10
+msgid "Search Users:"
+msgstr "사용자 검색:"
+
+#: airtime_mvc/application/forms/AddShowWho.php:24
+msgid "DJs:"
+msgstr "DJ들:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:30
+#: airtime_mvc/application/forms/GeneralPreferences.php:25
+#: airtime_mvc/application/forms/SupportSettings.php:18
+msgid "Station Name"
+msgstr "방송국 이름"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:39
+#: airtime_mvc/application/forms/SupportSettings.php:31
+msgid "Phone:"
+msgstr "전화"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:51
+#: airtime_mvc/application/forms/AddUser.php:67
+#: airtime_mvc/application/forms/EditUser.php:83
+#: airtime_mvc/application/forms/SupportSettings.php:43
+msgid "Email:"
+msgstr "이메일"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:62
+#: airtime_mvc/application/forms/SupportSettings.php:54
+msgid "Station Web Site:"
+msgstr "방송국 웹사이트"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:73
+#: airtime_mvc/application/forms/SupportSettings.php:65
+msgid "Country:"
+msgstr "나라"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:84
+#: airtime_mvc/application/forms/SupportSettings.php:76
+msgid "City:"
+msgstr "도시"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:96
+#: airtime_mvc/application/forms/SupportSettings.php:88
+msgid "Station Description:"
+msgstr "방송국 설명"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:106
+#: airtime_mvc/application/forms/GeneralPreferences.php:42
+msgid "Station Logo:"
+msgstr "방송국 로고"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:126
+#: airtime_mvc/application/forms/SupportSettings.php:108
+#, php-format
+msgid "Promote my station on %s"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:151
+#: airtime_mvc/application/forms/SupportSettings.php:120
+#, php-format
+msgid "By checking this box, I agree to %s's %sprivacy policy%s."
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:169
+#: airtime_mvc/application/forms/SupportSettings.php:143
+msgid "You have to agree to privacy policy."
+msgstr "사용자 약관에 동의 하십시오"
+
+#: airtime_mvc/application/forms/AddShowRR.php:10
+msgid "Record from Line In?"
+msgstr "Line In으로 녹음"
+
+#: airtime_mvc/application/forms/AddShowRR.php:16
+msgid "Rebroadcast?"
+msgstr "재방송?"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
+#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
+msgid "Value is required and can't be empty"
+msgstr "이 필드는 비워둘수 없습니다."
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
+msgid "'%value%' is no valid email address in the basic format local-part@hostname"
+msgstr "'%value%'은 맞지 않는 이메일 형식 입니다."
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
+msgid "'%value%' does not fit the date format '%format%'"
+msgstr "'%value%'은 날짜 형식('%format%')에 맞지 않습니다."
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
+msgid "'%value%' is less than %min% characters long"
+msgstr "'%value%'는 %min%글자 보다 짧을수 없습니다"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
+msgid "'%value%' is more than %max% characters long"
+msgstr "'%value%'는 %max%글자 보다 길수 없습니다"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
+msgid "'%value%' is not between '%min%' and '%max%', inclusively"
+msgstr "'%value%'은 '%min%'와 '%max%' 사이에 있지 않습니다."
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
+msgid "Passwords do not match"
+msgstr "암호가 맞지 않습니다"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
+msgid "Day must be specified"
+msgstr "날짜를 설정하세요"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
+msgid "Time must be specified"
+msgstr "시간을 설정하세요"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
+msgid "Must wait at least 1 hour to rebroadcast"
+msgstr "재방송 설정까지 1시간 기간이 필요합니다"
+
+#: airtime_mvc/application/forms/PasswordRestore.php:14
+msgid "Email"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordRestore.php:36
+msgid "Reset password"
+msgstr "암호 초기화"
+
+#: airtime_mvc/application/forms/AddShowWhat.php:30
+msgid "Untitled Show"
+msgstr "이름없는 쇼"
+
+#: airtime_mvc/application/forms/AddShowWhat.php:69
+msgid "Instance Description:"
+msgstr ""
+
+#: airtime_mvc/application/forms/DangerousPreferences.php:12
+msgid "Delete All Tracks in Library"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditAudioMD.php:145
+msgid "ISRC Number:"
+msgstr "ISRC 넘버"
+
+#: airtime_mvc/application/forms/EditAudioMD.php:176
+msgid "OK"
+msgstr "확인"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:33
+msgid "Station Description"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:62
+msgid "Default Crossfade Duration (s):"
+msgstr "기본 크로스페이드 길이(s)"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:68
+#: airtime_mvc/application/forms/GeneralPreferences.php:82
+#: airtime_mvc/application/forms/GeneralPreferences.php:96
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
+msgid "Please enter a time in seconds (eg. 0.5)"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:76
+msgid "Default Fade In (s):"
+msgstr "기본 페이드 인(s)"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:90
+msgid "Default Fade Out (s):"
+msgstr "기본 페이드 아웃(s)"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:102
+msgid "Public Airtime API"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:103
+msgid "Required for embeddable schedule widget."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:105
+msgid "Disabled"
+msgstr "미사용"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:106
+msgid "Enabled"
+msgstr "사용"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:109
+msgid ""
+"Enabling this feature will allow Airtime to provide schedule data\n"
+" to external widgets that can be embedded in your website."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:120
+msgid "Default Language"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:127
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
+msgid "Station Timezone"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:134
+msgid "Week Starts On"
+msgstr "주 시작일"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:150
+msgid "Display login button on your Radio Page?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:29
+#: airtime_mvc/application/forms/EditUser.php:37
+#: airtime_mvc/application/forms/Login.php:41
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
+msgid "Username:"
+msgstr "아이디: "
+
+#: airtime_mvc/application/forms/AddUser.php:38
+#: airtime_mvc/application/forms/EditUser.php:48
+#: airtime_mvc/application/forms/Login.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
+msgid "Password:"
+msgstr "암호: "
+
+#: airtime_mvc/application/forms/AddUser.php:46
+#: airtime_mvc/application/forms/EditUser.php:57
+msgid "Verify Password:"
+msgstr "암호 확인:"
+
+#: airtime_mvc/application/forms/AddUser.php:55
+#: airtime_mvc/application/forms/EditUser.php:67
+msgid "Firstname:"
+msgstr "이름:"
+
+#: airtime_mvc/application/forms/AddUser.php:61
+#: airtime_mvc/application/forms/EditUser.php:75
+msgid "Lastname:"
+msgstr "성:"
+
+#: airtime_mvc/application/forms/AddUser.php:76
+#: airtime_mvc/application/forms/EditUser.php:94
+msgid "Mobile Phone:"
+msgstr "휴대전화:"
+
+#: airtime_mvc/application/forms/AddUser.php:82
+#: airtime_mvc/application/forms/EditUser.php:102
+msgid "Skype:"
+msgstr "스카입:"
+
+#: airtime_mvc/application/forms/AddUser.php:88
+#: airtime_mvc/application/forms/EditUser.php:110
+msgid "Jabber:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:95
+msgid "User Type:"
+msgstr "유저 타입"
+
+#: airtime_mvc/application/forms/AddUser.php:120
+#: airtime_mvc/application/forms/EditUser.php:155
+msgid "Login name is not unique."
+msgstr "사용할수 없는 아이디 입니다"
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
+msgid "Import Folder:"
+msgstr "폴더 가져오기"
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
+msgid "Watched Folders:"
+msgstr "모니터중인 폴더"
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
+msgid "Not a valid Directory"
+msgstr "옳치 않은 폴더 입니다"
+
+#: airtime_mvc/application/forms/BillingClient.php:126
+msgid "What is the name of your favorite childhood friend?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:127
+msgid "What school did you attend for sixth grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:128
+msgid "In what city did you meet your spouse/significant other?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:129
+msgid "What street did you live on in third grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:130
+msgid "What is the first name of the boy or girl that you first kissed?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:131
+msgid "In what city or town was your first job?"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
+msgid "Default License:"
+msgstr "기본 라이센스:"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
+msgid "All rights are reserved"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
+msgid "The work is in the public domain"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
+msgid "Creative Commons Attribution"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
+msgid "Creative Commons Attribution Noncommercial"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
+msgid "Creative Commons Attribution No Derivative Works"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
+msgid "Creative Commons Attribution Share Alike"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
+msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
+msgid "Creative Commons Attribution Noncommercial Share Alike"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
+msgid "Default Sharing Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
+msgid "Public"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
+msgid "Private"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditUser.php:129
+msgid "Interface Timezone:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:14
+msgid "Now Playing"
+msgstr "방송중"
+
+#: airtime_mvc/application/forms/Player.php:25
+msgid "Select Stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:28
+msgid "Auto detect the most appropriate stream to use."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:29
+msgid "Select a stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:41
+msgid " - Mobile friendly"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:45
+msgid " - The player does not support Opus streams."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:71
+msgid "Embeddable code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:72
+msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
+#: airtime_mvc/application/models/Block.php:1351
+msgid "Select criteria"
+msgstr "기준 선택"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
+#: airtime_mvc/application/models/Block.php:1353
+msgid "Bit Rate (Kbps)"
+msgstr "비트 레이트(Kbps)"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
+#: airtime_mvc/application/models/Block.php:1374
+msgid "Sample Rate (kHz)"
+msgstr "샘플 레이트"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
+msgid "hours"
+msgstr "시간"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
+msgid "minutes"
+msgstr "분"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
+#: airtime_mvc/application/models/Block.php:333
+msgid "items"
+msgstr "아이템"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
+msgid "Randomly"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
+msgid "Newest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
+msgid "Oldest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
+msgid "Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
+msgid "Static"
+msgstr "정적(Static)"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
+msgid "Dynamic"
+msgstr "동적(Dynamic)"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
+msgid "Allow Repeated Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
+msgid "Sort Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
+msgid "Limit to:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
+msgid "Generate playlist content and save criteria"
+msgstr "재생 목록 내용 생성후 설정 저장"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
+msgid "Generate"
+msgstr "생성"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
+msgid "Shuffle playlist content"
+msgstr "재생 목록 내용 셔플하기"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
+msgid "Limit cannot be empty or smaller than 0"
+msgstr "길이 제한은 비어두거나 0으로 설정할수 없습니다"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
+msgid "Limit cannot be more than 24 hrs"
+msgstr "길이 제한은 24h 보다 클수 없습니다"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
+msgid "The value should be an integer"
+msgstr "이 값은 정수(integer) 입니다"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
+msgid "500 is the max item limit value you can set"
+msgstr "아이템 곗수의 최대값은 500 입니다"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
+msgid "You must select Criteria and Modifier"
+msgstr "기준과 모디파이어를 골라주세요"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
+msgid "'Length' should be in '00:00:00' format"
+msgstr "길이는 00:00:00 형태로 입력하세요"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
+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:594
+msgid "The value has to be numeric"
+msgstr "이 값은 숫자만 허용 됩니다"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
+msgid "The value should be less then 2147483648"
+msgstr "이 값은 2147483648보다 작은 수만 허용 됩니다"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
+#, php-format
+msgid "The value should be less than %s characters"
+msgstr "이 값은 %s 문자보다 작은 길이만 허용 됩니다"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
+msgid "Value cannot be empty"
+msgstr "이 값은 비어둘수 없습니다"
+
+#: airtime_mvc/application/forms/StreamSetting.php:26
+msgid "Icecast Vorbis Metadata"
+msgstr "Icecast Vorbis 메타데이타"
+
+#: airtime_mvc/application/forms/StreamSetting.php:36
+msgid "Stream Label:"
+msgstr "스트림 레이블"
+
+#: airtime_mvc/application/forms/StreamSetting.php:37
+msgid "Artist - Title"
+msgstr "아티스트 - 제목"
+
+#: airtime_mvc/application/forms/StreamSetting.php:38
+msgid "Show - Artist - Title"
+msgstr "쇼 - 아티스트 - 제목"
+
+#: airtime_mvc/application/forms/StreamSetting.php:39
+msgid "Station name - Show name"
+msgstr "방송국 이름 - 쇼 이름"
+
+#: airtime_mvc/application/forms/StreamSetting.php:45
+msgid "Off Air Metadata"
+msgstr "오프 에어 메타데이타"
+
+#: airtime_mvc/application/forms/StreamSetting.php:51
+msgid "Enable Replay Gain"
+msgstr "리플레이 게인 활성화"
+
+#: airtime_mvc/application/forms/StreamSetting.php:57
+msgid "Replay Gain Modifier"
+msgstr "리플레이 게인 설정"
+
+#: airtime_mvc/application/forms/StreamSetting.php:65
+msgid "Streaming Server:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Airtime Pro Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Custom / 3rd Party Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordChange.php:17
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
+msgid "Password"
+msgstr "암호"
-#~ msgid "enter a time in seconds 0{.0}"
-#~ msgstr "초단위를 입력해주세요 0{.0}"
+#: airtime_mvc/application/forms/PasswordChange.php:28
+msgid "Confirm new password"
+msgstr "새 암호 확인"
-#~ msgid "Allow Remote Websites To Access \"Schedule\" Info?%s (Enable this to make front-end widgets work.)"
-#~ msgstr "리모트 웹사이트에서 스케쥴 정보에 접근을 허용? %s (위젯을 사용하려면 체크 하세요)"
+#: airtime_mvc/application/forms/PasswordChange.php:36
+msgid "Password confirmation does not match your password."
+msgstr "암호와 암호 확인 값이 일치 하지 않습니다."
-#~ msgid "Default Interface Language"
-#~ msgstr "기본 인터페이스 언어"
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
+msgid "Station Language"
+msgstr ""
-#~ msgid "Get new password"
-#~ msgstr "새 암호 받기"
-
-#~ msgid "Set smart block type:"
-#~ msgstr "스마트 블록 유형"
-
-#~ msgid "Allow Repeat Tracks:"
-#~ msgstr "반복적인 트랙 허용:"
-
-#~ msgid "Limit to"
-#~ msgstr "길이 제한"
-
-#~ msgid "Auto Switch Off"
-#~ msgstr "자동 스위치 끄기"
-
-#~ msgid "Auto Switch On"
-#~ msgstr "자동 스위치 켜기"
-
-#~ msgid "Switch Transition Fade (s)"
-#~ msgstr "스위치 페이딩"
-
-#~ msgid "enter a time in seconds 00{.000000}"
-#~ msgstr "초 단위를 입력해 주세요 00{.000000}"
-
-#~ msgid "Master Username"
-#~ msgstr "마스터 아이디"
-
-#~ msgid "Master Password"
-#~ msgstr "마스터 암호"
-
-#~ msgid "Master Source Connection URL"
-#~ msgstr "마스터 소스 접속 URL"
-
-#~ msgid "Show Source Connection URL"
-#~ msgstr "쇼 소스 접속 URL"
-
-#~ msgid "Master Source Port"
-#~ msgstr "마스터 소스 포트"
-
-#~ msgid "Master Source Mount Point"
-#~ msgstr "마스터 소스 마운트 지점"
-
-#~ msgid "Show Source Port"
-#~ msgstr "쇼 소스 포트"
-
-#~ msgid "Show Source Mount Point"
-#~ msgstr "쇼 소스 마운트 지점"
-
-#~ msgid "You cannot use same port as Master DJ port."
-#~ msgstr "마스터 소스 포트와 같은 포트를 사용할수 없스니다"
-
-#~ msgid "Port %s is not available"
-#~ msgstr "포트 %s는 이용 할수 없습니다"
-
-#~ msgid "E-mail"
-#~ msgstr "이메일"
-
-#~ msgid "Restore password"
-#~ msgstr "암호 복원"
-
-#~ msgid "Hardware Audio Output"
-#~ msgstr "하드에어 오디오 출력"
-
-#~ msgid "Output Type"
-#~ msgstr "출력 유형"
-
-#~ msgid "Date/Time Start:"
-#~ msgstr "날짜/시간 시작:"
-
-#~ msgid "Date/Time End:"
-#~ msgstr "날짜/시간 종료:"
-
-#~ msgid "Automatically Upload Recorded Shows"
-#~ msgstr "자동으로 녹음된 쇼 업로드 하기"
-
-#~ msgid "Enable SoundCloud Upload"
-#~ msgstr "Soundcloud 업로드 사용"
-
-#~ msgid "Automatically Mark Files \"Downloadable\" on SoundCloud"
-#~ msgstr "Soundcloud에 자동으로 파일을 \"Downloadable\"로 마크"
-
-#~ msgid "SoundCloud Email"
-#~ msgstr "SoundCloud 이메일"
-
-#~ msgid "SoundCloud Password"
-#~ msgstr "SoundCloud 암호"
-
-#~ msgid "SoundCloud Tags: (separate tags with spaces)"
-#~ msgstr "SoundCloud 태그: (여려 태그 입력시 띄어쓰기로 구분)"
-
-#~ msgid "Default Genre:"
-#~ msgstr "기본 장르:"
-
-#~ msgid "Default Track Type:"
-#~ msgstr "기본 트랙 타입:"
-
-#~ msgid "Original"
-#~ msgstr "오리지날"
-
-#~ msgid "Remix"
-#~ msgstr "리믹스"
-
-#~ msgid "Live"
-#~ msgstr "라이브"
-
-#~ msgid "Recording"
-#~ msgstr "녹음"
-
-#~ msgid "Spoken"
-#~ msgstr "인터뷰"
-
-#~ msgid "Podcast"
-#~ msgstr "포드캐스트"
-
-#~ msgid "Demo"
-#~ msgstr "데모"
-
-#~ msgid "Work in progress"
-#~ msgstr "진행중"
-
-#~ msgid "Enable System Emails (Password Reset)"
-#~ msgstr "시스템 이메일 사용(암호 리셋)"
-
-#~ msgid "Reset Password 'From' Email"
-#~ msgstr "암호 초기화에 보낸이 이메일 주소"
-
-#~ msgid "Configure Mail Server"
-#~ msgstr "메일 서버 설정"
-
-#~ msgid "Requires Authentication"
-#~ msgstr "인증 필요"
-
-#~ msgid "Mail Server"
-#~ msgstr "메일 서버"
-
-#~ msgid "Email Address"
-#~ msgstr "이메일 주소"
-
-#~ msgid "Please enter your user name and password"
-#~ msgstr "아이디와 암호를 입력해주세요"
-
-#~ msgid "Given email not found."
-#~ msgstr "이메일을 찾을수 없습니다"
-
-#~ msgid "Page not found"
-#~ msgstr "페이지를 찾을수 없습니다"
-
-#~ msgid "Application error"
-#~ msgstr "Application 애러"
-
-#~ msgid "Playlist / Block"
-#~ msgstr "재생목록/블"
-
-#~ msgid "If you change the username or password values for an enabled stream the playout engine will be rebooted and your listeners will hear silence for 5-10 seconds. Changing the following fields will NOT cause a reboot: Stream Label (Global Settings), and Switch Transition Fade(s), Master Username, and Master Password (Input Stream Settings). If Airtime is recording, and if the change causes a playout engine restart, the recording will be interrupted."
-#~ msgstr "스트림 되고 있는 스트림에 아이디나 암호를 수정한다면, 플레이 아웃 엔진이 다시 시작되며, 청취자들이 5~10초 정도 정적이 들릴것입니다. 다음 필드들을 수정하는것은 엔진을 다시 시작 하지 않습니다: (스트림 레이블, 스위치 페이딩, 마스터 마이디, 마스터 암호). Airtime이 현재 녹음 중이고 엔진이 재시작 되면 녹음이 중단 됩니다"
-
-#~ msgid "today"
-#~ msgstr "오늘"
-
-#~ msgid "day"
-#~ msgstr "일별"
-
-#~ msgid "week"
-#~ msgstr "주별"
-
-#~ msgid "month"
-#~ msgstr "월별"
-
-#~ msgid "Remove overbooked tracks"
-#~ msgstr "초과 예약된 트랙 제거"
-
-#~ msgid "View on Soundcloud"
-#~ msgstr "Soundcloud 보기"
-
-#~ msgid "Re-upload to SoundCloud"
-#~ msgstr "Soundcloud에 다시 업로드"
-
-#~ msgid "Upload to SoundCloud"
-#~ msgstr "Soundcloud에 업로드"
-
-#~ msgid "Could not delete some scheduled files."
-#~ msgstr "스케쥴된 아이템들은 삭제 할수 없습니다"
-
-#~ msgid "Add Media"
-#~ msgstr "미디어 추가"
-
-#~ msgid "Library"
-#~ msgstr "라이브러리"
-
-#~ msgid "System"
-#~ msgstr "시스템"
-
-#~ msgid "Preferences"
-#~ msgstr "설정"
-
-#~ msgid "Media Folders"
-#~ msgstr "미디어 폴더"
-
-#~ msgid "Service"
-#~ msgstr "서비스"
-
-#~ msgid "Uptime"
-#~ msgstr "업타임"
-
-#~ msgid "Memory"
-#~ msgstr "메모리"
-
-#~ msgid "Email / Mail Server Settings"
-#~ msgstr "이메일/메일 서버 설정"
-
-#~ msgid "Connection URL: "
-#~ msgstr "접속 URL:"
-
-#~ msgid "Input Stream Settings"
-#~ msgstr "입력 스트림 설정"
-
-#~ msgid "Master Source Connection URL:"
-#~ msgstr "마스터 소스 접속 URL:"
-
-#~ msgid "Override"
-#~ msgstr "덮어쓰기"
-
-#~ msgid "RESET"
-#~ msgstr "초기화"
-
-#~ msgid "Show Source Connection URL:"
-#~ msgstr "쇼 소스 접속 URL:"
-
-#~ msgid "Filter By Show:"
-#~ msgstr "쇼 필터"
-
-#~ msgid "%s's Settings"
-#~ msgstr "%s의 설정"
-
-#~ msgid "Sourcefabric Privacy Policy"
-#~ msgstr "Sourcefabric 이용 약관"
-
-#~ msgid "Smart Block Options"
-#~ msgstr "스마트 블록 옵션"
-
-#~ msgid "file meet the criteria"
-#~ msgstr "개의 파일들"
-
-#~ msgid "New"
-#~ msgstr "새로 만들기"
-
-#~ msgid "New Playlist"
-#~ msgstr "새 재생 목록"
-
-#~ msgid "New Smart Block"
-#~ msgstr "새 스마트 블록"
-
-#~ msgid "New Webstream"
-#~ msgstr "새 웹스트림"
-
-#~ msgid "View / edit description"
-#~ msgstr "설명 보기/수정"
-
-#~ msgid "Global Settings"
-#~ msgstr "전역 설정"
-
-#~ msgid "Output Stream Settings"
-#~ msgstr "출력 스트림 설정"
-
-#~ msgid "Listener Count Over Time"
-#~ msgstr "시간 경과에 따른 청취자 숫자 "
-
-#~ msgid "Begin by adding your files to the library using the 'Add Media' menu button. You can drag and drop your files to this window too."
-#~ msgstr "미디어 추가 페이지로 가셔서 원하는 파일을 드래그 앤 드랍 하십시오. 라이브러리 페이지를 가시면 업로드된 파일을 확인 할수 있습니다."
-
-#~ msgid "Create a show by going to 'Calendar' in the menu bar, and then clicking the '+ Show' icon. This can be either a one-time or repeating show. Only admins and program managers can add shows."
-#~ msgstr "스케쥴 페이지에 가셔서 원하는 날짜에 더블클릭 하셔서 쇼를 생성 하십시오. 관지자와 프로그램 매니저만 쇼를 생성할수 있는 권한이 있습니다"
-
-#~ msgid "Add media to the show by going to your show in the Schedule calendar, left-clicking on it and selecting 'Add / Remove Content'"
-#~ msgstr "만드신 쇼에 클릭을 하신다음 '내용 추가/제거' 를 클릭하십시오."
-
-#~ msgid "Select your media from the left pane and drag them to your show in the right pane."
-#~ msgstr "왼쪽 라이브러리 스크린에서 오른쪽 쇼 내용 패널로 드래그 앤 드랍 하며 미디어를 추가 합니다"
-
-#~ msgid "Then you're good to go!"
-#~ msgstr "첫 번째 쇼를 성공적으로 생성 하였습니다."
-
-#~ msgid "Please enter your account e-mail address. You will receive a link to create a new password via e-mail."
-#~ msgstr "사용자 계정의 이메일을 입력해 주세요. 새로 암호를 설정할수 있는 링크가 포함된 이메일이 전송 됩니다"
-
-#~ msgid "Email sent"
-#~ msgstr "이메일이 전송 되었습니다"
-
-#~ msgid "An email has been sent"
-#~ msgstr "이메일이 전송 되었습니다"
-
-#~ msgid "Back to login screen"
-#~ msgstr "로그인 페이지로 가기"
-
-#~ msgid "Scheduled Play"
-#~ msgstr "스케쥴"
-
-#~ msgid "Station time"
-#~ msgstr "방송국 시간"
-
-#~ msgid "Empty smart block"
-#~ msgstr "내용물 없음"
-
-#~ msgid "Empty playlist"
-#~ msgstr "내용물 없음"
-
-#~ msgid "Empty smart block content"
-#~ msgstr "스마트 블락 내용 지우기"
-
-#~ msgid "No open smart block"
-#~ msgstr "열린 스마트 블록 없음"
-
-#~ msgid "Record & Rebroadcast"
-#~ msgstr "녹음 & 재방송"
-
-#~ msgid "Failed to create 'organize' directory."
-#~ msgstr "스마트 블록"
-
-#~ msgid "The file was not uploaded, there is %s MB of disk space left and the file you are uploading has a size of %s MB."
-#~ msgstr "파일 업로드를 실패 하였습니다. 남은 disk공간이 %s MB 이고, 파일 크기가 %s MB 입니다."
-
-#~ msgid "This file appears to be corrupted and will not be added to media library."
-#~ msgstr "파일이 손상되었으므로, 라이브러리에 추가 되지 않습니다."
-
-#~ msgid "The file was not uploaded, this error can occur if the computer hard drive does not have enough disk space or the stor directory does not have correct write permissions."
-#~ msgstr "파일이 업로드 되지 않았습니다. 이 에러는 하드 디스크에 공간이 충분치 않거나, 권한이 부족하여 생길수 있습니다."
-
-#~ msgid ""
-#~ "Hi %s, \n"
-#~ "\n"
-#~ "Click this link to reset your password: "
-#~ msgstr ""
-#~ "안녕하세요 %s님, \n"
-#~ "암호 재설정을 하시려면 링크를 클릭하세요: "
-
-#~ msgid "Show Content"
-#~ msgstr "쇼 내용 보기"
-
-#~ msgid "Remove All Content"
-#~ msgstr "내용 모두 삭제"
-
-#~ msgid "Cancel Current Show"
-#~ msgstr "현재 쇼 취소"
-
-#~ msgid "Delete This Instance"
-#~ msgstr "이 인스턴스 삭제"
-
-#~ msgid "Delete This Instance and All Following"
-#~ msgstr "이 인스턴스와 이후에 모든 인스턴스 삭제"
-
-#~ msgid "Please selection an option"
-#~ msgstr "옵션을 선택 해주세요"
-
-#~ msgid "No Records"
-#~ msgstr "레코드 없음"
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
+msgid "Enabled:"
+msgstr "사용:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
+msgid "Mobile:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
+msgid "Stream Type:"
+msgstr "스트림 타입:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
+msgid "Service Type:"
+msgstr "서비스 타입:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
+msgid "Channels:"
+msgstr "채널:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "1 - Mono"
+msgstr "1 - 모노"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "2 - Stereo"
+msgstr "2 - 스테레오"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
+msgid "Server"
+msgstr "서버"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
+msgid "Port"
+msgstr "포트"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
+msgid "Only numbers are allowed."
+msgstr "숫자만 허용 됩니다"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
+msgid "URL"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
+msgid "Mount Point"
+msgstr "마운트 지점"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
+msgid "Admin User"
+msgstr "관리자 아이디"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
+msgid "Admin Password"
+msgstr "관리자 암호"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
+msgid "Server cannot be empty."
+msgstr "서버를 지정해주세요"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
+msgid "Port cannot be empty."
+msgstr "포트를 지정해주세요"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
+msgid "Mount cannot be empty with Icecast server."
+msgstr "Icecast 서버는 마운트 지점을 지정해야 합니다"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:16
+msgid "'%value%' does not fit the time format 'HH:mm'"
+msgstr "'%value%'은 시간 형식('HH:mm')에 맞지 않습니다."
+
+#: airtime_mvc/application/forms/AddShowWhen.php:22
+msgid "Start Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:37
+msgid "In the Future:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:64
+msgid "End Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:98
+msgid "Timezone:"
+msgstr "시간대:"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:107
+msgid "Repeats?"
+msgstr "반복?"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:139
+msgid "Cannot create show in the past"
+msgstr "쇼를 과거에 생성 할수 없습니다"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:147
+msgid "Cannot modify start date/time of the show that is already started"
+msgstr "이미 시작한 쇼의 시작 날짜/시간을 바꿀수 없습니다"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:156
+#: airtime_mvc/application/models/Show.php:282
+msgid "End date/time cannot be in the past"
+msgstr "종료 날짜/시간을 과거로 설정할수 없습니다"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:164
+msgid "Cannot have duration < 0m"
+msgstr "길이가 0m 보다 작을수 없습니다"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:168
+msgid "Cannot have duration 00h 00m"
+msgstr "길이가 00h 00m인 쇼를 생성 할수 없습니다"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:175
+msgid "Cannot have duration greater than 24h"
+msgstr "쇼의 길이가 24h를 넘을수 없습니다"
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:19
+msgid "Push metadata to your station on TuneIn?"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:24
+msgid "Station ID:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:30
+msgid "Partner Key:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:36
+msgid "Partner Id:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:77
+#: airtime_mvc/application/forms/TuneInPreferences.php:86
+msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:10
+#, php-format
+msgid "Use %s Authentication:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:16
+msgid "Use Custom Authentication:"
+msgstr "Custom 인증 사용"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:25
+msgid "Custom Username"
+msgstr "Custom 아이디"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:37
+msgid "Custom Password"
+msgstr "Custom 암호"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:48
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
+msgid "Host:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
+msgid "Port:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:60
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
+msgid "Mount:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:77
+msgid "Username field cannot be empty."
+msgstr "아이디를 입력해주세요"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:82
+msgid "Password field cannot be empty."
+msgstr "암호를 입력해주세요"
+
+#: airtime_mvc/application/forms/AddShowStyle.php:12
+msgid "Background Colour:"
+msgstr "배경 색:"
+
+#: airtime_mvc/application/forms/AddShowStyle.php:31
+msgid "Text Colour:"
+msgstr "글자 색:"
+
+#: airtime_mvc/application/forms/AddShowStyle.php:49
+msgid "Current Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:72
+msgid "Show Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:87
+msgid "Logo Preview:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Login.php:102
+msgid "Type the characters you see in the picture below."
+msgstr "밑에 보이는 그림에 나온 문자를 입력하세요"
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
+msgid "Auto Switch Off:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
+msgid "Auto Switch On:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
+msgid "Switch Transition Fade (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:10
+msgid "Link:"
+msgstr "링크:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:16
+msgid "Repeat Type:"
+msgstr "반복 유형:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:19
+msgid "weekly"
+msgstr "주간"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:20
+msgid "every 2 weeks"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:21
+msgid "every 3 weeks"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:22
+msgid "every 4 weeks"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:23
+msgid "monthly"
+msgstr "월간"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:32
+msgid "Select Days:"
+msgstr "날짜 선택"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:47
+msgid "Repeat By:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the month"
+msgstr "월중 날짜"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the week"
+msgstr "주중 날짜"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:69
+msgid "No End?"
+msgstr "무한 반복?"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:106
+msgid "End date must be after start date"
+msgstr "종료 일이 시작일 보다 먼져 입니다."
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:113
+msgid "Please select a repeat day"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:12
+msgid "Radio Page"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:19
+msgid "Calendar"
+msgstr "스케쥴"
+
+#: airtime_mvc/application/configs/navigation.php:26
+msgid "Widgets"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:48
+msgid "Settings"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:67
+msgid "Users"
+msgstr "계정"
+
+#: airtime_mvc/application/configs/navigation.php:74
+msgid "Streams"
+msgstr "스트림"
+
+#: airtime_mvc/application/configs/navigation.php:82
+msgid "Analytics"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:90
+msgid "Listener Stats"
+msgstr "청취자 통계"
+
+#: airtime_mvc/application/configs/navigation.php:104
+msgid "History Templates"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:113
+msgid "Billing"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:120
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:127
+msgid "Account Details"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:134
+msgid "View Invoices"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:150
+msgid "Getting Started"
+msgstr "초보자 가이드"
+
+#: airtime_mvc/application/configs/navigation.php:157
+msgid "FAQ"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:162
+msgid "User Manual"
+msgstr "사용자 메뉴얼"
+
+#: airtime_mvc/application/configs/navigation.php:167
+msgid "File a Support Ticket"
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:833
+#: airtime_mvc/application/models/Playlist.php:812
+msgid "Cue in and cue out are null."
+msgstr "큐-인 과 큐 -아웃 이 null 입니다"
+
+#: airtime_mvc/application/models/Block.php:868
+#: airtime_mvc/application/models/Block.php:924
+#: airtime_mvc/application/models/Playlist.php:851
+#: airtime_mvc/application/models/Playlist.php:895
+msgid "Can't set cue out to be greater than file length."
+msgstr "큐-아웃 값은 파일 길이보다 클수 없습니다"
+
+#: airtime_mvc/application/models/Block.php:879
+#: airtime_mvc/application/models/Block.php:900
+#: airtime_mvc/application/models/Playlist.php:843
+#: airtime_mvc/application/models/Playlist.php:868
+msgid "Can't set cue in to be larger than cue out."
+msgstr "큐-인 값은 큐-아웃 값보다 클수 없습니다."
+
+#: airtime_mvc/application/models/Block.php:935
+#: airtime_mvc/application/models/Playlist.php:887
+msgid "Can't set cue out to be smaller than cue in."
+msgstr "큐-아웃 값은 큐-인 값보다 작을수 없습니다."
+
+#: airtime_mvc/application/models/Block.php:1366
+msgid "Upload Time"
+msgstr ""
+
+#: airtime_mvc/application/models/ShowBuilder.php:212
+#, php-format
+msgid "Rebroadcast of %s from %s"
+msgstr "%s 재방송( %s에 시작) "
+
+#: airtime_mvc/application/models/Preference.php:460
+#, php-format
+msgid "Powered by %s"
+msgstr ""
+
+#: airtime_mvc/application/models/Preference.php:588
+msgid "Select Country"
+msgstr "국가 선택"
+
+#: airtime_mvc/application/models/MusicDir.php:160
+#, php-format
+msgid "%s is already watched."
+msgstr "%s는 이미 모니터 중입니다 "
+
+#: airtime_mvc/application/models/MusicDir.php:164
+#, php-format
+msgid "%s contains nested watched directory: %s"
+msgstr "%s는 이미 모니터중인 폴더를 포함하고 있습니다: %s"
+
+#: airtime_mvc/application/models/MusicDir.php:168
+#, php-format
+msgid "%s is nested within existing watched directory: %s"
+msgstr "%s를 포함하는 폴더를 이미 모니터 중입니다: %s"
+
+#: airtime_mvc/application/models/MusicDir.php:189
+#: airtime_mvc/application/models/MusicDir.php:370
+#, php-format
+msgid "%s is not a valid directory."
+msgstr "%s는 옳은 경로가 아닙니다."
+
+#: airtime_mvc/application/models/MusicDir.php:232
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list"
+msgstr "%s는 이미 현재 저장 폴더로 지정이 되었거나 모니터중인 폴더 입니다."
+
+#: airtime_mvc/application/models/MusicDir.php:388
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list."
+msgstr "%s는 이미 현재 저장 폴더로 지정이 되었거나 모니터중인 폴더 입니다."
+
+#: airtime_mvc/application/models/MusicDir.php:431
+#, php-format
+msgid "%s doesn't exist in the watched list."
+msgstr "%s가 모니터 목록에 없습니다"
+
+#: airtime_mvc/application/models/Auth.php:33
+#, php-format
+msgid ""
+"Hi %s, \n"
+"\n"
+"Please click this link to reset your password: "
+msgstr ""
+
+#: airtime_mvc/application/models/Auth.php:38
+#, php-format
+msgid "%s Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/models/Show.php:184
+msgid "Shows can have a max length of 24 hours."
+msgstr "쇼 길이는 24시간을 넘을수 없습니다."
+
+#: airtime_mvc/application/models/Show.php:293
+msgid ""
+"Cannot schedule overlapping shows.\n"
+"Note: Resizing a repeating show affects all of its repeats."
+msgstr ""
+"쇼를 중복되게 스케줄 할수 없습니다.\n"
+"주의: 반복 쇼의 크기를 조정하면, 모든 반복 쇼의 크기가 바뀝니다."
+
+#: airtime_mvc/application/models/Scheduler.php:73
+msgid "Cannot move items out of linked shows"
+msgstr "링크 쇼에서 아이템을 분리 할수 없습니다"
+
+#: airtime_mvc/application/models/Scheduler.php:119
+msgid "The schedule you're viewing is out of date! (sched mismatch)"
+msgstr "현재 보고 계신 스케쥴이 맞지 않습니다(sched mismatch)"
+
+#: airtime_mvc/application/models/Scheduler.php:124
+msgid "The schedule you're viewing is out of date! (instance mismatch)"
+msgstr "현재 보고 계신 스케쥴이 맞지 않습니다(instance mismatch)"
+
+#: airtime_mvc/application/models/Scheduler.php:132
+#: airtime_mvc/application/models/Scheduler.php:458
+#: airtime_mvc/application/models/Scheduler.php:490
+msgid "The schedule you're viewing is out of date!"
+msgstr "현재 보고 계신 스케쥴이 맞지 않습니다"
+
+#: airtime_mvc/application/models/Scheduler.php:142
+#, php-format
+msgid "You are not allowed to schedule show %s."
+msgstr "쇼를 스케쥴 할수 있는 권한이 없습니다 %s."
+
+#: airtime_mvc/application/models/Scheduler.php:146
+msgid "You cannot add files to recording shows."
+msgstr "녹화 쇼에는 파일을 추가 할수 없습니다"
+
+#: airtime_mvc/application/models/Scheduler.php:152
+#, php-format
+msgid "The show %s is over and cannot be scheduled."
+msgstr "지난 쇼(%s)에 더이상 스케쥴을 할수 없스니다"
+
+#: airtime_mvc/application/models/Scheduler.php:159
+#, php-format
+msgid "The show %s has been previously updated!"
+msgstr "쇼 %s 업데이트 되었습니다!"
+
+#: airtime_mvc/application/models/Scheduler.php:178
+msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
+msgstr "링크 쇼의 내용은 이미 방송된 쇼의 전후에만 스케쥴 할수 있습니다"
+
+#: airtime_mvc/application/models/Scheduler.php:195
+msgid "Cannot schedule a playlist that contains missing files."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:216
+#: airtime_mvc/application/models/Scheduler.php:305
+msgid "A selected File does not exist!"
+msgstr "선택하신 파일이 존재 하지 않습니다"
+
+#: airtime_mvc/application/models/Schedule.php:206
+msgid "livestream"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:166
+msgid "Length needs to be greater than 0 minutes"
+msgstr "길이가 0분 보다 길어야 합니다"
+
+#: airtime_mvc/application/models/Webstream.php:171
+msgid "Length should be of form \"00h 00m\""
+msgstr "길이는 \"00h 00m\"의 형태 여야 합니다 "
+
+#: airtime_mvc/application/models/Webstream.php:184
+msgid "URL should be of form \"http://domain\""
+msgstr "URL은 \"http://domain\" 형태여야 합니다"
+
+#: airtime_mvc/application/models/Webstream.php:187
+msgid "URL should be 512 characters or less"
+msgstr "URL은 512캐릭터 까지 허용합니다"
+
+#: airtime_mvc/application/models/Webstream.php:193
+msgid "No MIME type found for webstream."
+msgstr "웹 스트림의 MIME 타입을 찾을수 없습니다"
+
+#: airtime_mvc/application/models/Webstream.php:209
+msgid "Webstream name cannot be empty"
+msgstr "웹스트림의 이름을 지정하십시오"
+
+#: airtime_mvc/application/models/Webstream.php:278
+msgid "Could not parse XSPF playlist"
+msgstr "XSPF 재생목록을 분석 할수 없습니다"
+
+#: airtime_mvc/application/models/Webstream.php:298
+msgid "Could not parse PLS playlist"
+msgstr "PLS 재생목록을 분석 할수 없습니다"
+
+#: airtime_mvc/application/models/Webstream.php:318
+msgid "Could not parse M3U playlist"
+msgstr "M3U 재생목록을 분석할수 없습니다"
+
+#: airtime_mvc/application/models/Webstream.php:332
+msgid "Invalid webstream - This appears to be a file download."
+msgstr "잘못된 웹스트림 - 웹스트림이 아니고 파일 다운로드 링크입니다"
+
+#: airtime_mvc/application/models/Webstream.php:336
+#, php-format
+msgid "Unrecognized stream type: %s"
+msgstr "알수 없는 스트림 타입: %s"
+
+#: airtime_mvc/public/setup/rabbitmq-setup.php:78
+msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
+msgstr ""
+
+#~ msgid "My Account"
+#~ msgstr "내 계정"
diff --git a/airtime_mvc/locale/ko_KR/LC_MESSAGES/pro.po b/airtime_mvc/locale/ko_KR/LC_MESSAGES/pro.po
index 866ee0acb..f59b52c3d 100644
--- a/airtime_mvc/locale/ko_KR/LC_MESSAGES/pro.po
+++ b/airtime_mvc/locale/ko_KR/LC_MESSAGES/pro.po
@@ -1,3 +1,139 @@
+#: airtime_mvc/application/controllers/LoginController.php:170
+#, php-format
+msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
+#, php-format
+msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
+#, php-format
+msgid "If you are the primary owner of this station, please reset your password here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
+msgid "Thank you!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
+msgid "Your station has been upgraded successfully."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
+msgid "Return to Airtime"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+#, php-format
+msgid "Purchase an %s plan!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+msgid "My Account"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
+msgid "Upgrade today to get more listeners and storage space!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
+msgid "View Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:257
+msgid "Your Current Plan:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:291
+msgid "Please enter your payment details:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
+msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
+msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:17
+msgid "First Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:26
+msgid "Last Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:35
+msgid "Company Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:44
+msgid "Email Address:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:54
+msgid "Address 1:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:63
+msgid "Address 2:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:70
+msgid "City:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:80
+msgid "State/Region:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:89
+msgid "Zip Code / Postal Code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:102
+msgid "Country:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:112
+msgid "Phone Number:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:121
+msgid "Please choose a security question:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:135
+msgid "Please enter an answer:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:152
+msgid "VAT/Tax ID (EU only)"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:162
+msgid "Subscribe to Sourcefabric newsletter"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:172
+msgid "Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:181
+msgid "Verify Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:193
+msgid "Save"
+msgstr ""
+
#: airtime_mvc/application/models/Auth.php:35
#, php-format
msgid ""
@@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
-msgid "Thank you!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
-msgid "Your station has been upgraded successfully."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
-msgid "Return to Airtime"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
-#, php-format
-msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
-msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
-msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
-#, php-format
-msgid "If you are the primary owner of this station, please reset your password here."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:170
-#, php-format
-msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
-msgstr ""
diff --git a/airtime_mvc/locale/lt/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/lt/LC_MESSAGES/airtime.mo
index 4ec47f923..4f7972f26 100644
Binary files a/airtime_mvc/locale/lt/LC_MESSAGES/airtime.mo and b/airtime_mvc/locale/lt/LC_MESSAGES/airtime.mo differ
diff --git a/airtime_mvc/locale/lt/LC_MESSAGES/airtime.po b/airtime_mvc/locale/lt/LC_MESSAGES/airtime.po
index d24e9c2a4..3fdac9032 100644
--- a/airtime_mvc/locale/lt/LC_MESSAGES/airtime.po
+++ b/airtime_mvc/locale/lt/LC_MESSAGES/airtime.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Airtime\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-09-03 10:24-0400\n"
-"PO-Revision-Date: 2015-08-06 12:39+0000\n"
-"Last-Translator: Moo\n"
+"POT-Creation-Date: 2015-09-04 11:17-0400\n"
+"PO-Revision-Date: 2015-09-04 08:15+0000\n"
+"Last-Translator: Daniel James \n"
"Language-Team: Lithuanian (http://www.transifex.com/sourcefabric/airtime/language/lt/)\n"
"Language: lt\n"
"MIME-Version: 1.0\n"
@@ -18,132 +18,6 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-#: airtime_mvc/public/setup/rabbitmq-setup.php:78
-msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1117
-#: airtime_mvc/application/services/HistoryService.php:1157
-#: airtime_mvc/application/services/HistoryService.php:1174
-#: airtime_mvc/application/models/Block.php:1375
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
-#: airtime_mvc/application/controllers/LocaleController.php:76
-msgid "Title"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1118
-#: airtime_mvc/application/services/HistoryService.php:1158
-#: airtime_mvc/application/services/HistoryService.php:1175
-#: airtime_mvc/application/models/Block.php:1360
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
-#: airtime_mvc/application/controllers/LocaleController.php:77
-msgid "Creator"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1119
-#: airtime_mvc/application/models/Block.php:1352
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
-#: airtime_mvc/application/controllers/LocaleController.php:78
-msgid "Album"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1120
-#: airtime_mvc/application/services/HistoryService.php:1177
-#: airtime_mvc/application/models/Block.php:1369
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
-#: airtime_mvc/application/controllers/LocaleController.php:91
-msgid "Length"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1121
-#: airtime_mvc/application/models/Block.php:1362
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
-#: airtime_mvc/application/controllers/LocaleController.php:85
-msgid "Genre"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1122
-#: airtime_mvc/application/models/Block.php:1371
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
-#: airtime_mvc/application/controllers/LocaleController.php:93
-msgid "Mood"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1123
-#: airtime_mvc/application/models/Block.php:1364
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
-#: airtime_mvc/application/controllers/LocaleController.php:87
-msgid "Label"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1124
-#: airtime_mvc/application/services/HistoryService.php:1178
-#: airtime_mvc/application/models/Block.php:1355
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
-#: airtime_mvc/application/controllers/LocaleController.php:81
-msgid "Composer"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1125
-#: airtime_mvc/application/models/Block.php:1363
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
-#: airtime_mvc/application/controllers/LocaleController.php:86
-msgid "ISRC"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1126
-#: airtime_mvc/application/services/HistoryService.php:1179
-#: airtime_mvc/application/models/Block.php:1357
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
-#: airtime_mvc/application/controllers/LocaleController.php:83
-msgid "Copyright"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1127
-#: airtime_mvc/application/models/Block.php:1379
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
-#: airtime_mvc/application/controllers/LocaleController.php:100
-msgid "Year"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1128
-msgid "Track"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1129
-#: airtime_mvc/application/models/Block.php:1356
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
-#: airtime_mvc/application/controllers/LocaleController.php:82
-msgid "Conductor"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1130
-#: airtime_mvc/application/models/Block.php:1365
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
-#: airtime_mvc/application/controllers/LocaleController.php:88
-msgid "Language"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1155
-#: airtime_mvc/application/forms/EditHistoryItem.php:32
-msgid "Start Time"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1156
-#: airtime_mvc/application/forms/EditHistoryItem.php:44
-msgid "End Time"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1176
-msgid "Played"
-msgstr ""
-
#: airtime_mvc/application/services/CalendarService.php:50
msgid "Record file doesn't exist"
msgstr ""
@@ -239,2601 +113,380 @@ msgstr ""
msgid "Must wait 1 hour to rebroadcast."
msgstr ""
-#: airtime_mvc/application/models/Schedule.php:206
-msgid "livestream"
+#: airtime_mvc/application/services/HistoryService.php:1117
+#: airtime_mvc/application/services/HistoryService.php:1157
+#: airtime_mvc/application/services/HistoryService.php:1174
+#: airtime_mvc/application/controllers/LocaleController.php:76
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
+#: airtime_mvc/application/models/Block.php:1375
+msgid "Title"
msgstr ""
-#: airtime_mvc/application/models/ShowBuilder.php:212
+#: airtime_mvc/application/services/HistoryService.php:1118
+#: airtime_mvc/application/services/HistoryService.php:1158
+#: airtime_mvc/application/services/HistoryService.php:1175
+#: airtime_mvc/application/controllers/LocaleController.php:77
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
+#: airtime_mvc/application/models/Block.php:1360
+msgid "Creator"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1119
+#: airtime_mvc/application/controllers/LocaleController.php:78
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
+#: airtime_mvc/application/models/Block.php:1352
+msgid "Album"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1120
+#: airtime_mvc/application/services/HistoryService.php:1177
+#: airtime_mvc/application/controllers/LocaleController.php:91
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
+#: airtime_mvc/application/models/Block.php:1369
+msgid "Length"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1121
+#: airtime_mvc/application/controllers/LocaleController.php:85
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
+#: airtime_mvc/application/models/Block.php:1362
+msgid "Genre"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1122
+#: airtime_mvc/application/controllers/LocaleController.php:93
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
+#: airtime_mvc/application/models/Block.php:1371
+msgid "Mood"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1123
+#: airtime_mvc/application/controllers/LocaleController.php:87
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
+#: airtime_mvc/application/models/Block.php:1364
+msgid "Label"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1124
+#: airtime_mvc/application/services/HistoryService.php:1178
+#: airtime_mvc/application/controllers/LocaleController.php:81
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
+#: airtime_mvc/application/models/Block.php:1355
+msgid "Composer"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1125
+#: airtime_mvc/application/controllers/LocaleController.php:86
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
+#: airtime_mvc/application/models/Block.php:1363
+msgid "ISRC"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1126
+#: airtime_mvc/application/services/HistoryService.php:1179
+#: airtime_mvc/application/controllers/LocaleController.php:83
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
+#: airtime_mvc/application/models/Block.php:1357
+msgid "Copyright"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1127
+#: airtime_mvc/application/controllers/LocaleController.php:100
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
+#: airtime_mvc/application/models/Block.php:1379
+msgid "Year"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1128
+msgid "Track"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1129
+#: airtime_mvc/application/controllers/LocaleController.php:82
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
+#: airtime_mvc/application/models/Block.php:1356
+msgid "Conductor"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1130
+#: airtime_mvc/application/controllers/LocaleController.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
+#: airtime_mvc/application/models/Block.php:1365
+msgid "Language"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1155
+#: airtime_mvc/application/forms/EditHistoryItem.php:32
+msgid "Start Time"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1156
+#: airtime_mvc/application/forms/EditHistoryItem.php:44
+msgid "End Time"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1176
+msgid "Played"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:31
+#: airtime_mvc/application/controllers/PlaylistController.php:147
#, php-format
-msgid "Rebroadcast of %s from %s"
+msgid "%s not found"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:166
-msgid "Length needs to be greater than 0 minutes"
+#: airtime_mvc/application/controllers/LibraryController.php:40
+#: airtime_mvc/application/controllers/PlaylistController.php:168
+msgid "Something went wrong."
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:171
-msgid "Length should be of form \"00h 00m\""
+#: airtime_mvc/application/controllers/LibraryController.php:95
+#: airtime_mvc/application/controllers/ShowbuilderController.php:136
+msgid "Preview"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:184
-msgid "URL should be of form \"http://domain\""
+#: airtime_mvc/application/controllers/LibraryController.php:115
+#: airtime_mvc/application/controllers/LibraryController.php:177
+#: airtime_mvc/application/controllers/LibraryController.php:200
+msgid "Add to Playlist"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:187
-msgid "URL should be 512 characters or less"
+#: airtime_mvc/application/controllers/LibraryController.php:117
+msgid "Add to Smart Block"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:193
-msgid "No MIME type found for webstream."
+#: airtime_mvc/application/controllers/LibraryController.php:123
+#: airtime_mvc/application/controllers/LocaleController.php:66
+msgid "Edit Metadata"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:209
-msgid "Webstream name cannot be empty"
+#: airtime_mvc/application/controllers/LibraryController.php:131
+#: airtime_mvc/application/controllers/ScheduleController.php:712
+msgid "Download"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:278
-msgid "Could not parse XSPF playlist"
+#: airtime_mvc/application/controllers/LibraryController.php:147
+msgid "View track"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:298
-msgid "Could not parse PLS playlist"
+#: airtime_mvc/application/controllers/LibraryController.php:148
+msgid "Remove track"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:318
-msgid "Could not parse M3U playlist"
+#: airtime_mvc/application/controllers/LibraryController.php:154
+#: airtime_mvc/application/controllers/LibraryController.php:159
+msgid "Upload track"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:332
-msgid "Invalid webstream - This appears to be a file download."
+#: airtime_mvc/application/controllers/LibraryController.php:169
+msgid "Duplicate Playlist"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:336
+#: airtime_mvc/application/controllers/LibraryController.php:213
+msgid "No action available"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:233
+msgid "You don't have permission to delete selected items."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:279
+msgid "Could not delete file because it is scheduled in the future."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:282
+msgid "Could not delete file(s)."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:322
#, php-format
-msgid "Unrecognized stream type: %s"
+msgid "Copy of %s"
msgstr ""
-#: airtime_mvc/application/models/Preference.php:460
-#, php-format
-msgid "Powered by %s"
+#: airtime_mvc/application/controllers/WebstreamController.php:28
+#: airtime_mvc/application/controllers/WebstreamController.php:32
+msgid "Untitled Webstream"
msgstr ""
-#: airtime_mvc/application/models/Preference.php:588
-msgid "Select Country"
+#: airtime_mvc/application/controllers/WebstreamController.php:150
+msgid "Webstream saved."
msgstr ""
-#: airtime_mvc/application/models/MusicDir.php:160
-#, php-format
-msgid "%s is already watched."
+#: airtime_mvc/application/controllers/WebstreamController.php:158
+msgid "Invalid form values."
msgstr ""
-#: airtime_mvc/application/models/MusicDir.php:164
-#, php-format
-msgid "%s contains nested watched directory: %s"
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:168
-#, php-format
-msgid "%s is nested within existing watched directory: %s"
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:189
-#: airtime_mvc/application/models/MusicDir.php:370
-#, php-format
-msgid "%s is not a valid directory."
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:232
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list"
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:388
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list."
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:431
-#, php-format
-msgid "%s doesn't exist in the watched list."
-msgstr ""
-
-#: airtime_mvc/application/models/Show.php:184
-msgid "Shows can have a max length of 24 hours."
-msgstr ""
-
-#: airtime_mvc/application/models/Show.php:282
-#: airtime_mvc/application/forms/AddShowWhen.php:156
-msgid "End date/time cannot be in the past"
-msgstr ""
-
-#: airtime_mvc/application/models/Show.php:293
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
msgid ""
-"Cannot schedule overlapping shows.\n"
-"Note: Resizing a repeating show affects all of its repeats."
+"To configure and use the embeddable player you must:
\n"
+" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
+" 2. Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/models/Auth.php:33
-#, php-format
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
msgid ""
-"Hi %s, \n"
-"\n"
-"Please click this link to reset your password: "
+"To use the embeddable weekly schedule widget you must:
\n"
+" Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/models/Auth.php:38
+#: airtime_mvc/application/controllers/ListenerstatController.php:51
+msgid "Please make sure admin user/password is correct on System->Streams page."
+msgstr ""
+
+#: airtime_mvc/application/controllers/UserController.php:86
+msgid "User added successfully!"
+msgstr ""
+
+#: airtime_mvc/application/controllers/UserController.php:88
+msgid "User updated successfully!"
+msgstr ""
+
+#: airtime_mvc/application/controllers/UserController.php:187
+msgid "Settings updated successfully!"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PlaylistController.php:53
#, php-format
-msgid "%s Password Reset"
+msgid "You are viewing an older version of %s"
msgstr ""
-#: airtime_mvc/application/models/Block.php:333
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
-msgid "items"
+#: airtime_mvc/application/controllers/PlaylistController.php:140
+msgid "You cannot add tracks to dynamic blocks."
msgstr ""
-#: airtime_mvc/application/models/Block.php:833
-#: airtime_mvc/application/models/Playlist.php:812
-msgid "Cue in and cue out are null."
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:868
-#: airtime_mvc/application/models/Block.php:924
-#: airtime_mvc/application/models/Playlist.php:851
-#: airtime_mvc/application/models/Playlist.php:895
-msgid "Can't set cue out to be greater than file length."
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:879
-#: airtime_mvc/application/models/Block.php:900
-#: airtime_mvc/application/models/Playlist.php:843
-#: airtime_mvc/application/models/Playlist.php:868
-msgid "Can't set cue in to be larger than cue out."
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:935
-#: airtime_mvc/application/models/Playlist.php:887
-msgid "Can't set cue out to be smaller than cue in."
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1351
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
-msgid "Select criteria"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1353
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
-msgid "Bit Rate (Kbps)"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1354
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
-#: airtime_mvc/application/controllers/LocaleController.php:80
-msgid "BPM"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1358
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
-#: airtime_mvc/application/controllers/LocaleController.php:281
-#: airtime_mvc/application/layouts/scripts/layout.phtml:140
-msgid "Cue In"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1359
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:282
-#: airtime_mvc/application/layouts/scripts/layout.phtml:147
-msgid "Cue Out"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1361
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
-#: airtime_mvc/application/controllers/LocaleController.php:84
-msgid "Encoded By"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1366
-msgid "Upload Time"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1367
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
-#: airtime_mvc/application/controllers/LocaleController.php:89
-msgid "Last Modified"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1368
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
-#: airtime_mvc/application/controllers/LocaleController.php:90
-msgid "Last Played"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1370
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
-#: airtime_mvc/application/controllers/LocaleController.php:92
-msgid "Mime"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1372
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
-#: airtime_mvc/application/controllers/LocaleController.php:94
-msgid "Owner"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1373
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
-#: airtime_mvc/application/controllers/LocaleController.php:95
-msgid "Replay Gain"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1374
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
-msgid "Sample Rate (kHz)"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1376
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
-#: airtime_mvc/application/controllers/LocaleController.php:97
-msgid "Track Number"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1377
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
-#: airtime_mvc/application/controllers/LocaleController.php:98
-msgid "Uploaded"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1378
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
-#: airtime_mvc/application/controllers/LocaleController.php:99
-msgid "Website"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1383
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
-#: airtime_mvc/application/controllers/LocaleController.php:151
-msgid "Select modifier"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1384
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
-#: airtime_mvc/application/controllers/LocaleController.php:152
-msgid "contains"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1385
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
-#: airtime_mvc/application/controllers/LocaleController.php:153
-msgid "does not contain"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1386
-#: airtime_mvc/application/models/Block.php:1390
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
-#: airtime_mvc/application/controllers/LocaleController.php:154
-msgid "is"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1387
-#: airtime_mvc/application/models/Block.php:1391
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
-#: airtime_mvc/application/controllers/LocaleController.php:155
-msgid "is not"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1388
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
-#: airtime_mvc/application/controllers/LocaleController.php:156
-msgid "starts with"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1389
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
-#: airtime_mvc/application/controllers/LocaleController.php:157
-msgid "ends with"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
-#: airtime_mvc/application/controllers/LocaleController.php:158
-msgid "is greater than"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1393
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
-#: airtime_mvc/application/controllers/LocaleController.php:159
-msgid "is less than"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1394
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
-#: airtime_mvc/application/controllers/LocaleController.php:160
-msgid "is in the range"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:73
-msgid "Cannot move items out of linked shows"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:119
-msgid "The schedule you're viewing is out of date! (sched mismatch)"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:124
-msgid "The schedule you're viewing is out of date! (instance mismatch)"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:132
-#: airtime_mvc/application/models/Scheduler.php:458
-#: airtime_mvc/application/models/Scheduler.php:490
-msgid "The schedule you're viewing is out of date!"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:142
+#: airtime_mvc/application/controllers/PlaylistController.php:161
#, php-format
-msgid "You are not allowed to schedule show %s."
+msgid "You don't have permission to delete selected %s(s)."
msgstr ""
-#: airtime_mvc/application/models/Scheduler.php:146
-msgid "You cannot add files to recording shows."
+#: airtime_mvc/application/controllers/PlaylistController.php:174
+msgid "You can only add tracks to smart block."
msgstr ""
-#: airtime_mvc/application/models/Scheduler.php:152
+#: airtime_mvc/application/controllers/PlaylistController.php:180
+#: airtime_mvc/application/controllers/LocaleController.php:50
+msgid "You can only add tracks, smart blocks, and webstreams to playlists."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PlaylistController.php:192
+msgid "Untitled Playlist"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PlaylistController.php:194
+msgid "Untitled Smart Block"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PlaylistController.php:522
+msgid "Unknown Playlist"
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:78
+msgid "Page not found."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:87
+msgid "The requested action is not supported."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:98
+msgid "You do not have permission to access this resource."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:109
+msgid "An internal application error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/controllers/Apiv2Controller.php:77
+#: airtime_mvc/application/controllers/ApiController.php:79
+msgid "You are not allowed to access this resource."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:72
+msgid "Preferences updated."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:115
+msgid "Support setting updated."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:123
+msgid "Support Feedback"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:251
+msgid "Stream Setting Updated."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:342
+msgid "path should be specified"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:437
+msgid "Problem with Liquidsoap..."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:493
+msgid "Request method not accepted"
+msgstr ""
+
+#: airtime_mvc/application/controllers/DashboardController.php:35
+#: airtime_mvc/application/controllers/DashboardController.php:84
+msgid "You don't have permission to disconnect source."
+msgstr ""
+
+#: airtime_mvc/application/controllers/DashboardController.php:37
+#: airtime_mvc/application/controllers/DashboardController.php:86
+msgid "There is no source connected to this input."
+msgstr ""
+
+#: airtime_mvc/application/controllers/DashboardController.php:81
+msgid "You don't have permission to switch source."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:43
+msgid "Please enter your username and password."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:93
+msgid "Wrong username or password provided. Please try again."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:167
+msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:173
+msgid "There was a problem with the username or email address you entered."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ApiController.php:244
+#: airtime_mvc/application/controllers/ApiController.php:317
+#: airtime_mvc/application/controllers/ApiController.php:392
+#: airtime_mvc/application/controllers/ApiController.php:435
+#: airtime_mvc/application/controllers/ApiController.php:474
+#: airtime_mvc/application/controllers/ApiController.php:507
+msgid "You are not allowed to access this resource. "
+msgstr ""
+
+#: airtime_mvc/application/controllers/ApiController.php:698
+#: airtime_mvc/application/controllers/ApiController.php:718
+#: airtime_mvc/application/controllers/ApiController.php:730
#, php-format
-msgid "The show %s is over and cannot be scheduled."
+msgid "File does not exist in %s"
msgstr ""
-#: airtime_mvc/application/models/Scheduler.php:159
-#, php-format
-msgid "The show %s has been previously updated!"
+#: airtime_mvc/application/controllers/ApiController.php:781
+msgid "Bad request. no 'mode' parameter passed."
msgstr ""
-#: airtime_mvc/application/models/Scheduler.php:178
-msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:195
-msgid "Cannot schedule a playlist that contains missing files."
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:216
-#: airtime_mvc/application/models/Scheduler.php:305
-msgid "A selected File does not exist!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
-#: airtime_mvc/application/configs/navigation.php:40
-msgid "Weekly Schedule"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
-#: airtime_mvc/application/forms/Player.php:77
-msgid "Preview:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
-#: airtime_mvc/application/configs/navigation.php:34
-msgid "Player"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
-#: airtime_mvc/application/controllers/LocaleController.php:362
-#: airtime_mvc/application/controllers/LocaleController.php:390
-msgid "Close"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Add this show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Update show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
-msgid "What"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
-msgid "When"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
-msgid "Live Stream Input"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
-msgid "Who"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
-msgid "Style"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
-#: airtime_mvc/application/controllers/LocaleController.php:273
-msgid "Start"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
-msgid "Password Reset"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
-msgid "Email Sent!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
-msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
-msgid "Back"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
-msgid "New password"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
-msgid "Please enter and confirm your new password in the fields below."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:3
-#: airtime_mvc/application/forms/Login.php:83
-msgid "Login"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:7
-#, php-format
-msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:97
-msgid "Playout History"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
-msgid "Log Sheet"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
-msgid "File Summary"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
-msgid "Show Summary"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
-msgid "Your trial expires in"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
-msgid "days"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-#, php-format
-msgid "Purchase an %s Pro plan!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-msgid "My Account"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
-msgid "Previous:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
-msgid "Next:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
-msgid "Source Streams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
-msgid "Master Source"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
-msgid "Show Source"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
-msgid "ON AIR"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
-msgid "Listen"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
-msgid "Logout"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
-msgid "Drop files here or click to browse your computer."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
-#: airtime_mvc/application/controllers/LocaleController.php:314
-msgid "in use"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
-#: airtime_mvc/application/controllers/LocaleController.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:401
-msgid "All"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
-msgid "Failed"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
-msgid "Pending"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
-msgid "Recent Uploads"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
-#: airtime_mvc/application/configs/navigation.php:120
-msgid "Account Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
-msgid "Upgrade today to get more listeners and storage space!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
-msgid "View Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
-msgid "About"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
-#, php-format
-msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
-#, php-format
-msgid "%1$s %2$s is distributed under the %3$s"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
-#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
-msgid "Live stream"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
-msgid "Share"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
-msgid "Select stream:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
-msgid "mute"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
-msgid "unmute"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
-#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
-#, php-format
-msgid "Welcome to %s!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
-#, php-format
-msgid "Here's how you can get started using %s to automate your broadcasts: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
-msgid "Upload audio tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
-msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
-msgid "Schedule a show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
-msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
-msgid "Add tracks to your show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
-msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
-msgid "Now you're good to go!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
-#, php-format
-msgid "For more detailed help, read the %suser manual%s."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
-msgid "Listeners"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
-msgid "Stream Data Collection Status"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
-#: airtime_mvc/application/views/scripts/error/error.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
-msgid "An error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
-msgid "Access Denied!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
-msgid "You do not have permission to access this page!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
-#: airtime_mvc/application/views/scripts/error/error.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
-#: airtime_mvc/application/configs/navigation.php:143
-msgid "Help"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
-msgid "Page not found!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
-msgid "We couldn't find the page you were looking for."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error.phtml:12
-msgid "Looks like the page you were looking for doesn't exist!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
-msgid "Oops!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
-msgid "Something went wrong!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
-msgid "Bad Request!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
-msgid "The requested action is not supported!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
-msgid "Viewing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
-msgid "Editing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:3
-msgid "File import in progress..."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:10
-#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
-msgid "Advanced Search Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
-#: airtime_mvc/application/forms/Player.php:15
-#: airtime_mvc/application/forms/EditAudioMD.php:24
-msgid "Title:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
-#: airtime_mvc/application/forms/EditAudioMD.php:34
-msgid "Creator:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
-#: airtime_mvc/application/forms/EditAudioMD.php:44
-msgid "Album:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
-msgid "Track:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
-msgid "Length:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
-msgid "Sample Rate:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
-msgid "Bit Rate:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
-#: airtime_mvc/application/forms/EditAudioMD.php:115
-msgid "Mood:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
-#: airtime_mvc/application/forms/EditAudioMD.php:62
-#: airtime_mvc/application/forms/AddShowWhat.php:45
-msgid "Genre:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
-#: airtime_mvc/application/forms/EditAudioMD.php:72
-msgid "Year:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
-#: airtime_mvc/application/forms/EditAudioMD.php:85
-msgid "Label:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
-#: airtime_mvc/application/forms/EditAudioMD.php:125
-msgid "BPM:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
-#: airtime_mvc/application/forms/EditAudioMD.php:95
-msgid "Composer:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
-#: airtime_mvc/application/forms/EditAudioMD.php:105
-msgid "Conductor:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
-#: airtime_mvc/application/forms/EditAudioMD.php:135
-msgid "Copyright:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
-msgid "Isrc Number:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
-#: airtime_mvc/application/forms/EditAudioMD.php:155
-msgid "Website:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
-#: airtime_mvc/application/forms/EditUser.php:119
-#: airtime_mvc/application/forms/EditAudioMD.php:165
-#: airtime_mvc/application/forms/Login.php:68
-msgid "Language:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
-msgid "File Path:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
-#: airtime_mvc/application/forms/AddShowWhat.php:26
-msgid "Name:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
-#: airtime_mvc/application/forms/AddShowWhat.php:54
-msgid "Description:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
-msgid "Web Stream"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
-msgid "Dynamic Smart Block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
-msgid "Static Smart Block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
-msgid "Audio Track"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
-msgid "Playlist Contents: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
-msgid "Static Smart Block Contents: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
-msgid "Dynamic Smart Block Criteria: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
-msgid "Limit to "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
-#: airtime_mvc/application/forms/AddShowWhat.php:36
-msgid "URL:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/login.phtml:41
-msgid "Forgot your password?"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
-#, php-format
-msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
-#, php-format
-msgid "Click the box below to promote your station on %s."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
-msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
-msgid "(Required)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
-msgid "(for verification purposes only, will not be published)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
-msgid "Choose folder"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
-msgid "Set"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
-msgid "Current Import Folder:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
-msgid "Add"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
-#, php-format
-msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
-msgid "Remove watched directory"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
-msgid "You are not watching any media folders."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
-msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
-msgid "Live Broadcasting"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
-msgid "Use these settings in your broadcasting software to stream live at any time."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
-msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
-msgid "Choose Show Instance"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
-#: airtime_mvc/application/forms/EditHistoryItem.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:400
-msgid "No Show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
-msgid "Find"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
-msgid "Choose Days:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
-#: airtime_mvc/application/forms/AddShowStyle.php:64
-#: airtime_mvc/application/forms/GeneralPreferences.php:53
-msgid "Remove"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
-msgid "Stream "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
-msgid "Additional Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
-msgid "The following info will be displayed to listeners in their media player:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
-msgid "(Your radio station website)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
-msgid "Stream URL: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
-msgid "Find Shows"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
-msgid "TuneIn Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
-msgid "SoundCloud Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
-msgid "Dangerous Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
-msgid "Search Criteria:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
-msgid "New Criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
-msgid "or"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
-msgid "and"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
-msgid "New Modifier"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
-msgid " to "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
-msgid "files meet the criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
-msgid "file meets the criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
-msgid "Filter History"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
-#: airtime_mvc/application/configs/navigation.php:61
-msgid "My Profile"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
-#, php-format
-msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
-#: airtime_mvc/application/forms/Preferences.php:40
-#: airtime_mvc/application/forms/PasswordChange.php:43
-#: airtime_mvc/application/forms/AddUser.php:110
-#: airtime_mvc/application/forms/BillingClient.php:193
-#: airtime_mvc/application/forms/SupportSettings.php:131
-#: airtime_mvc/application/forms/EditHistory.php:131
-#: airtime_mvc/application/controllers/LocaleController.php:294
-msgid "Save"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
-msgid "Repeat Days:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
-msgid "Register Airtime"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
-#: airtime_mvc/application/forms/GeneralPreferences.php:43
-msgid "Note: Anything larger than 600x600 will be resized."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
-msgid "Show me what I am sending "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
-msgid "Terms and Conditions"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
-msgid "Creating File Summary Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
-msgid "Creating Log Sheet Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
-msgid "Name"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
-msgid "Add more elements"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
-msgid "Add New Field"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
-msgid "Set Default Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
-msgid "Playout History Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
-msgid "Log Sheet Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
-msgid "New Log Sheet Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
-msgid "No Log Sheet Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
-#: airtime_mvc/application/controllers/LocaleController.php:397
-msgid "Set Default"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
-msgid "File Summary Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
-msgid "New File Summary Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
-msgid "No File Summary Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
-msgid "Disk Space"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
-#: airtime_mvc/application/controllers/LocaleController.php:315
-msgid "Disk"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
-#: airtime_mvc/application/forms/AddShowWhen.php:89
-msgid "Duration:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
-msgid "Toggle Details"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
-msgid "Playlist crossfade"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-msgid "Remove all content from this smart block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Clear"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "Fade in: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "(ss.t)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-msgid "Fade out: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
-#: airtime_mvc/application/forms/EditAudioMD.php:186
-#: airtime_mvc/application/forms/EditHistory.php:141
-#: airtime_mvc/application/controllers/LocaleController.php:295
-#: airtime_mvc/application/controllers/LocaleController.php:318
-msgid "Cancel"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
-msgid "No smart block currently open"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
-msgid "Show Waveform"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-msgid "Cue In: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "(hh:mm:ss.t)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "Cue Out: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
-msgid "Original Length:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
-msgid "Expand Static Block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
-msgid "Expand Dynamic Block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
-msgid "Choose some search criteria above and click Generate to create this playlist."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
-msgid "A track list will be generated when you schedule this smart block into a show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
-msgid "Drag tracks here from your library to add them to the playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-msgid "Shuffle playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
-msgid "Shuffle"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Empty playlist content"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-msgid "Save playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
-msgid "No open playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
-msgid "previous"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
-msgid "play"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
-msgid "pause"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
-msgid "next"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
-msgid "stop"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
-msgid "max volume"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
-msgid "Update Required"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
-#, php-format
-msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
-msgid "Stream Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
-msgid "Global"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
-msgid "dB"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
-msgid "Output Streams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
-#: airtime_mvc/application/controllers/LocaleController.php:166
-msgid "Manage Media Folders"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:56
-msgid "General"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
-msgid "Description"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
-msgid "Stream URL:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
-msgid "Default Length:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
-msgid "No webstream"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
-msgid "Manage Users"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
-msgid "New User"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
-msgid "id"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
-#: airtime_mvc/application/forms/PasswordRestore.php:25
-msgid "Username"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
-msgid "First Name"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
-msgid "Last Name"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
-msgid "User Type"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
-#, php-format
-msgid "Super Admin details can be changed in your Billing Settings."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
-#: airtime_mvc/application/controllers/LocaleController.php:74
-#: airtime_mvc/application/layouts/scripts/layout.phtml:78
-msgid "Tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
-#: airtime_mvc/application/controllers/LocaleController.php:104
-#: airtime_mvc/application/layouts/scripts/layout.phtml:80
-msgid "Playlists"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
-#: airtime_mvc/application/controllers/LocaleController.php:105
-#: airtime_mvc/application/layouts/scripts/layout.phtml:82
-msgid "Smart Blocks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
-#: airtime_mvc/application/layouts/scripts/layout.phtml:84
-msgid "Webstreams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
-#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
-#: airtime_mvc/application/layouts/scripts/layout.phtml:76
-msgid "Dashboard"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:12
-msgid "Radio Page"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:19
-msgid "Calendar"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:26
-msgid "Widgets"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:48
-msgid "Settings"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:67
-msgid "Users"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:74
-msgid "Streams"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:82
-msgid "Analytics"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:90
-msgid "Listener Stats"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:104
-msgid "History Templates"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:113
-msgid "Billing"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:127
-msgid "Account Details"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:134
-msgid "View Invoices"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:150
-msgid "Getting Started"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:157
-msgid "FAQ"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:162
-msgid "User Manual"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:167
-msgid "File a Support Ticket"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:12
-msgid "Background Colour:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:31
-msgid "Text Colour:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:49
-msgid "Current Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:72
-msgid "Show Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:87
-msgid "Logo Preview:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:19
-msgid "Push metadata to your station on TuneIn?"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:24
-msgid "Station ID:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:30
-msgid "Partner Key:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:36
-msgid "Partner Id:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:77
-#: airtime_mvc/application/forms/TuneInPreferences.php:86
-msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:14
-msgid "Now Playing"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:25
-msgid "Select Stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:28
-msgid "Auto detect the most appropriate stream to use."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:29
-msgid "Select a stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:41
-msgid " - Mobile friendly"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:45
-msgid " - The player does not support Opus streams."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:71
-msgid "Embeddable code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:72
-msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:37
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
-#: airtime_mvc/application/forms/Login.php:41
-#: airtime_mvc/application/forms/AddUser.php:29
-msgid "Username:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:48
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
-#: airtime_mvc/application/forms/Login.php:54
-#: airtime_mvc/application/forms/AddUser.php:38
-#: airtime_mvc/application/forms/BillingClient.php:172
-msgid "Password:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:57
-#: airtime_mvc/application/forms/AddUser.php:46
-#: airtime_mvc/application/forms/BillingClient.php:181
-msgid "Verify Password:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:67
-#: airtime_mvc/application/forms/AddUser.php:55
-msgid "Firstname:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:75
-#: airtime_mvc/application/forms/AddUser.php:61
-msgid "Lastname:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:83
-#: airtime_mvc/application/forms/RegisterAirtime.php:51
-#: airtime_mvc/application/forms/AddUser.php:67
-#: airtime_mvc/application/forms/SupportSettings.php:43
-msgid "Email:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:94
-#: airtime_mvc/application/forms/AddUser.php:76
-msgid "Mobile Phone:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:102
-#: airtime_mvc/application/forms/AddUser.php:82
-msgid "Skype:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:110
-#: airtime_mvc/application/forms/AddUser.php:88
-msgid "Jabber:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:129
-msgid "Interface Timezone:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:155
-#: airtime_mvc/application/forms/AddUser.php:120
-msgid "Login name is not unique."
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRR.php:10
-msgid "Record from Line In?"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRR.php:16
-msgid "Rebroadcast?"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:16
-msgid "'%value%' does not fit the time format 'HH:mm'"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:22
-msgid "Start Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:37
-msgid "In the Future:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:64
-msgid "End Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:98
-msgid "Timezone:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:107
-msgid "Repeats?"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:139
-msgid "Cannot create show in the past"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:147
-msgid "Cannot modify start date/time of the show that is already started"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:164
-msgid "Cannot have duration < 0m"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:168
-msgid "Cannot have duration 00h 00m"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:175
-msgid "Cannot have duration greater than 24h"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWho.php:10
-msgid "Search Users:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWho.php:24
-msgid "DJs:"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordChange.php:17
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
-msgid "Password"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordChange.php:28
-msgid "Confirm new password"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordChange.php:36
-msgid "Password confirmation does not match your password."
-msgstr ""
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
-msgid "Station Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
-#: airtime_mvc/application/forms/GeneralPreferences.php:127
-msgid "Station Timezone"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
-msgid "Auto Switch Off:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
-msgid "Auto Switch On:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
-msgid "Switch Transition Fade (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
-#: airtime_mvc/application/forms/GeneralPreferences.php:68
-#: airtime_mvc/application/forms/GeneralPreferences.php:82
-#: airtime_mvc/application/forms/GeneralPreferences.php:96
-msgid "Please enter a time in seconds (eg. 0.5)"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
-#: airtime_mvc/application/forms/AddShowLiveStream.php:48
-msgid "Host:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
-#: airtime_mvc/application/forms/AddShowLiveStream.php:54
-msgid "Port:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
-#: airtime_mvc/application/forms/AddShowLiveStream.php:60
-msgid "Mount:"
-msgstr ""
-
-#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
-msgid "Value is required and can't be empty"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:25
-#: airtime_mvc/application/forms/RegisterAirtime.php:30
-#: airtime_mvc/application/forms/SupportSettings.php:18
-msgid "Station Name"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:33
-msgid "Station Description"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:42
-#: airtime_mvc/application/forms/RegisterAirtime.php:106
-msgid "Station Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:62
-msgid "Default Crossfade Duration (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:76
-msgid "Default Fade In (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:90
-msgid "Default Fade Out (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:102
-msgid "Public Airtime API"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:103
-msgid "Required for embeddable schedule widget."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:105
-msgid "Disabled"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:106
-msgid "Enabled"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:109
-msgid ""
-"Enabling this feature will allow Airtime to provide schedule data\n"
-" to external widgets that can be embedded in your website."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:120
-msgid "Default Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:134
-msgid "Week Starts On"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:150
-msgid "Display login button on your Radio Page?"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:158
-#: airtime_mvc/application/controllers/LocaleController.php:249
-msgid "Sunday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:159
-#: airtime_mvc/application/controllers/LocaleController.php:250
-msgid "Monday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:160
-#: airtime_mvc/application/controllers/LocaleController.php:251
-msgid "Tuesday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:161
-#: airtime_mvc/application/controllers/LocaleController.php:252
-msgid "Wednesday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:162
-#: airtime_mvc/application/controllers/LocaleController.php:253
-msgid "Thursday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:163
-#: airtime_mvc/application/controllers/LocaleController.php:254
-msgid "Friday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:164
-#: airtime_mvc/application/controllers/LocaleController.php:255
-msgid "Saturday"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
-msgid "Default License:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
-msgid "All rights are reserved"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
-msgid "The work is in the public domain"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
-msgid "Creative Commons Attribution"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
-msgid "Creative Commons Attribution Noncommercial"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
-msgid "Creative Commons Attribution No Derivative Works"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
-msgid "Creative Commons Attribution Share Alike"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
-msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
-msgid "Creative Commons Attribution Noncommercial Share Alike"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
-msgid "Default Sharing Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
-msgid "Public"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
-msgid "Private"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:18
-#: airtime_mvc/application/forms/DateRange.php:16
-msgid "Date Start:"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:37
-#: airtime_mvc/application/forms/ShowBuilder.php:65
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
-#: airtime_mvc/application/forms/DateRange.php:35
-#: airtime_mvc/application/forms/DateRange.php:63
-msgid "Invalid character entered"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:46
-#: airtime_mvc/application/forms/AddShowRepeats.php:56
-#: airtime_mvc/application/forms/DateRange.php:44
-msgid "Date End:"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:72
-#: airtime_mvc/application/forms/ShowBuilder.php:88
-msgid "Filter by Show"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:80
-msgid "All My Shows:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditAudioMD.php:145
-msgid "ISRC Number:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditAudioMD.php:176
-msgid "OK"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
-msgid "Day must be specified"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
-msgid "Time must be specified"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
-msgid "Must wait at least 1 hour to rebroadcast"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhat.php:30
-msgid "Untitled Show"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhat.php:69
-msgid "Instance Description:"
-msgstr ""
-
-#: airtime_mvc/application/forms/DangerousPreferences.php:12
-msgid "Delete All Tracks in Library"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:39
-#: airtime_mvc/application/forms/SupportSettings.php:31
-msgid "Phone:"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:62
-#: airtime_mvc/application/forms/SupportSettings.php:54
-msgid "Station Web Site:"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:73
-#: airtime_mvc/application/forms/BillingClient.php:102
-#: airtime_mvc/application/forms/SupportSettings.php:65
-msgid "Country:"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:84
-#: airtime_mvc/application/forms/BillingClient.php:70
-#: airtime_mvc/application/forms/SupportSettings.php:76
-msgid "City:"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:96
-#: airtime_mvc/application/forms/SupportSettings.php:88
-msgid "Station Description:"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:116
-#: airtime_mvc/application/forms/SupportSettings.php:98
-#: airtime_mvc/application/controllers/LocaleController.php:341
-msgid "Send support feedback"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:126
-#: airtime_mvc/application/forms/SupportSettings.php:108
-#, php-format
-msgid "Promote my station on %s"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:151
-#: airtime_mvc/application/forms/SupportSettings.php:120
-#, php-format
-msgid "By checking this box, I agree to %s's %sprivacy policy%s."
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:169
-#: airtime_mvc/application/forms/SupportSettings.php:143
-msgid "You have to agree to privacy policy."
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:10
-msgid "Link:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:16
-msgid "Repeat Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:19
-msgid "weekly"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:20
-msgid "every 2 weeks"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:21
-msgid "every 3 weeks"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:22
-msgid "every 4 weeks"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:23
-msgid "monthly"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:32
-msgid "Select Days:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:35
-#: airtime_mvc/application/controllers/LocaleController.php:256
-msgid "Sun"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:36
-#: airtime_mvc/application/controllers/LocaleController.php:257
-msgid "Mon"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:37
-#: airtime_mvc/application/controllers/LocaleController.php:258
-msgid "Tue"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:38
-#: airtime_mvc/application/controllers/LocaleController.php:259
-msgid "Wed"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:39
-#: airtime_mvc/application/controllers/LocaleController.php:260
-msgid "Thu"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:40
-#: airtime_mvc/application/controllers/LocaleController.php:261
-msgid "Fri"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:41
-#: airtime_mvc/application/controllers/LocaleController.php:262
-msgid "Sat"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:47
-msgid "Repeat By:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the month"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the week"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:69
-msgid "No End?"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:106
-msgid "End date must be after start date"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:113
-msgid "Please select a repeat day"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:10
-#, php-format
-msgid "Use %s Authentication:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:16
-msgid "Use Custom Authentication:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:25
-msgid "Custom Username"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:37
-msgid "Custom Password"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:77
-msgid "Username field cannot be empty."
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:82
-msgid "Password field cannot be empty."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
-msgid "Enabled:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
-msgid "Mobile:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
-msgid "Stream Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
-msgid "Service Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
-msgid "Channels:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "1 - Mono"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "2 - Stereo"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
-msgid "Server"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
-msgid "Port"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
-msgid "Only numbers are allowed."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
-msgid "URL"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
-msgid "Mount Point"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
-msgid "Admin User"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
-msgid "Admin Password"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
-#: airtime_mvc/application/controllers/LocaleController.php:173
-msgid "Getting information from the server..."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
-msgid "Server cannot be empty."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
-msgid "Port cannot be empty."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
-msgid "Mount cannot be empty with Icecast server."
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
-msgid "'%value%' is no valid email address in the basic format local-part@hostname"
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
-msgid "'%value%' does not fit the date format '%format%'"
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
-msgid "'%value%' is less than %min% characters long"
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
-msgid "'%value%' is more than %max% characters long"
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
-msgid "'%value%' is not between '%min%' and '%max%', inclusively"
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
-msgid "Passwords do not match"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
-msgid "hours"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
-msgid "minutes"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
-msgid "Randomly"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
-msgid "Newest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
-msgid "Oldest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
-msgid "Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
-msgid "Static"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
-msgid "Dynamic"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
-msgid "Allow Repeated Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
-msgid "Sort Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
-msgid "Limit to:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
-msgid "Generate playlist content and save criteria"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
-msgid "Generate"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
-msgid "Shuffle playlist content"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
-msgid "Limit cannot be empty or smaller than 0"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
-msgid "Limit cannot be more than 24 hrs"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
-msgid "The value should be an integer"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
-msgid "500 is the max item limit value you can set"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
-msgid "You must select Criteria and Modifier"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
-msgid "'Length' should be in '00:00:00' format"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
-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:594
-msgid "The value has to be numeric"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
-msgid "The value should be less then 2147483648"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
-#, php-format
-msgid "The value should be less than %s characters"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
-msgid "Value cannot be empty"
-msgstr ""
-
-#: airtime_mvc/application/forms/Login.php:102
-msgid "Type the characters you see in the picture below."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:26
-msgid "Icecast Vorbis Metadata"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:36
-msgid "Stream Label:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:37
-msgid "Artist - Title"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:38
-msgid "Show - Artist - Title"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:39
-msgid "Station name - Show name"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:45
-msgid "Off Air Metadata"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:51
-msgid "Enable Replay Gain"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:57
-msgid "Replay Gain Modifier"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:65
-msgid "Streaming Server:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Airtime Pro Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Custom / 3rd Party Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:95
-msgid "User Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:99
-#: airtime_mvc/application/controllers/LocaleController.php:324
-msgid "Guest"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:100
-#: airtime_mvc/application/controllers/LocaleController.php:322
-msgid "DJ"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:101
-#: airtime_mvc/application/controllers/LocaleController.php:323
-msgid "Program Manager"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:321
-msgid "Admin"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:17
-msgid "First Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:26
-msgid "Last Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:35
-msgid "Company Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:44
-msgid "Email Address:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:54
-msgid "Address 1:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:63
-msgid "Address 2:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:80
-msgid "State/Region:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:89
-msgid "Zip Code / Postal Code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:112
-msgid "Phone Number:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:121
-msgid "Please choose a security question:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:126
-msgid "What is the name of your favorite childhood friend?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:127
-msgid "What school did you attend for sixth grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:128
-msgid "In what city did you meet your spouse/significant other?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:129
-msgid "What street did you live on in third grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:130
-msgid "What is the first name of the boy or girl that you first kissed?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:131
-msgid "In what city or town was your first job?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:135
-msgid "Please enter an answer:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:152
-msgid "VAT/Tax ID (EU only)"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:162
-msgid "Subscribe to Sourcefabric newsletter"
-msgstr ""
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
-msgid "Import Folder:"
-msgstr ""
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
-msgid "Watched Folders:"
-msgstr ""
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
-msgid "Not a valid Directory"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordRestore.php:14
-msgid "Email"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordRestore.php:36
-msgid "Reset password"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
-msgid "Plan type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
-msgid "Billing cycle:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
-msgid "Payment method:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
-msgid "PayPal"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
-msgid "Credit Card via 2Checkout"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:213
-#, php-format
-msgid "The year %s must be within the range of 1753 - 9999"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:216
-#, php-format
-msgid "%s-%s-%s is not a valid date"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:240
-#, php-format
-msgid "%s:%s:%s is not a valid time"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:55
-msgid "Upload some tracks below to add them to your library!"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:57
-#, php-format
-msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:63
-msgid "Click the 'New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:65
-#, php-format
-msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:73
-msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:75
-#, php-format
-msgid ""
-"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
-" %sCreate an unlinked show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:80
-msgid "To start broadcasting, click on the current show and select 'Schedule Show'"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:82
-#, php-format
-msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:89
-msgid "Click on the show starting next and select 'Schedule Show'"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:91
-#, php-format
-msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+#: airtime_mvc/application/controllers/ApiController.php:791
+msgid "Bad request. 'mode' parameter is invalid"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:30
@@ -2906,11 +559,6 @@ msgstr ""
msgid "You can only add tracks to smart blocks."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:50
-#: airtime_mvc/application/controllers/PlaylistController.php:180
-msgid "You can only add tracks, smart blocks, and webstreams to playlists."
-msgstr ""
-
#: airtime_mvc/application/controllers/LocaleController.php:53
msgid "Please select a cursor position on timeline."
msgstr ""
@@ -2951,11 +599,6 @@ msgstr ""
msgid "Click 'New' to create one."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:66
-#: airtime_mvc/application/controllers/LibraryController.php:123
-msgid "Edit Metadata"
-msgstr ""
-
#: airtime_mvc/application/controllers/LocaleController.php:67
msgid "Add to selected show"
msgstr ""
@@ -2984,6 +627,12 @@ msgstr ""
msgid "Scheduled"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:74
+#: airtime_mvc/application/layouts/scripts/layout.phtml:78
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
+msgid "Tracks"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:75
#: airtime_mvc/application/layouts/scripts/layout.phtml:60
msgid "Playlist"
@@ -2993,18 +642,96 @@ msgstr ""
msgid "Bit Rate"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:80
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
+#: airtime_mvc/application/models/Block.php:1354
+msgid "BPM"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:84
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
+#: airtime_mvc/application/models/Block.php:1361
+msgid "Encoded By"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:89
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
+#: airtime_mvc/application/models/Block.php:1367
+msgid "Last Modified"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:90
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
+#: airtime_mvc/application/models/Block.php:1368
+msgid "Last Played"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
+#: airtime_mvc/application/models/Block.php:1370
+msgid "Mime"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:94
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
+#: airtime_mvc/application/models/Block.php:1372
+msgid "Owner"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:95
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
+#: airtime_mvc/application/models/Block.php:1373
+msgid "Replay Gain"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:96
msgid "Sample Rate"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:97
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
+#: airtime_mvc/application/models/Block.php:1376
+msgid "Track Number"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:98
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
+#: airtime_mvc/application/models/Block.php:1377
+msgid "Uploaded"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:99
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
+#: airtime_mvc/application/models/Block.php:1378
+msgid "Website"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:101
msgid "Loading..."
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:102
+#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
+msgid "All"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:103
msgid "Files"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:104
+#: airtime_mvc/application/layouts/scripts/layout.phtml:80
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
+msgid "Playlists"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:105
+#: airtime_mvc/application/layouts/scripts/layout.phtml:82
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
+msgid "Smart Blocks"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:106
msgid "Web Streams"
msgstr ""
@@ -3149,6 +876,74 @@ msgstr ""
msgid "Processing..."
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:151
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
+#: airtime_mvc/application/models/Block.php:1383
+msgid "Select modifier"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:152
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
+#: airtime_mvc/application/models/Block.php:1384
+msgid "contains"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:153
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
+#: airtime_mvc/application/models/Block.php:1385
+msgid "does not contain"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:154
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
+#: airtime_mvc/application/models/Block.php:1386
+#: airtime_mvc/application/models/Block.php:1390
+msgid "is"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:155
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
+#: airtime_mvc/application/models/Block.php:1387
+#: airtime_mvc/application/models/Block.php:1391
+msgid "is not"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:156
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
+#: airtime_mvc/application/models/Block.php:1388
+msgid "starts with"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:157
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
+#: airtime_mvc/application/models/Block.php:1389
+msgid "ends with"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:158
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
+#: airtime_mvc/application/models/Block.php:1392
+msgid "is greater than"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:159
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
+#: airtime_mvc/application/models/Block.php:1393
+msgid "is less than"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:160
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
+#: airtime_mvc/application/models/Block.php:1394
+msgid "is in the range"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:162
msgid "Choose Storage Folder"
msgstr ""
@@ -3163,6 +958,11 @@ msgid ""
"This will remove the files from your Airtime library!"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:166
+#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
+msgid "Manage Media Folders"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:167
msgid "Are you sure you want to remove the watched folder?"
msgstr ""
@@ -3184,6 +984,11 @@ msgstr ""
msgid "The stream is disabled"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:173
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
+msgid "Getting information from the server..."
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:174
msgid "Can not connect to the streaming server"
msgstr ""
@@ -3411,6 +1216,76 @@ msgstr ""
msgid "Month"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:249
+#: airtime_mvc/application/forms/GeneralPreferences.php:158
+msgid "Sunday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:250
+#: airtime_mvc/application/forms/GeneralPreferences.php:159
+msgid "Monday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:251
+#: airtime_mvc/application/forms/GeneralPreferences.php:160
+msgid "Tuesday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:252
+#: airtime_mvc/application/forms/GeneralPreferences.php:161
+msgid "Wednesday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:253
+#: airtime_mvc/application/forms/GeneralPreferences.php:162
+msgid "Thursday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:254
+#: airtime_mvc/application/forms/GeneralPreferences.php:163
+msgid "Friday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:255
+#: airtime_mvc/application/forms/GeneralPreferences.php:164
+msgid "Saturday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:256
+#: airtime_mvc/application/forms/AddShowRepeats.php:35
+msgid "Sun"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:257
+#: airtime_mvc/application/forms/AddShowRepeats.php:36
+msgid "Mon"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:258
+#: airtime_mvc/application/forms/AddShowRepeats.php:37
+msgid "Tue"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:259
+#: airtime_mvc/application/forms/AddShowRepeats.php:38
+msgid "Wed"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:260
+#: airtime_mvc/application/forms/AddShowRepeats.php:39
+msgid "Thu"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:261
+#: airtime_mvc/application/forms/AddShowRepeats.php:40
+msgid "Fri"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:262
+#: airtime_mvc/application/forms/AddShowRepeats.php:41
+msgid "Sat"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:263
msgid "Shows longer than their scheduled time will be cut off by a following show."
msgstr ""
@@ -3420,7 +1295,7 @@ msgid "Cancel Current Show?"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:265
-#: airtime_mvc/application/controllers/LocaleController.php:309
+#: airtime_mvc/application/controllers/LocaleController.php:312
msgid "Stop recording current show?"
msgstr ""
@@ -3440,6 +1315,11 @@ msgstr ""
msgid "Delete selected item(s)?"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:273
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
+msgid "Start"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:274
msgid "End"
msgstr ""
@@ -3448,580 +1328,467 @@ msgstr ""
msgid "Duration"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:283
+#: airtime_mvc/application/controllers/LocaleController.php:276
+msgid "Filtering out "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:277
+msgid " of "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:278
+msgid " records"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/layouts/scripts/layout.phtml:140
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
+#: airtime_mvc/application/models/Block.php:1358
+msgid "Cue In"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/layouts/scripts/layout.phtml:147
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
+#: airtime_mvc/application/models/Block.php:1359
+msgid "Cue Out"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:286
#: airtime_mvc/application/layouts/scripts/layout.phtml:167
msgid "Fade In"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/controllers/LocaleController.php:287
#: airtime_mvc/application/layouts/scripts/layout.phtml:168
msgid "Fade Out"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/controllers/LocaleController.php:288
msgid "Show Empty"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:286
+#: airtime_mvc/application/controllers/LocaleController.php:289
msgid "Recording From Line In"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:287
+#: airtime_mvc/application/controllers/LocaleController.php:290
msgid "Track preview"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:291
+#: airtime_mvc/application/controllers/LocaleController.php:294
msgid "Cannot schedule outside a show."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:292
+#: airtime_mvc/application/controllers/LocaleController.php:295
msgid "Moving 1 Item"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:293
+#: airtime_mvc/application/controllers/LocaleController.php:296
#, php-format
msgid "Moving %s Items"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:296
-msgid "Fade Editor"
-msgstr ""
-
#: airtime_mvc/application/controllers/LocaleController.php:297
-msgid "Cue Editor"
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
+#: airtime_mvc/application/forms/Preferences.php:40
+#: airtime_mvc/application/forms/EditHistory.php:131
+#: airtime_mvc/application/forms/AddUser.php:110
+#: airtime_mvc/application/forms/PasswordChange.php:43
+#: airtime_mvc/application/forms/SupportSettings.php:131
+msgid "Save"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:298
-msgid "Waveform features are available in a browser supporting the Web Audio API"
+#: airtime_mvc/application/controllers/LocaleController.php:321
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
+#: airtime_mvc/application/forms/EditHistory.php:141
+#: airtime_mvc/application/forms/EditAudioMD.php:186
+msgid "Cancel"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:299
+msgid "Fade Editor"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:300
+msgid "Cue Editor"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:301
-msgid "Select all"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LocaleController.php:302
-msgid "Select none"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LocaleController.php:303
-msgid "Trim overbooked shows"
+msgid "Waveform features are available in a browser supporting the Web Audio API"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:304
-msgid "Remove selected scheduled items"
+msgid "Select all"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:305
-msgid "Jump to the current playing track"
+msgid "Select none"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:306
+msgid "Trim overbooked shows"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:307
+msgid "Remove selected scheduled items"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:308
+msgid "Jump to the current playing track"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:309
msgid "Cancel current show"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:311
+#: airtime_mvc/application/controllers/LocaleController.php:314
msgid "Open library to add or remove content"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:312
+#: airtime_mvc/application/controllers/LocaleController.php:315
msgid "Add / Remove Content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:317
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
+msgid "in use"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:318
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
+msgid "Disk"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:320
msgid "Look in"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:319
+#: airtime_mvc/application/controllers/LocaleController.php:322
msgid "Open"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:324
+#: airtime_mvc/application/forms/AddUser.php:102
+msgid "Admin"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:325
-msgid "Guests can do the following:"
+#: airtime_mvc/application/forms/AddUser.php:100
+msgid "DJ"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:326
-msgid "View schedule"
+#: airtime_mvc/application/forms/AddUser.php:101
+msgid "Program Manager"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:327
-msgid "View show content"
+#: airtime_mvc/application/forms/AddUser.php:99
+msgid "Guest"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:328
-msgid "DJs can do the following:"
+msgid "Guests can do the following:"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:329
-msgid "Manage assigned show content"
+msgid "View schedule"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:330
-msgid "Import media files"
+msgid "View show content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:331
-msgid "Create playlists, smart blocks, and webstreams"
+msgid "DJs can do the following:"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:332
-msgid "Manage their own library content"
+msgid "Manage assigned show content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:333
-msgid "Progam Managers can do the following:"
+msgid "Import media files"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:334
-msgid "View and manage show content"
+msgid "Create playlists, smart blocks, and webstreams"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:335
-msgid "Schedule shows"
+msgid "Manage their own library content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:336
-msgid "Manage all library content"
+msgid "Progam Managers can do the following:"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:337
-msgid "Admins can do the following:"
+msgid "View and manage show content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:338
-msgid "Manage preferences"
+msgid "Schedule shows"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:339
-msgid "Manage users"
+msgid "Manage all library content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:340
-msgid "Manage watched folders"
+msgid "Admins can do the following:"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:341
+msgid "Manage preferences"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:342
-msgid "View system status"
+msgid "Manage users"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:343
-msgid "Access playout history"
+msgid "Manage watched folders"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:344
-msgid "View listener stats"
+#: airtime_mvc/application/forms/RegisterAirtime.php:116
+#: airtime_mvc/application/forms/SupportSettings.php:98
+msgid "Send support feedback"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:345
+msgid "View system status"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:346
-msgid "Show / hide columns"
+msgid "Access playout history"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:348
-msgid "From {from} to {to}"
+#: airtime_mvc/application/controllers/LocaleController.php:347
+msgid "View listener stats"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:349
-msgid "kbps"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LocaleController.php:350
-msgid "yyyy-mm-dd"
+msgid "Show / hide columns"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:351
-msgid "hh:mm:ss.t"
+msgid "From {from} to {to}"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:352
-msgid "kHz"
+msgid "kbps"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:353
+msgid "yyyy-mm-dd"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:354
+msgid "hh:mm:ss.t"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:355
-msgid "Su"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LocaleController.php:356
-msgid "Mo"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LocaleController.php:357
-msgid "Tu"
+msgid "kHz"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:358
-msgid "We"
+msgid "Su"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:359
-msgid "Th"
+msgid "Mo"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:360
-msgid "Fr"
+msgid "Tu"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:361
-msgid "Sa"
+msgid "We"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:362
+msgid "Th"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:363
+msgid "Fr"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:364
-msgid "Hour"
+msgid "Sa"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
+msgid "Close"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:367
+msgid "Hour"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:368
msgid "Minute"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:366
+#: airtime_mvc/application/controllers/LocaleController.php:369
msgid "Done"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:369
+#: airtime_mvc/application/controllers/LocaleController.php:372
msgid "Select files"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:370
-#: airtime_mvc/application/controllers/LocaleController.php:371
+#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:374
msgid "Add files to the upload queue and click the start button."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:372
-#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:376
msgid "Status"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:374
+#: airtime_mvc/application/controllers/LocaleController.php:377
msgid "Add Files"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:378
msgid "Stop Upload"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:376
+#: airtime_mvc/application/controllers/LocaleController.php:379
msgid "Start upload"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:377
+#: airtime_mvc/application/controllers/LocaleController.php:380
msgid "Add files"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:378
+#: airtime_mvc/application/controllers/LocaleController.php:381
#, php-format
msgid "Uploaded %d/%d files"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:379
+#: airtime_mvc/application/controllers/LocaleController.php:382
msgid "N/A"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:380
+#: airtime_mvc/application/controllers/LocaleController.php:383
msgid "Drag files here."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:381
+#: airtime_mvc/application/controllers/LocaleController.php:384
msgid "File extension error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:382
+#: airtime_mvc/application/controllers/LocaleController.php:385
msgid "File size error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:383
+#: airtime_mvc/application/controllers/LocaleController.php:386
msgid "File count error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:384
+#: airtime_mvc/application/controllers/LocaleController.php:387
msgid "Init error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:385
+#: airtime_mvc/application/controllers/LocaleController.php:388
msgid "HTTP Error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:386
+#: airtime_mvc/application/controllers/LocaleController.php:389
msgid "Security error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:387
+#: airtime_mvc/application/controllers/LocaleController.php:390
msgid "Generic error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:388
+#: airtime_mvc/application/controllers/LocaleController.php:391
msgid "IO error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:389
+#: airtime_mvc/application/controllers/LocaleController.php:392
#, php-format
msgid "File: %s"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:391
+#: airtime_mvc/application/controllers/LocaleController.php:394
#, php-format
msgid "%d files queued"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:392
+#: airtime_mvc/application/controllers/LocaleController.php:395
msgid "File: %f, size: %s, max file size: %m"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/controllers/LocaleController.php:396
msgid "Upload URL might be wrong or doesn't exist"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:394
+#: airtime_mvc/application/controllers/LocaleController.php:397
msgid "Error: File too large: "
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:395
+#: airtime_mvc/application/controllers/LocaleController.php:398
msgid "Error: Invalid file extension: "
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:398
+#: airtime_mvc/application/controllers/LocaleController.php:400
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
+msgid "Set Default"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:401
msgid "Create Entry"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:399
+#: airtime_mvc/application/controllers/LocaleController.php:402
msgid "Edit History Record"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:402
+#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
+#: airtime_mvc/application/forms/EditHistoryItem.php:57
+msgid "No Show"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:405
#, php-format
msgid "Copied %s row%s to the clipboard"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/controllers/LocaleController.php:406
#, php-format
msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/controllers/LocaleController.php:407
msgid "New Show"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:405
+#: airtime_mvc/application/controllers/LocaleController.php:408
msgid "New Log Entry"
msgstr ""
-#: airtime_mvc/application/controllers/ScheduleController.php:389
-#, php-format
-msgid "Rebroadcast of show %s from %s at %s"
-msgstr ""
-
-#: airtime_mvc/application/controllers/ScheduleController.php:712
-#: airtime_mvc/application/controllers/LibraryController.php:131
-msgid "Download"
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:78
-msgid "Page not found."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:87
-msgid "The requested action is not supported."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:98
-msgid "You do not have permission to access this resource."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:109
-msgid "An internal application error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ListenerstatController.php:51
-msgid "Please make sure admin user/password is correct on System->Streams page."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:53
-#, php-format
-msgid "You are viewing an older version of %s"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:140
-msgid "You cannot add tracks to dynamic blocks."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:147
-#: airtime_mvc/application/controllers/LibraryController.php:31
-#, php-format
-msgid "%s not found"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:161
-#, php-format
-msgid "You don't have permission to delete selected %s(s)."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:168
-#: airtime_mvc/application/controllers/LibraryController.php:40
-msgid "Something went wrong."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:174
-msgid "You can only add tracks to smart block."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:192
-msgid "Untitled Playlist"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:194
-msgid "Untitled Smart Block"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:522
-msgid "Unknown Playlist"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:43
-msgid "Please enter your username and password."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:93
-msgid "Wrong username or password provided. Please try again."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:167
-msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:173
-msgid "There was a problem with the username or email address you entered."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:35
-#: airtime_mvc/application/controllers/DashboardController.php:84
-msgid "You don't have permission to disconnect source."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:37
-#: airtime_mvc/application/controllers/DashboardController.php:86
-msgid "There is no source connected to this input."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:81
-msgid "You don't have permission to switch source."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:72
-msgid "Preferences updated."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:115
-msgid "Support setting updated."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:123
-msgid "Support Feedback"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:251
-msgid "Stream Setting Updated."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:342
-msgid "path should be specified"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:437
-msgid "Problem with Liquidsoap..."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:493
-msgid "Request method not accepted"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:86
-msgid "User added successfully!"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:88
-msgid "User updated successfully!"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:187
-msgid "Settings updated successfully!"
-msgstr ""
-
-#: airtime_mvc/application/controllers/WebstreamController.php:28
-#: airtime_mvc/application/controllers/WebstreamController.php:32
-msgid "Untitled Webstream"
-msgstr ""
-
-#: airtime_mvc/application/controllers/WebstreamController.php:150
-msgid "Webstream saved."
-msgstr ""
-
-#: airtime_mvc/application/controllers/WebstreamController.php:158
-msgid "Invalid form values."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:95
-#: airtime_mvc/application/controllers/ShowbuilderController.php:136
-msgid "Preview"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:115
-#: airtime_mvc/application/controllers/LibraryController.php:177
-#: airtime_mvc/application/controllers/LibraryController.php:200
-msgid "Add to Playlist"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:117
-msgid "Add to Smart Block"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:147
-msgid "View track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:148
-msgid "Remove track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:154
-#: airtime_mvc/application/controllers/LibraryController.php:159
-msgid "Upload track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:169
-msgid "Duplicate Playlist"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:213
-msgid "No action available"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:233
-msgid "You don't have permission to delete selected items."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:279
-msgid "Could not delete file because it is scheduled in the future."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:282
-msgid "Could not delete file(s)."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:322
-#, php-format
-msgid "Copy of %s"
-msgstr ""
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
-msgid ""
-"To configure and use the embeddable player you must:
\n"
-" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
-" 2. Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
-msgid ""
-"To use the embeddable weekly schedule widget you must:
\n"
-" Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
#: airtime_mvc/application/controllers/ShowbuilderController.php:138
msgid "Select cursor"
msgstr ""
@@ -4034,37 +1801,76 @@ msgstr ""
msgid "show does not exist"
msgstr ""
-#: airtime_mvc/application/controllers/ApiController.php:79
-msgid "You are not allowed to access this resource."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ApiController.php:244
-#: airtime_mvc/application/controllers/ApiController.php:317
-#: airtime_mvc/application/controllers/ApiController.php:392
-#: airtime_mvc/application/controllers/ApiController.php:435
-#: airtime_mvc/application/controllers/ApiController.php:474
-#: airtime_mvc/application/controllers/ApiController.php:507
-msgid "You are not allowed to access this resource. "
-msgstr ""
-
-#: airtime_mvc/application/controllers/ApiController.php:698
-#: airtime_mvc/application/controllers/ApiController.php:718
-#: airtime_mvc/application/controllers/ApiController.php:730
+#: airtime_mvc/application/controllers/ScheduleController.php:389
#, php-format
-msgid "File does not exist in %s"
+msgid "Rebroadcast of show %s from %s at %s"
msgstr ""
-#: airtime_mvc/application/controllers/ApiController.php:781
-msgid "Bad request. no 'mode' parameter passed."
+#: airtime_mvc/application/common/UsabilityHints.php:55
+msgid "Upload some tracks below to add them to your library!"
msgstr ""
-#: airtime_mvc/application/controllers/ApiController.php:791
-msgid "Bad request. 'mode' parameter is invalid"
-msgstr ""
-
-#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#: airtime_mvc/application/common/UsabilityHints.php:57
#, php-format
-msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:63
+msgid "Click the 'New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:65
+#, php-format
+msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:73
+msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:75
+#, php-format
+msgid ""
+"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
+" %sCreate an unlinked show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:80
+msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:82
+#, php-format
+msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:89
+msgid "Click on the show starting next and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:91
+#, php-format
+msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/DateHelper.php:213
+#, php-format
+msgid "The year %s must be within the range of 1753 - 9999"
+msgstr ""
+
+#: airtime_mvc/application/common/DateHelper.php:216
+#, php-format
+msgid "%s-%s-%s is not a valid date"
+msgstr ""
+
+#: airtime_mvc/application/common/DateHelper.php:240
+#, php-format
+msgid "%s:%s:%s is not a valid time"
+msgstr ""
+
+#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
+msgid "Live stream"
msgstr ""
#: airtime_mvc/application/layouts/scripts/layout.phtml:63
@@ -4079,6 +1885,17 @@ msgstr ""
msgid "Upload"
msgstr ""
+#: airtime_mvc/application/layouts/scripts/layout.phtml:76
+#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
+msgid "Dashboard"
+msgstr ""
+
+#: airtime_mvc/application/layouts/scripts/layout.phtml:84
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
+msgid "Webstreams"
+msgstr ""
+
#: airtime_mvc/application/layouts/scripts/layout.phtml:135
#: airtime_mvc/application/layouts/scripts/layout.phtml:161
msgid "Play"
@@ -4100,3 +1917,2124 @@ msgstr ""
#: airtime_mvc/application/layouts/scripts/layout.phtml:166
msgid "Cursor"
msgstr ""
+
+#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#, php-format
+msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
+msgid "Drop files here or click to browse your computer."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
+msgid "Failed"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
+msgid "Pending"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
+msgid "Recent Uploads"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
+msgid "Share"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
+msgid "Select stream:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
+msgid "mute"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
+msgid "unmute"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
+msgid "About"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
+#, php-format
+msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
+#, php-format
+msgid "%1$s %2$s is distributed under the %3$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
+#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
+#, php-format
+msgid "Welcome to %s!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
+#, php-format
+msgid "Here's how you can get started using %s to automate your broadcasts: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
+msgid "Upload audio tracks"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
+msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
+msgid "Schedule a show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
+msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
+msgid "Add tracks to your show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
+msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
+msgid "Now you're good to go!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
+#, php-format
+msgid "For more detailed help, read the %suser manual%s."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
+#: airtime_mvc/application/configs/navigation.php:40
+msgid "Weekly Schedule"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
+#: airtime_mvc/application/forms/Player.php:77
+msgid "Preview:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
+#: airtime_mvc/application/configs/navigation.php:34
+msgid "Player"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:97
+msgid "Playout History"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
+msgid "Log Sheet"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
+msgid "File Summary"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
+msgid "Show Summary"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
+msgid "Expand Static Block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
+msgid "Expand Dynamic Block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
+msgid "Choose some search criteria above and click Generate to create this playlist."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
+msgid "A track list will be generated when you schedule this smart block into a show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
+msgid "Drag tracks here from your library to add them to the playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
+msgid "Editing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:26
+msgid "Name:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
+#: airtime_mvc/application/forms/AddShowWhat.php:54
+msgid "Description:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
+#: airtime_mvc/application/forms/AddShowWhen.php:89
+msgid "Duration:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
+msgid "Toggle Details"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+msgid "Shuffle playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
+msgid "Shuffle"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
+msgid "Playlist crossfade"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+msgid "Empty playlist content"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Clear"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+msgid "Fade in: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "Fade out: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+msgid "Save playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
+msgid "No open playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
+msgid "Show Waveform"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "(ss.t)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Remove all content from this smart block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
+msgid "No smart block currently open"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+msgid "Cue In: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "(hh:mm:ss.t)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "Cue Out: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
+msgid "Original Length:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:56
+msgid "General"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
+msgid "Stream Settings"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
+msgid "Global"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
+msgid "dB"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
+msgid "Output Streams"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:3
+#: airtime_mvc/application/forms/Login.php:83
+msgid "Login"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:7
+#, php-format
+msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
+msgid "Email Sent!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
+msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
+msgid "Back"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
+msgid "Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
+msgid "New password"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
+msgid "Please enter and confirm your new password in the fields below."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
+msgid "Manage Users"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
+msgid "New User"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
+msgid "id"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
+#: airtime_mvc/application/forms/PasswordRestore.php:25
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
+msgid "Username"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
+msgid "First Name"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
+msgid "Last Name"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
+msgid "User Type"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
+#, php-format
+msgid "Super Admin details can be changed in your Billing Settings."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
+msgid "Find Shows"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
+msgid "Choose Show Instance"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
+msgid "Find"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
+#: airtime_mvc/application/configs/navigation.php:61
+msgid "My Profile"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
+#, php-format
+msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
+msgid "Repeat Days:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
+#: airtime_mvc/application/forms/GeneralPreferences.php:53
+#: airtime_mvc/application/forms/AddShowStyle.php:64
+msgid "Remove"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
+msgid "Add"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
+msgid "Show Source"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
+msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
+msgid "Register Airtime"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
+#, php-format
+msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
+#, php-format
+msgid "Click the box below to promote your station on %s."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
+msgid "(Required)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
+msgid "(for verification purposes only, will not be published)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
+#: airtime_mvc/application/forms/GeneralPreferences.php:43
+msgid "Note: Anything larger than 600x600 will be resized."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
+msgid "Show me what I am sending "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
+msgid "Terms and Conditions"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
+msgid "Choose Days:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
+msgid "Search Criteria:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
+msgid "New Criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
+msgid "or"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
+msgid "and"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
+msgid "New Modifier"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
+msgid " to "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
+msgid "files meet the criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
+msgid "file meets the criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
+msgid "Filter History"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/login.phtml:41
+msgid "Forgot your password?"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
+msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
+msgid "Stream "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
+msgid "Additional Options"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
+msgid "The following info will be displayed to listeners in their media player:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
+msgid "(Your radio station website)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
+msgid "Stream URL: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
+msgid "Choose folder"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
+msgid "Set"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
+msgid "Current Import Folder:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
+#, php-format
+msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
+msgid "Remove watched directory"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
+msgid "You are not watching any media folders."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
+msgid "Live Broadcasting"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
+msgid "Master Source"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
+msgid "Use these settings in your broadcasting software to stream live at any time."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
+msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
+msgid "TuneIn Settings"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
+msgid "SoundCloud Settings"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
+msgid "Dangerous Options"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Add this show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Update show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
+msgid "What"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
+msgid "When"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
+msgid "Live Stream Input"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
+msgid "Who"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
+msgid "Style"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
+msgid "Disk Space"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:3
+msgid "File import in progress..."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:10
+#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
+msgid "Advanced Search Options"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
+#: airtime_mvc/application/forms/EditAudioMD.php:24
+#: airtime_mvc/application/forms/Player.php:15
+msgid "Title:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
+#: airtime_mvc/application/forms/EditAudioMD.php:34
+msgid "Creator:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
+#: airtime_mvc/application/forms/EditAudioMD.php:44
+msgid "Album:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
+msgid "Track:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
+msgid "Length:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
+msgid "Sample Rate:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
+msgid "Bit Rate:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
+#: airtime_mvc/application/forms/EditAudioMD.php:115
+msgid "Mood:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:45
+#: airtime_mvc/application/forms/EditAudioMD.php:62
+msgid "Genre:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
+#: airtime_mvc/application/forms/EditAudioMD.php:72
+msgid "Year:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
+#: airtime_mvc/application/forms/EditAudioMD.php:85
+msgid "Label:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
+#: airtime_mvc/application/forms/EditAudioMD.php:125
+msgid "BPM:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
+#: airtime_mvc/application/forms/EditAudioMD.php:95
+msgid "Composer:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
+#: airtime_mvc/application/forms/EditAudioMD.php:105
+msgid "Conductor:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
+#: airtime_mvc/application/forms/EditAudioMD.php:135
+msgid "Copyright:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
+msgid "Isrc Number:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
+#: airtime_mvc/application/forms/EditAudioMD.php:155
+msgid "Website:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
+#: airtime_mvc/application/forms/EditAudioMD.php:165
+#: airtime_mvc/application/forms/EditUser.php:119
+#: airtime_mvc/application/forms/Login.php:68
+msgid "Language:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
+msgid "File Path:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
+msgid "Web Stream"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
+msgid "Dynamic Smart Block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
+msgid "Static Smart Block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
+msgid "Audio Track"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
+msgid "Playlist Contents: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
+msgid "Static Smart Block Contents: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
+msgid "Dynamic Smart Block Criteria: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
+msgid "Limit to "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
+#: airtime_mvc/application/forms/AddShowWhat.php:36
+msgid "URL:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
+msgid "Viewing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
+msgid "Listeners"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
+msgid "Stream Data Collection Status"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
+msgid "Your trial expires in"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
+msgid "days"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
+msgid "Previous:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
+msgid "Next:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
+msgid "Source Streams"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
+msgid "ON AIR"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
+msgid "Listen"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
+msgid "Logout"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
+msgid "Playout History Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
+msgid "Log Sheet Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
+msgid "New Log Sheet Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
+msgid "No Log Sheet Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
+msgid "File Summary Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
+msgid "New File Summary Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
+msgid "No File Summary Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
+msgid "Creating File Summary Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
+msgid "Creating Log Sheet Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
+msgid "Name"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
+msgid "Add more elements"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
+msgid "Add New Field"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
+msgid "Set Default Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
+msgid "Description"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
+msgid "Stream URL:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
+msgid "Default Length:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
+msgid "No webstream"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
+#: airtime_mvc/application/views/scripts/error/error.phtml:6
+msgid "An error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
+msgid "Access Denied!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
+msgid "You do not have permission to access this page!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
+#: airtime_mvc/application/views/scripts/error/error.phtml:14
+#: airtime_mvc/application/configs/navigation.php:143
+msgid "Help"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
+msgid "Oops!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
+msgid "Something went wrong!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
+msgid "Bad Request!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
+msgid "The requested action is not supported!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
+msgid "Page not found!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
+msgid "We couldn't find the page you were looking for."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error.phtml:12
+msgid "Looks like the page you were looking for doesn't exist!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
+msgid "previous"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
+msgid "play"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
+msgid "pause"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
+msgid "next"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
+msgid "stop"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
+msgid "max volume"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
+msgid "Update Required"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
+#, php-format
+msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
+msgid "Plan type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
+msgid "Billing cycle:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
+msgid "Payment method:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
+msgid "PayPal"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
+msgid "Credit Card via 2Checkout"
+msgstr ""
+
+#: airtime_mvc/application/forms/DateRange.php:16
+#: airtime_mvc/application/forms/ShowBuilder.php:18
+msgid "Date Start:"
+msgstr ""
+
+#: airtime_mvc/application/forms/DateRange.php:35
+#: airtime_mvc/application/forms/DateRange.php:63
+#: airtime_mvc/application/forms/ShowBuilder.php:37
+#: airtime_mvc/application/forms/ShowBuilder.php:65
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
+msgid "Invalid character entered"
+msgstr ""
+
+#: airtime_mvc/application/forms/DateRange.php:44
+#: airtime_mvc/application/forms/ShowBuilder.php:46
+#: airtime_mvc/application/forms/AddShowRepeats.php:56
+msgid "Date End:"
+msgstr ""
+
+#: airtime_mvc/application/forms/ShowBuilder.php:72
+#: airtime_mvc/application/forms/ShowBuilder.php:88
+msgid "Filter by Show"
+msgstr ""
+
+#: airtime_mvc/application/forms/ShowBuilder.php:80
+msgid "All My Shows:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWho.php:10
+msgid "Search Users:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWho.php:24
+msgid "DJs:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:30
+#: airtime_mvc/application/forms/GeneralPreferences.php:25
+#: airtime_mvc/application/forms/SupportSettings.php:18
+msgid "Station Name"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:39
+#: airtime_mvc/application/forms/SupportSettings.php:31
+msgid "Phone:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:51
+#: airtime_mvc/application/forms/AddUser.php:67
+#: airtime_mvc/application/forms/EditUser.php:83
+#: airtime_mvc/application/forms/SupportSettings.php:43
+msgid "Email:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:62
+#: airtime_mvc/application/forms/SupportSettings.php:54
+msgid "Station Web Site:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:73
+#: airtime_mvc/application/forms/SupportSettings.php:65
+msgid "Country:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:84
+#: airtime_mvc/application/forms/SupportSettings.php:76
+msgid "City:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:96
+#: airtime_mvc/application/forms/SupportSettings.php:88
+msgid "Station Description:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:106
+#: airtime_mvc/application/forms/GeneralPreferences.php:42
+msgid "Station Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:126
+#: airtime_mvc/application/forms/SupportSettings.php:108
+#, php-format
+msgid "Promote my station on %s"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:151
+#: airtime_mvc/application/forms/SupportSettings.php:120
+#, php-format
+msgid "By checking this box, I agree to %s's %sprivacy policy%s."
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:169
+#: airtime_mvc/application/forms/SupportSettings.php:143
+msgid "You have to agree to privacy policy."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRR.php:10
+msgid "Record from Line In?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRR.php:16
+msgid "Rebroadcast?"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
+#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
+msgid "Value is required and can't be empty"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
+msgid "'%value%' is no valid email address in the basic format local-part@hostname"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
+msgid "'%value%' does not fit the date format '%format%'"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
+msgid "'%value%' is less than %min% characters long"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
+msgid "'%value%' is more than %max% characters long"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
+msgid "'%value%' is not between '%min%' and '%max%', inclusively"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
+msgid "Passwords do not match"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
+msgid "Day must be specified"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
+msgid "Time must be specified"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
+msgid "Must wait at least 1 hour to rebroadcast"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordRestore.php:14
+msgid "Email"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordRestore.php:36
+msgid "Reset password"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhat.php:30
+msgid "Untitled Show"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhat.php:69
+msgid "Instance Description:"
+msgstr ""
+
+#: airtime_mvc/application/forms/DangerousPreferences.php:12
+msgid "Delete All Tracks in Library"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditAudioMD.php:145
+msgid "ISRC Number:"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditAudioMD.php:176
+msgid "OK"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:33
+msgid "Station Description"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:62
+msgid "Default Crossfade Duration (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:68
+#: airtime_mvc/application/forms/GeneralPreferences.php:82
+#: airtime_mvc/application/forms/GeneralPreferences.php:96
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
+msgid "Please enter a time in seconds (eg. 0.5)"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:76
+msgid "Default Fade In (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:90
+msgid "Default Fade Out (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:102
+msgid "Public Airtime API"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:103
+msgid "Required for embeddable schedule widget."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:105
+msgid "Disabled"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:106
+msgid "Enabled"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:109
+msgid ""
+"Enabling this feature will allow Airtime to provide schedule data\n"
+" to external widgets that can be embedded in your website."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:120
+msgid "Default Language"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:127
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
+msgid "Station Timezone"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:134
+msgid "Week Starts On"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:150
+msgid "Display login button on your Radio Page?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:29
+#: airtime_mvc/application/forms/EditUser.php:37
+#: airtime_mvc/application/forms/Login.php:41
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
+msgid "Username:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:38
+#: airtime_mvc/application/forms/EditUser.php:48
+#: airtime_mvc/application/forms/Login.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
+msgid "Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:46
+#: airtime_mvc/application/forms/EditUser.php:57
+msgid "Verify Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:55
+#: airtime_mvc/application/forms/EditUser.php:67
+msgid "Firstname:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:61
+#: airtime_mvc/application/forms/EditUser.php:75
+msgid "Lastname:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:76
+#: airtime_mvc/application/forms/EditUser.php:94
+msgid "Mobile Phone:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:82
+#: airtime_mvc/application/forms/EditUser.php:102
+msgid "Skype:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:88
+#: airtime_mvc/application/forms/EditUser.php:110
+msgid "Jabber:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:95
+msgid "User Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:120
+#: airtime_mvc/application/forms/EditUser.php:155
+msgid "Login name is not unique."
+msgstr ""
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
+msgid "Import Folder:"
+msgstr ""
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
+msgid "Watched Folders:"
+msgstr ""
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
+msgid "Not a valid Directory"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:126
+msgid "What is the name of your favorite childhood friend?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:127
+msgid "What school did you attend for sixth grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:128
+msgid "In what city did you meet your spouse/significant other?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:129
+msgid "What street did you live on in third grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:130
+msgid "What is the first name of the boy or girl that you first kissed?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:131
+msgid "In what city or town was your first job?"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
+msgid "Default License:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
+msgid "All rights are reserved"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
+msgid "The work is in the public domain"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
+msgid "Creative Commons Attribution"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
+msgid "Creative Commons Attribution Noncommercial"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
+msgid "Creative Commons Attribution No Derivative Works"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
+msgid "Creative Commons Attribution Share Alike"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
+msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
+msgid "Creative Commons Attribution Noncommercial Share Alike"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
+msgid "Default Sharing Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
+msgid "Public"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
+msgid "Private"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditUser.php:129
+msgid "Interface Timezone:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:14
+msgid "Now Playing"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:25
+msgid "Select Stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:28
+msgid "Auto detect the most appropriate stream to use."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:29
+msgid "Select a stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:41
+msgid " - Mobile friendly"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:45
+msgid " - The player does not support Opus streams."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:71
+msgid "Embeddable code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:72
+msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
+#: airtime_mvc/application/models/Block.php:1351
+msgid "Select criteria"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
+#: airtime_mvc/application/models/Block.php:1353
+msgid "Bit Rate (Kbps)"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
+#: airtime_mvc/application/models/Block.php:1374
+msgid "Sample Rate (kHz)"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
+msgid "hours"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
+msgid "minutes"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
+#: airtime_mvc/application/models/Block.php:333
+msgid "items"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
+msgid "Randomly"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
+msgid "Newest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
+msgid "Oldest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
+msgid "Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
+msgid "Static"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
+msgid "Dynamic"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
+msgid "Allow Repeated Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
+msgid "Sort Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
+msgid "Limit to:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
+msgid "Generate playlist content and save criteria"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
+msgid "Generate"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
+msgid "Shuffle playlist content"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
+msgid "Limit cannot be empty or smaller than 0"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
+msgid "Limit cannot be more than 24 hrs"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
+msgid "The value should be an integer"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
+msgid "500 is the max item limit value you can set"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
+msgid "You must select Criteria and Modifier"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
+msgid "'Length' should be in '00:00:00' format"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
+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:594
+msgid "The value has to be numeric"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
+msgid "The value should be less then 2147483648"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
+#, php-format
+msgid "The value should be less than %s characters"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
+msgid "Value cannot be empty"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:26
+msgid "Icecast Vorbis Metadata"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:36
+msgid "Stream Label:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:37
+msgid "Artist - Title"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:38
+msgid "Show - Artist - Title"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:39
+msgid "Station name - Show name"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:45
+msgid "Off Air Metadata"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:51
+msgid "Enable Replay Gain"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:57
+msgid "Replay Gain Modifier"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:65
+msgid "Streaming Server:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Airtime Pro Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Custom / 3rd Party Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordChange.php:17
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
+msgid "Password"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordChange.php:28
+msgid "Confirm new password"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordChange.php:36
+msgid "Password confirmation does not match your password."
+msgstr ""
+
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
+msgid "Station Language"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
+msgid "Enabled:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
+msgid "Mobile:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
+msgid "Stream Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
+msgid "Service Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
+msgid "Channels:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "1 - Mono"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "2 - Stereo"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
+msgid "Server"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
+msgid "Port"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
+msgid "Only numbers are allowed."
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
+msgid "URL"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
+msgid "Mount Point"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
+msgid "Admin User"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
+msgid "Admin Password"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
+msgid "Server cannot be empty."
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
+msgid "Port cannot be empty."
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
+msgid "Mount cannot be empty with Icecast server."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:16
+msgid "'%value%' does not fit the time format 'HH:mm'"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:22
+msgid "Start Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:37
+msgid "In the Future:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:64
+msgid "End Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:98
+msgid "Timezone:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:107
+msgid "Repeats?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:139
+msgid "Cannot create show in the past"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:147
+msgid "Cannot modify start date/time of the show that is already started"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:156
+#: airtime_mvc/application/models/Show.php:282
+msgid "End date/time cannot be in the past"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:164
+msgid "Cannot have duration < 0m"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:168
+msgid "Cannot have duration 00h 00m"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:175
+msgid "Cannot have duration greater than 24h"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:19
+msgid "Push metadata to your station on TuneIn?"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:24
+msgid "Station ID:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:30
+msgid "Partner Key:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:36
+msgid "Partner Id:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:77
+#: airtime_mvc/application/forms/TuneInPreferences.php:86
+msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:10
+#, php-format
+msgid "Use %s Authentication:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:16
+msgid "Use Custom Authentication:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:25
+msgid "Custom Username"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:37
+msgid "Custom Password"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:48
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
+msgid "Host:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
+msgid "Port:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:60
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
+msgid "Mount:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:77
+msgid "Username field cannot be empty."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:82
+msgid "Password field cannot be empty."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:12
+msgid "Background Colour:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:31
+msgid "Text Colour:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:49
+msgid "Current Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:72
+msgid "Show Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:87
+msgid "Logo Preview:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Login.php:102
+msgid "Type the characters you see in the picture below."
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
+msgid "Auto Switch Off:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
+msgid "Auto Switch On:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
+msgid "Switch Transition Fade (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:10
+msgid "Link:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:16
+msgid "Repeat Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:19
+msgid "weekly"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:20
+msgid "every 2 weeks"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:21
+msgid "every 3 weeks"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:22
+msgid "every 4 weeks"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:23
+msgid "monthly"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:32
+msgid "Select Days:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:47
+msgid "Repeat By:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the month"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the week"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:69
+msgid "No End?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:106
+msgid "End date must be after start date"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:113
+msgid "Please select a repeat day"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:12
+msgid "Radio Page"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:19
+msgid "Calendar"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:26
+msgid "Widgets"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:48
+msgid "Settings"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:67
+msgid "Users"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:74
+msgid "Streams"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:82
+msgid "Analytics"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:90
+msgid "Listener Stats"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:104
+msgid "History Templates"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:113
+msgid "Billing"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:120
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:127
+msgid "Account Details"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:134
+msgid "View Invoices"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:150
+msgid "Getting Started"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:157
+msgid "FAQ"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:162
+msgid "User Manual"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:167
+msgid "File a Support Ticket"
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:833
+#: airtime_mvc/application/models/Playlist.php:812
+msgid "Cue in and cue out are null."
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:868
+#: airtime_mvc/application/models/Block.php:924
+#: airtime_mvc/application/models/Playlist.php:851
+#: airtime_mvc/application/models/Playlist.php:895
+msgid "Can't set cue out to be greater than file length."
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:879
+#: airtime_mvc/application/models/Block.php:900
+#: airtime_mvc/application/models/Playlist.php:843
+#: airtime_mvc/application/models/Playlist.php:868
+msgid "Can't set cue in to be larger than cue out."
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:935
+#: airtime_mvc/application/models/Playlist.php:887
+msgid "Can't set cue out to be smaller than cue in."
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:1366
+msgid "Upload Time"
+msgstr ""
+
+#: airtime_mvc/application/models/ShowBuilder.php:212
+#, php-format
+msgid "Rebroadcast of %s from %s"
+msgstr ""
+
+#: airtime_mvc/application/models/Preference.php:460
+#, php-format
+msgid "Powered by %s"
+msgstr ""
+
+#: airtime_mvc/application/models/Preference.php:588
+msgid "Select Country"
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:160
+#, php-format
+msgid "%s is already watched."
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:164
+#, php-format
+msgid "%s contains nested watched directory: %s"
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:168
+#, php-format
+msgid "%s is nested within existing watched directory: %s"
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:189
+#: airtime_mvc/application/models/MusicDir.php:370
+#, php-format
+msgid "%s is not a valid directory."
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:232
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list"
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:388
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list."
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:431
+#, php-format
+msgid "%s doesn't exist in the watched list."
+msgstr ""
+
+#: airtime_mvc/application/models/Auth.php:33
+#, php-format
+msgid ""
+"Hi %s, \n"
+"\n"
+"Please click this link to reset your password: "
+msgstr ""
+
+#: airtime_mvc/application/models/Auth.php:38
+#, php-format
+msgid "%s Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/models/Show.php:184
+msgid "Shows can have a max length of 24 hours."
+msgstr ""
+
+#: airtime_mvc/application/models/Show.php:293
+msgid ""
+"Cannot schedule overlapping shows.\n"
+"Note: Resizing a repeating show affects all of its repeats."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:73
+msgid "Cannot move items out of linked shows"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:119
+msgid "The schedule you're viewing is out of date! (sched mismatch)"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:124
+msgid "The schedule you're viewing is out of date! (instance mismatch)"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:132
+#: airtime_mvc/application/models/Scheduler.php:458
+#: airtime_mvc/application/models/Scheduler.php:490
+msgid "The schedule you're viewing is out of date!"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:142
+#, php-format
+msgid "You are not allowed to schedule show %s."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:146
+msgid "You cannot add files to recording shows."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:152
+#, php-format
+msgid "The show %s is over and cannot be scheduled."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:159
+#, php-format
+msgid "The show %s has been previously updated!"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:178
+msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:195
+msgid "Cannot schedule a playlist that contains missing files."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:216
+#: airtime_mvc/application/models/Scheduler.php:305
+msgid "A selected File does not exist!"
+msgstr ""
+
+#: airtime_mvc/application/models/Schedule.php:206
+msgid "livestream"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:166
+msgid "Length needs to be greater than 0 minutes"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:171
+msgid "Length should be of form \"00h 00m\""
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:184
+msgid "URL should be of form \"http://domain\""
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:187
+msgid "URL should be 512 characters or less"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:193
+msgid "No MIME type found for webstream."
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:209
+msgid "Webstream name cannot be empty"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:278
+msgid "Could not parse XSPF playlist"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:298
+msgid "Could not parse PLS playlist"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:318
+msgid "Could not parse M3U playlist"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:332
+msgid "Invalid webstream - This appears to be a file download."
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:336
+#, php-format
+msgid "Unrecognized stream type: %s"
+msgstr ""
+
+#: airtime_mvc/public/setup/rabbitmq-setup.php:78
+msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
+msgstr ""
diff --git a/airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.mo
index 84b8bfcff..774ade4a4 100644
Binary files a/airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.mo and b/airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.mo differ
diff --git a/airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.po b/airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.po
index 16ca91409..82081e95e 100644
--- a/airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.po
+++ b/airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.po
@@ -10,9 +10,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Airtime\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-09-03 10:24-0400\n"
-"PO-Revision-Date: 2015-04-17 20:42+0000\n"
-"Last-Translator: dave van den berg \n"
+"POT-Creation-Date: 2015-09-04 11:17-0400\n"
+"PO-Revision-Date: 2015-09-04 08:15+0000\n"
+"Last-Translator: Daniel James \n"
"Language-Team: Dutch (Netherlands) (http://www.transifex.com/sourcefabric/airtime/language/nl_NL/)\n"
"Language: nl_NL\n"
"MIME-Version: 1.0\n"
@@ -20,132 +20,6 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: airtime_mvc/public/setup/rabbitmq-setup.php:78
-msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1117
-#: airtime_mvc/application/services/HistoryService.php:1157
-#: airtime_mvc/application/services/HistoryService.php:1174
-#: airtime_mvc/application/models/Block.php:1375
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
-#: airtime_mvc/application/controllers/LocaleController.php:76
-msgid "Title"
-msgstr "Titel"
-
-#: airtime_mvc/application/services/HistoryService.php:1118
-#: airtime_mvc/application/services/HistoryService.php:1158
-#: airtime_mvc/application/services/HistoryService.php:1175
-#: airtime_mvc/application/models/Block.php:1360
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
-#: airtime_mvc/application/controllers/LocaleController.php:77
-msgid "Creator"
-msgstr "Aangemaakt door"
-
-#: airtime_mvc/application/services/HistoryService.php:1119
-#: airtime_mvc/application/models/Block.php:1352
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
-#: airtime_mvc/application/controllers/LocaleController.php:78
-msgid "Album"
-msgstr "Album"
-
-#: airtime_mvc/application/services/HistoryService.php:1120
-#: airtime_mvc/application/services/HistoryService.php:1177
-#: airtime_mvc/application/models/Block.php:1369
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
-#: airtime_mvc/application/controllers/LocaleController.php:91
-msgid "Length"
-msgstr "Lengte"
-
-#: airtime_mvc/application/services/HistoryService.php:1121
-#: airtime_mvc/application/models/Block.php:1362
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
-#: airtime_mvc/application/controllers/LocaleController.php:85
-msgid "Genre"
-msgstr "Genre"
-
-#: airtime_mvc/application/services/HistoryService.php:1122
-#: airtime_mvc/application/models/Block.php:1371
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
-#: airtime_mvc/application/controllers/LocaleController.php:93
-msgid "Mood"
-msgstr "Mood"
-
-#: airtime_mvc/application/services/HistoryService.php:1123
-#: airtime_mvc/application/models/Block.php:1364
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
-#: airtime_mvc/application/controllers/LocaleController.php:87
-msgid "Label"
-msgstr "label"
-
-#: airtime_mvc/application/services/HistoryService.php:1124
-#: airtime_mvc/application/services/HistoryService.php:1178
-#: airtime_mvc/application/models/Block.php:1355
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
-#: airtime_mvc/application/controllers/LocaleController.php:81
-msgid "Composer"
-msgstr "Componist"
-
-#: airtime_mvc/application/services/HistoryService.php:1125
-#: airtime_mvc/application/models/Block.php:1363
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
-#: airtime_mvc/application/controllers/LocaleController.php:86
-msgid "ISRC"
-msgstr "ISRC"
-
-#: airtime_mvc/application/services/HistoryService.php:1126
-#: airtime_mvc/application/services/HistoryService.php:1179
-#: airtime_mvc/application/models/Block.php:1357
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
-#: airtime_mvc/application/controllers/LocaleController.php:83
-msgid "Copyright"
-msgstr "Copyright:"
-
-#: airtime_mvc/application/services/HistoryService.php:1127
-#: airtime_mvc/application/models/Block.php:1379
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
-#: airtime_mvc/application/controllers/LocaleController.php:100
-msgid "Year"
-msgstr "Jaar"
-
-#: airtime_mvc/application/services/HistoryService.php:1128
-msgid "Track"
-msgstr "track"
-
-#: airtime_mvc/application/services/HistoryService.php:1129
-#: airtime_mvc/application/models/Block.php:1356
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
-#: airtime_mvc/application/controllers/LocaleController.php:82
-msgid "Conductor"
-msgstr "Dirigent"
-
-#: airtime_mvc/application/services/HistoryService.php:1130
-#: airtime_mvc/application/models/Block.php:1365
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
-#: airtime_mvc/application/controllers/LocaleController.php:88
-msgid "Language"
-msgstr "Taal"
-
-#: airtime_mvc/application/services/HistoryService.php:1155
-#: airtime_mvc/application/forms/EditHistoryItem.php:32
-msgid "Start Time"
-msgstr "Begintijd"
-
-#: airtime_mvc/application/services/HistoryService.php:1156
-#: airtime_mvc/application/forms/EditHistoryItem.php:44
-msgid "End Time"
-msgstr "Eindtijd"
-
-#: airtime_mvc/application/services/HistoryService.php:1176
-msgid "Played"
-msgstr "Gespeeld"
-
#: airtime_mvc/application/services/CalendarService.php:50
msgid "Record file doesn't exist"
msgstr "ecord bestand bestaat niet"
@@ -241,2605 +115,382 @@ msgstr "Toon is verwijderd omdat opgenomen programma niet bestaat!"
msgid "Must wait 1 hour to rebroadcast."
msgstr "Moet wachten 1 uur opnieuw uitzenden.."
-#: airtime_mvc/application/models/Schedule.php:206
-msgid "livestream"
-msgstr ""
-
-#: airtime_mvc/application/models/ShowBuilder.php:212
-#, php-format
-msgid "Rebroadcast of %s from %s"
-msgstr "Rebroadcast van %s van %s"
-
-#: airtime_mvc/application/models/Webstream.php:166
-msgid "Length needs to be greater than 0 minutes"
-msgstr "Lengte moet groter zijn dan 0 minuten"
-
-#: airtime_mvc/application/models/Webstream.php:171
-msgid "Length should be of form \"00h 00m\""
-msgstr "Length should be of form \"00h 00m\""
-
-#: airtime_mvc/application/models/Webstream.php:184
-msgid "URL should be of form \"http://domain\""
-msgstr "URL should be of form \"http://domain\""
-
-#: airtime_mvc/application/models/Webstream.php:187
-msgid "URL should be 512 characters or less"
-msgstr "URL moet 512 tekens of minder"
-
-#: airtime_mvc/application/models/Webstream.php:193
-msgid "No MIME type found for webstream."
-msgstr "Geen MIME-type gevonden voor webstream."
-
-#: airtime_mvc/application/models/Webstream.php:209
-msgid "Webstream name cannot be empty"
-msgstr "Webstream naam mag niet leeg zijn"
-
-#: airtime_mvc/application/models/Webstream.php:278
-msgid "Could not parse XSPF playlist"
-msgstr "Could not parse XSPF playlist"
-
-#: airtime_mvc/application/models/Webstream.php:298
-msgid "Could not parse PLS playlist"
-msgstr "Kon niet ontleden PLS afspeellijst"
-
-#: airtime_mvc/application/models/Webstream.php:318
-msgid "Could not parse M3U playlist"
-msgstr "Kon niet ontleden M3U playlist"
-
-#: airtime_mvc/application/models/Webstream.php:332
-msgid "Invalid webstream - This appears to be a file download."
-msgstr "Ongeldige webstream - dit lijkt te zijn een bestand te downloaden."
-
-#: airtime_mvc/application/models/Webstream.php:336
-#, php-format
-msgid "Unrecognized stream type: %s"
-msgstr "Niet herkende type stream: %s"
-
-#: airtime_mvc/application/models/Preference.php:460
-#, php-format
-msgid "Powered by %s"
-msgstr ""
-
-#: airtime_mvc/application/models/Preference.php:588
-msgid "Select Country"
-msgstr "Selecteer land"
-
-#: airtime_mvc/application/models/MusicDir.php:160
-#, php-format
-msgid "%s is already watched."
-msgstr "%s is al bekeken."
-
-#: airtime_mvc/application/models/MusicDir.php:164
-#, php-format
-msgid "%s contains nested watched directory: %s"
-msgstr "%s bevat geneste gevolgde directory: %s"
-
-#: airtime_mvc/application/models/MusicDir.php:168
-#, php-format
-msgid "%s is nested within existing watched directory: %s"
-msgstr "%s wordt genest binnen de bestaande gecontroleerde map: %s"
-
-#: airtime_mvc/application/models/MusicDir.php:189
-#: airtime_mvc/application/models/MusicDir.php:370
-#, php-format
-msgid "%s is not a valid directory."
-msgstr "%s is niet een geldige directory."
-
-#: airtime_mvc/application/models/MusicDir.php:232
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list"
-msgstr "%s is al ingesteld als de huidige opslag dir of in de lijst van gecontroleerde mappen"
-
-#: airtime_mvc/application/models/MusicDir.php:388
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list."
-msgstr "%s is al ingesteld als de huidige opslag dir of in de lijst van gecontroleerde mappen."
-
-#: airtime_mvc/application/models/MusicDir.php:431
-#, php-format
-msgid "%s doesn't exist in the watched list."
-msgstr "%s bestaat niet in de lijst met gevolgde."
-
-#: airtime_mvc/application/models/Show.php:184
-msgid "Shows can have a max length of 24 hours."
-msgstr "Shows kunnen hebben een maximale lengte van 24 uur."
-
-#: airtime_mvc/application/models/Show.php:282
-#: airtime_mvc/application/forms/AddShowWhen.php:156
-msgid "End date/time cannot be in the past"
-msgstr "Eind datum/tijd mogen niet in het verleden"
-
-#: airtime_mvc/application/models/Show.php:293
-msgid ""
-"Cannot schedule overlapping shows.\n"
-"Note: Resizing a repeating show affects all of its repeats."
-msgstr ""
-"Niet gepland overlappende shows.\n"
-"Opmerking: vergroten/verkleinen een herhalende show heeft invloed op alle van de herhalingen."
-
-#: airtime_mvc/application/models/Auth.php:33
-#, php-format
-msgid ""
-"Hi %s, \n"
-"\n"
-"Please click this link to reset your password: "
-msgstr ""
-
-#: airtime_mvc/application/models/Auth.php:38
-#, php-format
-msgid "%s Password Reset"
-msgstr "%s wachtwoord Reset"
-
-#: airtime_mvc/application/models/Block.php:333
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
-msgid "items"
-msgstr "artikelen"
-
-#: airtime_mvc/application/models/Block.php:833
-#: airtime_mvc/application/models/Playlist.php:812
-msgid "Cue in and cue out are null."
-msgstr "Het Cue in en cue uit null zijn."
-
-#: airtime_mvc/application/models/Block.php:868
-#: airtime_mvc/application/models/Block.php:924
-#: airtime_mvc/application/models/Playlist.php:851
-#: airtime_mvc/application/models/Playlist.php:895
-msgid "Can't set cue out to be greater than file length."
-msgstr "Niet instellen cue uit groter zijn dan de bestandslengte van het"
-
-#: airtime_mvc/application/models/Block.php:879
-#: airtime_mvc/application/models/Block.php:900
-#: airtime_mvc/application/models/Playlist.php:843
-#: airtime_mvc/application/models/Playlist.php:868
-msgid "Can't set cue in to be larger than cue out."
-msgstr "Niet instellen cue in groter dan cue uit."
-
-#: airtime_mvc/application/models/Block.php:935
-#: airtime_mvc/application/models/Playlist.php:887
-msgid "Can't set cue out to be smaller than cue in."
-msgstr "Niet instellen cue uit op kleiner zijn dan het cue in."
-
-#: airtime_mvc/application/models/Block.php:1351
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
-msgid "Select criteria"
-msgstr "Selecteer criteria"
-
-#: airtime_mvc/application/models/Block.php:1353
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
-msgid "Bit Rate (Kbps)"
-msgstr "Bit Rate (kbps)"
-
-#: airtime_mvc/application/models/Block.php:1354
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
-#: airtime_mvc/application/controllers/LocaleController.php:80
-msgid "BPM"
-msgstr "BPM"
-
-#: airtime_mvc/application/models/Block.php:1358
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
-#: airtime_mvc/application/controllers/LocaleController.php:281
-#: airtime_mvc/application/layouts/scripts/layout.phtml:140
-msgid "Cue In"
-msgstr "Cue In"
-
-#: airtime_mvc/application/models/Block.php:1359
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:282
-#: airtime_mvc/application/layouts/scripts/layout.phtml:147
-msgid "Cue Out"
-msgstr "Cue Out"
-
-#: airtime_mvc/application/models/Block.php:1361
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
-#: airtime_mvc/application/controllers/LocaleController.php:84
-msgid "Encoded By"
-msgstr "Encoded Bij"
-
-#: airtime_mvc/application/models/Block.php:1366
-msgid "Upload Time"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1367
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
-#: airtime_mvc/application/controllers/LocaleController.php:89
-msgid "Last Modified"
-msgstr "Laatst Gewijzigd"
-
-#: airtime_mvc/application/models/Block.php:1368
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
-#: airtime_mvc/application/controllers/LocaleController.php:90
-msgid "Last Played"
-msgstr "Laatst gespeeld"
-
-#: airtime_mvc/application/models/Block.php:1370
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
-#: airtime_mvc/application/controllers/LocaleController.php:92
-msgid "Mime"
-msgstr "Mime"
-
-#: airtime_mvc/application/models/Block.php:1372
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
-#: airtime_mvc/application/controllers/LocaleController.php:94
-msgid "Owner"
-msgstr "Eigenaar"
-
-#: airtime_mvc/application/models/Block.php:1373
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
-#: airtime_mvc/application/controllers/LocaleController.php:95
-msgid "Replay Gain"
-msgstr "Herhalen Gain"
-
-#: airtime_mvc/application/models/Block.php:1374
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
-msgid "Sample Rate (kHz)"
-msgstr "Sample Rate (kHz)"
-
-#: airtime_mvc/application/models/Block.php:1376
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
-#: airtime_mvc/application/controllers/LocaleController.php:97
-msgid "Track Number"
-msgstr "Track nummer"
-
-#: airtime_mvc/application/models/Block.php:1377
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
-#: airtime_mvc/application/controllers/LocaleController.php:98
-msgid "Uploaded"
-msgstr "Uploaded"
-
-#: airtime_mvc/application/models/Block.php:1378
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
-#: airtime_mvc/application/controllers/LocaleController.php:99
-msgid "Website"
-msgstr "Website:"
-
-#: airtime_mvc/application/models/Block.php:1383
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
-#: airtime_mvc/application/controllers/LocaleController.php:151
-msgid "Select modifier"
-msgstr "Selecteer modifier"
-
-#: airtime_mvc/application/models/Block.php:1384
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
-#: airtime_mvc/application/controllers/LocaleController.php:152
-msgid "contains"
-msgstr "bevat"
-
-#: airtime_mvc/application/models/Block.php:1385
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
-#: airtime_mvc/application/controllers/LocaleController.php:153
-msgid "does not contain"
-msgstr "bevat niet"
-
-#: airtime_mvc/application/models/Block.php:1386
-#: airtime_mvc/application/models/Block.php:1390
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
-#: airtime_mvc/application/controllers/LocaleController.php:154
-msgid "is"
-msgstr "is"
-
-#: airtime_mvc/application/models/Block.php:1387
-#: airtime_mvc/application/models/Block.php:1391
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
-#: airtime_mvc/application/controllers/LocaleController.php:155
-msgid "is not"
-msgstr "is niet gelijk aan"
-
-#: airtime_mvc/application/models/Block.php:1388
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
-#: airtime_mvc/application/controllers/LocaleController.php:156
-msgid "starts with"
-msgstr "Begint met"
-
-#: airtime_mvc/application/models/Block.php:1389
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
-#: airtime_mvc/application/controllers/LocaleController.php:157
-msgid "ends with"
-msgstr "Eindigt op"
-
-#: airtime_mvc/application/models/Block.php:1392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
-#: airtime_mvc/application/controllers/LocaleController.php:158
-msgid "is greater than"
-msgstr "is groter dan"
-
-#: airtime_mvc/application/models/Block.php:1393
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
-#: airtime_mvc/application/controllers/LocaleController.php:159
-msgid "is less than"
-msgstr "is minder dan"
-
-#: airtime_mvc/application/models/Block.php:1394
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
-#: airtime_mvc/application/controllers/LocaleController.php:160
-msgid "is in the range"
-msgstr "in het gebied"
-
-#: airtime_mvc/application/models/Scheduler.php:73
-msgid "Cannot move items out of linked shows"
-msgstr "Items uit gekoppelde toont kan niet verplaatsen"
-
-#: airtime_mvc/application/models/Scheduler.php:119
-msgid "The schedule you're viewing is out of date! (sched mismatch)"
-msgstr "Het schema dat u aan het bekijken bent is verouderd! (geplande wanverhouding)"
-
-#: airtime_mvc/application/models/Scheduler.php:124
-msgid "The schedule you're viewing is out of date! (instance mismatch)"
-msgstr "Het schema dat u aan het bekijken bent is verouderd! (exemplaar wanverhouding)"
-
-#: airtime_mvc/application/models/Scheduler.php:132
-#: airtime_mvc/application/models/Scheduler.php:458
-#: airtime_mvc/application/models/Scheduler.php:490
-msgid "The schedule you're viewing is out of date!"
-msgstr "Het schema dat u aan het bekijken bent is verouderd!"
-
-#: airtime_mvc/application/models/Scheduler.php:142
-#, php-format
-msgid "You are not allowed to schedule show %s."
-msgstr "U zijn niet toegestaan om te plannen show %s."
-
-#: airtime_mvc/application/models/Scheduler.php:146
-msgid "You cannot add files to recording shows."
-msgstr "U kunt bestanden toevoegen aan het opnemen van programma's."
-
-#: airtime_mvc/application/models/Scheduler.php:152
-#, php-format
-msgid "The show %s is over and cannot be scheduled."
-msgstr "De show %s is voorbij en kan niet worden gepland."
-
-#: airtime_mvc/application/models/Scheduler.php:159
-#, php-format
-msgid "The show %s has been previously updated!"
-msgstr "De show %s heeft al eerder zijn bijgewerkt!"
-
-#: airtime_mvc/application/models/Scheduler.php:178
-msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
-msgstr "Inhoud in gekoppelde shows moet worden gepland vóór of na een een wordt uitgezonden"
-
-#: airtime_mvc/application/models/Scheduler.php:195
-msgid "Cannot schedule a playlist that contains missing files."
-msgstr "Niet gepland een afspeellijst die ontbrekende bestanden bevat."
-
-#: airtime_mvc/application/models/Scheduler.php:216
-#: airtime_mvc/application/models/Scheduler.php:305
-msgid "A selected File does not exist!"
-msgstr "Een geselecteerd bestand bestaat niet!"
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
-#: airtime_mvc/application/configs/navigation.php:40
-msgid "Weekly Schedule"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
-#: airtime_mvc/application/forms/Player.php:77
-msgid "Preview:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
-#: airtime_mvc/application/configs/navigation.php:34
-msgid "Player"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
-#: airtime_mvc/application/controllers/LocaleController.php:362
-#: airtime_mvc/application/controllers/LocaleController.php:390
-msgid "Close"
-msgstr "Sluiten"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Add this show"
-msgstr "Deze show toevoegen"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Update show"
-msgstr "Bijwerken van show"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
-msgid "What"
-msgstr "Wat"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
-msgid "When"
-msgstr "Wanneer"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
-msgid "Live Stream Input"
-msgstr "Live Stream Input"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
-msgid "Who"
-msgstr "Wie"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
-msgid "Style"
-msgstr "Stijl"
-
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
-#: airtime_mvc/application/controllers/LocaleController.php:273
-msgid "Start"
-msgstr "Start"
-
-#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
-msgid "Password Reset"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
-msgid "Email Sent!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
-msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
-msgid "Back"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
-msgid "New password"
-msgstr "Nieuw wachtwoord"
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
-msgid "Please enter and confirm your new password in the fields below."
-msgstr "Voer in en bevestig uw nieuwe wachtwoord in de velden hieronder."
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:3
-#: airtime_mvc/application/forms/Login.php:83
-msgid "Login"
-msgstr "Inloggen"
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:7
-#, php-format
-msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
-msgstr "Welkom op de %s demo! U kunt zich aanmelden met de gebruikersnaam 'admin' en het wachtwoord 'admin'."
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:97
-msgid "Playout History"
-msgstr "Playout geschiedenis"
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
-msgid "Log Sheet"
-msgstr "Log blad"
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
-msgid "File Summary"
-msgstr "Bestand samenvatting"
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
-msgid "Show Summary"
-msgstr "Samenvatting weergeven"
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
-msgid "Your trial expires in"
-msgstr "Uw proefperiode verloopt in"
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
-msgid "days"
-msgstr "dagen"
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-#, php-format
-msgid "Purchase an %s Pro plan!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-msgid "My Account"
-msgstr "Mijn account"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
-msgid "Previous:"
-msgstr "Vorige:"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
-msgid "Next:"
-msgstr "Volgende:"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
-msgid "Source Streams"
-msgstr "Bron Streams"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
-msgid "Master Source"
-msgstr "Master bron"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
-msgid "Show Source"
-msgstr "Bron weergeven"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
-msgid "ON AIR"
-msgstr "ON AIR"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
-msgid "Listen"
-msgstr "Luister"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
-msgid "Logout"
-msgstr "loguit"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
-msgid "Drop files here or click to browse your computer."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
-#: airtime_mvc/application/controllers/LocaleController.php:314
-msgid "in use"
-msgstr "In gebruik"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
-#: airtime_mvc/application/controllers/LocaleController.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:401
-msgid "All"
-msgstr "Alle"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
-msgid "Failed"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
-msgid "Pending"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
-msgid "Recent Uploads"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
-#: airtime_mvc/application/configs/navigation.php:120
-msgid "Account Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
-msgid "Upgrade today to get more listeners and storage space!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
-msgid "View Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
-msgid "About"
-msgstr "Over"
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
-#, php-format
-msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
-msgstr "%1$s %2$s, de open radio software voor planning en extern beheer van het station."
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
-#, php-format
-msgid "%1$s %2$s is distributed under the %3$s"
-msgstr "%1$s %2$s wordt gedistribueerd onder de %3$s"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
-#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
-msgid "Live stream"
-msgstr "Live stream"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
-msgid "Share"
-msgstr "Deel"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
-msgid "Select stream:"
-msgstr "Selecteer stream:"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
-msgid "mute"
-msgstr "dempen"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
-msgid "unmute"
-msgstr "microfoon"
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
-#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
-#, php-format
-msgid "Welcome to %s!"
-msgstr "Welkom tot %s!"
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
-#, php-format
-msgid "Here's how you can get started using %s to automate your broadcasts: "
-msgstr "Hier is hoe je kunt krijgen gestart met behulp van %s te automatiseren uw uitzendingen:"
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
-msgid "Upload audio tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
-msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
-msgid "Schedule a show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
-msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
-msgid "Add tracks to your show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
-msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
-msgid "Now you're good to go!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
-#, php-format
-msgid "For more detailed help, read the %suser manual%s."
-msgstr "Voor meer gedetailleerde hulp, lees de %sgebruikershandleiding%s."
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
-msgid "Listeners"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
-msgid "Stream Data Collection Status"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
-#: airtime_mvc/application/views/scripts/error/error.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
-msgid "An error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
-msgid "Access Denied!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
-msgid "You do not have permission to access this page!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
-#: airtime_mvc/application/views/scripts/error/error.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
-#: airtime_mvc/application/configs/navigation.php:143
-msgid "Help"
-msgstr "Help"
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
-msgid "Page not found!"
-msgstr "Pagina niet gevonden!"
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
-msgid "We couldn't find the page you were looking for."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error.phtml:12
-msgid "Looks like the page you were looking for doesn't exist!"
-msgstr "Het lijkt erop dat de pagina die u zocht bestaat niet!"
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
-msgid "Oops!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
-msgid "Something went wrong!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
-msgid "Bad Request!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
-msgid "The requested action is not supported!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
-msgid "Viewing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
-msgid "Editing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:3
-msgid "File import in progress..."
-msgstr "Bestand importeren in vooruitgang..."
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:10
-#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
-msgid "Advanced Search Options"
-msgstr "Geadvanceerde zoek opties"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
-#: airtime_mvc/application/forms/Player.php:15
-#: airtime_mvc/application/forms/EditAudioMD.php:24
-msgid "Title:"
+#: airtime_mvc/application/services/HistoryService.php:1117
+#: airtime_mvc/application/services/HistoryService.php:1157
+#: airtime_mvc/application/services/HistoryService.php:1174
+#: airtime_mvc/application/controllers/LocaleController.php:76
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
+#: airtime_mvc/application/models/Block.php:1375
+msgid "Title"
msgstr "Titel"
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
-#: airtime_mvc/application/forms/EditAudioMD.php:34
-msgid "Creator:"
+#: airtime_mvc/application/services/HistoryService.php:1118
+#: airtime_mvc/application/services/HistoryService.php:1158
+#: airtime_mvc/application/services/HistoryService.php:1175
+#: airtime_mvc/application/controllers/LocaleController.php:77
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
+#: airtime_mvc/application/models/Block.php:1360
+msgid "Creator"
msgstr "Aangemaakt door"
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
-#: airtime_mvc/application/forms/EditAudioMD.php:44
-msgid "Album:"
+#: airtime_mvc/application/services/HistoryService.php:1119
+#: airtime_mvc/application/controllers/LocaleController.php:78
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
+#: airtime_mvc/application/models/Block.php:1352
+msgid "Album"
msgstr "Album"
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
-msgid "Track:"
-msgstr "track"
+#: airtime_mvc/application/services/HistoryService.php:1120
+#: airtime_mvc/application/services/HistoryService.php:1177
+#: airtime_mvc/application/controllers/LocaleController.php:91
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
+#: airtime_mvc/application/models/Block.php:1369
+msgid "Length"
+msgstr "Lengte"
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
-msgid "Length:"
-msgstr "Lengte:"
+#: airtime_mvc/application/services/HistoryService.php:1121
+#: airtime_mvc/application/controllers/LocaleController.php:85
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
+#: airtime_mvc/application/models/Block.php:1362
+msgid "Genre"
+msgstr "Genre"
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
-msgid "Sample Rate:"
-msgstr "Sample Rate:"
+#: airtime_mvc/application/services/HistoryService.php:1122
+#: airtime_mvc/application/controllers/LocaleController.php:93
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
+#: airtime_mvc/application/models/Block.php:1371
+msgid "Mood"
+msgstr "Mood"
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
-msgid "Bit Rate:"
-msgstr "Bit Rate:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
-#: airtime_mvc/application/forms/EditAudioMD.php:115
-msgid "Mood:"
-msgstr "Mood:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
-#: airtime_mvc/application/forms/EditAudioMD.php:62
-#: airtime_mvc/application/forms/AddShowWhat.php:45
-msgid "Genre:"
-msgstr "genre:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
-#: airtime_mvc/application/forms/EditAudioMD.php:72
-msgid "Year:"
-msgstr "Jaar"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
-#: airtime_mvc/application/forms/EditAudioMD.php:85
-msgid "Label:"
+#: airtime_mvc/application/services/HistoryService.php:1123
+#: airtime_mvc/application/controllers/LocaleController.php:87
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
+#: airtime_mvc/application/models/Block.php:1364
+msgid "Label"
msgstr "label"
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
-#: airtime_mvc/application/forms/EditAudioMD.php:125
-msgid "BPM:"
-msgstr "BPM:"
+#: airtime_mvc/application/services/HistoryService.php:1124
+#: airtime_mvc/application/services/HistoryService.php:1178
+#: airtime_mvc/application/controllers/LocaleController.php:81
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
+#: airtime_mvc/application/models/Block.php:1355
+msgid "Composer"
+msgstr "Componist"
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
-#: airtime_mvc/application/forms/EditAudioMD.php:95
-msgid "Composer:"
-msgstr "schrijver van een muziekwerk"
+#: airtime_mvc/application/services/HistoryService.php:1125
+#: airtime_mvc/application/controllers/LocaleController.php:86
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
+#: airtime_mvc/application/models/Block.php:1363
+msgid "ISRC"
+msgstr "ISRC"
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
-#: airtime_mvc/application/forms/EditAudioMD.php:105
-msgid "Conductor:"
-msgstr "Conductor:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
-#: airtime_mvc/application/forms/EditAudioMD.php:135
-msgid "Copyright:"
+#: airtime_mvc/application/services/HistoryService.php:1126
+#: airtime_mvc/application/services/HistoryService.php:1179
+#: airtime_mvc/application/controllers/LocaleController.php:83
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
+#: airtime_mvc/application/models/Block.php:1357
+msgid "Copyright"
msgstr "Copyright:"
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
-msgid "Isrc Number:"
-msgstr "ISRC nummer:"
+#: airtime_mvc/application/services/HistoryService.php:1127
+#: airtime_mvc/application/controllers/LocaleController.php:100
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
+#: airtime_mvc/application/models/Block.php:1379
+msgid "Year"
+msgstr "Jaar"
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
-#: airtime_mvc/application/forms/EditAudioMD.php:155
-msgid "Website:"
-msgstr "Website:"
+#: airtime_mvc/application/services/HistoryService.php:1128
+msgid "Track"
+msgstr "track"
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
-#: airtime_mvc/application/forms/EditUser.php:119
-#: airtime_mvc/application/forms/EditAudioMD.php:165
-#: airtime_mvc/application/forms/Login.php:68
-msgid "Language:"
-msgstr "Taal:"
+#: airtime_mvc/application/services/HistoryService.php:1129
+#: airtime_mvc/application/controllers/LocaleController.php:82
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
+#: airtime_mvc/application/models/Block.php:1356
+msgid "Conductor"
+msgstr "Dirigent"
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
-msgid "File Path:"
-msgstr "Bestandspad:"
+#: airtime_mvc/application/services/HistoryService.php:1130
+#: airtime_mvc/application/controllers/LocaleController.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
+#: airtime_mvc/application/models/Block.php:1365
+msgid "Language"
+msgstr "Taal"
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
-#: airtime_mvc/application/forms/AddShowWhat.php:26
-msgid "Name:"
-msgstr "naam"
+#: airtime_mvc/application/services/HistoryService.php:1155
+#: airtime_mvc/application/forms/EditHistoryItem.php:32
+msgid "Start Time"
+msgstr "Begintijd"
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
-#: airtime_mvc/application/forms/AddShowWhat.php:54
-msgid "Description:"
-msgstr "Omschrijving:"
+#: airtime_mvc/application/services/HistoryService.php:1156
+#: airtime_mvc/application/forms/EditHistoryItem.php:44
+msgid "End Time"
+msgstr "Eindtijd"
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
-msgid "Web Stream"
-msgstr "Web Stream"
+#: airtime_mvc/application/services/HistoryService.php:1176
+msgid "Played"
+msgstr "Gespeeld"
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
-msgid "Dynamic Smart Block"
-msgstr "Dynamische slimme blok"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
-msgid "Static Smart Block"
-msgstr "Statisch slimme blok"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
-msgid "Audio Track"
-msgstr "Audiotrack"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
-msgid "Playlist Contents: "
-msgstr "Inhoud van de afspeellijst:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
-msgid "Static Smart Block Contents: "
-msgstr "Statisch slimme blok inhoud:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
-msgid "Dynamic Smart Block Criteria: "
-msgstr "Dynamische slimme blok Criteria:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
-msgid "Limit to "
-msgstr "Beperken tot"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
-#: airtime_mvc/application/forms/AddShowWhat.php:36
-msgid "URL:"
-msgstr "URL"
-
-#: airtime_mvc/application/views/scripts/form/login.phtml:41
-msgid "Forgot your password?"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
+#: airtime_mvc/application/controllers/LibraryController.php:31
+#: airtime_mvc/application/controllers/PlaylistController.php:147
#, php-format
-msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
+msgid "%s not found"
+msgstr "%s niet gevonden"
+
+#: airtime_mvc/application/controllers/LibraryController.php:40
+#: airtime_mvc/application/controllers/PlaylistController.php:168
+msgid "Something went wrong."
+msgstr "Er ging iets mis."
+
+#: airtime_mvc/application/controllers/LibraryController.php:95
+#: airtime_mvc/application/controllers/ShowbuilderController.php:136
+msgid "Preview"
+msgstr "Voorbeeld"
+
+#: airtime_mvc/application/controllers/LibraryController.php:115
+#: airtime_mvc/application/controllers/LibraryController.php:177
+#: airtime_mvc/application/controllers/LibraryController.php:200
+msgid "Add to Playlist"
+msgstr "Toevoegen aan afspeellijst"
+
+#: airtime_mvc/application/controllers/LibraryController.php:117
+msgid "Add to Smart Block"
+msgstr "Toevoegen aan slimme blok"
+
+#: airtime_mvc/application/controllers/LibraryController.php:123
+#: airtime_mvc/application/controllers/LocaleController.php:66
+msgid "Edit Metadata"
+msgstr "Metagegevens bewerken"
+
+#: airtime_mvc/application/controllers/LibraryController.php:131
+#: airtime_mvc/application/controllers/ScheduleController.php:712
+msgid "Download"
+msgstr "Download"
+
+#: airtime_mvc/application/controllers/LibraryController.php:147
+msgid "View track"
msgstr ""
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
+#: airtime_mvc/application/controllers/LibraryController.php:148
+msgid "Remove track"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:154
+#: airtime_mvc/application/controllers/LibraryController.php:159
+msgid "Upload track"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:169
+msgid "Duplicate Playlist"
+msgstr "Dubbele afspeellijst"
+
+#: airtime_mvc/application/controllers/LibraryController.php:213
+msgid "No action available"
+msgstr "Geen actie beschikbaar"
+
+#: airtime_mvc/application/controllers/LibraryController.php:233
+msgid "You don't have permission to delete selected items."
+msgstr "Je hebt geen toestemming om geselecteerde items te verwijderen"
+
+#: airtime_mvc/application/controllers/LibraryController.php:279
+msgid "Could not delete file because it is scheduled in the future."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:282
+msgid "Could not delete file(s)."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:322
#, php-format
-msgid "Click the box below to promote your station on %s."
-msgstr "Klik in het vak hieronder om uw station op %s."
+msgid "Copy of %s"
+msgstr "Kopie van %s"
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
-msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
-msgstr "(Ter bevordering van uw station, 'Feedback verzenden ondersteuning' moet worden ingeschakeld)."
+#: airtime_mvc/application/controllers/WebstreamController.php:28
+#: airtime_mvc/application/controllers/WebstreamController.php:32
+msgid "Untitled Webstream"
+msgstr "Naamloze Webstream"
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
-msgid "(Required)"
-msgstr "(Vereist)"
+#: airtime_mvc/application/controllers/WebstreamController.php:150
+msgid "Webstream saved."
+msgstr "Webstream opgeslagen."
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
-msgid "(for verification purposes only, will not be published)"
-msgstr "(voor verificatie doeleinden alleen, zal niet worden gepubliceerd)"
+#: airtime_mvc/application/controllers/WebstreamController.php:158
+msgid "Invalid form values."
+msgstr "Ongeldige formulierwaarden."
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
-msgid "Choose folder"
-msgstr "Kies map"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
-msgid "Set"
-msgstr "Instellen"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
-msgid "Current Import Folder:"
-msgstr "Huidige Import map:"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
-msgid "Add"
-msgstr "toevoegen"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
-#, php-format
-msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
-msgstr "Scannen van gevolgde directory (dit is handig als het netwerk mount is en gesynchroniseerd met %s worden kan)"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
-msgid "Remove watched directory"
-msgstr "gecontroleerde map verwijderen"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
-msgid "You are not watching any media folders."
-msgstr "Niet bekijkt u alle Mediamappen."
-
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
-msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
-msgid "Live Broadcasting"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
-msgid "Use these settings in your broadcasting software to stream live at any time."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
-msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
-msgid "Choose Show Instance"
-msgstr "Kies show exemplaar"
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
-#: airtime_mvc/application/forms/EditHistoryItem.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:400
-msgid "No Show"
-msgstr "geen show"
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
-msgid "Find"
-msgstr "Zoeken"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
-msgid "Choose Days:"
-msgstr "Kies dagen:"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
-#: airtime_mvc/application/forms/AddShowStyle.php:64
-#: airtime_mvc/application/forms/GeneralPreferences.php:53
-msgid "Remove"
-msgstr "verwijderen"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
-msgid "Stream "
-msgstr "Stream"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
-msgid "Additional Options"
-msgstr "Extra opties"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
-msgid "The following info will be displayed to listeners in their media player:"
-msgstr "De volgende info worden getoond aan luisteraars in hun mediaspeler"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
-msgid "(Your radio station website)"
-msgstr "(Uw radio station website)"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
-msgid "Stream URL: "
-msgstr "Stream URL:"
-
-#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
-msgid "Find Shows"
-msgstr "zoek Shows"
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
-msgid "TuneIn Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
-msgid "SoundCloud Settings"
-msgstr "SoundCloud instellingen"
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
-msgid "Dangerous Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
-msgid "Search Criteria:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
-msgid "New Criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
-msgid "or"
-msgstr "of"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
-msgid "and"
-msgstr "en"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
-msgid "New Modifier"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
-msgid " to "
-msgstr "tot"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
-msgid "files meet the criteria"
-msgstr "bestanden voldoen aan de criteria"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
-msgid "file meets the criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
-msgid "Filter History"
-msgstr "Filter geschiedenis"
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
-#: airtime_mvc/application/configs/navigation.php:61
-msgid "My Profile"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
-#, php-format
-msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
-#: airtime_mvc/application/forms/Preferences.php:40
-#: airtime_mvc/application/forms/PasswordChange.php:43
-#: airtime_mvc/application/forms/AddUser.php:110
-#: airtime_mvc/application/forms/BillingClient.php:193
-#: airtime_mvc/application/forms/SupportSettings.php:131
-#: airtime_mvc/application/forms/EditHistory.php:131
-#: airtime_mvc/application/controllers/LocaleController.php:294
-msgid "Save"
-msgstr "opslaan"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
-msgid "Repeat Days:"
-msgstr "Herhaal dagen:"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
-msgid "Register Airtime"
-msgstr "Airtime registreren"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
-#: airtime_mvc/application/forms/GeneralPreferences.php:43
-msgid "Note: Anything larger than 600x600 will be resized."
-msgstr "Opmerking: Om het even wat groter zijn dan 600 x 600 zal worden aangepast."
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
-msgid "Show me what I am sending "
-msgstr "Toon mij wat ik ben verzenden"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
-msgid "Terms and Conditions"
-msgstr "Algemene voorwaarden"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
-msgid "Creating File Summary Template"
-msgstr "Bestand samenvatting sjabloon maken"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
-msgid "Creating Log Sheet Template"
-msgstr "Log werkbladsjabloon maken"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
-msgid "Name"
-msgstr "naam"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
-msgid "Add more elements"
-msgstr "Meer elementen toevoegen"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
-msgid "Add New Field"
-msgstr "Nieuw veld toevoegen"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
-msgid "Set Default Template"
-msgstr "Standaardsjabloon"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
-msgid "Playout History Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
-msgid "Log Sheet Templates"
-msgstr "Log blad sjablonen"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
-msgid "New Log Sheet Template"
-msgstr "Nieuwe Log werkbladsjabloon"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
-msgid "No Log Sheet Templates"
-msgstr "Geen Log blad sjablonen"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
-#: airtime_mvc/application/controllers/LocaleController.php:397
-msgid "Set Default"
-msgstr "Standaard instellen"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
-msgid "File Summary Templates"
-msgstr "Bestand samenvatting sjablonen"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
-msgid "New File Summary Template"
-msgstr "Nieuwe bestand samenvatting sjabloon"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
-msgid "No File Summary Templates"
-msgstr "Geen bestand samenvatting sjablonen"
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
-msgid "Disk Space"
-msgstr "Hardeschijf ruimte"
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
-#: airtime_mvc/application/controllers/LocaleController.php:315
-msgid "Disk"
-msgstr "hardeschijf"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
-#: airtime_mvc/application/forms/AddShowWhen.php:89
-msgid "Duration:"
-msgstr "Looptijd:"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
-msgid "Toggle Details"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
-msgid "Playlist crossfade"
-msgstr "Afspeellijst crossfade"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-msgid "Remove all content from this smart block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Clear"
-msgstr "Wissen"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "Fade in: "
-msgstr "Fade in:"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "(ss.t)"
-msgstr "(ss.t)"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-msgid "Fade out: "
-msgstr "Fade out:"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
-#: airtime_mvc/application/forms/EditAudioMD.php:186
-#: airtime_mvc/application/forms/EditHistory.php:141
-#: airtime_mvc/application/controllers/LocaleController.php:295
-#: airtime_mvc/application/controllers/LocaleController.php:318
-msgid "Cancel"
-msgstr "anuleren"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
-msgid "No smart block currently open"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
-msgid "Show Waveform"
-msgstr "Show Waveform"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-msgid "Cue In: "
-msgstr "Cue In:"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "(hh:mm:ss.t)"
-msgstr "(hh:mm:ss.t)"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "Cue Out: "
-msgstr "Cue Out:"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
-msgid "Original Length:"
-msgstr "Oorspronkelijke lengte:"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
-msgid "Expand Static Block"
-msgstr "Statisch blok uitbreiden"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
-msgid "Expand Dynamic Block"
-msgstr "Dynamische blok uitbreiden"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
-msgid "Choose some search criteria above and click Generate to create this playlist."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
-msgid "A track list will be generated when you schedule this smart block into a show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
-msgid "Drag tracks here from your library to add them to the playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-msgid "Shuffle playlist"
-msgstr "Shuffle afspeellijst"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
-msgid "Shuffle"
-msgstr "Shuffle"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Empty playlist content"
-msgstr "Lege afspeellijst inhoud"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-msgid "Save playlist"
-msgstr "Afspeellijst opslaan"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
-msgid "No open playlist"
-msgstr "Geen open afspeellijst"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
-msgid "previous"
-msgstr "vorige"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
-msgid "play"
-msgstr "spelen"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
-msgid "pause"
-msgstr "pauze"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
-msgid "next"
-msgstr "volgende"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
-msgid "stop"
-msgstr "Stop"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
-msgid "max volume"
-msgstr "Max volume"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
-msgid "Update Required"
-msgstr "Update vereist"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
-#, php-format
-msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
-msgstr "Om te spelen de media moet u uw browser bijwerkt naar een recente versie of update uw %sFlash plugin%s."
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
-msgid "Stream Settings"
-msgstr "Instellingen voor stream"
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
-msgid "Global"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
-msgid "dB"
-msgstr "dB"
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
-msgid "Output Streams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
-#: airtime_mvc/application/controllers/LocaleController.php:166
-msgid "Manage Media Folders"
-msgstr "Mediamappen beheren"
-
-#: airtime_mvc/application/views/scripts/preference/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:56
-msgid "General"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
-msgid "Description"
-msgstr "Beschrijving"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
-msgid "Stream URL:"
-msgstr "Stream URL:"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
-msgid "Default Length:"
-msgstr "Standaard lengte:"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
-msgid "No webstream"
-msgstr "Geen webstream"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
-msgid "Manage Users"
-msgstr "Gebruikers beheren"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
-msgid "New User"
-msgstr "Nieuwe gebruiker"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
-msgid "id"
-msgstr "id"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
-#: airtime_mvc/application/forms/PasswordRestore.php:25
-msgid "Username"
-msgstr "gebuikersnaam"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
-msgid "First Name"
-msgstr "Voornaam"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
-msgid "Last Name"
-msgstr "Achternaam"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
-msgid "User Type"
-msgstr "Gebruikerstype"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
-#, php-format
-msgid "Super Admin details can be changed in your Billing Settings."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
-#: airtime_mvc/application/controllers/LocaleController.php:74
-#: airtime_mvc/application/layouts/scripts/layout.phtml:78
-msgid "Tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
-#: airtime_mvc/application/controllers/LocaleController.php:104
-#: airtime_mvc/application/layouts/scripts/layout.phtml:80
-msgid "Playlists"
-msgstr "Afspeellijsten"
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
-#: airtime_mvc/application/controllers/LocaleController.php:105
-#: airtime_mvc/application/layouts/scripts/layout.phtml:82
-msgid "Smart Blocks"
-msgstr "slimme blokken"
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
-#: airtime_mvc/application/layouts/scripts/layout.phtml:84
-msgid "Webstreams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
-#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
-#: airtime_mvc/application/layouts/scripts/layout.phtml:76
-msgid "Dashboard"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:12
-msgid "Radio Page"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:19
-msgid "Calendar"
-msgstr "Calender"
-
-#: airtime_mvc/application/configs/navigation.php:26
-msgid "Widgets"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:48
-msgid "Settings"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:67
-msgid "Users"
-msgstr "gebruikers"
-
-#: airtime_mvc/application/configs/navigation.php:74
-msgid "Streams"
-msgstr "streams"
-
-#: airtime_mvc/application/configs/navigation.php:82
-msgid "Analytics"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:90
-msgid "Listener Stats"
-msgstr "luister status"
-
-#: airtime_mvc/application/configs/navigation.php:104
-msgid "History Templates"
-msgstr "Geschiedenis sjablonen"
-
-#: airtime_mvc/application/configs/navigation.php:113
-msgid "Billing"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:127
-msgid "Account Details"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:134
-msgid "View Invoices"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:150
-msgid "Getting Started"
-msgstr "Aan de slag"
-
-#: airtime_mvc/application/configs/navigation.php:157
-msgid "FAQ"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:162
-msgid "User Manual"
-msgstr "Gebruikershandleiding"
-
-#: airtime_mvc/application/configs/navigation.php:167
-msgid "File a Support Ticket"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:12
-msgid "Background Colour:"
-msgstr "achtergrond kleur"
-
-#: airtime_mvc/application/forms/AddShowStyle.php:31
-msgid "Text Colour:"
-msgstr "tekst kleur"
-
-#: airtime_mvc/application/forms/AddShowStyle.php:49
-msgid "Current Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:72
-msgid "Show Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:87
-msgid "Logo Preview:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:19
-msgid "Push metadata to your station on TuneIn?"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:24
-msgid "Station ID:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:30
-msgid "Partner Key:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:36
-msgid "Partner Id:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:77
-#: airtime_mvc/application/forms/TuneInPreferences.php:86
-msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:14
-msgid "Now Playing"
-msgstr "Nu spelen"
-
-#: airtime_mvc/application/forms/Player.php:25
-msgid "Select Stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:28
-msgid "Auto detect the most appropriate stream to use."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:29
-msgid "Select a stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:41
-msgid " - Mobile friendly"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:45
-msgid " - The player does not support Opus streams."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:71
-msgid "Embeddable code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:72
-msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:37
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
-#: airtime_mvc/application/forms/Login.php:41
-#: airtime_mvc/application/forms/AddUser.php:29
-msgid "Username:"
-msgstr "gebuikersnaam"
-
-#: airtime_mvc/application/forms/EditUser.php:48
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
-#: airtime_mvc/application/forms/Login.php:54
-#: airtime_mvc/application/forms/AddUser.php:38
-#: airtime_mvc/application/forms/BillingClient.php:172
-msgid "Password:"
-msgstr "wachtwoord"
-
-#: airtime_mvc/application/forms/EditUser.php:57
-#: airtime_mvc/application/forms/AddUser.php:46
-#: airtime_mvc/application/forms/BillingClient.php:181
-msgid "Verify Password:"
-msgstr "Wachtwoord verifiëren:"
-
-#: airtime_mvc/application/forms/EditUser.php:67
-#: airtime_mvc/application/forms/AddUser.php:55
-msgid "Firstname:"
-msgstr "voornaam"
-
-#: airtime_mvc/application/forms/EditUser.php:75
-#: airtime_mvc/application/forms/AddUser.php:61
-msgid "Lastname:"
-msgstr "achternaam"
-
-#: airtime_mvc/application/forms/EditUser.php:83
-#: airtime_mvc/application/forms/RegisterAirtime.php:51
-#: airtime_mvc/application/forms/AddUser.php:67
-#: airtime_mvc/application/forms/SupportSettings.php:43
-msgid "Email:"
-msgstr "e-mail"
-
-#: airtime_mvc/application/forms/EditUser.php:94
-#: airtime_mvc/application/forms/AddUser.php:76
-msgid "Mobile Phone:"
-msgstr "mobiel nummer"
-
-#: airtime_mvc/application/forms/EditUser.php:102
-#: airtime_mvc/application/forms/AddUser.php:82
-msgid "Skype:"
-msgstr "skype"
-
-#: airtime_mvc/application/forms/EditUser.php:110
-#: airtime_mvc/application/forms/AddUser.php:88
-msgid "Jabber:"
-msgstr "Jabber:"
-
-#: airtime_mvc/application/forms/EditUser.php:129
-msgid "Interface Timezone:"
-msgstr "Interface tijdzone:"
-
-#: airtime_mvc/application/forms/EditUser.php:155
-#: airtime_mvc/application/forms/AddUser.php:120
-msgid "Login name is not unique."
-msgstr "Login naam is niet uniek."
-
-#: airtime_mvc/application/forms/AddShowRR.php:10
-msgid "Record from Line In?"
-msgstr "Opnemen vanaf de lijn In?"
-
-#: airtime_mvc/application/forms/AddShowRR.php:16
-msgid "Rebroadcast?"
-msgstr "Rebroadcast?"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:16
-msgid "'%value%' does not fit the time format 'HH:mm'"
-msgstr "'%value%' past niet de tijdnotatie 'UU:mm'"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:22
-msgid "Start Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:37
-msgid "In the Future:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:64
-msgid "End Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:98
-msgid "Timezone:"
-msgstr "tijdzone:"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:107
-msgid "Repeats?"
-msgstr "herhaalt?"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:139
-msgid "Cannot create show in the past"
-msgstr "kan niet aanmaken show in het verleden weergeven"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:147
-msgid "Cannot modify start date/time of the show that is already started"
-msgstr "Start datum/tijd van de show die is al gestart wijzigen niet"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:164
-msgid "Cannot have duration < 0m"
-msgstr "Geen duur hebben < 0m"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:168
-msgid "Cannot have duration 00h 00m"
-msgstr "Kan niet hebben duur 00h 00m"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:175
-msgid "Cannot have duration greater than 24h"
-msgstr "Duur groter is dan 24h kan niet hebben"
-
-#: airtime_mvc/application/forms/AddShowWho.php:10
-msgid "Search Users:"
-msgstr "zoek gebruikers"
-
-#: airtime_mvc/application/forms/AddShowWho.php:24
-msgid "DJs:"
-msgstr "DJs:"
-
-#: airtime_mvc/application/forms/PasswordChange.php:17
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
-msgid "Password"
-msgstr "wachtwoord"
-
-#: airtime_mvc/application/forms/PasswordChange.php:28
-msgid "Confirm new password"
-msgstr "Bevestig nieuw wachtwoord"
-
-#: airtime_mvc/application/forms/PasswordChange.php:36
-msgid "Password confirmation does not match your password."
-msgstr "Wachtwoord bevestiging komt niet overeen met uw wachtwoord."
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
-msgid "Station Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
-#: airtime_mvc/application/forms/GeneralPreferences.php:127
-msgid "Station Timezone"
-msgstr "station tijdzone"
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
-msgid "Auto Switch Off:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
-msgid "Auto Switch On:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
-msgid "Switch Transition Fade (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
-#: airtime_mvc/application/forms/GeneralPreferences.php:68
-#: airtime_mvc/application/forms/GeneralPreferences.php:82
-#: airtime_mvc/application/forms/GeneralPreferences.php:96
-msgid "Please enter a time in seconds (eg. 0.5)"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
-#: airtime_mvc/application/forms/AddShowLiveStream.php:48
-msgid "Host:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
-#: airtime_mvc/application/forms/AddShowLiveStream.php:54
-msgid "Port:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
-#: airtime_mvc/application/forms/AddShowLiveStream.php:60
-msgid "Mount:"
-msgstr ""
-
-#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
-msgid "Value is required and can't be empty"
-msgstr "Waarde is vereist en mag niet leeg zijn"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:25
-#: airtime_mvc/application/forms/RegisterAirtime.php:30
-#: airtime_mvc/application/forms/SupportSettings.php:18
-msgid "Station Name"
-msgstr "station naam"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:33
-msgid "Station Description"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:42
-#: airtime_mvc/application/forms/RegisterAirtime.php:106
-msgid "Station Logo:"
-msgstr "Station Logo:"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:62
-msgid "Default Crossfade Duration (s):"
-msgstr "Standaardduur Crossfade (s):"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:76
-msgid "Default Fade In (s):"
-msgstr "standaard fade in (s):"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:90
-msgid "Default Fade Out (s):"
-msgstr "standaard fade uit (s):"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:102
-msgid "Public Airtime API"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:103
-msgid "Required for embeddable schedule widget."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:105
-msgid "Disabled"
-msgstr "Uitgeschakeld"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:106
-msgid "Enabled"
-msgstr "Ingeschakeld"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:109
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
msgid ""
-"Enabling this feature will allow Airtime to provide schedule data\n"
-" to external widgets that can be embedded in your website."
+"To configure and use the embeddable player you must:
\n"
+" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
+" 2. Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/forms/GeneralPreferences.php:120
-msgid "Default Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:134
-msgid "Week Starts On"
-msgstr "Week start aan"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:150
-msgid "Display login button on your Radio Page?"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:158
-#: airtime_mvc/application/controllers/LocaleController.php:249
-msgid "Sunday"
-msgstr "zondag"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:159
-#: airtime_mvc/application/controllers/LocaleController.php:250
-msgid "Monday"
-msgstr "maandag"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:160
-#: airtime_mvc/application/controllers/LocaleController.php:251
-msgid "Tuesday"
-msgstr "dinsdag"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:161
-#: airtime_mvc/application/controllers/LocaleController.php:252
-msgid "Wednesday"
-msgstr "woensdag"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:162
-#: airtime_mvc/application/controllers/LocaleController.php:253
-msgid "Thursday"
-msgstr "donderdag"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:163
-#: airtime_mvc/application/controllers/LocaleController.php:254
-msgid "Friday"
-msgstr "vrijdag"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:164
-#: airtime_mvc/application/controllers/LocaleController.php:255
-msgid "Saturday"
-msgstr "zaterdag"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
-msgid "Default License:"
-msgstr "Standaard licentie:"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
-msgid "All rights are reserved"
-msgstr "Alle rechten voorbehouden"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
-msgid "The work is in the public domain"
-msgstr "Het werk bestaat uit het publieke domein"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
-msgid "Creative Commons Attribution"
-msgstr "Creatief Commons Attribution"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
-msgid "Creative Commons Attribution Noncommercial"
-msgstr "Creative Commons Attribution Noncommercial"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
-msgid "Creative Commons Attribution No Derivative Works"
-msgstr "Creative Commons Naamsvermelding geen afgeleide werken"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
-msgid "Creative Commons Attribution Share Alike"
-msgstr "Creative Commons Naamsvermelding Gelijk delen"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
-msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
-msgstr "Creative Commons Naamsvermelding nietcommerciële niet afgeleide werken"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
-msgid "Creative Commons Attribution Noncommercial Share Alike"
-msgstr "Creatief Meent Auteursvermelding niet-commerciële Deel Zowel"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
-msgid "Default Sharing Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
-msgid "Public"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
-msgid "Private"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:18
-#: airtime_mvc/application/forms/DateRange.php:16
-msgid "Date Start:"
-msgstr "datum start"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:37
-#: airtime_mvc/application/forms/ShowBuilder.php:65
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
-#: airtime_mvc/application/forms/DateRange.php:35
-#: airtime_mvc/application/forms/DateRange.php:63
-msgid "Invalid character entered"
-msgstr "Ongeldig teken ingevoerd"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:46
-#: airtime_mvc/application/forms/AddShowRepeats.php:56
-#: airtime_mvc/application/forms/DateRange.php:44
-msgid "Date End:"
-msgstr "datum einde"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:72
-#: airtime_mvc/application/forms/ShowBuilder.php:88
-msgid "Filter by Show"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:80
-msgid "All My Shows:"
-msgstr "al mij shows"
-
-#: airtime_mvc/application/forms/EditAudioMD.php:145
-msgid "ISRC Number:"
-msgstr "ISRC nummer:"
-
-#: airtime_mvc/application/forms/EditAudioMD.php:176
-msgid "OK"
-msgstr "Oke"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
-msgid "Day must be specified"
-msgstr "Dag moet worden opgegeven"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
-msgid "Time must be specified"
-msgstr "Tijd moet worden opgegeven"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
-msgid "Must wait at least 1 hour to rebroadcast"
-msgstr "Ten minste 1 uur opnieuw uitzenden moet wachten"
-
-#: airtime_mvc/application/forms/AddShowWhat.php:30
-msgid "Untitled Show"
-msgstr "Zonder titel show"
-
-#: airtime_mvc/application/forms/AddShowWhat.php:69
-msgid "Instance Description:"
-msgstr ""
-
-#: airtime_mvc/application/forms/DangerousPreferences.php:12
-msgid "Delete All Tracks in Library"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:39
-#: airtime_mvc/application/forms/SupportSettings.php:31
-msgid "Phone:"
-msgstr "Telefoon"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:62
-#: airtime_mvc/application/forms/SupportSettings.php:54
-msgid "Station Web Site:"
-msgstr "Station Web Site:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:73
-#: airtime_mvc/application/forms/BillingClient.php:102
-#: airtime_mvc/application/forms/SupportSettings.php:65
-msgid "Country:"
-msgstr "Land:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:84
-#: airtime_mvc/application/forms/BillingClient.php:70
-#: airtime_mvc/application/forms/SupportSettings.php:76
-msgid "City:"
-msgstr "plaats"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:96
-#: airtime_mvc/application/forms/SupportSettings.php:88
-msgid "Station Description:"
-msgstr "Beschrijving van het station:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:116
-#: airtime_mvc/application/forms/SupportSettings.php:98
-#: airtime_mvc/application/controllers/LocaleController.php:341
-msgid "Send support feedback"
-msgstr "Ondersteuning feedback verzenden"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:126
-#: airtime_mvc/application/forms/SupportSettings.php:108
-#, php-format
-msgid "Promote my station on %s"
-msgstr "Promoot mijn station aan %s"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:151
-#: airtime_mvc/application/forms/SupportSettings.php:120
-#, php-format
-msgid "By checking this box, I agree to %s's %sprivacy policy%s."
-msgstr "Door dit vakje aan, ik ga akkoord met %s's van %s privacy beleid %s"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:169
-#: airtime_mvc/application/forms/SupportSettings.php:143
-msgid "You have to agree to privacy policy."
-msgstr "Je moet eens met privacy policy."
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:10
-msgid "Link:"
-msgstr "link"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:16
-msgid "Repeat Type:"
-msgstr "Herhaal Type:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:19
-msgid "weekly"
-msgstr "wekelijks"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:20
-msgid "every 2 weeks"
-msgstr "elke 2 weken"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:21
-msgid "every 3 weeks"
-msgstr "elke 3 weken"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:22
-msgid "every 4 weeks"
-msgstr "elke 4 weken"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:23
-msgid "monthly"
-msgstr "per maand"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:32
-msgid "Select Days:"
-msgstr "Selecteer dagen:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:35
-#: airtime_mvc/application/controllers/LocaleController.php:256
-msgid "Sun"
-msgstr "zon"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:36
-#: airtime_mvc/application/controllers/LocaleController.php:257
-msgid "Mon"
-msgstr "ma"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:37
-#: airtime_mvc/application/controllers/LocaleController.php:258
-msgid "Tue"
-msgstr "di"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:38
-#: airtime_mvc/application/controllers/LocaleController.php:259
-msgid "Wed"
-msgstr "wo"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:39
-#: airtime_mvc/application/controllers/LocaleController.php:260
-msgid "Thu"
-msgstr "do"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:40
-#: airtime_mvc/application/controllers/LocaleController.php:261
-msgid "Fri"
-msgstr "vrij"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:41
-#: airtime_mvc/application/controllers/LocaleController.php:262
-msgid "Sat"
-msgstr "zat"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:47
-msgid "Repeat By:"
-msgstr "Herhaal door:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the month"
-msgstr "dag van de maand"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the week"
-msgstr "Dag van de week"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:69
-msgid "No End?"
-msgstr "Geen einde?"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:106
-msgid "End date must be after start date"
-msgstr "Einddatum moet worden na begindatum ligt"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:113
-msgid "Please select a repeat day"
-msgstr "Selecteer een Herhaal dag"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:10
-#, php-format
-msgid "Use %s Authentication:"
-msgstr "verificatie %s gebruiken:"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:16
-msgid "Use Custom Authentication:"
-msgstr "Gebruik aangepaste verificatie:"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:25
-msgid "Custom Username"
-msgstr "Aangepaste gebruikersnaam"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:37
-msgid "Custom Password"
-msgstr "Aangepaste wachtwoord"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:77
-msgid "Username field cannot be empty."
-msgstr "Veld Gebruikersnaam mag niet leeg."
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:82
-msgid "Password field cannot be empty."
-msgstr "veld wachtwoord mag niet leeg."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
-msgid "Enabled:"
-msgstr "Ingeschakeld"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
-msgid "Mobile:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
-msgid "Stream Type:"
-msgstr "Stream Type:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
-msgid "Service Type:"
-msgstr "Service Type:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
-msgid "Channels:"
-msgstr "kanalen:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "1 - Mono"
-msgstr "1- Mono"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "2 - Stereo"
-msgstr "2 - Stereo"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
-msgid "Server"
-msgstr "Server"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
-msgid "Port"
-msgstr "poort"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
-msgid "Only numbers are allowed."
-msgstr "Alleen cijfers zijn toegestaan."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
-msgid "URL"
-msgstr "URL"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
-msgid "Mount Point"
-msgstr "Aankoppelpunt"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
-msgid "Admin User"
-msgstr "admin gebuiker "
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
-msgid "Admin Password"
-msgstr "admin wachtwoord "
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
-#: airtime_mvc/application/controllers/LocaleController.php:173
-msgid "Getting information from the server..."
-msgstr "Het verkrijgen van informatie van de server ..."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
-msgid "Server cannot be empty."
-msgstr "Server kan niet leeg zijn"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
-msgid "Port cannot be empty."
-msgstr "poort kan niet leeg zijn"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
-msgid "Mount cannot be empty with Icecast server."
-msgstr "Mount kan niet leeg zijn met Icecast server"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
-msgid "'%value%' is no valid email address in the basic format local-part@hostname"
-msgstr "'%value%' is geen geldig e-mailadres in de basis formaat lokale-onderdeel @ hostnaam"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
-msgid "'%value%' does not fit the date format '%format%'"
-msgstr "'%value%' past niet in de datumnotatie '%format%'"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
-msgid "'%value%' is less than %min% characters long"
-msgstr "'%value%' is minder dan %min% tekens lang"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
-msgid "'%value%' is more than %max% characters long"
-msgstr "'%value%' is meer dan %max% karakters lang"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
-msgid "'%value%' is not between '%min%' and '%max%', inclusively"
-msgstr "'%value%' is niet tussen '%min%' en '%max%', inclusief"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
-msgid "Passwords do not match"
-msgstr "Wachtwoorden komen niet overeen."
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
-msgid "hours"
-msgstr "Uren"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
-msgid "minutes"
-msgstr "minuten"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
-msgid "Randomly"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
-msgid "Newest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
-msgid "Oldest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
-msgid "Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
-msgid "Static"
-msgstr "status"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
-msgid "Dynamic"
-msgstr "Dynamisch"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
-msgid "Allow Repeated Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
-msgid "Sort Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
-msgid "Limit to:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
-msgid "Generate playlist content and save criteria"
-msgstr "Genereren van inhoud van de afspeellijst en criteria opslaan"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
-msgid "Generate"
-msgstr "Genereren"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
-msgid "Shuffle playlist content"
-msgstr "Shuffle afspeellijst inhoud"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
-msgid "Limit cannot be empty or smaller than 0"
-msgstr "Limiet kan niet leeg zijn of kleiner is dan 0"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
-msgid "Limit cannot be more than 24 hrs"
-msgstr "Limiet mag niet meer dan 24 uur"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
-msgid "The value should be an integer"
-msgstr "De waarde moet een geheel getal"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
-msgid "500 is the max item limit value you can set"
-msgstr "500 is de grenswaarde max object die kunt u instellen"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
-msgid "You must select Criteria and Modifier"
-msgstr "U moet Criteria en Modifier selecteren"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
-msgid "'Length' should be in '00:00:00' format"
-msgstr "'Lengte' moet in ' 00:00:00 ' formaat"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
-msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)"
-msgstr "De waarde moet in timestamp indeling (bijvoorbeeld 0000-00-00 of 0000-00-00 00:00:00)"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:594
-msgid "The value has to be numeric"
-msgstr "De waarde moet worden numerieke"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
-msgid "The value should be less then 2147483648"
-msgstr "De waarde moet minder dan 2147483648"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
-#, php-format
-msgid "The value should be less than %s characters"
-msgstr "De waarde moet kleiner zijn dan %s tekens"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
-msgid "Value cannot be empty"
-msgstr "Waarde kan niet leeg"
-
-#: airtime_mvc/application/forms/Login.php:102
-msgid "Type the characters you see in the picture below."
-msgstr "Typ de tekens die u ziet in de afbeelding hieronder."
-
-#: airtime_mvc/application/forms/StreamSetting.php:26
-msgid "Icecast Vorbis Metadata"
-msgstr "Icecast Vorbis Metadata"
-
-#: airtime_mvc/application/forms/StreamSetting.php:36
-msgid "Stream Label:"
-msgstr "Stream Label:"
-
-#: airtime_mvc/application/forms/StreamSetting.php:37
-msgid "Artist - Title"
-msgstr "Artiest - Titel"
-
-#: airtime_mvc/application/forms/StreamSetting.php:38
-msgid "Show - Artist - Title"
-msgstr "Show - Artiest - titel"
-
-#: airtime_mvc/application/forms/StreamSetting.php:39
-msgid "Station name - Show name"
-msgstr "Station naam - Show naam"
-
-#: airtime_mvc/application/forms/StreamSetting.php:45
-msgid "Off Air Metadata"
-msgstr "Off Air Metadata"
-
-#: airtime_mvc/application/forms/StreamSetting.php:51
-msgid "Enable Replay Gain"
-msgstr "Inschakelen Replay Gain"
-
-#: airtime_mvc/application/forms/StreamSetting.php:57
-msgid "Replay Gain Modifier"
-msgstr "Replay Gain Modifier"
-
-#: airtime_mvc/application/forms/StreamSetting.php:65
-msgid "Streaming Server:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Airtime Pro Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Custom / 3rd Party Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:95
-msgid "User Type:"
-msgstr "Gebruiker Type :"
-
-#: airtime_mvc/application/forms/AddUser.php:99
-#: airtime_mvc/application/controllers/LocaleController.php:324
-msgid "Guest"
-msgstr "gast"
-
-#: airtime_mvc/application/forms/AddUser.php:100
-#: airtime_mvc/application/controllers/LocaleController.php:322
-msgid "DJ"
-msgstr "DJ"
-
-#: airtime_mvc/application/forms/AddUser.php:101
-#: airtime_mvc/application/controllers/LocaleController.php:323
-msgid "Program Manager"
-msgstr "Programmabeheer"
-
-#: airtime_mvc/application/forms/AddUser.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:321
-msgid "Admin"
-msgstr "Admin"
-
-#: airtime_mvc/application/forms/BillingClient.php:17
-msgid "First Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:26
-msgid "Last Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:35
-msgid "Company Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:44
-msgid "Email Address:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:54
-msgid "Address 1:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:63
-msgid "Address 2:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:80
-msgid "State/Region:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:89
-msgid "Zip Code / Postal Code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:112
-msgid "Phone Number:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:121
-msgid "Please choose a security question:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:126
-msgid "What is the name of your favorite childhood friend?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:127
-msgid "What school did you attend for sixth grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:128
-msgid "In what city did you meet your spouse/significant other?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:129
-msgid "What street did you live on in third grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:130
-msgid "What is the first name of the boy or girl that you first kissed?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:131
-msgid "In what city or town was your first job?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:135
-msgid "Please enter an answer:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:152
-msgid "VAT/Tax ID (EU only)"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:162
-msgid "Subscribe to Sourcefabric newsletter"
-msgstr ""
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
-msgid "Import Folder:"
-msgstr "mappen importeren"
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
-msgid "Watched Folders:"
-msgstr "Gecontroleerde mappen:"
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
-msgid "Not a valid Directory"
-msgstr "Niet een geldige map"
-
-#: airtime_mvc/application/forms/PasswordRestore.php:14
-msgid "Email"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordRestore.php:36
-msgid "Reset password"
-msgstr "Reset wachtwoord"
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
-msgid "Plan type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
-msgid "Billing cycle:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
-msgid "Payment method:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
-msgid "PayPal"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
-msgid "Credit Card via 2Checkout"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:213
-#, php-format
-msgid "The year %s must be within the range of 1753 - 9999"
-msgstr "Het jaar %s moet binnen het bereik van 1753-9999"
-
-#: airtime_mvc/application/common/DateHelper.php:216
-#, php-format
-msgid "%s-%s-%s is not a valid date"
-msgstr "%s-%s-%s dit is geen geldige datum"
-
-#: airtime_mvc/application/common/DateHelper.php:240
-#, php-format
-msgid "%s:%s:%s is not a valid time"
-msgstr "%s:%s:%s Dit is geen geldige tijd."
-
-#: airtime_mvc/application/common/UsabilityHints.php:55
-msgid "Upload some tracks below to add them to your library!"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:57
-#, php-format
-msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:63
-msgid "Click the 'New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:65
-#, php-format
-msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:73
-msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:75
-#, php-format
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
msgid ""
-"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
-" %sCreate an unlinked show now%s."
+"To use the embeddable weekly schedule widget you must:
\n"
+" Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/common/UsabilityHints.php:80
-msgid "To start broadcasting, click on the current show and select 'Schedule Show'"
-msgstr ""
+#: airtime_mvc/application/controllers/ListenerstatController.php:51
+msgid "Please make sure admin user/password is correct on System->Streams page."
+msgstr "Controleer of admin gebruiker/wachtwoord klopt op systeem-> Streams pagina."
-#: airtime_mvc/application/common/UsabilityHints.php:82
+#: airtime_mvc/application/controllers/UserController.php:86
+msgid "User added successfully!"
+msgstr "gebruiker Succesvol Toegevoegd"
+
+#: airtime_mvc/application/controllers/UserController.php:88
+msgid "User updated successfully!"
+msgstr "gebruiker Succesvol bijgewerkt"
+
+#: airtime_mvc/application/controllers/UserController.php:187
+msgid "Settings updated successfully!"
+msgstr "Instellingen met succes bijgewerkt!"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:53
#, php-format
-msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
-msgstr ""
+msgid "You are viewing an older version of %s"
+msgstr "U bekijkt een oudere versie van %s"
-#: airtime_mvc/application/common/UsabilityHints.php:89
-msgid "Click on the show starting next and select 'Schedule Show'"
-msgstr ""
+#: airtime_mvc/application/controllers/PlaylistController.php:140
+msgid "You cannot add tracks to dynamic blocks."
+msgstr "U kunt nummers toevoegen aan dynamische blokken."
-#: airtime_mvc/application/common/UsabilityHints.php:91
+#: airtime_mvc/application/controllers/PlaylistController.php:161
#, php-format
-msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+msgid "You don't have permission to delete selected %s(s)."
+msgstr "Je hebt geen toestemming om te verwijderen van de geselecteerde %s(s)"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:174
+msgid "You can only add tracks to smart block."
+msgstr "U kunt alleen nummers toevoegen aan smart blok."
+
+#: airtime_mvc/application/controllers/PlaylistController.php:180
+#: airtime_mvc/application/controllers/LocaleController.php:50
+msgid "You can only add tracks, smart blocks, and webstreams to playlists."
+msgstr "U kunt alleen nummers, slimme blokken en webstreams toevoegen aan afspeellijsten."
+
+#: airtime_mvc/application/controllers/PlaylistController.php:192
+msgid "Untitled Playlist"
+msgstr "Naamloze afspeellijst"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:194
+msgid "Untitled Smart Block"
+msgstr "Naamloze slimme block"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:522
+msgid "Unknown Playlist"
+msgstr "Onbekende afspeellijst"
+
+#: airtime_mvc/application/controllers/ErrorController.php:78
+msgid "Page not found."
msgstr ""
+#: airtime_mvc/application/controllers/ErrorController.php:87
+msgid "The requested action is not supported."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:98
+msgid "You do not have permission to access this resource."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:109
+msgid "An internal application error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/controllers/Apiv2Controller.php:77
+#: airtime_mvc/application/controllers/ApiController.php:79
+msgid "You are not allowed to access this resource."
+msgstr "U bent niet toegestaan voor toegang tot deze bron."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:72
+msgid "Preferences updated."
+msgstr "Voorkeuren bijgewerkt."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:115
+msgid "Support setting updated."
+msgstr "Instelling bijgewerkt ondersteunt."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:123
+msgid "Support Feedback"
+msgstr "Ondersteuning Feedback"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:251
+msgid "Stream Setting Updated."
+msgstr "Stream vaststelling van bijgewerkte."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:342
+msgid "path should be specified"
+msgstr "pad moet worden opgegeven"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:437
+msgid "Problem with Liquidsoap..."
+msgstr "Probleem met Liquidsoap..."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:493
+msgid "Request method not accepted"
+msgstr ""
+
+#: airtime_mvc/application/controllers/DashboardController.php:35
+#: airtime_mvc/application/controllers/DashboardController.php:84
+msgid "You don't have permission to disconnect source."
+msgstr "Je hebt geen toestemming om te bron verbreken"
+
+#: airtime_mvc/application/controllers/DashboardController.php:37
+#: airtime_mvc/application/controllers/DashboardController.php:86
+msgid "There is no source connected to this input."
+msgstr "Er is geen bron die aangesloten op deze ingang."
+
+#: airtime_mvc/application/controllers/DashboardController.php:81
+msgid "You don't have permission to switch source."
+msgstr "Je hebt geen toestemming om over te schakelen van de bron."
+
+#: airtime_mvc/application/controllers/LoginController.php:43
+msgid "Please enter your username and password."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:93
+msgid "Wrong username or password provided. Please try again."
+msgstr "Onjuiste gebruikersnaam of wachtwoord opgegeven. Probeer het opnieuw."
+
+#: airtime_mvc/application/controllers/LoginController.php:167
+msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
+msgstr "E-mail kan niet worden verzonden. Controleer de instellingen van uw e-mailserver en controleer dat goed is geconfigureerd."
+
+#: airtime_mvc/application/controllers/LoginController.php:173
+msgid "There was a problem with the username or email address you entered."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ApiController.php:244
+#: airtime_mvc/application/controllers/ApiController.php:317
+#: airtime_mvc/application/controllers/ApiController.php:392
+#: airtime_mvc/application/controllers/ApiController.php:435
+#: airtime_mvc/application/controllers/ApiController.php:474
+#: airtime_mvc/application/controllers/ApiController.php:507
+msgid "You are not allowed to access this resource. "
+msgstr "U bent niet toegestaan voor toegang tot deze bron."
+
+#: airtime_mvc/application/controllers/ApiController.php:698
+#: airtime_mvc/application/controllers/ApiController.php:718
+#: airtime_mvc/application/controllers/ApiController.php:730
+#, php-format
+msgid "File does not exist in %s"
+msgstr "Bestand bestaat niet in %s"
+
+#: airtime_mvc/application/controllers/ApiController.php:781
+msgid "Bad request. no 'mode' parameter passed."
+msgstr "Slecht verzoek. geen 'mode' parameter doorgegeven."
+
+#: airtime_mvc/application/controllers/ApiController.php:791
+msgid "Bad request. 'mode' parameter is invalid"
+msgstr "Slecht verzoek. 'mode' parameter is ongeldig"
+
#: airtime_mvc/application/controllers/LocaleController.php:30
#: airtime_mvc/application/layouts/scripts/audio-player.phtml:5
msgid "Audio Player"
@@ -2910,11 +561,6 @@ msgstr "%s Items toe te voegen"
msgid "You can only add tracks to smart blocks."
msgstr "U kunt alleen nummers naar slimme blokken toevoegen."
-#: airtime_mvc/application/controllers/LocaleController.php:50
-#: airtime_mvc/application/controllers/PlaylistController.php:180
-msgid "You can only add tracks, smart blocks, and webstreams to playlists."
-msgstr "U kunt alleen nummers, slimme blokken en webstreams toevoegen aan afspeellijsten."
-
#: airtime_mvc/application/controllers/LocaleController.php:53
msgid "Please select a cursor position on timeline."
msgstr "Selecteer een cursorpositie op de tijdlijn."
@@ -2955,11 +601,6 @@ msgstr ""
msgid "Click 'New' to create one."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:66
-#: airtime_mvc/application/controllers/LibraryController.php:123
-msgid "Edit Metadata"
-msgstr "Metagegevens bewerken"
-
#: airtime_mvc/application/controllers/LocaleController.php:67
msgid "Add to selected show"
msgstr "Toevoegen aan geselecteerde Toon"
@@ -2988,6 +629,12 @@ msgstr "Weet u zeker dat u wilt verwijderen van de geselecteerde bestand(en)?"
msgid "Scheduled"
msgstr "Gepland"
+#: airtime_mvc/application/controllers/LocaleController.php:74
+#: airtime_mvc/application/layouts/scripts/layout.phtml:78
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
+msgid "Tracks"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:75
#: airtime_mvc/application/layouts/scripts/layout.phtml:60
msgid "Playlist"
@@ -2997,18 +644,96 @@ msgstr ""
msgid "Bit Rate"
msgstr "Bit Rate"
+#: airtime_mvc/application/controllers/LocaleController.php:80
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
+#: airtime_mvc/application/models/Block.php:1354
+msgid "BPM"
+msgstr "BPM"
+
+#: airtime_mvc/application/controllers/LocaleController.php:84
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
+#: airtime_mvc/application/models/Block.php:1361
+msgid "Encoded By"
+msgstr "Encoded Bij"
+
+#: airtime_mvc/application/controllers/LocaleController.php:89
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
+#: airtime_mvc/application/models/Block.php:1367
+msgid "Last Modified"
+msgstr "Laatst Gewijzigd"
+
+#: airtime_mvc/application/controllers/LocaleController.php:90
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
+#: airtime_mvc/application/models/Block.php:1368
+msgid "Last Played"
+msgstr "Laatst gespeeld"
+
+#: airtime_mvc/application/controllers/LocaleController.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
+#: airtime_mvc/application/models/Block.php:1370
+msgid "Mime"
+msgstr "Mime"
+
+#: airtime_mvc/application/controllers/LocaleController.php:94
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
+#: airtime_mvc/application/models/Block.php:1372
+msgid "Owner"
+msgstr "Eigenaar"
+
+#: airtime_mvc/application/controllers/LocaleController.php:95
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
+#: airtime_mvc/application/models/Block.php:1373
+msgid "Replay Gain"
+msgstr "Herhalen Gain"
+
#: airtime_mvc/application/controllers/LocaleController.php:96
msgid "Sample Rate"
msgstr "Sample Rate"
+#: airtime_mvc/application/controllers/LocaleController.php:97
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
+#: airtime_mvc/application/models/Block.php:1376
+msgid "Track Number"
+msgstr "Track nummer"
+
+#: airtime_mvc/application/controllers/LocaleController.php:98
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
+#: airtime_mvc/application/models/Block.php:1377
+msgid "Uploaded"
+msgstr "Uploaded"
+
+#: airtime_mvc/application/controllers/LocaleController.php:99
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
+#: airtime_mvc/application/models/Block.php:1378
+msgid "Website"
+msgstr "Website:"
+
#: airtime_mvc/application/controllers/LocaleController.php:101
msgid "Loading..."
msgstr "Bezig met laden..."
+#: airtime_mvc/application/controllers/LocaleController.php:102
+#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
+msgid "All"
+msgstr "Alle"
+
#: airtime_mvc/application/controllers/LocaleController.php:103
msgid "Files"
msgstr "Bestanden"
+#: airtime_mvc/application/controllers/LocaleController.php:104
+#: airtime_mvc/application/layouts/scripts/layout.phtml:80
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
+msgid "Playlists"
+msgstr "Afspeellijsten"
+
+#: airtime_mvc/application/controllers/LocaleController.php:105
+#: airtime_mvc/application/layouts/scripts/layout.phtml:82
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
+msgid "Smart Blocks"
+msgstr "slimme blokken"
+
#: airtime_mvc/application/controllers/LocaleController.php:106
msgid "Web Streams"
msgstr "Web Streams"
@@ -3153,6 +878,74 @@ msgstr "Smart blok opgeslagen"
msgid "Processing..."
msgstr "Wordt verwerkt..."
+#: airtime_mvc/application/controllers/LocaleController.php:151
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
+#: airtime_mvc/application/models/Block.php:1383
+msgid "Select modifier"
+msgstr "Selecteer modifier"
+
+#: airtime_mvc/application/controllers/LocaleController.php:152
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
+#: airtime_mvc/application/models/Block.php:1384
+msgid "contains"
+msgstr "bevat"
+
+#: airtime_mvc/application/controllers/LocaleController.php:153
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
+#: airtime_mvc/application/models/Block.php:1385
+msgid "does not contain"
+msgstr "bevat niet"
+
+#: airtime_mvc/application/controllers/LocaleController.php:154
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
+#: airtime_mvc/application/models/Block.php:1386
+#: airtime_mvc/application/models/Block.php:1390
+msgid "is"
+msgstr "is"
+
+#: airtime_mvc/application/controllers/LocaleController.php:155
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
+#: airtime_mvc/application/models/Block.php:1387
+#: airtime_mvc/application/models/Block.php:1391
+msgid "is not"
+msgstr "is niet gelijk aan"
+
+#: airtime_mvc/application/controllers/LocaleController.php:156
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
+#: airtime_mvc/application/models/Block.php:1388
+msgid "starts with"
+msgstr "Begint met"
+
+#: airtime_mvc/application/controllers/LocaleController.php:157
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
+#: airtime_mvc/application/models/Block.php:1389
+msgid "ends with"
+msgstr "Eindigt op"
+
+#: airtime_mvc/application/controllers/LocaleController.php:158
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
+#: airtime_mvc/application/models/Block.php:1392
+msgid "is greater than"
+msgstr "is groter dan"
+
+#: airtime_mvc/application/controllers/LocaleController.php:159
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
+#: airtime_mvc/application/models/Block.php:1393
+msgid "is less than"
+msgstr "is minder dan"
+
+#: airtime_mvc/application/controllers/LocaleController.php:160
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
+#: airtime_mvc/application/models/Block.php:1394
+msgid "is in the range"
+msgstr "in het gebied"
+
#: airtime_mvc/application/controllers/LocaleController.php:162
msgid "Choose Storage Folder"
msgstr "Kies opslagmap"
@@ -3169,6 +962,11 @@ msgstr ""
"Weet u zeker dat u wilt wijzigen de opslagmap?\n"
"Hiermee verwijdert u de bestanden uit uw Airtime bibliotheek!"
+#: airtime_mvc/application/controllers/LocaleController.php:166
+#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
+msgid "Manage Media Folders"
+msgstr "Mediamappen beheren"
+
#: airtime_mvc/application/controllers/LocaleController.php:167
msgid "Are you sure you want to remove the watched folder?"
msgstr "Weet u zeker dat u wilt verwijderen van de gecontroleerde map?"
@@ -3190,6 +988,11 @@ msgstr "Aangesloten op de streaming server"
msgid "The stream is disabled"
msgstr "De stream is uitgeschakeld"
+#: airtime_mvc/application/controllers/LocaleController.php:173
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
+msgid "Getting information from the server..."
+msgstr "Het verkrijgen van informatie van de server ..."
+
#: airtime_mvc/application/controllers/LocaleController.php:174
msgid "Can not connect to the streaming server"
msgstr "Kan geen verbinding maken met de streaming server"
@@ -3417,6 +1220,76 @@ msgstr ""
msgid "Month"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:249
+#: airtime_mvc/application/forms/GeneralPreferences.php:158
+msgid "Sunday"
+msgstr "zondag"
+
+#: airtime_mvc/application/controllers/LocaleController.php:250
+#: airtime_mvc/application/forms/GeneralPreferences.php:159
+msgid "Monday"
+msgstr "maandag"
+
+#: airtime_mvc/application/controllers/LocaleController.php:251
+#: airtime_mvc/application/forms/GeneralPreferences.php:160
+msgid "Tuesday"
+msgstr "dinsdag"
+
+#: airtime_mvc/application/controllers/LocaleController.php:252
+#: airtime_mvc/application/forms/GeneralPreferences.php:161
+msgid "Wednesday"
+msgstr "woensdag"
+
+#: airtime_mvc/application/controllers/LocaleController.php:253
+#: airtime_mvc/application/forms/GeneralPreferences.php:162
+msgid "Thursday"
+msgstr "donderdag"
+
+#: airtime_mvc/application/controllers/LocaleController.php:254
+#: airtime_mvc/application/forms/GeneralPreferences.php:163
+msgid "Friday"
+msgstr "vrijdag"
+
+#: airtime_mvc/application/controllers/LocaleController.php:255
+#: airtime_mvc/application/forms/GeneralPreferences.php:164
+msgid "Saturday"
+msgstr "zaterdag"
+
+#: airtime_mvc/application/controllers/LocaleController.php:256
+#: airtime_mvc/application/forms/AddShowRepeats.php:35
+msgid "Sun"
+msgstr "zon"
+
+#: airtime_mvc/application/controllers/LocaleController.php:257
+#: airtime_mvc/application/forms/AddShowRepeats.php:36
+msgid "Mon"
+msgstr "ma"
+
+#: airtime_mvc/application/controllers/LocaleController.php:258
+#: airtime_mvc/application/forms/AddShowRepeats.php:37
+msgid "Tue"
+msgstr "di"
+
+#: airtime_mvc/application/controllers/LocaleController.php:259
+#: airtime_mvc/application/forms/AddShowRepeats.php:38
+msgid "Wed"
+msgstr "wo"
+
+#: airtime_mvc/application/controllers/LocaleController.php:260
+#: airtime_mvc/application/forms/AddShowRepeats.php:39
+msgid "Thu"
+msgstr "do"
+
+#: airtime_mvc/application/controllers/LocaleController.php:261
+#: airtime_mvc/application/forms/AddShowRepeats.php:40
+msgid "Fri"
+msgstr "vrij"
+
+#: airtime_mvc/application/controllers/LocaleController.php:262
+#: airtime_mvc/application/forms/AddShowRepeats.php:41
+msgid "Sat"
+msgstr "zat"
+
#: airtime_mvc/application/controllers/LocaleController.php:263
msgid "Shows longer than their scheduled time will be cut off by a following show."
msgstr "Toont meer dan de geplande tijd onbereikbaar worden door een volgende voorstelling."
@@ -3426,7 +1299,7 @@ msgid "Cancel Current Show?"
msgstr "Annuleer Huidige Show?"
#: airtime_mvc/application/controllers/LocaleController.php:265
-#: airtime_mvc/application/controllers/LocaleController.php:309
+#: airtime_mvc/application/controllers/LocaleController.php:312
msgid "Stop recording current show?"
msgstr "Stop de opname huidige show?"
@@ -3446,6 +1319,11 @@ msgstr "Alle inhoud verwijderen?"
msgid "Delete selected item(s)?"
msgstr "verwijderd geselecteerd object(en)?"
+#: airtime_mvc/application/controllers/LocaleController.php:273
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
+msgid "Start"
+msgstr "Start"
+
#: airtime_mvc/application/controllers/LocaleController.php:274
msgid "End"
msgstr "einde"
@@ -3454,580 +1332,467 @@ msgstr "einde"
msgid "Duration"
msgstr "Duur"
-#: airtime_mvc/application/controllers/LocaleController.php:283
+#: airtime_mvc/application/controllers/LocaleController.php:276
+msgid "Filtering out "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:277
+msgid " of "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:278
+msgid " records"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/layouts/scripts/layout.phtml:140
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
+#: airtime_mvc/application/models/Block.php:1358
+msgid "Cue In"
+msgstr "Cue In"
+
+#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/layouts/scripts/layout.phtml:147
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
+#: airtime_mvc/application/models/Block.php:1359
+msgid "Cue Out"
+msgstr "Cue Out"
+
+#: airtime_mvc/application/controllers/LocaleController.php:286
#: airtime_mvc/application/layouts/scripts/layout.phtml:167
msgid "Fade In"
msgstr "Infaden"
-#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/controllers/LocaleController.php:287
#: airtime_mvc/application/layouts/scripts/layout.phtml:168
msgid "Fade Out"
msgstr "uitfaden"
-#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/controllers/LocaleController.php:288
msgid "Show Empty"
msgstr "Show leeg"
-#: airtime_mvc/application/controllers/LocaleController.php:286
+#: airtime_mvc/application/controllers/LocaleController.php:289
msgid "Recording From Line In"
msgstr "Opname van de Line In"
-#: airtime_mvc/application/controllers/LocaleController.php:287
+#: airtime_mvc/application/controllers/LocaleController.php:290
msgid "Track preview"
msgstr "Track Voorbeeld"
-#: airtime_mvc/application/controllers/LocaleController.php:291
+#: airtime_mvc/application/controllers/LocaleController.php:294
msgid "Cannot schedule outside a show."
msgstr "Niet gepland buiten een show."
-#: airtime_mvc/application/controllers/LocaleController.php:292
+#: airtime_mvc/application/controllers/LocaleController.php:295
msgid "Moving 1 Item"
msgstr "1 Item verplaatsen"
-#: airtime_mvc/application/controllers/LocaleController.php:293
+#: airtime_mvc/application/controllers/LocaleController.php:296
#, php-format
msgid "Moving %s Items"
msgstr "%s Items verplaatsen"
-#: airtime_mvc/application/controllers/LocaleController.php:296
+#: airtime_mvc/application/controllers/LocaleController.php:297
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
+#: airtime_mvc/application/forms/Preferences.php:40
+#: airtime_mvc/application/forms/EditHistory.php:131
+#: airtime_mvc/application/forms/AddUser.php:110
+#: airtime_mvc/application/forms/PasswordChange.php:43
+#: airtime_mvc/application/forms/SupportSettings.php:131
+msgid "Save"
+msgstr "opslaan"
+
+#: airtime_mvc/application/controllers/LocaleController.php:298
+#: airtime_mvc/application/controllers/LocaleController.php:321
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
+#: airtime_mvc/application/forms/EditHistory.php:141
+#: airtime_mvc/application/forms/EditAudioMD.php:186
+msgid "Cancel"
+msgstr "anuleren"
+
+#: airtime_mvc/application/controllers/LocaleController.php:299
msgid "Fade Editor"
msgstr "Fade Bewerken"
-#: airtime_mvc/application/controllers/LocaleController.php:297
+#: airtime_mvc/application/controllers/LocaleController.php:300
msgid "Cue Editor"
msgstr "Cue Bewerken"
-#: airtime_mvc/application/controllers/LocaleController.php:298
+#: airtime_mvc/application/controllers/LocaleController.php:301
msgid "Waveform features are available in a browser supporting the Web Audio API"
msgstr "Waveform functies zijn beschikbaar in een browser die ondersteuning van de Web Audio API"
-#: airtime_mvc/application/controllers/LocaleController.php:301
+#: airtime_mvc/application/controllers/LocaleController.php:304
msgid "Select all"
msgstr "Selecteer alles"
-#: airtime_mvc/application/controllers/LocaleController.php:302
+#: airtime_mvc/application/controllers/LocaleController.php:305
msgid "Select none"
msgstr "Niets selecteren"
-#: airtime_mvc/application/controllers/LocaleController.php:303
+#: airtime_mvc/application/controllers/LocaleController.php:306
msgid "Trim overbooked shows"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:304
+#: airtime_mvc/application/controllers/LocaleController.php:307
msgid "Remove selected scheduled items"
msgstr "Geselecteerde geplande items verwijderen"
-#: airtime_mvc/application/controllers/LocaleController.php:305
+#: airtime_mvc/application/controllers/LocaleController.php:308
msgid "Jump to the current playing track"
msgstr "Jump naar de huidige playing track"
-#: airtime_mvc/application/controllers/LocaleController.php:306
+#: airtime_mvc/application/controllers/LocaleController.php:309
msgid "Cancel current show"
msgstr "Annuleren van de huidige show"
-#: airtime_mvc/application/controllers/LocaleController.php:311
+#: airtime_mvc/application/controllers/LocaleController.php:314
msgid "Open library to add or remove content"
msgstr "Open bibliotheek toevoegen of verwijderen van inhoud"
-#: airtime_mvc/application/controllers/LocaleController.php:312
+#: airtime_mvc/application/controllers/LocaleController.php:315
msgid "Add / Remove Content"
msgstr "Toevoegen / verwijderen van inhoud"
#: airtime_mvc/application/controllers/LocaleController.php:317
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
+msgid "in use"
+msgstr "In gebruik"
+
+#: airtime_mvc/application/controllers/LocaleController.php:318
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
+msgid "Disk"
+msgstr "hardeschijf"
+
+#: airtime_mvc/application/controllers/LocaleController.php:320
msgid "Look in"
msgstr "Zoeken in:"
-#: airtime_mvc/application/controllers/LocaleController.php:319
+#: airtime_mvc/application/controllers/LocaleController.php:322
msgid "Open"
msgstr "open"
+#: airtime_mvc/application/controllers/LocaleController.php:324
+#: airtime_mvc/application/forms/AddUser.php:102
+msgid "Admin"
+msgstr "Admin"
+
#: airtime_mvc/application/controllers/LocaleController.php:325
+#: airtime_mvc/application/forms/AddUser.php:100
+msgid "DJ"
+msgstr "DJ"
+
+#: airtime_mvc/application/controllers/LocaleController.php:326
+#: airtime_mvc/application/forms/AddUser.php:101
+msgid "Program Manager"
+msgstr "Programmabeheer"
+
+#: airtime_mvc/application/controllers/LocaleController.php:327
+#: airtime_mvc/application/forms/AddUser.php:99
+msgid "Guest"
+msgstr "gast"
+
+#: airtime_mvc/application/controllers/LocaleController.php:328
msgid "Guests can do the following:"
msgstr "Gasten kunnen het volgende doen:"
-#: airtime_mvc/application/controllers/LocaleController.php:326
+#: airtime_mvc/application/controllers/LocaleController.php:329
msgid "View schedule"
msgstr "Schema weergeven"
-#: airtime_mvc/application/controllers/LocaleController.php:327
+#: airtime_mvc/application/controllers/LocaleController.php:330
msgid "View show content"
msgstr "Weergave show content"
-#: airtime_mvc/application/controllers/LocaleController.php:328
+#: airtime_mvc/application/controllers/LocaleController.php:331
msgid "DJs can do the following:"
msgstr "DJ's kunnen het volgende doen:"
-#: airtime_mvc/application/controllers/LocaleController.php:329
+#: airtime_mvc/application/controllers/LocaleController.php:332
msgid "Manage assigned show content"
msgstr "Toegewezen Toon inhoud beheren"
-#: airtime_mvc/application/controllers/LocaleController.php:330
+#: airtime_mvc/application/controllers/LocaleController.php:333
msgid "Import media files"
msgstr "Mediabestanden importeren"
-#: airtime_mvc/application/controllers/LocaleController.php:331
+#: airtime_mvc/application/controllers/LocaleController.php:334
msgid "Create playlists, smart blocks, and webstreams"
msgstr "Maak afspeellijsten, slimme blokken en webstreams"
-#: airtime_mvc/application/controllers/LocaleController.php:332
+#: airtime_mvc/application/controllers/LocaleController.php:335
msgid "Manage their own library content"
msgstr "De inhoud van hun eigen bibliotheek beheren"
-#: airtime_mvc/application/controllers/LocaleController.php:333
+#: airtime_mvc/application/controllers/LocaleController.php:336
msgid "Progam Managers can do the following:"
msgstr "Programa Managers kunnen het volgende doen:"
-#: airtime_mvc/application/controllers/LocaleController.php:334
+#: airtime_mvc/application/controllers/LocaleController.php:337
msgid "View and manage show content"
msgstr "Bekijken en beheren van inhoud weergeven"
-#: airtime_mvc/application/controllers/LocaleController.php:335
+#: airtime_mvc/application/controllers/LocaleController.php:338
msgid "Schedule shows"
msgstr "Schema shows"
-#: airtime_mvc/application/controllers/LocaleController.php:336
+#: airtime_mvc/application/controllers/LocaleController.php:339
msgid "Manage all library content"
msgstr "Alle inhoud van de bibliotheek beheren"
-#: airtime_mvc/application/controllers/LocaleController.php:337
+#: airtime_mvc/application/controllers/LocaleController.php:340
msgid "Admins can do the following:"
msgstr "Beheerders kunnen het volgende doen:"
-#: airtime_mvc/application/controllers/LocaleController.php:338
+#: airtime_mvc/application/controllers/LocaleController.php:341
msgid "Manage preferences"
msgstr "Voorkeuren beheren"
-#: airtime_mvc/application/controllers/LocaleController.php:339
+#: airtime_mvc/application/controllers/LocaleController.php:342
msgid "Manage users"
msgstr "Gebruikers beheren"
-#: airtime_mvc/application/controllers/LocaleController.php:340
+#: airtime_mvc/application/controllers/LocaleController.php:343
msgid "Manage watched folders"
msgstr "Bewaakte mappen beheren"
-#: airtime_mvc/application/controllers/LocaleController.php:342
+#: airtime_mvc/application/controllers/LocaleController.php:344
+#: airtime_mvc/application/forms/RegisterAirtime.php:116
+#: airtime_mvc/application/forms/SupportSettings.php:98
+msgid "Send support feedback"
+msgstr "Ondersteuning feedback verzenden"
+
+#: airtime_mvc/application/controllers/LocaleController.php:345
msgid "View system status"
msgstr "Bekijk systeem status"
-#: airtime_mvc/application/controllers/LocaleController.php:343
+#: airtime_mvc/application/controllers/LocaleController.php:346
msgid "Access playout history"
msgstr "Toegang playout geschiedenis"
-#: airtime_mvc/application/controllers/LocaleController.php:344
+#: airtime_mvc/application/controllers/LocaleController.php:347
msgid "View listener stats"
msgstr "Weergave luisteraar status"
-#: airtime_mvc/application/controllers/LocaleController.php:346
+#: airtime_mvc/application/controllers/LocaleController.php:349
msgid "Show / hide columns"
msgstr "Geef weer / verberg kolommen"
-#: airtime_mvc/application/controllers/LocaleController.php:348
+#: airtime_mvc/application/controllers/LocaleController.php:351
msgid "From {from} to {to}"
msgstr "Van {from} tot {to}"
-#: airtime_mvc/application/controllers/LocaleController.php:349
+#: airtime_mvc/application/controllers/LocaleController.php:352
msgid "kbps"
msgstr "kbps"
-#: airtime_mvc/application/controllers/LocaleController.php:350
+#: airtime_mvc/application/controllers/LocaleController.php:353
msgid "yyyy-mm-dd"
msgstr "jjjj-mm-dd"
-#: airtime_mvc/application/controllers/LocaleController.php:351
+#: airtime_mvc/application/controllers/LocaleController.php:354
msgid "hh:mm:ss.t"
msgstr "hh:mm:ss.t"
-#: airtime_mvc/application/controllers/LocaleController.php:352
+#: airtime_mvc/application/controllers/LocaleController.php:355
msgid "kHz"
msgstr "kHz"
-#: airtime_mvc/application/controllers/LocaleController.php:355
+#: airtime_mvc/application/controllers/LocaleController.php:358
msgid "Su"
msgstr "Zo"
-#: airtime_mvc/application/controllers/LocaleController.php:356
+#: airtime_mvc/application/controllers/LocaleController.php:359
msgid "Mo"
msgstr "Ma"
-#: airtime_mvc/application/controllers/LocaleController.php:357
+#: airtime_mvc/application/controllers/LocaleController.php:360
msgid "Tu"
msgstr "Di"
-#: airtime_mvc/application/controllers/LocaleController.php:358
+#: airtime_mvc/application/controllers/LocaleController.php:361
msgid "We"
msgstr "Wo"
-#: airtime_mvc/application/controllers/LocaleController.php:359
+#: airtime_mvc/application/controllers/LocaleController.php:362
msgid "Th"
msgstr "Do"
-#: airtime_mvc/application/controllers/LocaleController.php:360
+#: airtime_mvc/application/controllers/LocaleController.php:363
msgid "Fr"
msgstr "Vr"
-#: airtime_mvc/application/controllers/LocaleController.php:361
+#: airtime_mvc/application/controllers/LocaleController.php:364
msgid "Sa"
msgstr "Za"
-#: airtime_mvc/application/controllers/LocaleController.php:364
+#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
+msgid "Close"
+msgstr "Sluiten"
+
+#: airtime_mvc/application/controllers/LocaleController.php:367
msgid "Hour"
msgstr "Uur"
-#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:368
msgid "Minute"
msgstr "Minuut"
-#: airtime_mvc/application/controllers/LocaleController.php:366
+#: airtime_mvc/application/controllers/LocaleController.php:369
msgid "Done"
msgstr "Klaar"
-#: airtime_mvc/application/controllers/LocaleController.php:369
+#: airtime_mvc/application/controllers/LocaleController.php:372
msgid "Select files"
msgstr "Selecteer bestanden"
-#: airtime_mvc/application/controllers/LocaleController.php:370
-#: airtime_mvc/application/controllers/LocaleController.php:371
+#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:374
msgid "Add files to the upload queue and click the start button."
msgstr "Voeg bestanden aan de upload wachtrij toe en klik op de begin knop"
-#: airtime_mvc/application/controllers/LocaleController.php:372
-#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:376
msgid "Status"
msgstr "Status"
-#: airtime_mvc/application/controllers/LocaleController.php:374
+#: airtime_mvc/application/controllers/LocaleController.php:377
msgid "Add Files"
msgstr "Bestanden toevoegen"
-#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:378
msgid "Stop Upload"
msgstr "Stop upload"
-#: airtime_mvc/application/controllers/LocaleController.php:376
+#: airtime_mvc/application/controllers/LocaleController.php:379
msgid "Start upload"
msgstr "Begin upload"
-#: airtime_mvc/application/controllers/LocaleController.php:377
+#: airtime_mvc/application/controllers/LocaleController.php:380
msgid "Add files"
msgstr "Bestanden toevoegen"
-#: airtime_mvc/application/controllers/LocaleController.php:378
+#: airtime_mvc/application/controllers/LocaleController.php:381
#, php-format
msgid "Uploaded %d/%d files"
msgstr "Geüploade %d/%d bestanden"
-#: airtime_mvc/application/controllers/LocaleController.php:379
+#: airtime_mvc/application/controllers/LocaleController.php:382
msgid "N/A"
msgstr "N/B"
-#: airtime_mvc/application/controllers/LocaleController.php:380
+#: airtime_mvc/application/controllers/LocaleController.php:383
msgid "Drag files here."
msgstr "Sleep bestanden hierheen."
-#: airtime_mvc/application/controllers/LocaleController.php:381
+#: airtime_mvc/application/controllers/LocaleController.php:384
msgid "File extension error."
msgstr "Bestandsextensie fout"
-#: airtime_mvc/application/controllers/LocaleController.php:382
+#: airtime_mvc/application/controllers/LocaleController.php:385
msgid "File size error."
msgstr "Bestandsgrote fout."
-#: airtime_mvc/application/controllers/LocaleController.php:383
+#: airtime_mvc/application/controllers/LocaleController.php:386
msgid "File count error."
msgstr "Graaf bestandsfout."
-#: airtime_mvc/application/controllers/LocaleController.php:384
+#: airtime_mvc/application/controllers/LocaleController.php:387
msgid "Init error."
msgstr "Init fout."
-#: airtime_mvc/application/controllers/LocaleController.php:385
+#: airtime_mvc/application/controllers/LocaleController.php:388
msgid "HTTP Error."
msgstr "HTTP fout."
-#: airtime_mvc/application/controllers/LocaleController.php:386
+#: airtime_mvc/application/controllers/LocaleController.php:389
msgid "Security error."
msgstr "Beveiligingsfout."
-#: airtime_mvc/application/controllers/LocaleController.php:387
+#: airtime_mvc/application/controllers/LocaleController.php:390
msgid "Generic error."
msgstr "Generieke fout."
-#: airtime_mvc/application/controllers/LocaleController.php:388
+#: airtime_mvc/application/controllers/LocaleController.php:391
msgid "IO error."
msgstr "IO fout."
-#: airtime_mvc/application/controllers/LocaleController.php:389
+#: airtime_mvc/application/controllers/LocaleController.php:392
#, php-format
msgid "File: %s"
msgstr "Bestand: %s"
-#: airtime_mvc/application/controllers/LocaleController.php:391
+#: airtime_mvc/application/controllers/LocaleController.php:394
#, php-format
msgid "%d files queued"
msgstr "%d bestanden in de wachtrij"
-#: airtime_mvc/application/controllers/LocaleController.php:392
+#: airtime_mvc/application/controllers/LocaleController.php:395
msgid "File: %f, size: %s, max file size: %m"
msgstr "File: %f, grootte: %s, max bestandsgrootte: %m"
-#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/controllers/LocaleController.php:396
msgid "Upload URL might be wrong or doesn't exist"
msgstr "Upload URL zou verkeerd kunnen zijn of bestaat niet"
-#: airtime_mvc/application/controllers/LocaleController.php:394
+#: airtime_mvc/application/controllers/LocaleController.php:397
msgid "Error: File too large: "
msgstr "Fout: Bestand is te groot"
-#: airtime_mvc/application/controllers/LocaleController.php:395
+#: airtime_mvc/application/controllers/LocaleController.php:398
msgid "Error: Invalid file extension: "
msgstr "Fout: Niet toegestane bestandsextensie "
-#: airtime_mvc/application/controllers/LocaleController.php:398
+#: airtime_mvc/application/controllers/LocaleController.php:400
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
+msgid "Set Default"
+msgstr "Standaard instellen"
+
+#: airtime_mvc/application/controllers/LocaleController.php:401
msgid "Create Entry"
msgstr "Aangemaakt op:"
-#: airtime_mvc/application/controllers/LocaleController.php:399
+#: airtime_mvc/application/controllers/LocaleController.php:402
msgid "Edit History Record"
msgstr "Geschiedenis Record bewerken"
-#: airtime_mvc/application/controllers/LocaleController.php:402
+#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
+#: airtime_mvc/application/forms/EditHistoryItem.php:57
+msgid "No Show"
+msgstr "geen show"
+
+#: airtime_mvc/application/controllers/LocaleController.php:405
#, php-format
msgid "Copied %s row%s to the clipboard"
msgstr "Rij gekopieerde %s %s naar het Klembord"
-#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/controllers/LocaleController.php:406
#, php-format
msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished."
msgstr "%sPrint weergave%sA.u.b. gebruik printfunctie in uw browser wilt afdrukken van deze tabel. Druk op ESC wanneer u klaar bent."
-#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/controllers/LocaleController.php:407
msgid "New Show"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:405
+#: airtime_mvc/application/controllers/LocaleController.php:408
msgid "New Log Entry"
msgstr ""
-#: airtime_mvc/application/controllers/ScheduleController.php:389
-#, php-format
-msgid "Rebroadcast of show %s from %s at %s"
-msgstr "Rebroadcast van show %s van %s in %s"
-
-#: airtime_mvc/application/controllers/ScheduleController.php:712
-#: airtime_mvc/application/controllers/LibraryController.php:131
-msgid "Download"
-msgstr "Download"
-
-#: airtime_mvc/application/controllers/ErrorController.php:78
-msgid "Page not found."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:87
-msgid "The requested action is not supported."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:98
-msgid "You do not have permission to access this resource."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:109
-msgid "An internal application error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ListenerstatController.php:51
-msgid "Please make sure admin user/password is correct on System->Streams page."
-msgstr "Controleer of admin gebruiker/wachtwoord klopt op systeem-> Streams pagina."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:53
-#, php-format
-msgid "You are viewing an older version of %s"
-msgstr "U bekijkt een oudere versie van %s"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:140
-msgid "You cannot add tracks to dynamic blocks."
-msgstr "U kunt nummers toevoegen aan dynamische blokken."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:147
-#: airtime_mvc/application/controllers/LibraryController.php:31
-#, php-format
-msgid "%s not found"
-msgstr "%s niet gevonden"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:161
-#, php-format
-msgid "You don't have permission to delete selected %s(s)."
-msgstr "Je hebt geen toestemming om te verwijderen van de geselecteerde %s(s)"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:168
-#: airtime_mvc/application/controllers/LibraryController.php:40
-msgid "Something went wrong."
-msgstr "Er ging iets mis."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:174
-msgid "You can only add tracks to smart block."
-msgstr "U kunt alleen nummers toevoegen aan smart blok."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:192
-msgid "Untitled Playlist"
-msgstr "Naamloze afspeellijst"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:194
-msgid "Untitled Smart Block"
-msgstr "Naamloze slimme block"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:522
-msgid "Unknown Playlist"
-msgstr "Onbekende afspeellijst"
-
-#: airtime_mvc/application/controllers/LoginController.php:43
-msgid "Please enter your username and password."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:93
-msgid "Wrong username or password provided. Please try again."
-msgstr "Onjuiste gebruikersnaam of wachtwoord opgegeven. Probeer het opnieuw."
-
-#: airtime_mvc/application/controllers/LoginController.php:167
-msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
-msgstr "E-mail kan niet worden verzonden. Controleer de instellingen van uw e-mailserver en controleer dat goed is geconfigureerd."
-
-#: airtime_mvc/application/controllers/LoginController.php:173
-msgid "There was a problem with the username or email address you entered."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:35
-#: airtime_mvc/application/controllers/DashboardController.php:84
-msgid "You don't have permission to disconnect source."
-msgstr "Je hebt geen toestemming om te bron verbreken"
-
-#: airtime_mvc/application/controllers/DashboardController.php:37
-#: airtime_mvc/application/controllers/DashboardController.php:86
-msgid "There is no source connected to this input."
-msgstr "Er is geen bron die aangesloten op deze ingang."
-
-#: airtime_mvc/application/controllers/DashboardController.php:81
-msgid "You don't have permission to switch source."
-msgstr "Je hebt geen toestemming om over te schakelen van de bron."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:72
-msgid "Preferences updated."
-msgstr "Voorkeuren bijgewerkt."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:115
-msgid "Support setting updated."
-msgstr "Instelling bijgewerkt ondersteunt."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:123
-msgid "Support Feedback"
-msgstr "Ondersteuning Feedback"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:251
-msgid "Stream Setting Updated."
-msgstr "Stream vaststelling van bijgewerkte."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:342
-msgid "path should be specified"
-msgstr "pad moet worden opgegeven"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:437
-msgid "Problem with Liquidsoap..."
-msgstr "Probleem met Liquidsoap..."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:493
-msgid "Request method not accepted"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:86
-msgid "User added successfully!"
-msgstr "gebruiker Succesvol Toegevoegd"
-
-#: airtime_mvc/application/controllers/UserController.php:88
-msgid "User updated successfully!"
-msgstr "gebruiker Succesvol bijgewerkt"
-
-#: airtime_mvc/application/controllers/UserController.php:187
-msgid "Settings updated successfully!"
-msgstr "Instellingen met succes bijgewerkt!"
-
-#: airtime_mvc/application/controllers/WebstreamController.php:28
-#: airtime_mvc/application/controllers/WebstreamController.php:32
-msgid "Untitled Webstream"
-msgstr "Naamloze Webstream"
-
-#: airtime_mvc/application/controllers/WebstreamController.php:150
-msgid "Webstream saved."
-msgstr "Webstream opgeslagen."
-
-#: airtime_mvc/application/controllers/WebstreamController.php:158
-msgid "Invalid form values."
-msgstr "Ongeldige formulierwaarden."
-
-#: airtime_mvc/application/controllers/LibraryController.php:95
-#: airtime_mvc/application/controllers/ShowbuilderController.php:136
-msgid "Preview"
-msgstr "Voorbeeld"
-
-#: airtime_mvc/application/controllers/LibraryController.php:115
-#: airtime_mvc/application/controllers/LibraryController.php:177
-#: airtime_mvc/application/controllers/LibraryController.php:200
-msgid "Add to Playlist"
-msgstr "Toevoegen aan afspeellijst"
-
-#: airtime_mvc/application/controllers/LibraryController.php:117
-msgid "Add to Smart Block"
-msgstr "Toevoegen aan slimme blok"
-
-#: airtime_mvc/application/controllers/LibraryController.php:147
-msgid "View track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:148
-msgid "Remove track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:154
-#: airtime_mvc/application/controllers/LibraryController.php:159
-msgid "Upload track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:169
-msgid "Duplicate Playlist"
-msgstr "Dubbele afspeellijst"
-
-#: airtime_mvc/application/controllers/LibraryController.php:213
-msgid "No action available"
-msgstr "Geen actie beschikbaar"
-
-#: airtime_mvc/application/controllers/LibraryController.php:233
-msgid "You don't have permission to delete selected items."
-msgstr "Je hebt geen toestemming om geselecteerde items te verwijderen"
-
-#: airtime_mvc/application/controllers/LibraryController.php:279
-msgid "Could not delete file because it is scheduled in the future."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:282
-msgid "Could not delete file(s)."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:322
-#, php-format
-msgid "Copy of %s"
-msgstr "Kopie van %s"
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
-msgid ""
-"To configure and use the embeddable player you must:
\n"
-" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
-" 2. Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
-msgid ""
-"To use the embeddable weekly schedule widget you must:
\n"
-" Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
#: airtime_mvc/application/controllers/ShowbuilderController.php:138
msgid "Select cursor"
msgstr "Selecteer cursor"
@@ -4040,39 +1805,78 @@ msgstr "Cursor verwijderen"
msgid "show does not exist"
msgstr "show bestaat niet"
-#: airtime_mvc/application/controllers/ApiController.php:79
-msgid "You are not allowed to access this resource."
-msgstr "U bent niet toegestaan voor toegang tot deze bron."
-
-#: airtime_mvc/application/controllers/ApiController.php:244
-#: airtime_mvc/application/controllers/ApiController.php:317
-#: airtime_mvc/application/controllers/ApiController.php:392
-#: airtime_mvc/application/controllers/ApiController.php:435
-#: airtime_mvc/application/controllers/ApiController.php:474
-#: airtime_mvc/application/controllers/ApiController.php:507
-msgid "You are not allowed to access this resource. "
-msgstr "U bent niet toegestaan voor toegang tot deze bron."
-
-#: airtime_mvc/application/controllers/ApiController.php:698
-#: airtime_mvc/application/controllers/ApiController.php:718
-#: airtime_mvc/application/controllers/ApiController.php:730
+#: airtime_mvc/application/controllers/ScheduleController.php:389
#, php-format
-msgid "File does not exist in %s"
-msgstr "Bestand bestaat niet in %s"
+msgid "Rebroadcast of show %s from %s at %s"
+msgstr "Rebroadcast van show %s van %s in %s"
-#: airtime_mvc/application/controllers/ApiController.php:781
-msgid "Bad request. no 'mode' parameter passed."
-msgstr "Slecht verzoek. geen 'mode' parameter doorgegeven."
-
-#: airtime_mvc/application/controllers/ApiController.php:791
-msgid "Bad request. 'mode' parameter is invalid"
-msgstr "Slecht verzoek. 'mode' parameter is ongeldig"
-
-#: airtime_mvc/application/layouts/scripts/login.phtml:24
-#, php-format
-msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+#: airtime_mvc/application/common/UsabilityHints.php:55
+msgid "Upload some tracks below to add them to your library!"
msgstr ""
+#: airtime_mvc/application/common/UsabilityHints.php:57
+#, php-format
+msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:63
+msgid "Click the 'New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:65
+#, php-format
+msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:73
+msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:75
+#, php-format
+msgid ""
+"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
+" %sCreate an unlinked show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:80
+msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:82
+#, php-format
+msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:89
+msgid "Click on the show starting next and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:91
+#, php-format
+msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/DateHelper.php:213
+#, php-format
+msgid "The year %s must be within the range of 1753 - 9999"
+msgstr "Het jaar %s moet binnen het bereik van 1753-9999"
+
+#: airtime_mvc/application/common/DateHelper.php:216
+#, php-format
+msgid "%s-%s-%s is not a valid date"
+msgstr "%s-%s-%s dit is geen geldige datum"
+
+#: airtime_mvc/application/common/DateHelper.php:240
+#, php-format
+msgid "%s:%s:%s is not a valid time"
+msgstr "%s:%s:%s Dit is geen geldige tijd."
+
+#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
+msgid "Live stream"
+msgstr "Live stream"
+
#: airtime_mvc/application/layouts/scripts/layout.phtml:63
msgid "Smart Block"
msgstr ""
@@ -4085,6 +1889,17 @@ msgstr ""
msgid "Upload"
msgstr ""
+#: airtime_mvc/application/layouts/scripts/layout.phtml:76
+#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
+msgid "Dashboard"
+msgstr ""
+
+#: airtime_mvc/application/layouts/scripts/layout.phtml:84
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
+msgid "Webstreams"
+msgstr ""
+
#: airtime_mvc/application/layouts/scripts/layout.phtml:135
#: airtime_mvc/application/layouts/scripts/layout.phtml:161
msgid "Play"
@@ -4107,416 +1922,2128 @@ msgstr "Set Cue Out"
msgid "Cursor"
msgstr "Cursor"
-#~ msgid "%1$s copyright © %2$s All rights reserved.%3$sMaintained and distributed under the %4$s by %5$s"
-#~ msgstr "%1$s copyright © %2$s Alle rechten voorbehouden. %3$s Maintained en gedistribueerd onder de %4$s door %5$s"
+#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#, php-format
+msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
+msgid "Drop files here or click to browse your computer."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
+msgid "Failed"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
+msgid "Pending"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
+msgid "Recent Uploads"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
+msgid "Share"
+msgstr "Deel"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
+msgid "Select stream:"
+msgstr "Selecteer stream:"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
+msgid "mute"
+msgstr "dempen"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
+msgid "unmute"
+msgstr "microfoon"
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
+msgid "About"
+msgstr "Over"
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
+#, php-format
+msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
+msgstr "%1$s %2$s, de open radio software voor planning en extern beheer van het station."
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
+#, php-format
+msgid "%1$s %2$s is distributed under the %3$s"
+msgstr "%1$s %2$s wordt gedistribueerd onder de %3$s"
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
+#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
+#, php-format
+msgid "Welcome to %s!"
+msgstr "Welkom tot %s!"
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
+#, php-format
+msgid "Here's how you can get started using %s to automate your broadcasts: "
+msgstr "Hier is hoe je kunt krijgen gestart met behulp van %s te automatiseren uw uitzendingen:"
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
+msgid "Upload audio tracks"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
+msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
+msgid "Schedule a show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
+msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
+msgid "Add tracks to your show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
+msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
+msgid "Now you're good to go!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
+#, php-format
+msgid "For more detailed help, read the %suser manual%s."
+msgstr "Voor meer gedetailleerde hulp, lees de %sgebruikershandleiding%s."
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
+#: airtime_mvc/application/configs/navigation.php:40
+msgid "Weekly Schedule"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
+#: airtime_mvc/application/forms/Player.php:77
+msgid "Preview:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
+#: airtime_mvc/application/configs/navigation.php:34
+msgid "Player"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:97
+msgid "Playout History"
+msgstr "Playout geschiedenis"
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
+msgid "Log Sheet"
+msgstr "Log blad"
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
+msgid "File Summary"
+msgstr "Bestand samenvatting"
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
+msgid "Show Summary"
+msgstr "Samenvatting weergeven"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
+msgid "Expand Static Block"
+msgstr "Statisch blok uitbreiden"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
+msgid "Expand Dynamic Block"
+msgstr "Dynamische blok uitbreiden"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
+msgid "Choose some search criteria above and click Generate to create this playlist."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
+msgid "A track list will be generated when you schedule this smart block into a show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
+msgid "Drag tracks here from your library to add them to the playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
+msgid "Editing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:26
+msgid "Name:"
+msgstr "naam"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
+#: airtime_mvc/application/forms/AddShowWhat.php:54
+msgid "Description:"
+msgstr "Omschrijving:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
+#: airtime_mvc/application/forms/AddShowWhen.php:89
+msgid "Duration:"
+msgstr "Looptijd:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
+msgid "Toggle Details"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+msgid "Shuffle playlist"
+msgstr "Shuffle afspeellijst"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
+msgid "Shuffle"
+msgstr "Shuffle"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
+msgid "Playlist crossfade"
+msgstr "Afspeellijst crossfade"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+msgid "Empty playlist content"
+msgstr "Lege afspeellijst inhoud"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Clear"
+msgstr "Wissen"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+msgid "Fade in: "
+msgstr "Fade in:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "Fade out: "
+msgstr "Fade out:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+msgid "Save playlist"
+msgstr "Afspeellijst opslaan"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
+msgid "No open playlist"
+msgstr "Geen open afspeellijst"
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
+msgid "Show Waveform"
+msgstr "Show Waveform"
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "(ss.t)"
+msgstr "(ss.t)"
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Remove all content from this smart block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
+msgid "No smart block currently open"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+msgid "Cue In: "
+msgstr "Cue In:"
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "(hh:mm:ss.t)"
+msgstr "(hh:mm:ss.t)"
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "Cue Out: "
+msgstr "Cue Out:"
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
+msgid "Original Length:"
+msgstr "Oorspronkelijke lengte:"
+
+#: airtime_mvc/application/views/scripts/preference/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:56
+msgid "General"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
+msgid "Stream Settings"
+msgstr "Instellingen voor stream"
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
+msgid "Global"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
+msgid "dB"
+msgstr "dB"
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
+msgid "Output Streams"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:3
+#: airtime_mvc/application/forms/Login.php:83
+msgid "Login"
+msgstr "Inloggen"
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:7
+#, php-format
+msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
+msgstr "Welkom op de %s demo! U kunt zich aanmelden met de gebruikersnaam 'admin' en het wachtwoord 'admin'."
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
+msgid "Email Sent!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
+msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
+msgid "Back"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
+msgid "Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
+msgid "New password"
+msgstr "Nieuw wachtwoord"
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
+msgid "Please enter and confirm your new password in the fields below."
+msgstr "Voer in en bevestig uw nieuwe wachtwoord in de velden hieronder."
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
+msgid "Manage Users"
+msgstr "Gebruikers beheren"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
+msgid "New User"
+msgstr "Nieuwe gebruiker"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
+msgid "id"
+msgstr "id"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
+#: airtime_mvc/application/forms/PasswordRestore.php:25
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
+msgid "Username"
+msgstr "gebuikersnaam"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
+msgid "First Name"
+msgstr "Voornaam"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
+msgid "Last Name"
+msgstr "Achternaam"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
+msgid "User Type"
+msgstr "Gebruikerstype"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
+#, php-format
+msgid "Super Admin details can be changed in your Billing Settings."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
+msgid "Find Shows"
+msgstr "zoek Shows"
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
+msgid "Choose Show Instance"
+msgstr "Kies show exemplaar"
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
+msgid "Find"
+msgstr "Zoeken"
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
+#: airtime_mvc/application/configs/navigation.php:61
+msgid "My Profile"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
+#, php-format
+msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
+msgid "Repeat Days:"
+msgstr "Herhaal dagen:"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
+#: airtime_mvc/application/forms/GeneralPreferences.php:53
+#: airtime_mvc/application/forms/AddShowStyle.php:64
+msgid "Remove"
+msgstr "verwijderen"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
+msgid "Add"
+msgstr "toevoegen"
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
+msgid "Show Source"
+msgstr "Bron weergeven"
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
+msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
+msgid "Register Airtime"
+msgstr "Airtime registreren"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
+#, php-format
+msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
+#, php-format
+msgid "Click the box below to promote your station on %s."
+msgstr "Klik in het vak hieronder om uw station op %s."
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
+msgid "(Required)"
+msgstr "(Vereist)"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
+msgid "(for verification purposes only, will not be published)"
+msgstr "(voor verificatie doeleinden alleen, zal niet worden gepubliceerd)"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
+#: airtime_mvc/application/forms/GeneralPreferences.php:43
+msgid "Note: Anything larger than 600x600 will be resized."
+msgstr "Opmerking: Om het even wat groter zijn dan 600 x 600 zal worden aangepast."
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
+msgid "Show me what I am sending "
+msgstr "Toon mij wat ik ben verzenden"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
+msgid "Terms and Conditions"
+msgstr "Algemene voorwaarden"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
+msgid "Choose Days:"
+msgstr "Kies dagen:"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
+msgid "Search Criteria:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
+msgid "New Criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
+msgid "or"
+msgstr "of"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
+msgid "and"
+msgstr "en"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
+msgid "New Modifier"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
+msgid " to "
+msgstr "tot"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
+msgid "files meet the criteria"
+msgstr "bestanden voldoen aan de criteria"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
+msgid "file meets the criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
+msgid "Filter History"
+msgstr "Filter geschiedenis"
+
+#: airtime_mvc/application/views/scripts/form/login.phtml:41
+msgid "Forgot your password?"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
+msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
+msgstr "(Ter bevordering van uw station, 'Feedback verzenden ondersteuning' moet worden ingeschakeld)."
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
+msgid "Stream "
+msgstr "Stream"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
+msgid "Additional Options"
+msgstr "Extra opties"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
+msgid "The following info will be displayed to listeners in their media player:"
+msgstr "De volgende info worden getoond aan luisteraars in hun mediaspeler"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
+msgid "(Your radio station website)"
+msgstr "(Uw radio station website)"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
+msgid "Stream URL: "
+msgstr "Stream URL:"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
+msgid "Choose folder"
+msgstr "Kies map"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
+msgid "Set"
+msgstr "Instellen"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
+msgid "Current Import Folder:"
+msgstr "Huidige Import map:"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
+#, php-format
+msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
+msgstr "Scannen van gevolgde directory (dit is handig als het netwerk mount is en gesynchroniseerd met %s worden kan)"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
+msgid "Remove watched directory"
+msgstr "gecontroleerde map verwijderen"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
+msgid "You are not watching any media folders."
+msgstr "Niet bekijkt u alle Mediamappen."
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
+msgid "Live Broadcasting"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
+msgid "Master Source"
+msgstr "Master bron"
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
+msgid "Use these settings in your broadcasting software to stream live at any time."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
+msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
+msgid "TuneIn Settings"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
+msgid "SoundCloud Settings"
+msgstr "SoundCloud instellingen"
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
+msgid "Dangerous Options"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Add this show"
+msgstr "Deze show toevoegen"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Update show"
+msgstr "Bijwerken van show"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
+msgid "What"
+msgstr "Wat"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
+msgid "When"
+msgstr "Wanneer"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
+msgid "Live Stream Input"
+msgstr "Live Stream Input"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
+msgid "Who"
+msgstr "Wie"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
+msgid "Style"
+msgstr "Stijl"
+
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
+msgid "Disk Space"
+msgstr "Hardeschijf ruimte"
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:3
+msgid "File import in progress..."
+msgstr "Bestand importeren in vooruitgang..."
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:10
+#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
+msgid "Advanced Search Options"
+msgstr "Geadvanceerde zoek opties"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
+#: airtime_mvc/application/forms/EditAudioMD.php:24
+#: airtime_mvc/application/forms/Player.php:15
+msgid "Title:"
+msgstr "Titel"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
+#: airtime_mvc/application/forms/EditAudioMD.php:34
+msgid "Creator:"
+msgstr "Aangemaakt door"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
+#: airtime_mvc/application/forms/EditAudioMD.php:44
+msgid "Album:"
+msgstr "Album"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
+msgid "Track:"
+msgstr "track"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
+msgid "Length:"
+msgstr "Lengte:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
+msgid "Sample Rate:"
+msgstr "Sample Rate:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
+msgid "Bit Rate:"
+msgstr "Bit Rate:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
+#: airtime_mvc/application/forms/EditAudioMD.php:115
+msgid "Mood:"
+msgstr "Mood:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:45
+#: airtime_mvc/application/forms/EditAudioMD.php:62
+msgid "Genre:"
+msgstr "genre:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
+#: airtime_mvc/application/forms/EditAudioMD.php:72
+msgid "Year:"
+msgstr "Jaar"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
+#: airtime_mvc/application/forms/EditAudioMD.php:85
+msgid "Label:"
+msgstr "label"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
+#: airtime_mvc/application/forms/EditAudioMD.php:125
+msgid "BPM:"
+msgstr "BPM:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
+#: airtime_mvc/application/forms/EditAudioMD.php:95
+msgid "Composer:"
+msgstr "schrijver van een muziekwerk"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
+#: airtime_mvc/application/forms/EditAudioMD.php:105
+msgid "Conductor:"
+msgstr "Conductor:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
+#: airtime_mvc/application/forms/EditAudioMD.php:135
+msgid "Copyright:"
+msgstr "Copyright:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
+msgid "Isrc Number:"
+msgstr "ISRC nummer:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
+#: airtime_mvc/application/forms/EditAudioMD.php:155
+msgid "Website:"
+msgstr "Website:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
+#: airtime_mvc/application/forms/EditAudioMD.php:165
+#: airtime_mvc/application/forms/EditUser.php:119
+#: airtime_mvc/application/forms/Login.php:68
+msgid "Language:"
+msgstr "Taal:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
+msgid "File Path:"
+msgstr "Bestandspad:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
+msgid "Web Stream"
+msgstr "Web Stream"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
+msgid "Dynamic Smart Block"
+msgstr "Dynamische slimme blok"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
+msgid "Static Smart Block"
+msgstr "Statisch slimme blok"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
+msgid "Audio Track"
+msgstr "Audiotrack"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
+msgid "Playlist Contents: "
+msgstr "Inhoud van de afspeellijst:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
+msgid "Static Smart Block Contents: "
+msgstr "Statisch slimme blok inhoud:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
+msgid "Dynamic Smart Block Criteria: "
+msgstr "Dynamische slimme blok Criteria:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
+msgid "Limit to "
+msgstr "Beperken tot"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
+#: airtime_mvc/application/forms/AddShowWhat.php:36
+msgid "URL:"
+msgstr "URL"
+
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
+msgid "Viewing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
+msgid "Listeners"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
+msgid "Stream Data Collection Status"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
+msgid "Your trial expires in"
+msgstr "Uw proefperiode verloopt in"
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
+msgid "days"
+msgstr "dagen"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
+msgid "Previous:"
+msgstr "Vorige:"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
+msgid "Next:"
+msgstr "Volgende:"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
+msgid "Source Streams"
+msgstr "Bron Streams"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
+msgid "ON AIR"
+msgstr "ON AIR"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
+msgid "Listen"
+msgstr "Luister"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
+msgid "Logout"
+msgstr "loguit"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
+msgid "Playout History Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
+msgid "Log Sheet Templates"
+msgstr "Log blad sjablonen"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
+msgid "New Log Sheet Template"
+msgstr "Nieuwe Log werkbladsjabloon"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
+msgid "No Log Sheet Templates"
+msgstr "Geen Log blad sjablonen"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
+msgid "File Summary Templates"
+msgstr "Bestand samenvatting sjablonen"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
+msgid "New File Summary Template"
+msgstr "Nieuwe bestand samenvatting sjabloon"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
+msgid "No File Summary Templates"
+msgstr "Geen bestand samenvatting sjablonen"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
+msgid "Creating File Summary Template"
+msgstr "Bestand samenvatting sjabloon maken"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
+msgid "Creating Log Sheet Template"
+msgstr "Log werkbladsjabloon maken"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
+msgid "Name"
+msgstr "naam"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
+msgid "Add more elements"
+msgstr "Meer elementen toevoegen"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
+msgid "Add New Field"
+msgstr "Nieuw veld toevoegen"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
+msgid "Set Default Template"
+msgstr "Standaardsjabloon"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
+msgid "Description"
+msgstr "Beschrijving"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
+msgid "Stream URL:"
+msgstr "Stream URL:"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
+msgid "Default Length:"
+msgstr "Standaard lengte:"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
+msgid "No webstream"
+msgstr "Geen webstream"
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
+#: airtime_mvc/application/views/scripts/error/error.phtml:6
+msgid "An error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
+msgid "Access Denied!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
+msgid "You do not have permission to access this page!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
+#: airtime_mvc/application/views/scripts/error/error.phtml:14
+#: airtime_mvc/application/configs/navigation.php:143
+msgid "Help"
+msgstr "Help"
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
+msgid "Oops!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
+msgid "Something went wrong!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
+msgid "Bad Request!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
+msgid "The requested action is not supported!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
+msgid "Page not found!"
+msgstr "Pagina niet gevonden!"
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
+msgid "We couldn't find the page you were looking for."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error.phtml:12
+msgid "Looks like the page you were looking for doesn't exist!"
+msgstr "Het lijkt erop dat de pagina die u zocht bestaat niet!"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
+msgid "previous"
+msgstr "vorige"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
+msgid "play"
+msgstr "spelen"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
+msgid "pause"
+msgstr "pauze"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
+msgid "next"
+msgstr "volgende"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
+msgid "stop"
+msgstr "Stop"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
+msgid "max volume"
+msgstr "Max volume"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
+msgid "Update Required"
+msgstr "Update vereist"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
+#, php-format
+msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
+msgstr "Om te spelen de media moet u uw browser bijwerkt naar een recente versie of update uw %sFlash plugin%s."
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
+msgid "Plan type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
+msgid "Billing cycle:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
+msgid "Payment method:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
+msgid "PayPal"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
+msgid "Credit Card via 2Checkout"
+msgstr ""
+
+#: airtime_mvc/application/forms/DateRange.php:16
+#: airtime_mvc/application/forms/ShowBuilder.php:18
+msgid "Date Start:"
+msgstr "datum start"
+
+#: airtime_mvc/application/forms/DateRange.php:35
+#: airtime_mvc/application/forms/DateRange.php:63
+#: airtime_mvc/application/forms/ShowBuilder.php:37
+#: airtime_mvc/application/forms/ShowBuilder.php:65
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
+msgid "Invalid character entered"
+msgstr "Ongeldig teken ingevoerd"
+
+#: airtime_mvc/application/forms/DateRange.php:44
+#: airtime_mvc/application/forms/ShowBuilder.php:46
+#: airtime_mvc/application/forms/AddShowRepeats.php:56
+msgid "Date End:"
+msgstr "datum einde"
+
+#: airtime_mvc/application/forms/ShowBuilder.php:72
+#: airtime_mvc/application/forms/ShowBuilder.php:88
+msgid "Filter by Show"
+msgstr ""
+
+#: airtime_mvc/application/forms/ShowBuilder.php:80
+msgid "All My Shows:"
+msgstr "al mij shows"
+
+#: airtime_mvc/application/forms/AddShowWho.php:10
+msgid "Search Users:"
+msgstr "zoek gebruikers"
+
+#: airtime_mvc/application/forms/AddShowWho.php:24
+msgid "DJs:"
+msgstr "DJs:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:30
+#: airtime_mvc/application/forms/GeneralPreferences.php:25
+#: airtime_mvc/application/forms/SupportSettings.php:18
+msgid "Station Name"
+msgstr "station naam"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:39
+#: airtime_mvc/application/forms/SupportSettings.php:31
+msgid "Phone:"
+msgstr "Telefoon"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:51
+#: airtime_mvc/application/forms/AddUser.php:67
+#: airtime_mvc/application/forms/EditUser.php:83
+#: airtime_mvc/application/forms/SupportSettings.php:43
+msgid "Email:"
+msgstr "e-mail"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:62
+#: airtime_mvc/application/forms/SupportSettings.php:54
+msgid "Station Web Site:"
+msgstr "Station Web Site:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:73
+#: airtime_mvc/application/forms/SupportSettings.php:65
+msgid "Country:"
+msgstr "Land:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:84
+#: airtime_mvc/application/forms/SupportSettings.php:76
+msgid "City:"
+msgstr "plaats"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:96
+#: airtime_mvc/application/forms/SupportSettings.php:88
+msgid "Station Description:"
+msgstr "Beschrijving van het station:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:106
+#: airtime_mvc/application/forms/GeneralPreferences.php:42
+msgid "Station Logo:"
+msgstr "Station Logo:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:126
+#: airtime_mvc/application/forms/SupportSettings.php:108
+#, php-format
+msgid "Promote my station on %s"
+msgstr "Promoot mijn station aan %s"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:151
+#: airtime_mvc/application/forms/SupportSettings.php:120
+#, php-format
+msgid "By checking this box, I agree to %s's %sprivacy policy%s."
+msgstr "Door dit vakje aan, ik ga akkoord met %s's van %s privacy beleid %s"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:169
+#: airtime_mvc/application/forms/SupportSettings.php:143
+msgid "You have to agree to privacy policy."
+msgstr "Je moet eens met privacy policy."
+
+#: airtime_mvc/application/forms/AddShowRR.php:10
+msgid "Record from Line In?"
+msgstr "Opnemen vanaf de lijn In?"
+
+#: airtime_mvc/application/forms/AddShowRR.php:16
+msgid "Rebroadcast?"
+msgstr "Rebroadcast?"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
+#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
+msgid "Value is required and can't be empty"
+msgstr "Waarde is vereist en mag niet leeg zijn"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
+msgid "'%value%' is no valid email address in the basic format local-part@hostname"
+msgstr "'%value%' is geen geldig e-mailadres in de basis formaat lokale-onderdeel @ hostnaam"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
+msgid "'%value%' does not fit the date format '%format%'"
+msgstr "'%value%' past niet in de datumnotatie '%format%'"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
+msgid "'%value%' is less than %min% characters long"
+msgstr "'%value%' is minder dan %min% tekens lang"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
+msgid "'%value%' is more than %max% characters long"
+msgstr "'%value%' is meer dan %max% karakters lang"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
+msgid "'%value%' is not between '%min%' and '%max%', inclusively"
+msgstr "'%value%' is niet tussen '%min%' en '%max%', inclusief"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
+msgid "Passwords do not match"
+msgstr "Wachtwoorden komen niet overeen."
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
+msgid "Day must be specified"
+msgstr "Dag moet worden opgegeven"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
+msgid "Time must be specified"
+msgstr "Tijd moet worden opgegeven"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
+msgid "Must wait at least 1 hour to rebroadcast"
+msgstr "Ten minste 1 uur opnieuw uitzenden moet wachten"
+
+#: airtime_mvc/application/forms/PasswordRestore.php:14
+msgid "Email"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordRestore.php:36
+msgid "Reset password"
+msgstr "Reset wachtwoord"
+
+#: airtime_mvc/application/forms/AddShowWhat.php:30
+msgid "Untitled Show"
+msgstr "Zonder titel show"
+
+#: airtime_mvc/application/forms/AddShowWhat.php:69
+msgid "Instance Description:"
+msgstr ""
+
+#: airtime_mvc/application/forms/DangerousPreferences.php:12
+msgid "Delete All Tracks in Library"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditAudioMD.php:145
+msgid "ISRC Number:"
+msgstr "ISRC nummer:"
+
+#: airtime_mvc/application/forms/EditAudioMD.php:176
+msgid "OK"
+msgstr "Oke"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:33
+msgid "Station Description"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:62
+msgid "Default Crossfade Duration (s):"
+msgstr "Standaardduur Crossfade (s):"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:68
+#: airtime_mvc/application/forms/GeneralPreferences.php:82
+#: airtime_mvc/application/forms/GeneralPreferences.php:96
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
+msgid "Please enter a time in seconds (eg. 0.5)"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:76
+msgid "Default Fade In (s):"
+msgstr "standaard fade in (s):"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:90
+msgid "Default Fade Out (s):"
+msgstr "standaard fade uit (s):"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:102
+msgid "Public Airtime API"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:103
+msgid "Required for embeddable schedule widget."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:105
+msgid "Disabled"
+msgstr "Uitgeschakeld"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:106
+msgid "Enabled"
+msgstr "Ingeschakeld"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:109
+msgid ""
+"Enabling this feature will allow Airtime to provide schedule data\n"
+" to external widgets that can be embedded in your website."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:120
+msgid "Default Language"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:127
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
+msgid "Station Timezone"
+msgstr "station tijdzone"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:134
+msgid "Week Starts On"
+msgstr "Week start aan"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:150
+msgid "Display login button on your Radio Page?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:29
+#: airtime_mvc/application/forms/EditUser.php:37
+#: airtime_mvc/application/forms/Login.php:41
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
+msgid "Username:"
+msgstr "gebuikersnaam"
+
+#: airtime_mvc/application/forms/AddUser.php:38
+#: airtime_mvc/application/forms/EditUser.php:48
+#: airtime_mvc/application/forms/Login.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
+msgid "Password:"
+msgstr "wachtwoord"
+
+#: airtime_mvc/application/forms/AddUser.php:46
+#: airtime_mvc/application/forms/EditUser.php:57
+msgid "Verify Password:"
+msgstr "Wachtwoord verifiëren:"
+
+#: airtime_mvc/application/forms/AddUser.php:55
+#: airtime_mvc/application/forms/EditUser.php:67
+msgid "Firstname:"
+msgstr "voornaam"
+
+#: airtime_mvc/application/forms/AddUser.php:61
+#: airtime_mvc/application/forms/EditUser.php:75
+msgid "Lastname:"
+msgstr "achternaam"
+
+#: airtime_mvc/application/forms/AddUser.php:76
+#: airtime_mvc/application/forms/EditUser.php:94
+msgid "Mobile Phone:"
+msgstr "mobiel nummer"
+
+#: airtime_mvc/application/forms/AddUser.php:82
+#: airtime_mvc/application/forms/EditUser.php:102
+msgid "Skype:"
+msgstr "skype"
+
+#: airtime_mvc/application/forms/AddUser.php:88
+#: airtime_mvc/application/forms/EditUser.php:110
+msgid "Jabber:"
+msgstr "Jabber:"
+
+#: airtime_mvc/application/forms/AddUser.php:95
+msgid "User Type:"
+msgstr "Gebruiker Type :"
+
+#: airtime_mvc/application/forms/AddUser.php:120
+#: airtime_mvc/application/forms/EditUser.php:155
+msgid "Login name is not unique."
+msgstr "Login naam is niet uniek."
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
+msgid "Import Folder:"
+msgstr "mappen importeren"
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
+msgid "Watched Folders:"
+msgstr "Gecontroleerde mappen:"
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
+msgid "Not a valid Directory"
+msgstr "Niet een geldige map"
+
+#: airtime_mvc/application/forms/BillingClient.php:126
+msgid "What is the name of your favorite childhood friend?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:127
+msgid "What school did you attend for sixth grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:128
+msgid "In what city did you meet your spouse/significant other?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:129
+msgid "What street did you live on in third grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:130
+msgid "What is the first name of the boy or girl that you first kissed?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:131
+msgid "In what city or town was your first job?"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
+msgid "Default License:"
+msgstr "Standaard licentie:"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
+msgid "All rights are reserved"
+msgstr "Alle rechten voorbehouden"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
+msgid "The work is in the public domain"
+msgstr "Het werk bestaat uit het publieke domein"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
+msgid "Creative Commons Attribution"
+msgstr "Creatief Commons Attribution"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
+msgid "Creative Commons Attribution Noncommercial"
+msgstr "Creative Commons Attribution Noncommercial"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
+msgid "Creative Commons Attribution No Derivative Works"
+msgstr "Creative Commons Naamsvermelding geen afgeleide werken"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
+msgid "Creative Commons Attribution Share Alike"
+msgstr "Creative Commons Naamsvermelding Gelijk delen"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
+msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
+msgstr "Creative Commons Naamsvermelding nietcommerciële niet afgeleide werken"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
+msgid "Creative Commons Attribution Noncommercial Share Alike"
+msgstr "Creatief Meent Auteursvermelding niet-commerciële Deel Zowel"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
+msgid "Default Sharing Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
+msgid "Public"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
+msgid "Private"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditUser.php:129
+msgid "Interface Timezone:"
+msgstr "Interface tijdzone:"
+
+#: airtime_mvc/application/forms/Player.php:14
+msgid "Now Playing"
+msgstr "Nu spelen"
+
+#: airtime_mvc/application/forms/Player.php:25
+msgid "Select Stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:28
+msgid "Auto detect the most appropriate stream to use."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:29
+msgid "Select a stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:41
+msgid " - Mobile friendly"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:45
+msgid " - The player does not support Opus streams."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:71
+msgid "Embeddable code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:72
+msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
+#: airtime_mvc/application/models/Block.php:1351
+msgid "Select criteria"
+msgstr "Selecteer criteria"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
+#: airtime_mvc/application/models/Block.php:1353
+msgid "Bit Rate (Kbps)"
+msgstr "Bit Rate (kbps)"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
+#: airtime_mvc/application/models/Block.php:1374
+msgid "Sample Rate (kHz)"
+msgstr "Sample Rate (kHz)"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
+msgid "hours"
+msgstr "Uren"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
+msgid "minutes"
+msgstr "minuten"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
+#: airtime_mvc/application/models/Block.php:333
+msgid "items"
+msgstr "artikelen"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
+msgid "Randomly"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
+msgid "Newest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
+msgid "Oldest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
+msgid "Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
+msgid "Static"
+msgstr "status"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
+msgid "Dynamic"
+msgstr "Dynamisch"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
+msgid "Allow Repeated Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
+msgid "Sort Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
+msgid "Limit to:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
+msgid "Generate playlist content and save criteria"
+msgstr "Genereren van inhoud van de afspeellijst en criteria opslaan"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
+msgid "Generate"
+msgstr "Genereren"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
+msgid "Shuffle playlist content"
+msgstr "Shuffle afspeellijst inhoud"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
+msgid "Limit cannot be empty or smaller than 0"
+msgstr "Limiet kan niet leeg zijn of kleiner is dan 0"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
+msgid "Limit cannot be more than 24 hrs"
+msgstr "Limiet mag niet meer dan 24 uur"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
+msgid "The value should be an integer"
+msgstr "De waarde moet een geheel getal"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
+msgid "500 is the max item limit value you can set"
+msgstr "500 is de grenswaarde max object die kunt u instellen"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
+msgid "You must select Criteria and Modifier"
+msgstr "U moet Criteria en Modifier selecteren"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
+msgid "'Length' should be in '00:00:00' format"
+msgstr "'Lengte' moet in ' 00:00:00 ' formaat"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
+msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)"
+msgstr "De waarde moet in timestamp indeling (bijvoorbeeld 0000-00-00 of 0000-00-00 00:00:00)"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:594
+msgid "The value has to be numeric"
+msgstr "De waarde moet worden numerieke"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
+msgid "The value should be less then 2147483648"
+msgstr "De waarde moet minder dan 2147483648"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
+#, php-format
+msgid "The value should be less than %s characters"
+msgstr "De waarde moet kleiner zijn dan %s tekens"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
+msgid "Value cannot be empty"
+msgstr "Waarde kan niet leeg"
+
+#: airtime_mvc/application/forms/StreamSetting.php:26
+msgid "Icecast Vorbis Metadata"
+msgstr "Icecast Vorbis Metadata"
+
+#: airtime_mvc/application/forms/StreamSetting.php:36
+msgid "Stream Label:"
+msgstr "Stream Label:"
+
+#: airtime_mvc/application/forms/StreamSetting.php:37
+msgid "Artist - Title"
+msgstr "Artiest - Titel"
+
+#: airtime_mvc/application/forms/StreamSetting.php:38
+msgid "Show - Artist - Title"
+msgstr "Show - Artiest - titel"
+
+#: airtime_mvc/application/forms/StreamSetting.php:39
+msgid "Station name - Show name"
+msgstr "Station naam - Show naam"
+
+#: airtime_mvc/application/forms/StreamSetting.php:45
+msgid "Off Air Metadata"
+msgstr "Off Air Metadata"
+
+#: airtime_mvc/application/forms/StreamSetting.php:51
+msgid "Enable Replay Gain"
+msgstr "Inschakelen Replay Gain"
+
+#: airtime_mvc/application/forms/StreamSetting.php:57
+msgid "Replay Gain Modifier"
+msgstr "Replay Gain Modifier"
+
+#: airtime_mvc/application/forms/StreamSetting.php:65
+msgid "Streaming Server:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Airtime Pro Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Custom / 3rd Party Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordChange.php:17
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
+msgid "Password"
+msgstr "wachtwoord"
-#~ msgid "Show:"
-#~ msgstr "Show"
+#: airtime_mvc/application/forms/PasswordChange.php:28
+msgid "Confirm new password"
+msgstr "Bevestig nieuw wachtwoord"
-#~ msgid "enter a time in seconds 0{.0}"
-#~ msgstr "Voer een tijd in seconden 0 {.0}"
+#: airtime_mvc/application/forms/PasswordChange.php:36
+msgid "Password confirmation does not match your password."
+msgstr "Wachtwoord bevestiging komt niet overeen met uw wachtwoord."
-#~ msgid "Allow Remote Websites To Access \"Schedule\" Info?%s (Enable this to make front-end widgets work.)"
-#~ msgstr "Toestaan van Websites om RAS \"Schedule\" Info? %s (Schakel dit om front-end widgets werken.)"
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
+msgid "Station Language"
+msgstr ""
-#~ msgid "Default Interface Language"
-#~ msgstr "De taal van de gebruikersinterface van de standaard"
-
-#~ msgid "Get new password"
-#~ msgstr "Nieuw Wachtwoord opvragen"
-
-#~ msgid "Set smart block type:"
-#~ msgstr "Stel slimme blok type:"
-
-#~ msgid "Allow Repeat Tracks:"
-#~ msgstr "Laat Repeat Tracks:"
-
-#~ msgid "Limit to"
-#~ msgstr "Beperken tot"
-
-#~ msgid "Auto Switch Off"
-#~ msgstr "Auto uitschakelen"
-
-#~ msgid "Auto Switch On"
-#~ msgstr "Auto inschakelen"
-
-#~ msgid "Switch Transition Fade (s)"
-#~ msgstr "Schakelaar overgang Fade (s)"
-
-#~ msgid "enter a time in seconds 00{.000000}"
-#~ msgstr "Voer een tijd in seconden 00 {.000000}"
-
-#~ msgid "Master Username"
-#~ msgstr "Master gebruikersnaam"
-
-#~ msgid "Master Password"
-#~ msgstr "Master wachtwoord"
-
-#~ msgid "Master Source Connection URL"
-#~ msgstr "Master bron verbindings URL"
-
-#~ msgid "Show Source Connection URL"
-#~ msgstr "Toon Bron verbinding URL"
-
-#~ msgid "Master Source Port"
-#~ msgstr "Master bron poort"
-
-#~ msgid "Master Source Mount Point"
-#~ msgstr "Master bron koppelpunt"
-
-#~ msgid "Show Source Port"
-#~ msgstr "Toon bron poort"
-
-#~ msgid "Show Source Mount Point"
-#~ msgstr "Toon bron koppel punt"
-
-#~ msgid "You cannot use same port as Master DJ port."
-#~ msgstr "U niet dezelfde poort gebruiken als Master DJ poort."
-
-#~ msgid "Port %s is not available"
-#~ msgstr "Poort %s is niet beschikbaar"
-
-#~ msgid "E-mail"
-#~ msgstr "E-mail"
-
-#~ msgid "Restore password"
-#~ msgstr "Wachtwoord herstellen"
-
-#~ msgid "Hardware Audio Output"
-#~ msgstr "Hardware Audio lijn uit"
-
-#~ msgid "Output Type"
-#~ msgstr "Uitvoer Type"
-
-#~ msgid "Date/Time Start:"
-#~ msgstr "datum/tijd start"
-
-#~ msgid "Date/Time End:"
-#~ msgstr "datum/tijd einde"
-
-#~ msgid "Automatically Upload Recorded Shows"
-#~ msgstr "Automatisch uploaden opgenomen programma 's"
-
-#~ msgid "Enable SoundCloud Upload"
-#~ msgstr "SoundCloud uploaden inschakelen"
-
-#~ msgid "Automatically Mark Files \"Downloadable\" on SoundCloud"
-#~ msgstr "Automatisch markeren bestanden \"Downloadbare\" op SoundCloud"
-
-#~ msgid "SoundCloud Email"
-#~ msgstr "SoundCloud E-mail"
-
-#~ msgid "SoundCloud Password"
-#~ msgstr "SoundCloud wachtwoord"
-
-#~ msgid "SoundCloud Tags: (separate tags with spaces)"
-#~ msgstr "SoundCloud Tags: (tags scheiden met een spatie)"
-
-#~ msgid "Default Genre:"
-#~ msgstr "standaard genre:"
-
-#~ msgid "Default Track Type:"
-#~ msgstr "Standaard Track Type:"
-
-#~ msgid "Original"
-#~ msgstr "Origineel"
-
-#~ msgid "Remix"
-#~ msgstr "Remix"
-
-#~ msgid "Live"
-#~ msgstr "Live"
-
-#~ msgid "Recording"
-#~ msgstr "Opname"
-
-#~ msgid "Spoken"
-#~ msgstr "Mondeling"
-
-#~ msgid "Podcast"
-#~ msgstr "Podcast"
-
-#~ msgid "Demo"
-#~ msgstr "Demo"
-
-#~ msgid "Work in progress"
-#~ msgstr "Werk in uitvoering."
-
-#~ msgid "Stem"
-#~ msgstr "Stem"
-
-#~ msgid "Loop"
-#~ msgstr "Loop"
-
-#~ msgid "Sound Effect"
-#~ msgstr "Geluidseffect"
-
-#~ msgid "One Shot Sample"
-#~ msgstr "een Shot Sample"
-
-#~ msgid "Other"
-#~ msgstr "Anders"
-
-#~ msgid "Enable System Emails (Password Reset)"
-#~ msgstr "Inschakelen systeem E-mails (Reset wachtwoord)"
-
-#~ msgid "Reset Password 'From' Email"
-#~ msgstr "Reset wachtwoord 'Van' E-mail"
-
-#~ msgid "Configure Mail Server"
-#~ msgstr "Configureer Mail Server"
-
-#~ msgid "Requires Authentication"
-#~ msgstr "Is verificatie vereist"
-
-#~ msgid "Mail Server"
-#~ msgstr "Mail Server"
-
-#~ msgid "Email Address"
-#~ msgstr "E-mailadres"
-
-#~ msgid "Please enter your user name and password"
-#~ msgstr "Voer uw gebruikersnaam en wachtwoord"
-
-#~ msgid "Given email not found."
-#~ msgstr "Bepaalde e-mail niet gevonden."
-
-#~ msgid "Page not found"
-#~ msgstr "Pagina niet gevonden"
-
-#~ msgid "Application error"
-#~ msgstr "Applicatiefout"
-
-#~ msgid "Playlist / Block"
-#~ msgstr "playlist / blokken"
-
-#~ msgid "If you change the username or password values for an enabled stream the playout engine will be rebooted and your listeners will hear silence for 5-10 seconds. Changing the following fields will NOT cause a reboot: Stream Label (Global Settings), and Switch Transition Fade(s), Master Username, and Master Password (Input Stream Settings). If Airtime is recording, and if the change causes a playout engine restart, the recording will be interrupted."
-#~ msgstr "Als u de waarden van de gebruikersnaam of het wachtwoord wijzigt voor een ingeschakelde stream de playout motor opnieuw zal worden opgestart en uw luisteraars stilte voor 5-10 seconden zal horen. De volgende velden wijzigen zal niet leiden tot een reboot: Stream Label (algemene instellingen), en Switch overgang Fade(s), Master gebruikersnaam en hoofdwachtwoord (Input Stream instellingen). Als Airtime opneemt, en als de verandering veroorzaakt een playout motor herstart, zal de opname worden onderbroken."
-
-#~ msgid "today"
-#~ msgstr "vandaag"
-
-#~ msgid "day"
-#~ msgstr "dag"
-
-#~ msgid "week"
-#~ msgstr "week"
-
-#~ msgid "month"
-#~ msgstr "maand"
-
-#~ msgid "Remove overbooked tracks"
-#~ msgstr "Verwijderen overboekte tracks"
-
-#~ msgid "Soundcloud"
-#~ msgstr "SoundCloud"
-
-#~ msgid "View on Soundcloud"
-#~ msgstr "Weergave op Soundcloud"
-
-#~ msgid "Re-upload to SoundCloud"
-#~ msgstr "Opnieuw uploaden naar SoundCloud"
-
-#~ msgid "Upload to SoundCloud"
-#~ msgstr "Uploaden naar SoundCloud"
-
-#~ msgid "Could not delete some scheduled files."
-#~ msgstr "Sommige geplande bestanden kan geen gegevens verwijderen."
-
-#~ msgid "Add Media"
-#~ msgstr "Toevoeg Media"
-
-#~ msgid "Library"
-#~ msgstr "Bibliotheek"
-
-#~ msgid "System"
-#~ msgstr "systeem"
-
-#~ msgid "Preferences"
-#~ msgstr "Voorkeuren"
-
-#~ msgid "Media Folders"
-#~ msgstr "media bestanden"
-
-#~ msgid "History"
-#~ msgstr "Historie"
-
-#~ msgid "Service"
-#~ msgstr "Dienst"
-
-#~ msgid "Uptime"
-#~ msgstr "Uptime"
-
-#~ msgid "CPU"
-#~ msgstr "CPU"
-
-#~ msgid "Memory"
-#~ msgstr "Geheugen"
-
-#~ msgid "%s Version"
-#~ msgstr "%s versie"
-
-#~ msgid "Email / Mail Server Settings"
-#~ msgstr "Email / Mail serverinstellingen"
-
-#~ msgid "Connection URL: "
-#~ msgstr "Verbindings URL:"
-
-#~ msgid "Input Stream Settings"
-#~ msgstr "Input Stream instellingen"
-
-#~ msgid "Master Source Connection URL:"
-#~ msgstr "Master bron verbindings URL:"
-
-#~ msgid "Override"
-#~ msgstr "Overschrijven"
-
-#~ msgid "RESET"
-#~ msgstr "RESET"
-
-#~ msgid "Show Source Connection URL:"
-#~ msgstr "Toon bron verbinding URL:"
-
-#~ msgid "Help %1$s improve by letting us know how you are using it. This info will be collected regularly in order to enhance your user experience.%2$sClick 'Yes, help %1$s' and we'll make sure the features you use are constantly improving."
-#~ msgstr "Helpen %1$s verbeteren door ons heeft laten weten hoe u het gebruikt. Deze informatie zal worden verzameld regelmatig teneinde uw gebruiker ervaring.%2$s Click 'Ja, help %1$s' en we zullen ervoor zorgen dat zijn voortdurend verbeteren van de functies die u gebruiken."
-
-#~ msgid "Filter By Show:"
-#~ msgstr "Filter Door Show:"
-
-#~ msgid "%s's Settings"
-#~ msgstr "%s van instellingen"
-
-#~ msgid "Help %s improve by letting %s know how you are using it. This information will be collected regularly in order to enhance your user experience.%sClick the 'Send support feedback' box and we'll make sure the features you use are constantly improving."
-#~ msgstr "Helpen %s verbeteren door te laten %s weten hoe u het gebruikt. Deze informatie zal regelmatig worden verzameld teneinde uw gebruiker ervaring.%s Click die het vak 'Feedback verzenden ondersteuning' en we zullen ervoor zijn voortdurend verbeteren van de functies die u gebruiken."
-
-#~ msgid "Sourcefabric Privacy Policy"
-#~ msgstr "Sourcefabric privacybeleid"
-
-#~ msgid "Smart Block Options"
-#~ msgstr "Slimme blok opties"
-
-#~ msgid "file meet the criteria"
-#~ msgstr "bestand voldoen aan de criteria"
-
-#~ msgid "New"
-#~ msgstr "Nieuw"
-
-#~ msgid "New Playlist"
-#~ msgstr "Nieuwe Playlist"
-
-#~ msgid "New Smart Block"
-#~ msgstr "Nieuw Slim Blok"
-
-#~ msgid "New Webstream"
-#~ msgstr "Nieuwe Webstream"
-
-#~ msgid "View / edit description"
-#~ msgstr "Bekijk / bewerk beschrijving"
-
-#~ msgid "Global Settings"
-#~ msgstr "Globale instellingen"
-
-#~ msgid "Output Stream Settings"
-#~ msgstr "Instellingen voor uitvoerstroom"
-
-#~ msgid "Listener Count Over Time"
-#~ msgstr "Luisteraar Telling Over Time"
-
-#~ msgid "Begin by adding your files to the library using the 'Add Media' menu button. You can drag and drop your files to this window too."
-#~ msgstr "Beginnen door uw bestanden toe te voegen aan de bibliotheek met behulp van de knop 'Media toevoegen' menu. U kunt slepen en neerzetten bestanden naar dit venster ook."
-
-#~ msgid "Create a show by going to 'Calendar' in the menu bar, and then clicking the '+ Show' icon. This can be either a one-time or repeating show. Only admins and program managers can add shows."
-#~ msgstr "Maak een voorstelling door te gaan naar 'Agenda' in de menubalk, en vervolgens te klikken op het pictogram '+ weergeven'. Dit kan een eenmalige of herhalende show. Alleen beheerders en programma managers kunnen toont toevoegen."
-
-#~ msgid "Add media to the show by going to your show in the Schedule calendar, left-clicking on it and selecting 'Add / Remove Content'"
-#~ msgstr "Media toevoegen aan de show door te gaan naar je show in de kalender van de planning, links op het te klikken en te selecteren 'toevoegen / verwijderen inhoud'"
-
-#~ msgid "Select your media from the left pane and drag them to your show in the right pane."
-#~ msgstr "Selecteer uw media in het linkerdeelvenster en sleep ze naar je show in het rechterdeelvenster."
-
-#~ msgid "Then you're good to go!"
-#~ msgstr "Dan bent u goed om te gaan!"
-
-#~ msgid "Please enter your account e-mail address. You will receive a link to create a new password via e-mail."
-#~ msgstr "Voer het e-mailadres van uw account. U ontvangt een link om een nieuw wachtwoord per e-mail."
-
-#~ msgid "Email sent"
-#~ msgstr "E-mail is verzonden"
-
-#~ msgid "An email has been sent"
-#~ msgstr "Een e-mail is verzonden"
-
-#~ msgid "Back to login screen"
-#~ msgstr "Terug naar het inlog scherm"
-
-#~ msgid "Scheduled Play"
-#~ msgstr "Geplande Play"
-
-#~ msgid "Station time"
-#~ msgstr "Station tijd"
-
-#~ msgid "Purchase your copy of %s"
-#~ msgstr "Koop uw kopie van %s"
-
-#~ msgid "Zend Framework Default Application"
-#~ msgstr "Zend Framework standaard toepassing"
-
-#~ msgid "Empty smart block"
-#~ msgstr "Lege slimme blok"
-
-#~ msgid "Empty playlist"
-#~ msgstr "Lege afspeellijst"
-
-#~ msgid "Empty smart block content"
-#~ msgstr "Lege slimme blok inhoud"
-
-#~ msgid "No open smart block"
-#~ msgstr "Geen open slimme blok"
-
-#~ msgid "Record & Rebroadcast"
-#~ msgstr "Record & Rebroadcast"
-
-#~ msgid "Failed to create 'organize' directory."
-#~ msgstr "Is mislukt 'organiseren' map maken."
-
-#~ msgid "The file was not uploaded, there is %s MB of disk space left and the file you are uploading has a size of %s MB."
-#~ msgstr "Het bestand is niet geupload, er is %s MB aan schijfruimte links en het bestand dat u wilt uploaden heeft een grootte van %s MB"
-
-#~ msgid "This file appears to be corrupted and will not be added to media library."
-#~ msgstr "Dit bestand lijkt te worden beschadigd en zal niet worden toegevoegd aan de mediabibliotheek."
-
-#~ msgid "The file was not uploaded, this error can occur if the computer hard drive does not have enough disk space or the stor directory does not have correct write permissions."
-#~ msgstr "Het bestand is niet geupload, deze fout kan optreden als de vaste schijf van de computer niet voldoende schijfruimte hebt of de stor directory heeft geen correcte schrijf-machtigingen nodig."
-
-#~ msgid ""
-#~ "Hi %s, \n"
-#~ "\n"
-#~ "Click this link to reset your password: "
-#~ msgstr ""
-#~ "Hallo %s,\n"
-#~ "\n"
-#~ "klikt u op deze link om uw wachtwoord te resette"
-
-#~ msgid "Show Content"
-#~ msgstr "Inhoud weergeven"
-
-#~ msgid "Remove All Content"
-#~ msgstr "Alle inhoud verwijderen"
-
-#~ msgid "Cancel Current Show"
-#~ msgstr "Annuleren van de huidige Show"
-
-#~ msgid "Edit This Instance"
-#~ msgstr "Dit geval bewerken"
-
-#~ msgid "Delete This Instance"
-#~ msgstr "Dit exemplaar verwijderen"
-
-#~ msgid "Delete This Instance and All Following"
-#~ msgstr "Verwijder dit geval en alle volgende"
-
-#~ msgid "Please selection an option"
-#~ msgstr "Gelieve selectie een optie"
-
-#~ msgid "No Records"
-#~ msgstr "Geen records"
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
+msgid "Enabled:"
+msgstr "Ingeschakeld"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
+msgid "Mobile:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
+msgid "Stream Type:"
+msgstr "Stream Type:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
+msgid "Service Type:"
+msgstr "Service Type:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
+msgid "Channels:"
+msgstr "kanalen:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "1 - Mono"
+msgstr "1- Mono"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "2 - Stereo"
+msgstr "2 - Stereo"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
+msgid "Server"
+msgstr "Server"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
+msgid "Port"
+msgstr "poort"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
+msgid "Only numbers are allowed."
+msgstr "Alleen cijfers zijn toegestaan."
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
+msgid "URL"
+msgstr "URL"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
+msgid "Mount Point"
+msgstr "Aankoppelpunt"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
+msgid "Admin User"
+msgstr "admin gebuiker "
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
+msgid "Admin Password"
+msgstr "admin wachtwoord "
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
+msgid "Server cannot be empty."
+msgstr "Server kan niet leeg zijn"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
+msgid "Port cannot be empty."
+msgstr "poort kan niet leeg zijn"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
+msgid "Mount cannot be empty with Icecast server."
+msgstr "Mount kan niet leeg zijn met Icecast server"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:16
+msgid "'%value%' does not fit the time format 'HH:mm'"
+msgstr "'%value%' past niet de tijdnotatie 'UU:mm'"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:22
+msgid "Start Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:37
+msgid "In the Future:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:64
+msgid "End Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:98
+msgid "Timezone:"
+msgstr "tijdzone:"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:107
+msgid "Repeats?"
+msgstr "herhaalt?"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:139
+msgid "Cannot create show in the past"
+msgstr "kan niet aanmaken show in het verleden weergeven"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:147
+msgid "Cannot modify start date/time of the show that is already started"
+msgstr "Start datum/tijd van de show die is al gestart wijzigen niet"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:156
+#: airtime_mvc/application/models/Show.php:282
+msgid "End date/time cannot be in the past"
+msgstr "Eind datum/tijd mogen niet in het verleden"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:164
+msgid "Cannot have duration < 0m"
+msgstr "Geen duur hebben < 0m"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:168
+msgid "Cannot have duration 00h 00m"
+msgstr "Kan niet hebben duur 00h 00m"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:175
+msgid "Cannot have duration greater than 24h"
+msgstr "Duur groter is dan 24h kan niet hebben"
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:19
+msgid "Push metadata to your station on TuneIn?"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:24
+msgid "Station ID:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:30
+msgid "Partner Key:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:36
+msgid "Partner Id:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:77
+#: airtime_mvc/application/forms/TuneInPreferences.php:86
+msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:10
+#, php-format
+msgid "Use %s Authentication:"
+msgstr "verificatie %s gebruiken:"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:16
+msgid "Use Custom Authentication:"
+msgstr "Gebruik aangepaste verificatie:"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:25
+msgid "Custom Username"
+msgstr "Aangepaste gebruikersnaam"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:37
+msgid "Custom Password"
+msgstr "Aangepaste wachtwoord"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:48
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
+msgid "Host:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
+msgid "Port:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:60
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
+msgid "Mount:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:77
+msgid "Username field cannot be empty."
+msgstr "Veld Gebruikersnaam mag niet leeg."
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:82
+msgid "Password field cannot be empty."
+msgstr "veld wachtwoord mag niet leeg."
+
+#: airtime_mvc/application/forms/AddShowStyle.php:12
+msgid "Background Colour:"
+msgstr "achtergrond kleur"
+
+#: airtime_mvc/application/forms/AddShowStyle.php:31
+msgid "Text Colour:"
+msgstr "tekst kleur"
+
+#: airtime_mvc/application/forms/AddShowStyle.php:49
+msgid "Current Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:72
+msgid "Show Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:87
+msgid "Logo Preview:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Login.php:102
+msgid "Type the characters you see in the picture below."
+msgstr "Typ de tekens die u ziet in de afbeelding hieronder."
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
+msgid "Auto Switch Off:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
+msgid "Auto Switch On:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
+msgid "Switch Transition Fade (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:10
+msgid "Link:"
+msgstr "link"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:16
+msgid "Repeat Type:"
+msgstr "Herhaal Type:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:19
+msgid "weekly"
+msgstr "wekelijks"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:20
+msgid "every 2 weeks"
+msgstr "elke 2 weken"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:21
+msgid "every 3 weeks"
+msgstr "elke 3 weken"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:22
+msgid "every 4 weeks"
+msgstr "elke 4 weken"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:23
+msgid "monthly"
+msgstr "per maand"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:32
+msgid "Select Days:"
+msgstr "Selecteer dagen:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:47
+msgid "Repeat By:"
+msgstr "Herhaal door:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the month"
+msgstr "dag van de maand"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the week"
+msgstr "Dag van de week"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:69
+msgid "No End?"
+msgstr "Geen einde?"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:106
+msgid "End date must be after start date"
+msgstr "Einddatum moet worden na begindatum ligt"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:113
+msgid "Please select a repeat day"
+msgstr "Selecteer een Herhaal dag"
+
+#: airtime_mvc/application/configs/navigation.php:12
+msgid "Radio Page"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:19
+msgid "Calendar"
+msgstr "Calender"
+
+#: airtime_mvc/application/configs/navigation.php:26
+msgid "Widgets"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:48
+msgid "Settings"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:67
+msgid "Users"
+msgstr "gebruikers"
+
+#: airtime_mvc/application/configs/navigation.php:74
+msgid "Streams"
+msgstr "streams"
+
+#: airtime_mvc/application/configs/navigation.php:82
+msgid "Analytics"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:90
+msgid "Listener Stats"
+msgstr "luister status"
+
+#: airtime_mvc/application/configs/navigation.php:104
+msgid "History Templates"
+msgstr "Geschiedenis sjablonen"
+
+#: airtime_mvc/application/configs/navigation.php:113
+msgid "Billing"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:120
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:127
+msgid "Account Details"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:134
+msgid "View Invoices"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:150
+msgid "Getting Started"
+msgstr "Aan de slag"
+
+#: airtime_mvc/application/configs/navigation.php:157
+msgid "FAQ"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:162
+msgid "User Manual"
+msgstr "Gebruikershandleiding"
+
+#: airtime_mvc/application/configs/navigation.php:167
+msgid "File a Support Ticket"
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:833
+#: airtime_mvc/application/models/Playlist.php:812
+msgid "Cue in and cue out are null."
+msgstr "Het Cue in en cue uit null zijn."
+
+#: airtime_mvc/application/models/Block.php:868
+#: airtime_mvc/application/models/Block.php:924
+#: airtime_mvc/application/models/Playlist.php:851
+#: airtime_mvc/application/models/Playlist.php:895
+msgid "Can't set cue out to be greater than file length."
+msgstr "Niet instellen cue uit groter zijn dan de bestandslengte van het"
+
+#: airtime_mvc/application/models/Block.php:879
+#: airtime_mvc/application/models/Block.php:900
+#: airtime_mvc/application/models/Playlist.php:843
+#: airtime_mvc/application/models/Playlist.php:868
+msgid "Can't set cue in to be larger than cue out."
+msgstr "Niet instellen cue in groter dan cue uit."
+
+#: airtime_mvc/application/models/Block.php:935
+#: airtime_mvc/application/models/Playlist.php:887
+msgid "Can't set cue out to be smaller than cue in."
+msgstr "Niet instellen cue uit op kleiner zijn dan het cue in."
+
+#: airtime_mvc/application/models/Block.php:1366
+msgid "Upload Time"
+msgstr ""
+
+#: airtime_mvc/application/models/ShowBuilder.php:212
+#, php-format
+msgid "Rebroadcast of %s from %s"
+msgstr "Rebroadcast van %s van %s"
+
+#: airtime_mvc/application/models/Preference.php:460
+#, php-format
+msgid "Powered by %s"
+msgstr ""
+
+#: airtime_mvc/application/models/Preference.php:588
+msgid "Select Country"
+msgstr "Selecteer land"
+
+#: airtime_mvc/application/models/MusicDir.php:160
+#, php-format
+msgid "%s is already watched."
+msgstr "%s is al bekeken."
+
+#: airtime_mvc/application/models/MusicDir.php:164
+#, php-format
+msgid "%s contains nested watched directory: %s"
+msgstr "%s bevat geneste gevolgde directory: %s"
+
+#: airtime_mvc/application/models/MusicDir.php:168
+#, php-format
+msgid "%s is nested within existing watched directory: %s"
+msgstr "%s wordt genest binnen de bestaande gecontroleerde map: %s"
+
+#: airtime_mvc/application/models/MusicDir.php:189
+#: airtime_mvc/application/models/MusicDir.php:370
+#, php-format
+msgid "%s is not a valid directory."
+msgstr "%s is niet een geldige directory."
+
+#: airtime_mvc/application/models/MusicDir.php:232
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list"
+msgstr "%s is al ingesteld als de huidige opslag dir of in de lijst van gecontroleerde mappen"
+
+#: airtime_mvc/application/models/MusicDir.php:388
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list."
+msgstr "%s is al ingesteld als de huidige opslag dir of in de lijst van gecontroleerde mappen."
+
+#: airtime_mvc/application/models/MusicDir.php:431
+#, php-format
+msgid "%s doesn't exist in the watched list."
+msgstr "%s bestaat niet in de lijst met gevolgde."
+
+#: airtime_mvc/application/models/Auth.php:33
+#, php-format
+msgid ""
+"Hi %s, \n"
+"\n"
+"Please click this link to reset your password: "
+msgstr ""
+
+#: airtime_mvc/application/models/Auth.php:38
+#, php-format
+msgid "%s Password Reset"
+msgstr "%s wachtwoord Reset"
+
+#: airtime_mvc/application/models/Show.php:184
+msgid "Shows can have a max length of 24 hours."
+msgstr "Shows kunnen hebben een maximale lengte van 24 uur."
+
+#: airtime_mvc/application/models/Show.php:293
+msgid ""
+"Cannot schedule overlapping shows.\n"
+"Note: Resizing a repeating show affects all of its repeats."
+msgstr ""
+"Niet gepland overlappende shows.\n"
+"Opmerking: vergroten/verkleinen een herhalende show heeft invloed op alle van de herhalingen."
+
+#: airtime_mvc/application/models/Scheduler.php:73
+msgid "Cannot move items out of linked shows"
+msgstr "Items uit gekoppelde toont kan niet verplaatsen"
+
+#: airtime_mvc/application/models/Scheduler.php:119
+msgid "The schedule you're viewing is out of date! (sched mismatch)"
+msgstr "Het schema dat u aan het bekijken bent is verouderd! (geplande wanverhouding)"
+
+#: airtime_mvc/application/models/Scheduler.php:124
+msgid "The schedule you're viewing is out of date! (instance mismatch)"
+msgstr "Het schema dat u aan het bekijken bent is verouderd! (exemplaar wanverhouding)"
+
+#: airtime_mvc/application/models/Scheduler.php:132
+#: airtime_mvc/application/models/Scheduler.php:458
+#: airtime_mvc/application/models/Scheduler.php:490
+msgid "The schedule you're viewing is out of date!"
+msgstr "Het schema dat u aan het bekijken bent is verouderd!"
+
+#: airtime_mvc/application/models/Scheduler.php:142
+#, php-format
+msgid "You are not allowed to schedule show %s."
+msgstr "U zijn niet toegestaan om te plannen show %s."
+
+#: airtime_mvc/application/models/Scheduler.php:146
+msgid "You cannot add files to recording shows."
+msgstr "U kunt bestanden toevoegen aan het opnemen van programma's."
+
+#: airtime_mvc/application/models/Scheduler.php:152
+#, php-format
+msgid "The show %s is over and cannot be scheduled."
+msgstr "De show %s is voorbij en kan niet worden gepland."
+
+#: airtime_mvc/application/models/Scheduler.php:159
+#, php-format
+msgid "The show %s has been previously updated!"
+msgstr "De show %s heeft al eerder zijn bijgewerkt!"
+
+#: airtime_mvc/application/models/Scheduler.php:178
+msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
+msgstr "Inhoud in gekoppelde shows moet worden gepland vóór of na een een wordt uitgezonden"
+
+#: airtime_mvc/application/models/Scheduler.php:195
+msgid "Cannot schedule a playlist that contains missing files."
+msgstr "Niet gepland een afspeellijst die ontbrekende bestanden bevat."
+
+#: airtime_mvc/application/models/Scheduler.php:216
+#: airtime_mvc/application/models/Scheduler.php:305
+msgid "A selected File does not exist!"
+msgstr "Een geselecteerd bestand bestaat niet!"
+
+#: airtime_mvc/application/models/Schedule.php:206
+msgid "livestream"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:166
+msgid "Length needs to be greater than 0 minutes"
+msgstr "Lengte moet groter zijn dan 0 minuten"
+
+#: airtime_mvc/application/models/Webstream.php:171
+msgid "Length should be of form \"00h 00m\""
+msgstr "Length should be of form \"00h 00m\""
+
+#: airtime_mvc/application/models/Webstream.php:184
+msgid "URL should be of form \"http://domain\""
+msgstr "URL should be of form \"http://domain\""
+
+#: airtime_mvc/application/models/Webstream.php:187
+msgid "URL should be 512 characters or less"
+msgstr "URL moet 512 tekens of minder"
+
+#: airtime_mvc/application/models/Webstream.php:193
+msgid "No MIME type found for webstream."
+msgstr "Geen MIME-type gevonden voor webstream."
+
+#: airtime_mvc/application/models/Webstream.php:209
+msgid "Webstream name cannot be empty"
+msgstr "Webstream naam mag niet leeg zijn"
+
+#: airtime_mvc/application/models/Webstream.php:278
+msgid "Could not parse XSPF playlist"
+msgstr "Could not parse XSPF playlist"
+
+#: airtime_mvc/application/models/Webstream.php:298
+msgid "Could not parse PLS playlist"
+msgstr "Kon niet ontleden PLS afspeellijst"
+
+#: airtime_mvc/application/models/Webstream.php:318
+msgid "Could not parse M3U playlist"
+msgstr "Kon niet ontleden M3U playlist"
+
+#: airtime_mvc/application/models/Webstream.php:332
+msgid "Invalid webstream - This appears to be a file download."
+msgstr "Ongeldige webstream - dit lijkt te zijn een bestand te downloaden."
+
+#: airtime_mvc/application/models/Webstream.php:336
+#, php-format
+msgid "Unrecognized stream type: %s"
+msgstr "Niet herkende type stream: %s"
+
+#: airtime_mvc/public/setup/rabbitmq-setup.php:78
+msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
+msgstr ""
+
+#~ msgid "My Account"
+#~ msgstr "Mijn account"
diff --git a/airtime_mvc/locale/nl_NL/LC_MESSAGES/pro.po b/airtime_mvc/locale/nl_NL/LC_MESSAGES/pro.po
index 866ee0acb..f59b52c3d 100644
--- a/airtime_mvc/locale/nl_NL/LC_MESSAGES/pro.po
+++ b/airtime_mvc/locale/nl_NL/LC_MESSAGES/pro.po
@@ -1,3 +1,139 @@
+#: airtime_mvc/application/controllers/LoginController.php:170
+#, php-format
+msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
+#, php-format
+msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
+#, php-format
+msgid "If you are the primary owner of this station, please reset your password here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
+msgid "Thank you!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
+msgid "Your station has been upgraded successfully."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
+msgid "Return to Airtime"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+#, php-format
+msgid "Purchase an %s plan!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+msgid "My Account"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
+msgid "Upgrade today to get more listeners and storage space!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
+msgid "View Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:257
+msgid "Your Current Plan:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:291
+msgid "Please enter your payment details:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
+msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
+msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:17
+msgid "First Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:26
+msgid "Last Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:35
+msgid "Company Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:44
+msgid "Email Address:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:54
+msgid "Address 1:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:63
+msgid "Address 2:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:70
+msgid "City:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:80
+msgid "State/Region:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:89
+msgid "Zip Code / Postal Code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:102
+msgid "Country:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:112
+msgid "Phone Number:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:121
+msgid "Please choose a security question:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:135
+msgid "Please enter an answer:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:152
+msgid "VAT/Tax ID (EU only)"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:162
+msgid "Subscribe to Sourcefabric newsletter"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:172
+msgid "Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:181
+msgid "Verify Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:193
+msgid "Save"
+msgstr ""
+
#: airtime_mvc/application/models/Auth.php:35
#, php-format
msgid ""
@@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
-msgid "Thank you!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
-msgid "Your station has been upgraded successfully."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
-msgid "Return to Airtime"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
-#, php-format
-msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
-msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
-msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
-#, php-format
-msgid "If you are the primary owner of this station, please reset your password here."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:170
-#, php-format
-msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
-msgstr ""
diff --git a/airtime_mvc/locale/pl_PL/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/pl_PL/LC_MESSAGES/airtime.mo
index 09046c0fa..7b1dda920 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 6bfa0b919..2a4c6057d 100644
--- a/airtime_mvc/locale/pl_PL/LC_MESSAGES/airtime.po
+++ b/airtime_mvc/locale/pl_PL/LC_MESSAGES/airtime.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Airtime\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-09-03 10:24-0400\n"
-"PO-Revision-Date: 2015-07-08 02:34+0000\n"
-"Last-Translator: thedead4fun \n"
+"POT-Creation-Date: 2015-09-04 11:17-0400\n"
+"PO-Revision-Date: 2015-09-04 08:15+0000\n"
+"Last-Translator: Daniel James \n"
"Language-Team: Polish (Poland) (http://www.transifex.com/sourcefabric/airtime/language/pl_PL/)\n"
"Language: pl_PL\n"
"MIME-Version: 1.0\n"
@@ -19,132 +19,6 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-#: airtime_mvc/public/setup/rabbitmq-setup.php:78
-msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1117
-#: airtime_mvc/application/services/HistoryService.php:1157
-#: airtime_mvc/application/services/HistoryService.php:1174
-#: airtime_mvc/application/models/Block.php:1375
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
-#: airtime_mvc/application/controllers/LocaleController.php:76
-msgid "Title"
-msgstr "Tytuł"
-
-#: airtime_mvc/application/services/HistoryService.php:1118
-#: airtime_mvc/application/services/HistoryService.php:1158
-#: airtime_mvc/application/services/HistoryService.php:1175
-#: airtime_mvc/application/models/Block.php:1360
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
-#: airtime_mvc/application/controllers/LocaleController.php:77
-msgid "Creator"
-msgstr "Twórca"
-
-#: airtime_mvc/application/services/HistoryService.php:1119
-#: airtime_mvc/application/models/Block.php:1352
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
-#: airtime_mvc/application/controllers/LocaleController.php:78
-msgid "Album"
-msgstr "Album"
-
-#: airtime_mvc/application/services/HistoryService.php:1120
-#: airtime_mvc/application/services/HistoryService.php:1177
-#: airtime_mvc/application/models/Block.php:1369
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
-#: airtime_mvc/application/controllers/LocaleController.php:91
-msgid "Length"
-msgstr "Długość"
-
-#: airtime_mvc/application/services/HistoryService.php:1121
-#: airtime_mvc/application/models/Block.php:1362
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
-#: airtime_mvc/application/controllers/LocaleController.php:85
-msgid "Genre"
-msgstr "Gatunek"
-
-#: airtime_mvc/application/services/HistoryService.php:1122
-#: airtime_mvc/application/models/Block.php:1371
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
-#: airtime_mvc/application/controllers/LocaleController.php:93
-msgid "Mood"
-msgstr "Nastrój"
-
-#: airtime_mvc/application/services/HistoryService.php:1123
-#: airtime_mvc/application/models/Block.php:1364
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
-#: airtime_mvc/application/controllers/LocaleController.php:87
-msgid "Label"
-msgstr "Wydawnictwo"
-
-#: airtime_mvc/application/services/HistoryService.php:1124
-#: airtime_mvc/application/services/HistoryService.php:1178
-#: airtime_mvc/application/models/Block.php:1355
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
-#: airtime_mvc/application/controllers/LocaleController.php:81
-msgid "Composer"
-msgstr "Kompozytor"
-
-#: airtime_mvc/application/services/HistoryService.php:1125
-#: airtime_mvc/application/models/Block.php:1363
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
-#: airtime_mvc/application/controllers/LocaleController.php:86
-msgid "ISRC"
-msgstr "ISRC"
-
-#: airtime_mvc/application/services/HistoryService.php:1126
-#: airtime_mvc/application/services/HistoryService.php:1179
-#: airtime_mvc/application/models/Block.php:1357
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
-#: airtime_mvc/application/controllers/LocaleController.php:83
-msgid "Copyright"
-msgstr "Prawa autorskie"
-
-#: airtime_mvc/application/services/HistoryService.php:1127
-#: airtime_mvc/application/models/Block.php:1379
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
-#: airtime_mvc/application/controllers/LocaleController.php:100
-msgid "Year"
-msgstr "Rok"
-
-#: airtime_mvc/application/services/HistoryService.php:1128
-msgid "Track"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1129
-#: airtime_mvc/application/models/Block.php:1356
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
-#: airtime_mvc/application/controllers/LocaleController.php:82
-msgid "Conductor"
-msgstr "Dyrygent/Pod batutą"
-
-#: airtime_mvc/application/services/HistoryService.php:1130
-#: airtime_mvc/application/models/Block.php:1365
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
-#: airtime_mvc/application/controllers/LocaleController.php:88
-msgid "Language"
-msgstr "Język"
-
-#: airtime_mvc/application/services/HistoryService.php:1155
-#: airtime_mvc/application/forms/EditHistoryItem.php:32
-msgid "Start Time"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1156
-#: airtime_mvc/application/forms/EditHistoryItem.php:44
-msgid "End Time"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1176
-msgid "Played"
-msgstr "Odtwarzane"
-
#: airtime_mvc/application/services/CalendarService.php:50
msgid "Record file doesn't exist"
msgstr ""
@@ -240,2604 +114,381 @@ msgstr "Audycja została usunięta, ponieważ nagranie nie istnieje!"
msgid "Must wait 1 hour to rebroadcast."
msgstr "Należy odczekać 1 godzinę przed ponownym odtworzeniem."
-#: airtime_mvc/application/models/Schedule.php:206
-msgid "livestream"
+#: airtime_mvc/application/services/HistoryService.php:1117
+#: airtime_mvc/application/services/HistoryService.php:1157
+#: airtime_mvc/application/services/HistoryService.php:1174
+#: airtime_mvc/application/controllers/LocaleController.php:76
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
+#: airtime_mvc/application/models/Block.php:1375
+msgid "Title"
+msgstr "Tytuł"
+
+#: airtime_mvc/application/services/HistoryService.php:1118
+#: airtime_mvc/application/services/HistoryService.php:1158
+#: airtime_mvc/application/services/HistoryService.php:1175
+#: airtime_mvc/application/controllers/LocaleController.php:77
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
+#: airtime_mvc/application/models/Block.php:1360
+msgid "Creator"
+msgstr "Twórca"
+
+#: airtime_mvc/application/services/HistoryService.php:1119
+#: airtime_mvc/application/controllers/LocaleController.php:78
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
+#: airtime_mvc/application/models/Block.php:1352
+msgid "Album"
+msgstr "Album"
+
+#: airtime_mvc/application/services/HistoryService.php:1120
+#: airtime_mvc/application/services/HistoryService.php:1177
+#: airtime_mvc/application/controllers/LocaleController.php:91
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
+#: airtime_mvc/application/models/Block.php:1369
+msgid "Length"
+msgstr "Długość"
+
+#: airtime_mvc/application/services/HistoryService.php:1121
+#: airtime_mvc/application/controllers/LocaleController.php:85
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
+#: airtime_mvc/application/models/Block.php:1362
+msgid "Genre"
+msgstr "Gatunek"
+
+#: airtime_mvc/application/services/HistoryService.php:1122
+#: airtime_mvc/application/controllers/LocaleController.php:93
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
+#: airtime_mvc/application/models/Block.php:1371
+msgid "Mood"
+msgstr "Nastrój"
+
+#: airtime_mvc/application/services/HistoryService.php:1123
+#: airtime_mvc/application/controllers/LocaleController.php:87
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
+#: airtime_mvc/application/models/Block.php:1364
+msgid "Label"
+msgstr "Wydawnictwo"
+
+#: airtime_mvc/application/services/HistoryService.php:1124
+#: airtime_mvc/application/services/HistoryService.php:1178
+#: airtime_mvc/application/controllers/LocaleController.php:81
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
+#: airtime_mvc/application/models/Block.php:1355
+msgid "Composer"
+msgstr "Kompozytor"
+
+#: airtime_mvc/application/services/HistoryService.php:1125
+#: airtime_mvc/application/controllers/LocaleController.php:86
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
+#: airtime_mvc/application/models/Block.php:1363
+msgid "ISRC"
+msgstr "ISRC"
+
+#: airtime_mvc/application/services/HistoryService.php:1126
+#: airtime_mvc/application/services/HistoryService.php:1179
+#: airtime_mvc/application/controllers/LocaleController.php:83
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
+#: airtime_mvc/application/models/Block.php:1357
+msgid "Copyright"
+msgstr "Prawa autorskie"
+
+#: airtime_mvc/application/services/HistoryService.php:1127
+#: airtime_mvc/application/controllers/LocaleController.php:100
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
+#: airtime_mvc/application/models/Block.php:1379
+msgid "Year"
+msgstr "Rok"
+
+#: airtime_mvc/application/services/HistoryService.php:1128
+msgid "Track"
msgstr ""
-#: airtime_mvc/application/models/ShowBuilder.php:212
-#, php-format
-msgid "Rebroadcast of %s from %s"
-msgstr "Retransmisja z %s do %s"
+#: airtime_mvc/application/services/HistoryService.php:1129
+#: airtime_mvc/application/controllers/LocaleController.php:82
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
+#: airtime_mvc/application/models/Block.php:1356
+msgid "Conductor"
+msgstr "Dyrygent/Pod batutą"
-#: airtime_mvc/application/models/Webstream.php:166
-msgid "Length needs to be greater than 0 minutes"
-msgstr "Długość musi być większa niż 0 minut"
+#: airtime_mvc/application/services/HistoryService.php:1130
+#: airtime_mvc/application/controllers/LocaleController.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
+#: airtime_mvc/application/models/Block.php:1365
+msgid "Language"
+msgstr "Język"
-#: airtime_mvc/application/models/Webstream.php:171
-msgid "Length should be of form \"00h 00m\""
-msgstr "Długość powinna mieć postać \"00h 00m\""
-
-#: airtime_mvc/application/models/Webstream.php:184
-msgid "URL should be of form \"http://domain\""
-msgstr "URL powinien mieć postać \"http://domain\""
-
-#: airtime_mvc/application/models/Webstream.php:187
-msgid "URL should be 512 characters or less"
-msgstr "URL powinien mieć 512 znaków lub mniej"
-
-#: airtime_mvc/application/models/Webstream.php:193
-msgid "No MIME type found for webstream."
-msgstr "Nie znaleziono typu MIME dla webstreamu"
-
-#: airtime_mvc/application/models/Webstream.php:209
-msgid "Webstream name cannot be empty"
-msgstr "Nazwa webstreamu nie może być pusta"
-
-#: airtime_mvc/application/models/Webstream.php:278
-msgid "Could not parse XSPF playlist"
-msgstr "Nie można przeanalizować playlisty XSPF"
-
-#: airtime_mvc/application/models/Webstream.php:298
-msgid "Could not parse PLS playlist"
-msgstr "Nie można przeanalizować playlisty PLS"
-
-#: airtime_mvc/application/models/Webstream.php:318
-msgid "Could not parse M3U playlist"
-msgstr "Nie można przeanalizować playlisty M3U"
-
-#: airtime_mvc/application/models/Webstream.php:332
-msgid "Invalid webstream - This appears to be a file download."
-msgstr "Nieprawidłowy webstream, prawdopodobnie trwa pobieranie pliku."
-
-#: airtime_mvc/application/models/Webstream.php:336
-#, php-format
-msgid "Unrecognized stream type: %s"
-msgstr "Nie rozpoznano typu strumienia: %s"
-
-#: airtime_mvc/application/models/Preference.php:460
-#, php-format
-msgid "Powered by %s"
+#: airtime_mvc/application/services/HistoryService.php:1155
+#: airtime_mvc/application/forms/EditHistoryItem.php:32
+msgid "Start Time"
msgstr ""
-#: airtime_mvc/application/models/Preference.php:588
-msgid "Select Country"
-msgstr "Wybierz kraj"
+#: airtime_mvc/application/services/HistoryService.php:1156
+#: airtime_mvc/application/forms/EditHistoryItem.php:44
+msgid "End Time"
+msgstr ""
-#: airtime_mvc/application/models/MusicDir.php:160
+#: airtime_mvc/application/services/HistoryService.php:1176
+msgid "Played"
+msgstr "Odtwarzane"
+
+#: airtime_mvc/application/controllers/LibraryController.php:31
+#: airtime_mvc/application/controllers/PlaylistController.php:147
#, php-format
-msgid "%s is already watched."
-msgstr "%s jest już obserwowny."
+msgid "%s not found"
+msgstr "nie znaleziono %s"
-#: airtime_mvc/application/models/MusicDir.php:164
+#: airtime_mvc/application/controllers/LibraryController.php:40
+#: airtime_mvc/application/controllers/PlaylistController.php:168
+msgid "Something went wrong."
+msgstr "Wystapił błąd"
+
+#: airtime_mvc/application/controllers/LibraryController.php:95
+#: airtime_mvc/application/controllers/ShowbuilderController.php:136
+msgid "Preview"
+msgstr "Podgląd"
+
+#: airtime_mvc/application/controllers/LibraryController.php:115
+#: airtime_mvc/application/controllers/LibraryController.php:177
+#: airtime_mvc/application/controllers/LibraryController.php:200
+msgid "Add to Playlist"
+msgstr "Dodaj do listy odtwarzania"
+
+#: airtime_mvc/application/controllers/LibraryController.php:117
+msgid "Add to Smart Block"
+msgstr "Dodaj do smartblocku"
+
+#: airtime_mvc/application/controllers/LibraryController.php:123
+#: airtime_mvc/application/controllers/LocaleController.php:66
+msgid "Edit Metadata"
+msgstr "Edytuj Metadane."
+
+#: airtime_mvc/application/controllers/LibraryController.php:131
+#: airtime_mvc/application/controllers/ScheduleController.php:712
+msgid "Download"
+msgstr "Pobierz"
+
+#: airtime_mvc/application/controllers/LibraryController.php:147
+msgid "View track"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:148
+msgid "Remove track"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:154
+#: airtime_mvc/application/controllers/LibraryController.php:159
+msgid "Upload track"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:169
+msgid "Duplicate Playlist"
+msgstr "Skopiuj listę odtwarzania"
+
+#: airtime_mvc/application/controllers/LibraryController.php:213
+msgid "No action available"
+msgstr "Brak dostepnych czynności"
+
+#: airtime_mvc/application/controllers/LibraryController.php:233
+msgid "You don't have permission to delete selected items."
+msgstr "Nie masz uprawnień do usunięcia wybranych elementów"
+
+#: airtime_mvc/application/controllers/LibraryController.php:279
+msgid "Could not delete file because it is scheduled in the future."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:282
+msgid "Could not delete file(s)."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:322
#, php-format
-msgid "%s contains nested watched directory: %s"
-msgstr "%s zawiera obserwowany katalog zagnieżdzony: %s"
+msgid "Copy of %s"
+msgstr "Kopia %s"
-#: airtime_mvc/application/models/MusicDir.php:168
-#, php-format
-msgid "%s is nested within existing watched directory: %s"
-msgstr "%s jest zagnieżdzony w istniejącym, aktualnie obserwowanym katalogu: %s"
+#: airtime_mvc/application/controllers/WebstreamController.php:28
+#: airtime_mvc/application/controllers/WebstreamController.php:32
+msgid "Untitled Webstream"
+msgstr "Webstream bez nazwy"
-#: airtime_mvc/application/models/MusicDir.php:189
-#: airtime_mvc/application/models/MusicDir.php:370
-#, php-format
-msgid "%s is not a valid directory."
-msgstr "%s nie jest poprawnym katalogiem."
+#: airtime_mvc/application/controllers/WebstreamController.php:150
+msgid "Webstream saved."
+msgstr "Zapisano webstream"
-#: airtime_mvc/application/models/MusicDir.php:232
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list"
-msgstr "%s jest już ustawiony jako katalog główny bądź znajduje się na liście katalogów obserwowanych"
+#: airtime_mvc/application/controllers/WebstreamController.php:158
+msgid "Invalid form values."
+msgstr "Nieprawidłowe wartości formularzy"
-#: airtime_mvc/application/models/MusicDir.php:388
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list."
-msgstr "%s jest już ustawiony jako katalog główny bądź znajduje się na liście katalogów obserwowanych."
-
-#: airtime_mvc/application/models/MusicDir.php:431
-#, php-format
-msgid "%s doesn't exist in the watched list."
-msgstr "%s nie występuje na liście katalogów obserwowanych."
-
-#: airtime_mvc/application/models/Show.php:184
-msgid "Shows can have a max length of 24 hours."
-msgstr "Audycje mogą mieć maksymalną długość 24 godzin."
-
-#: airtime_mvc/application/models/Show.php:282
-#: airtime_mvc/application/forms/AddShowWhen.php:156
-msgid "End date/time cannot be in the past"
-msgstr "Data lub czas zakończenia nie może być z przeszłości."
-
-#: airtime_mvc/application/models/Show.php:293
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
msgid ""
-"Cannot schedule overlapping shows.\n"
-"Note: Resizing a repeating show affects all of its repeats."
+"To configure and use the embeddable player you must:
\n"
+" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
+" 2. Enable the Public Airtime API under System -> Preferences"
msgstr ""
-"Nie można planować audycji nakładających się na siebie.\n"
-"Uwaga: zmiana audycji powoduje automatyczną zmianę wszystkich jej powtórzeń."
-#: airtime_mvc/application/models/Auth.php:33
-#, php-format
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
msgid ""
-"Hi %s, \n"
-"\n"
-"Please click this link to reset your password: "
+"To use the embeddable weekly schedule widget you must:
\n"
+" Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/models/Auth.php:38
+#: airtime_mvc/application/controllers/ListenerstatController.php:51
+msgid "Please make sure admin user/password is correct on System->Streams page."
+msgstr "Upewnij się, że nazwa użytkownika i hasło są poprawne w System->Strumienie."
+
+#: airtime_mvc/application/controllers/UserController.php:86
+msgid "User added successfully!"
+msgstr "Użytkownik został dodany poprawnie!"
+
+#: airtime_mvc/application/controllers/UserController.php:88
+msgid "User updated successfully!"
+msgstr "Użytkownik został poprawnie zaktualizowany!"
+
+#: airtime_mvc/application/controllers/UserController.php:187
+msgid "Settings updated successfully!"
+msgstr "Ustawienia zostały poprawnie zaktualizowane!"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:53
#, php-format
-msgid "%s Password Reset"
-msgstr ""
+msgid "You are viewing an older version of %s"
+msgstr "Przeglądasz starszą wersję %s"
-#: airtime_mvc/application/models/Block.php:333
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
-msgid "items"
-msgstr "elementy"
+#: airtime_mvc/application/controllers/PlaylistController.php:140
+msgid "You cannot add tracks to dynamic blocks."
+msgstr "Nie można dodać ścieżek do bloków dynamicznych"
-#: airtime_mvc/application/models/Block.php:833
-#: airtime_mvc/application/models/Playlist.php:812
-msgid "Cue in and cue out are null."
-msgstr "Cue-in i cue-out mają wartość zerową."
-
-#: airtime_mvc/application/models/Block.php:868
-#: airtime_mvc/application/models/Block.php:924
-#: airtime_mvc/application/models/Playlist.php:851
-#: airtime_mvc/application/models/Playlist.php:895
-msgid "Can't set cue out to be greater than file length."
-msgstr "Wartość cue-out nie może być większa niż długość pliku."
-
-#: airtime_mvc/application/models/Block.php:879
-#: airtime_mvc/application/models/Block.php:900
-#: airtime_mvc/application/models/Playlist.php:843
-#: airtime_mvc/application/models/Playlist.php:868
-msgid "Can't set cue in to be larger than cue out."
-msgstr "Wartość cue-in nie może być większa niż cue-out."
-
-#: airtime_mvc/application/models/Block.php:935
-#: airtime_mvc/application/models/Playlist.php:887
-msgid "Can't set cue out to be smaller than cue in."
-msgstr "Wartość cue-out nie może być mniejsza od cue-in."
-
-#: airtime_mvc/application/models/Block.php:1351
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
-msgid "Select criteria"
-msgstr "Wybierz kryteria"
-
-#: airtime_mvc/application/models/Block.php:1353
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
-msgid "Bit Rate (Kbps)"
-msgstr "Bit Rate (Kbps)"
-
-#: airtime_mvc/application/models/Block.php:1354
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
-#: airtime_mvc/application/controllers/LocaleController.php:80
-msgid "BPM"
-msgstr "BPM"
-
-#: airtime_mvc/application/models/Block.php:1358
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
-#: airtime_mvc/application/controllers/LocaleController.php:281
-#: airtime_mvc/application/layouts/scripts/layout.phtml:140
-msgid "Cue In"
-msgstr "Cue In"
-
-#: airtime_mvc/application/models/Block.php:1359
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:282
-#: airtime_mvc/application/layouts/scripts/layout.phtml:147
-msgid "Cue Out"
-msgstr "Cue out"
-
-#: airtime_mvc/application/models/Block.php:1361
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
-#: airtime_mvc/application/controllers/LocaleController.php:84
-msgid "Encoded By"
-msgstr "Kodowane przez"
-
-#: airtime_mvc/application/models/Block.php:1366
-msgid "Upload Time"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1367
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
-#: airtime_mvc/application/controllers/LocaleController.php:89
-msgid "Last Modified"
-msgstr "Ostatnio zmodyfikowany"
-
-#: airtime_mvc/application/models/Block.php:1368
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
-#: airtime_mvc/application/controllers/LocaleController.php:90
-msgid "Last Played"
-msgstr "Ostatnio odtwarzany"
-
-#: airtime_mvc/application/models/Block.php:1370
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
-#: airtime_mvc/application/controllers/LocaleController.php:92
-msgid "Mime"
-msgstr "Podobne do"
-
-#: airtime_mvc/application/models/Block.php:1372
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
-#: airtime_mvc/application/controllers/LocaleController.php:94
-msgid "Owner"
-msgstr "Właściciel"
-
-#: airtime_mvc/application/models/Block.php:1373
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
-#: airtime_mvc/application/controllers/LocaleController.php:95
-msgid "Replay Gain"
-msgstr "Normalizacja głośności (Replay Gain)"
-
-#: airtime_mvc/application/models/Block.php:1374
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
-msgid "Sample Rate (kHz)"
-msgstr "Częstotliwość próbkowania (kHz)"
-
-#: airtime_mvc/application/models/Block.php:1376
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
-#: airtime_mvc/application/controllers/LocaleController.php:97
-msgid "Track Number"
-msgstr "Numer utworu"
-
-#: airtime_mvc/application/models/Block.php:1377
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
-#: airtime_mvc/application/controllers/LocaleController.php:98
-msgid "Uploaded"
-msgstr "Przesłano"
-
-#: airtime_mvc/application/models/Block.php:1378
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
-#: airtime_mvc/application/controllers/LocaleController.php:99
-msgid "Website"
-msgstr "Strona internetowa"
-
-#: airtime_mvc/application/models/Block.php:1383
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
-#: airtime_mvc/application/controllers/LocaleController.php:151
-msgid "Select modifier"
-msgstr "Wybierz modyfikator"
-
-#: airtime_mvc/application/models/Block.php:1384
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
-#: airtime_mvc/application/controllers/LocaleController.php:152
-msgid "contains"
-msgstr "zawiera"
-
-#: airtime_mvc/application/models/Block.php:1385
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
-#: airtime_mvc/application/controllers/LocaleController.php:153
-msgid "does not contain"
-msgstr "nie zawiera"
-
-#: airtime_mvc/application/models/Block.php:1386
-#: airtime_mvc/application/models/Block.php:1390
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
-#: airtime_mvc/application/controllers/LocaleController.php:154
-msgid "is"
-msgstr "to"
-
-#: airtime_mvc/application/models/Block.php:1387
-#: airtime_mvc/application/models/Block.php:1391
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
-#: airtime_mvc/application/controllers/LocaleController.php:155
-msgid "is not"
-msgstr "to nie"
-
-#: airtime_mvc/application/models/Block.php:1388
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
-#: airtime_mvc/application/controllers/LocaleController.php:156
-msgid "starts with"
-msgstr "zaczyna się od"
-
-#: airtime_mvc/application/models/Block.php:1389
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
-#: airtime_mvc/application/controllers/LocaleController.php:157
-msgid "ends with"
-msgstr "kończy się"
-
-#: airtime_mvc/application/models/Block.php:1392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
-#: airtime_mvc/application/controllers/LocaleController.php:158
-msgid "is greater than"
-msgstr "jest większa niż"
-
-#: airtime_mvc/application/models/Block.php:1393
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
-#: airtime_mvc/application/controllers/LocaleController.php:159
-msgid "is less than"
-msgstr "jest mniejsza niż"
-
-#: airtime_mvc/application/models/Block.php:1394
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
-#: airtime_mvc/application/controllers/LocaleController.php:160
-msgid "is in the range"
-msgstr "mieści się w zakresie"
-
-#: airtime_mvc/application/models/Scheduler.php:73
-msgid "Cannot move items out of linked shows"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:119
-msgid "The schedule you're viewing is out of date! (sched mismatch)"
-msgstr "Harmonogram, który przeglądasz jest nieaktualny! (błędne dopasowanie harmonogramu)"
-
-#: airtime_mvc/application/models/Scheduler.php:124
-msgid "The schedule you're viewing is out of date! (instance mismatch)"
-msgstr "Harmonogram, który przeglądasz jest nieaktualny! (błędne dopasowanie instancji)"
-
-#: airtime_mvc/application/models/Scheduler.php:132
-#: airtime_mvc/application/models/Scheduler.php:458
-#: airtime_mvc/application/models/Scheduler.php:490
-msgid "The schedule you're viewing is out of date!"
-msgstr "Harmonogram, który przeglądasz jest nieaktualny!"
-
-#: airtime_mvc/application/models/Scheduler.php:142
+#: airtime_mvc/application/controllers/PlaylistController.php:161
#, php-format
-msgid "You are not allowed to schedule show %s."
-msgstr "Nie posiadasz uprawnień, aby zaplanować audycję %s."
+msgid "You don't have permission to delete selected %s(s)."
+msgstr "Nie masz pozwolenia na usunięcie wybranych %s(s)"
-#: airtime_mvc/application/models/Scheduler.php:146
-msgid "You cannot add files to recording shows."
-msgstr "Nie można dodawać plików do nagrywanych audycji."
+#: airtime_mvc/application/controllers/PlaylistController.php:174
+msgid "You can only add tracks to smart block."
+msgstr "Utwory mogą być dodane tylko do smartblocku"
-#: airtime_mvc/application/models/Scheduler.php:152
+#: airtime_mvc/application/controllers/PlaylistController.php:180
+#: airtime_mvc/application/controllers/LocaleController.php:50
+msgid "You can only add tracks, smart blocks, and webstreams to playlists."
+msgstr "Do list odtwarzania można dodawać tylko utwory, smart blocki i webstreamy"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:192
+msgid "Untitled Playlist"
+msgstr "Lista odtwarzania bez tytułu"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:194
+msgid "Untitled Smart Block"
+msgstr "Smartblock bez tytułu"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:522
+msgid "Unknown Playlist"
+msgstr "Nieznana playlista"
+
+#: airtime_mvc/application/controllers/ErrorController.php:78
+msgid "Page not found."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:87
+msgid "The requested action is not supported."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:98
+msgid "You do not have permission to access this resource."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:109
+msgid "An internal application error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/controllers/Apiv2Controller.php:77
+#: airtime_mvc/application/controllers/ApiController.php:79
+msgid "You are not allowed to access this resource."
+msgstr "Nie masz dostępu do tej lokalizacji"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:72
+msgid "Preferences updated."
+msgstr "Zaktualizowano preferencje."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:115
+msgid "Support setting updated."
+msgstr "Zaktualizowano ustawienia wsparcia."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:123
+msgid "Support Feedback"
+msgstr "Informacja zwrotna"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:251
+msgid "Stream Setting Updated."
+msgstr "Zaktualizowano ustawienia strumienia"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:342
+msgid "path should be specified"
+msgstr "należy okreslić ścieżkę"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:437
+msgid "Problem with Liquidsoap..."
+msgstr "Problem z Liquidsoap..."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:493
+msgid "Request method not accepted"
+msgstr ""
+
+#: airtime_mvc/application/controllers/DashboardController.php:35
+#: airtime_mvc/application/controllers/DashboardController.php:84
+msgid "You don't have permission to disconnect source."
+msgstr "Nie masz uprawnień do odłączenia żródła"
+
+#: airtime_mvc/application/controllers/DashboardController.php:37
+#: airtime_mvc/application/controllers/DashboardController.php:86
+msgid "There is no source connected to this input."
+msgstr "Źródło nie jest podłączone do tego wyjścia."
+
+#: airtime_mvc/application/controllers/DashboardController.php:81
+msgid "You don't have permission to switch source."
+msgstr "Nie masz uprawnień do przełączenia źródła."
+
+#: airtime_mvc/application/controllers/LoginController.php:43
+msgid "Please enter your username and password."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:93
+msgid "Wrong username or password provided. Please try again."
+msgstr "Błędna nazwa użytkownika lub hasło. Spróbuj ponownie."
+
+#: airtime_mvc/application/controllers/LoginController.php:167
+msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
+msgstr "Email nie został wysłany. Sprawdź swoje ustawienia serwera pocztowego i upewnij się, że został skonfigurowany poprawnie."
+
+#: airtime_mvc/application/controllers/LoginController.php:173
+msgid "There was a problem with the username or email address you entered."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ApiController.php:244
+#: airtime_mvc/application/controllers/ApiController.php:317
+#: airtime_mvc/application/controllers/ApiController.php:392
+#: airtime_mvc/application/controllers/ApiController.php:435
+#: airtime_mvc/application/controllers/ApiController.php:474
+#: airtime_mvc/application/controllers/ApiController.php:507
+msgid "You are not allowed to access this resource. "
+msgstr "Nie masz dostępu do tej lokalizacji."
+
+#: airtime_mvc/application/controllers/ApiController.php:698
+#: airtime_mvc/application/controllers/ApiController.php:718
+#: airtime_mvc/application/controllers/ApiController.php:730
#, php-format
-msgid "The show %s is over and cannot be scheduled."
-msgstr "Audycja %s przekracza dopuszczalną długość i nie może zostać zaplanowana."
-
-#: airtime_mvc/application/models/Scheduler.php:159
-#, php-format
-msgid "The show %s has been previously updated!"
-msgstr "Audycja %s została zaktualizowana wcześniej!"
-
-#: airtime_mvc/application/models/Scheduler.php:178
-msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:195
-msgid "Cannot schedule a playlist that contains missing files."
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:216
-#: airtime_mvc/application/models/Scheduler.php:305
-msgid "A selected File does not exist!"
-msgstr "Wybrany plik nie istnieje!"
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
-#: airtime_mvc/application/configs/navigation.php:40
-msgid "Weekly Schedule"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
-#: airtime_mvc/application/forms/Player.php:77
-msgid "Preview:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
-#: airtime_mvc/application/configs/navigation.php:34
-msgid "Player"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
-#: airtime_mvc/application/controllers/LocaleController.php:362
-#: airtime_mvc/application/controllers/LocaleController.php:390
-msgid "Close"
-msgstr "Zamknij"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Add this show"
-msgstr "Dodaj audycję"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Update show"
-msgstr "Aktualizuj audycję"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
-msgid "What"
-msgstr "Co"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
-msgid "When"
-msgstr "Kiedy"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
-msgid "Live Stream Input"
-msgstr "Wejście Strumienia \"Na żywo\""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
-msgid "Who"
-msgstr "Kto"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
-msgid "Style"
-msgstr "Styl"
-
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
-#: airtime_mvc/application/controllers/LocaleController.php:273
-msgid "Start"
-msgstr "Rozpocznij"
-
-#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
-msgid "Password Reset"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
-msgid "Email Sent!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
-msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
-msgid "Back"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
-msgid "New password"
-msgstr "Nowe hasło"
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
-msgid "Please enter and confirm your new password in the fields below."
-msgstr "Wprowadź i potwierdź swoje hasło w poniższych polach"
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:3
-#: airtime_mvc/application/forms/Login.php:83
-msgid "Login"
-msgstr "Zaloguj"
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:7
-#, php-format
-msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:97
-msgid "Playout History"
-msgstr "Historia odtwarzania"
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
-msgid "Log Sheet"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
-msgid "File Summary"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
-msgid "Show Summary"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
-msgid "Your trial expires in"
-msgstr "Twoja próba wygasa"
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
-msgid "days"
-msgstr "dni"
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-#, php-format
-msgid "Purchase an %s Pro plan!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-msgid "My Account"
-msgstr "Moje konto"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
-msgid "Previous:"
-msgstr "Poprzedni:"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
-msgid "Next:"
-msgstr "Następny:"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
-msgid "Source Streams"
-msgstr "Strumienie źródłowe"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
-msgid "Master Source"
-msgstr "Źródło Nadrzędne"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
-msgid "Show Source"
-msgstr "Źródło audycji"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
-msgid "ON AIR"
-msgstr "Na antenie"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
-msgid "Listen"
-msgstr "Słuchaj"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
-msgid "Logout"
-msgstr "Wyloguj"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
-msgid "Drop files here or click to browse your computer."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
-#: airtime_mvc/application/controllers/LocaleController.php:314
-msgid "in use"
-msgstr "W użyciu"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
-#: airtime_mvc/application/controllers/LocaleController.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:401
-msgid "All"
-msgstr "Wszystko"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
-msgid "Failed"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
-msgid "Pending"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
-msgid "Recent Uploads"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
-#: airtime_mvc/application/configs/navigation.php:120
-msgid "Account Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
-msgid "Upgrade today to get more listeners and storage space!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
-msgid "View Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
-msgid "About"
-msgstr "Informacje"
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
-#, php-format
-msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
-#, php-format
-msgid "%1$s %2$s is distributed under the %3$s"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
-#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
-msgid "Live stream"
-msgstr "Transmisja na żywo"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
-msgid "Share"
-msgstr "Podziel się"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
-msgid "Select stream:"
-msgstr "Wybierz strumień:"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
-msgid "mute"
-msgstr "wycisz"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
-msgid "unmute"
-msgstr "włącz głos"
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
-#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
-#, php-format
-msgid "Welcome to %s!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
-#, php-format
-msgid "Here's how you can get started using %s to automate your broadcasts: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
-msgid "Upload audio tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
-msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
-msgid "Schedule a show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
-msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
-msgid "Add tracks to your show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
-msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
-msgid "Now you're good to go!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
-#, php-format
-msgid "For more detailed help, read the %suser manual%s."
-msgstr "W celu uzyskania szczegółowej pomocy, skorzystaj z %suser manual%s"
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
-msgid "Listeners"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
-msgid "Stream Data Collection Status"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
-#: airtime_mvc/application/views/scripts/error/error.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
-msgid "An error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
-msgid "Access Denied!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
-msgid "You do not have permission to access this page!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
-#: airtime_mvc/application/views/scripts/error/error.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
-#: airtime_mvc/application/configs/navigation.php:143
-msgid "Help"
-msgstr "Pomoc"
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
-msgid "Page not found!"
-msgstr "Nie znaleziono strony!"
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
-msgid "We couldn't find the page you were looking for."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error.phtml:12
-msgid "Looks like the page you were looking for doesn't exist!"
-msgstr "Wygląda na to, że strona, której szukasz nie istnieje"
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
-msgid "Oops!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
-msgid "Something went wrong!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
-msgid "Bad Request!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
-msgid "The requested action is not supported!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
-msgid "Viewing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
-msgid "Editing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:3
-msgid "File import in progress..."
-msgstr "Importowanie plików w toku..."
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:10
-#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
-msgid "Advanced Search Options"
-msgstr "Zaawansowane opcje wyszukiwania"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
-#: airtime_mvc/application/forms/Player.php:15
-#: airtime_mvc/application/forms/EditAudioMD.php:24
-msgid "Title:"
-msgstr "Tytuł:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
-#: airtime_mvc/application/forms/EditAudioMD.php:34
-msgid "Creator:"
-msgstr "Autor:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
-#: airtime_mvc/application/forms/EditAudioMD.php:44
-msgid "Album:"
-msgstr "Album:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
-msgid "Track:"
-msgstr "Utwór:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
-msgid "Length:"
-msgstr "Długość: "
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
-msgid "Sample Rate:"
-msgstr "Częstotliwość próbkowania:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
-msgid "Bit Rate:"
-msgstr "Bit Rate:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
-#: airtime_mvc/application/forms/EditAudioMD.php:115
-msgid "Mood:"
-msgstr "Nastrój:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
-#: airtime_mvc/application/forms/EditAudioMD.php:62
-#: airtime_mvc/application/forms/AddShowWhat.php:45
-msgid "Genre:"
-msgstr "Rodzaj:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
-#: airtime_mvc/application/forms/EditAudioMD.php:72
-msgid "Year:"
-msgstr "Rok:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
-#: airtime_mvc/application/forms/EditAudioMD.php:85
-msgid "Label:"
-msgstr "Wydawnictwo:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
-#: airtime_mvc/application/forms/EditAudioMD.php:125
-msgid "BPM:"
-msgstr "BPM:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
-#: airtime_mvc/application/forms/EditAudioMD.php:95
-msgid "Composer:"
-msgstr "Kompozytor:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
-#: airtime_mvc/application/forms/EditAudioMD.php:105
-msgid "Conductor:"
-msgstr "Dyrygent/Pod batutą:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
-#: airtime_mvc/application/forms/EditAudioMD.php:135
-msgid "Copyright:"
-msgstr "Prawa autorskie:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
-msgid "Isrc Number:"
-msgstr "Numer Isrc:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
-#: airtime_mvc/application/forms/EditAudioMD.php:155
-msgid "Website:"
-msgstr "Strona internetowa:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
-#: airtime_mvc/application/forms/EditUser.php:119
-#: airtime_mvc/application/forms/EditAudioMD.php:165
-#: airtime_mvc/application/forms/Login.php:68
-msgid "Language:"
-msgstr "Język:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
-msgid "File Path:"
-msgstr "Ścieżka pliku:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
-#: airtime_mvc/application/forms/AddShowWhat.php:26
-msgid "Name:"
-msgstr "Nazwa:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
-#: airtime_mvc/application/forms/AddShowWhat.php:54
-msgid "Description:"
-msgstr "Opis:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
-msgid "Web Stream"
-msgstr "Web Stream"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
-msgid "Dynamic Smart Block"
-msgstr "Smart block dynamiczny"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
-msgid "Static Smart Block"
-msgstr "Smart block statyczny"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
-msgid "Audio Track"
-msgstr "Ścieżka audio"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
-msgid "Playlist Contents: "
-msgstr "Zawartość listy odtwarzania:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
-msgid "Static Smart Block Contents: "
-msgstr "Zawartość statycznego Smart Blocka:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
-msgid "Dynamic Smart Block Criteria: "
-msgstr "Kryteria dynamicznego Smart Blocku "
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
-msgid "Limit to "
-msgstr "Ogranicz(enie) do:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
-#: airtime_mvc/application/forms/AddShowWhat.php:36
-msgid "URL:"
-msgstr "Adres URL"
-
-#: airtime_mvc/application/views/scripts/form/login.phtml:41
-msgid "Forgot your password?"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
-#, php-format
-msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
-#, php-format
-msgid "Click the box below to promote your station on %s."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
-msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
-msgstr "(Aby promowac stację, należy udostepnić funkcję \"wyślij informację zwrotną\")"
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
-msgid "(Required)"
-msgstr "(Wymagane)"
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
-msgid "(for verification purposes only, will not be published)"
-msgstr "(tylko dla celów weryfikacji, dane nie będą rozpowszechniane)"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
-msgid "Choose folder"
-msgstr "Wybierz folder"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
-msgid "Set"
-msgstr "Ustaw"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
-msgid "Current Import Folder:"
-msgstr "Aktualny folder importu:"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
-msgid "Add"
-msgstr "Dodaj"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
-#, php-format
-msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
-msgid "Remove watched directory"
-msgstr "Usuń obserwowany katalog."
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
-msgid "You are not watching any media folders."
-msgstr "Nie obserwujesz w tej chwili żadnych folderów"
-
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
-msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
-msgid "Live Broadcasting"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
-msgid "Use these settings in your broadcasting software to stream live at any time."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
-msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
-msgid "Choose Show Instance"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
-#: airtime_mvc/application/forms/EditHistoryItem.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:400
-msgid "No Show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
-msgid "Find"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
-msgid "Choose Days:"
-msgstr "Wybierz dni:"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
-#: airtime_mvc/application/forms/AddShowStyle.php:64
-#: airtime_mvc/application/forms/GeneralPreferences.php:53
-msgid "Remove"
-msgstr "Usuń"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
-msgid "Stream "
-msgstr "Strumień"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
-msgid "Additional Options"
-msgstr "Opcje dodatkowe"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
-msgid "The following info will be displayed to listeners in their media player:"
-msgstr "W odtwarzaczu słuchacza wyświetli sie nastepujaca informacja:"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
-msgid "(Your radio station website)"
-msgstr "(Strona internetowa Twojej stacji)"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
-msgid "Stream URL: "
-msgstr "URL strumienia:"
-
-#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
-msgid "Find Shows"
-msgstr "Znajdź audycję"
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
-msgid "TuneIn Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
-msgid "SoundCloud Settings"
-msgstr "Ustawienia SoundCloud"
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
-msgid "Dangerous Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
-msgid "Search Criteria:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
-msgid "New Criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
-msgid "or"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
-msgid "and"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
-msgid "New Modifier"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
-msgid " to "
-msgstr "do"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
-msgid "files meet the criteria"
-msgstr "pliki spełniają kryteria"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
-msgid "file meets the criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
-msgid "Filter History"
-msgstr "Filtruj Historię"
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
-#: airtime_mvc/application/configs/navigation.php:61
-msgid "My Profile"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
-#, php-format
-msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
-#: airtime_mvc/application/forms/Preferences.php:40
-#: airtime_mvc/application/forms/PasswordChange.php:43
-#: airtime_mvc/application/forms/AddUser.php:110
-#: airtime_mvc/application/forms/BillingClient.php:193
-#: airtime_mvc/application/forms/SupportSettings.php:131
-#: airtime_mvc/application/forms/EditHistory.php:131
-#: airtime_mvc/application/controllers/LocaleController.php:294
-msgid "Save"
-msgstr "Zapisz"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
-msgid "Repeat Days:"
-msgstr "Dni powtarzania:"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
-msgid "Register Airtime"
-msgstr "Zarejestruj Airtime"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
-#: airtime_mvc/application/forms/GeneralPreferences.php:43
-msgid "Note: Anything larger than 600x600 will be resized."
-msgstr "Uwaga: każdy plik o rozmiarze większym niż 600x600 zostanie zmniejszony"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
-msgid "Show me what I am sending "
-msgstr "Pokazuj, co wysyłam"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
-msgid "Terms and Conditions"
-msgstr "Zasady i warunki"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
-msgid "Creating File Summary Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
-msgid "Creating Log Sheet Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
-msgid "Name"
-msgstr "Nazwa"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
-msgid "Add more elements"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
-msgid "Add New Field"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
-msgid "Set Default Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
-msgid "Playout History Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
-msgid "Log Sheet Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
-msgid "New Log Sheet Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
-msgid "No Log Sheet Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
-#: airtime_mvc/application/controllers/LocaleController.php:397
-msgid "Set Default"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
-msgid "File Summary Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
-msgid "New File Summary Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
-msgid "No File Summary Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
-msgid "Disk Space"
-msgstr "Miejsce na dysku "
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
-#: airtime_mvc/application/controllers/LocaleController.php:315
-msgid "Disk"
-msgstr "Dysk"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
-#: airtime_mvc/application/forms/AddShowWhen.php:89
-msgid "Duration:"
-msgstr "Czas trwania:"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
-msgid "Toggle Details"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
-msgid "Playlist crossfade"
-msgstr "Płynne przenikanie utworów na liście dotwarzania"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-msgid "Remove all content from this smart block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Clear"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "Fade in: "
-msgstr "Zgłaśnianie [fade in]:"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "(ss.t)"
-msgstr "(ss.t)"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-msgid "Fade out: "
-msgstr "Wyciszanie [fade out]:"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
-#: airtime_mvc/application/forms/EditAudioMD.php:186
-#: airtime_mvc/application/forms/EditHistory.php:141
-#: airtime_mvc/application/controllers/LocaleController.php:295
-#: airtime_mvc/application/controllers/LocaleController.php:318
-msgid "Cancel"
-msgstr "Anuluj"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
-msgid "No smart block currently open"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
-msgid "Show Waveform"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-msgid "Cue In: "
-msgstr "Zgłaśnianie [Cue in]:"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "(hh:mm:ss.t)"
-msgstr "(hh:mm:ss.t)"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "Cue Out: "
-msgstr "Wyciszanie [Cue out]:"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
-msgid "Original Length:"
-msgstr "Oryginalna długość:"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
-msgid "Expand Static Block"
-msgstr "Zwiększ bok statyczny"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
-msgid "Expand Dynamic Block"
-msgstr "Zwiększ blok dynamiczny"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
-msgid "Choose some search criteria above and click Generate to create this playlist."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
-msgid "A track list will be generated when you schedule this smart block into a show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
-msgid "Drag tracks here from your library to add them to the playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-msgid "Shuffle playlist"
-msgstr "Wymieszaj listę odtwarzania"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
-msgid "Shuffle"
-msgstr "Przemieszaj"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Empty playlist content"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-msgid "Save playlist"
-msgstr "Zapisz listę odtwarzania"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
-msgid "No open playlist"
-msgstr "Brak otwartej listy odtwarzania"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
-msgid "previous"
-msgstr "poprzedni"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
-msgid "play"
-msgstr "play"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
-msgid "pause"
-msgstr "pauza"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
-msgid "next"
-msgstr "następny"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
-msgid "stop"
-msgstr "stop"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
-msgid "max volume"
-msgstr "maksymalna głośność"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
-msgid "Update Required"
-msgstr "Wymagana aktualizacja"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
-#, php-format
-msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
-msgstr "By odtworzyć medium, należy zaktualizować przeglądarkę do najnowszej wersji bądź zainstalowac aktualizację %sFlash plugin%s"
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
-msgid "Stream Settings"
-msgstr "Ustawienia strumienia"
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
-msgid "Global"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
-msgid "dB"
-msgstr "dB"
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
-msgid "Output Streams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
-#: airtime_mvc/application/controllers/LocaleController.php:166
-msgid "Manage Media Folders"
-msgstr "Zarządzaj folderami mediów"
-
-#: airtime_mvc/application/views/scripts/preference/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:56
-msgid "General"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
-msgid "Description"
-msgstr "Opis"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
-msgid "Stream URL:"
-msgstr "URL strumienia:"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
-msgid "Default Length:"
-msgstr "Domyślna długość:"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
-msgid "No webstream"
-msgstr "Brak webstreamu"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
-msgid "Manage Users"
-msgstr "Zarządzaj Użytkownikami"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
-msgid "New User"
-msgstr "Nowy Użytkownik"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
-msgid "id"
-msgstr "id"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
-#: airtime_mvc/application/forms/PasswordRestore.php:25
-msgid "Username"
-msgstr "Nazwa użytkownika"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
-msgid "First Name"
-msgstr "Imię"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
-msgid "Last Name"
-msgstr "Nazwisko"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
-msgid "User Type"
-msgstr "Typ użytkownika"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
-#, php-format
-msgid "Super Admin details can be changed in your Billing Settings."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
-#: airtime_mvc/application/controllers/LocaleController.php:74
-#: airtime_mvc/application/layouts/scripts/layout.phtml:78
-msgid "Tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
-#: airtime_mvc/application/controllers/LocaleController.php:104
-#: airtime_mvc/application/layouts/scripts/layout.phtml:80
-msgid "Playlists"
-msgstr "Listy odtwarzania"
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
-#: airtime_mvc/application/controllers/LocaleController.php:105
-#: airtime_mvc/application/layouts/scripts/layout.phtml:82
-msgid "Smart Blocks"
-msgstr "Smart Blocki"
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
-#: airtime_mvc/application/layouts/scripts/layout.phtml:84
-msgid "Webstreams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
-#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
-#: airtime_mvc/application/layouts/scripts/layout.phtml:76
-msgid "Dashboard"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:12
-msgid "Radio Page"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:19
-msgid "Calendar"
-msgstr "Kalendarz"
-
-#: airtime_mvc/application/configs/navigation.php:26
-msgid "Widgets"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:48
-msgid "Settings"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:67
-msgid "Users"
-msgstr "Użytkownicy"
-
-#: airtime_mvc/application/configs/navigation.php:74
-msgid "Streams"
-msgstr "Strumienie"
-
-#: airtime_mvc/application/configs/navigation.php:82
-msgid "Analytics"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:90
-msgid "Listener Stats"
-msgstr "Statystyki słuchaczy"
-
-#: airtime_mvc/application/configs/navigation.php:104
-msgid "History Templates"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:113
-msgid "Billing"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:127
-msgid "Account Details"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:134
-msgid "View Invoices"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:150
-msgid "Getting Started"
-msgstr "Jak zacząć"
-
-#: airtime_mvc/application/configs/navigation.php:157
-msgid "FAQ"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:162
-msgid "User Manual"
-msgstr "Instrukcja użytkowania"
-
-#: airtime_mvc/application/configs/navigation.php:167
-msgid "File a Support Ticket"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:12
-msgid "Background Colour:"
-msgstr "Kolor tła:"
-
-#: airtime_mvc/application/forms/AddShowStyle.php:31
-msgid "Text Colour:"
-msgstr "Kolor tekstu:"
-
-#: airtime_mvc/application/forms/AddShowStyle.php:49
-msgid "Current Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:72
-msgid "Show Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:87
-msgid "Logo Preview:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:19
-msgid "Push metadata to your station on TuneIn?"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:24
-msgid "Station ID:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:30
-msgid "Partner Key:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:36
-msgid "Partner Id:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:77
-#: airtime_mvc/application/forms/TuneInPreferences.php:86
-msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:14
-msgid "Now Playing"
-msgstr "Aktualnie odtwarzane"
-
-#: airtime_mvc/application/forms/Player.php:25
-msgid "Select Stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:28
-msgid "Auto detect the most appropriate stream to use."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:29
-msgid "Select a stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:41
-msgid " - Mobile friendly"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:45
-msgid " - The player does not support Opus streams."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:71
-msgid "Embeddable code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:72
-msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:37
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
-#: airtime_mvc/application/forms/Login.php:41
-#: airtime_mvc/application/forms/AddUser.php:29
-msgid "Username:"
-msgstr "Nazwa użytkownika:"
-
-#: airtime_mvc/application/forms/EditUser.php:48
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
-#: airtime_mvc/application/forms/Login.php:54
-#: airtime_mvc/application/forms/AddUser.php:38
-#: airtime_mvc/application/forms/BillingClient.php:172
-msgid "Password:"
-msgstr "Hasło:"
-
-#: airtime_mvc/application/forms/EditUser.php:57
-#: airtime_mvc/application/forms/AddUser.php:46
-#: airtime_mvc/application/forms/BillingClient.php:181
-msgid "Verify Password:"
-msgstr "Potwierdź hasło:"
-
-#: airtime_mvc/application/forms/EditUser.php:67
-#: airtime_mvc/application/forms/AddUser.php:55
-msgid "Firstname:"
-msgstr "Imię:"
-
-#: airtime_mvc/application/forms/EditUser.php:75
-#: airtime_mvc/application/forms/AddUser.php:61
-msgid "Lastname:"
-msgstr "Nazwisko:"
-
-#: airtime_mvc/application/forms/EditUser.php:83
-#: airtime_mvc/application/forms/RegisterAirtime.php:51
-#: airtime_mvc/application/forms/AddUser.php:67
-#: airtime_mvc/application/forms/SupportSettings.php:43
-msgid "Email:"
-msgstr "Email:"
-
-#: airtime_mvc/application/forms/EditUser.php:94
-#: airtime_mvc/application/forms/AddUser.php:76
-msgid "Mobile Phone:"
-msgstr "Telefon:"
-
-#: airtime_mvc/application/forms/EditUser.php:102
-#: airtime_mvc/application/forms/AddUser.php:82
-msgid "Skype:"
-msgstr "Skype:"
-
-#: airtime_mvc/application/forms/EditUser.php:110
-#: airtime_mvc/application/forms/AddUser.php:88
-msgid "Jabber:"
-msgstr "Jabber:"
-
-#: airtime_mvc/application/forms/EditUser.php:129
-msgid "Interface Timezone:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:155
-#: airtime_mvc/application/forms/AddUser.php:120
-msgid "Login name is not unique."
-msgstr "Nazwa użytkownika musi być unikalna."
-
-#: airtime_mvc/application/forms/AddShowRR.php:10
-msgid "Record from Line In?"
-msgstr "Nagrywać z wejścia liniowego?"
-
-#: airtime_mvc/application/forms/AddShowRR.php:16
-msgid "Rebroadcast?"
-msgstr "Odtwarzać ponownie?"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:16
-msgid "'%value%' does not fit the time format 'HH:mm'"
-msgstr "%value% nie odpowiada formatowi 'HH:mm'"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:22
-msgid "Start Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:37
-msgid "In the Future:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:64
-msgid "End Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:98
-msgid "Timezone:"
-msgstr "Strefa czasowa:"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:107
-msgid "Repeats?"
-msgstr "Powtarzanie?"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:139
-msgid "Cannot create show in the past"
-msgstr "Nie można utworzyć audycji w przeszłości"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:147
-msgid "Cannot modify start date/time of the show that is already started"
-msgstr "Nie mozna zmienić daty/czasu audycji, która się już rozpoczęła"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:164
-msgid "Cannot have duration < 0m"
-msgstr "Czas trwania nie może być mniejszy niż 0m"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:168
-msgid "Cannot have duration 00h 00m"
-msgstr "Czas trwania nie może wynosić 00h 00m"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:175
-msgid "Cannot have duration greater than 24h"
-msgstr "Czas trwania nie może być dłuższy niż 24h"
-
-#: airtime_mvc/application/forms/AddShowWho.php:10
-msgid "Search Users:"
-msgstr "Szukaj Użytkowników:"
-
-#: airtime_mvc/application/forms/AddShowWho.php:24
-msgid "DJs:"
-msgstr "Prowadzący:"
-
-#: airtime_mvc/application/forms/PasswordChange.php:17
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
-msgid "Password"
-msgstr "Hasło"
-
-#: airtime_mvc/application/forms/PasswordChange.php:28
-msgid "Confirm new password"
-msgstr "Potwierdź nowe hasło"
-
-#: airtime_mvc/application/forms/PasswordChange.php:36
-msgid "Password confirmation does not match your password."
-msgstr "Hasła muszą się zgadzać."
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
-msgid "Station Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
-#: airtime_mvc/application/forms/GeneralPreferences.php:127
-msgid "Station Timezone"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
-msgid "Auto Switch Off:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
-msgid "Auto Switch On:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
-msgid "Switch Transition Fade (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
-#: airtime_mvc/application/forms/GeneralPreferences.php:68
-#: airtime_mvc/application/forms/GeneralPreferences.php:82
-#: airtime_mvc/application/forms/GeneralPreferences.php:96
-msgid "Please enter a time in seconds (eg. 0.5)"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
-#: airtime_mvc/application/forms/AddShowLiveStream.php:48
-msgid "Host:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
-#: airtime_mvc/application/forms/AddShowLiveStream.php:54
-msgid "Port:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
-#: airtime_mvc/application/forms/AddShowLiveStream.php:60
-msgid "Mount:"
-msgstr ""
-
-#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
-msgid "Value is required and can't be empty"
-msgstr "Pole jest wymagane i nie może być puste"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:25
-#: airtime_mvc/application/forms/RegisterAirtime.php:30
-#: airtime_mvc/application/forms/SupportSettings.php:18
-msgid "Station Name"
-msgstr "Nazwa stacji"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:33
-msgid "Station Description"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:42
-#: airtime_mvc/application/forms/RegisterAirtime.php:106
-msgid "Station Logo:"
-msgstr "Logo stacji:"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:62
-msgid "Default Crossfade Duration (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:76
-msgid "Default Fade In (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:90
-msgid "Default Fade Out (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:102
-msgid "Public Airtime API"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:103
-msgid "Required for embeddable schedule widget."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:105
-msgid "Disabled"
-msgstr "Wyłączone"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:106
-msgid "Enabled"
-msgstr "Włączone"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:109
-msgid ""
-"Enabling this feature will allow Airtime to provide schedule data\n"
-" to external widgets that can be embedded in your website."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:120
-msgid "Default Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:134
-msgid "Week Starts On"
-msgstr "Tydzień zaczynaj od"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:150
-msgid "Display login button on your Radio Page?"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:158
-#: airtime_mvc/application/controllers/LocaleController.php:249
-msgid "Sunday"
-msgstr "Niedziela"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:159
-#: airtime_mvc/application/controllers/LocaleController.php:250
-msgid "Monday"
-msgstr "Poniedziałek"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:160
-#: airtime_mvc/application/controllers/LocaleController.php:251
-msgid "Tuesday"
-msgstr "Wtorek"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:161
-#: airtime_mvc/application/controllers/LocaleController.php:252
-msgid "Wednesday"
-msgstr "Środa"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:162
-#: airtime_mvc/application/controllers/LocaleController.php:253
-msgid "Thursday"
-msgstr "Czwartek"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:163
-#: airtime_mvc/application/controllers/LocaleController.php:254
-msgid "Friday"
-msgstr "Piątek"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:164
-#: airtime_mvc/application/controllers/LocaleController.php:255
-msgid "Saturday"
-msgstr "Sobota"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
-msgid "Default License:"
-msgstr "Domyślna licencja:"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
-msgid "All rights are reserved"
-msgstr "Wszelkie prawa zastrzeżone"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
-msgid "The work is in the public domain"
-msgstr "Utwór w domenie publicznej"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
-msgid "Creative Commons Attribution"
-msgstr "Uznanie autorstwa wg licencji Creative Commons "
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
-msgid "Creative Commons Attribution Noncommercial"
-msgstr "Użycie niekomercyjne wg Creative Commons "
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
-msgid "Creative Commons Attribution No Derivative Works"
-msgstr "Uznanie Autorstwa Bez Utworów Zależnych wg Creative Commons"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
-msgid "Creative Commons Attribution Share Alike"
-msgstr "Uznanie a Na Tych Samych Warunkach wg Creative Commons "
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
-msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
-msgstr "Uznanie Autorstwa Bez Utworów Zależnych wg Creative Commons"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
-msgid "Creative Commons Attribution Noncommercial Share Alike"
-msgstr "Uznanie a Na Tych Samych Warunkach wg Creative Commons "
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
-msgid "Default Sharing Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
-msgid "Public"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
-msgid "Private"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:18
-#: airtime_mvc/application/forms/DateRange.php:16
-msgid "Date Start:"
-msgstr "Data rozpoczęcia:"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:37
-#: airtime_mvc/application/forms/ShowBuilder.php:65
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
-#: airtime_mvc/application/forms/DateRange.php:35
-#: airtime_mvc/application/forms/DateRange.php:63
-msgid "Invalid character entered"
-msgstr "Wprowadzony znak jest nieprawidłowy"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:46
-#: airtime_mvc/application/forms/AddShowRepeats.php:56
-#: airtime_mvc/application/forms/DateRange.php:44
-msgid "Date End:"
-msgstr "Data zakończenia:"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:72
-#: airtime_mvc/application/forms/ShowBuilder.php:88
-msgid "Filter by Show"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:80
-msgid "All My Shows:"
-msgstr "Wszystkie moje audycje:"
-
-#: airtime_mvc/application/forms/EditAudioMD.php:145
-msgid "ISRC Number:"
-msgstr "Numer ISRC:"
-
-#: airtime_mvc/application/forms/EditAudioMD.php:176
-msgid "OK"
-msgstr "OK"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
-msgid "Day must be specified"
-msgstr "Należy określić dzień"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
-msgid "Time must be specified"
-msgstr "Należy określić czas"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
-msgid "Must wait at least 1 hour to rebroadcast"
-msgstr "Należy odczekać przynajmniej 1 godzinę przed ponownym odtworzeniem"
-
-#: airtime_mvc/application/forms/AddShowWhat.php:30
-msgid "Untitled Show"
-msgstr "Audycja bez nazwy"
-
-#: airtime_mvc/application/forms/AddShowWhat.php:69
-msgid "Instance Description:"
-msgstr ""
-
-#: airtime_mvc/application/forms/DangerousPreferences.php:12
-msgid "Delete All Tracks in Library"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:39
-#: airtime_mvc/application/forms/SupportSettings.php:31
-msgid "Phone:"
-msgstr "Telefon:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:62
-#: airtime_mvc/application/forms/SupportSettings.php:54
-msgid "Station Web Site:"
-msgstr "Strona internetowa stacji:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:73
-#: airtime_mvc/application/forms/BillingClient.php:102
-#: airtime_mvc/application/forms/SupportSettings.php:65
-msgid "Country:"
-msgstr "Kraj:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:84
-#: airtime_mvc/application/forms/BillingClient.php:70
-#: airtime_mvc/application/forms/SupportSettings.php:76
-msgid "City:"
-msgstr "Miasto:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:96
-#: airtime_mvc/application/forms/SupportSettings.php:88
-msgid "Station Description:"
-msgstr "Opis stacji:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:116
-#: airtime_mvc/application/forms/SupportSettings.php:98
-#: airtime_mvc/application/controllers/LocaleController.php:341
-msgid "Send support feedback"
-msgstr "Wyślij informację zwrotną"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:126
-#: airtime_mvc/application/forms/SupportSettings.php:108
-#, php-format
-msgid "Promote my station on %s"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:151
-#: airtime_mvc/application/forms/SupportSettings.php:120
-#, php-format
-msgid "By checking this box, I agree to %s's %sprivacy policy%s."
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:169
-#: airtime_mvc/application/forms/SupportSettings.php:143
-msgid "You have to agree to privacy policy."
-msgstr "Wymagana jest akceptacja polityki prywatności."
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:10
-msgid "Link:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:16
-msgid "Repeat Type:"
-msgstr "Typ powtarzania:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:19
-msgid "weekly"
-msgstr "tygodniowo"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:20
-msgid "every 2 weeks"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:21
-msgid "every 3 weeks"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:22
-msgid "every 4 weeks"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:23
-msgid "monthly"
-msgstr "miesięcznie"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:32
-msgid "Select Days:"
-msgstr "Wybierz dni:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:35
-#: airtime_mvc/application/controllers/LocaleController.php:256
-msgid "Sun"
-msgstr "Nie"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:36
-#: airtime_mvc/application/controllers/LocaleController.php:257
-msgid "Mon"
-msgstr "Pon"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:37
-#: airtime_mvc/application/controllers/LocaleController.php:258
-msgid "Tue"
-msgstr "Wt"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:38
-#: airtime_mvc/application/controllers/LocaleController.php:259
-msgid "Wed"
-msgstr "Śr"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:39
-#: airtime_mvc/application/controllers/LocaleController.php:260
-msgid "Thu"
-msgstr "Czw"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:40
-#: airtime_mvc/application/controllers/LocaleController.php:261
-msgid "Fri"
-msgstr "Pt"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:41
-#: airtime_mvc/application/controllers/LocaleController.php:262
-msgid "Sat"
-msgstr "Sob"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:47
-msgid "Repeat By:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the month"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the week"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:69
-msgid "No End?"
-msgstr "Bez czasu końcowego?"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:106
-msgid "End date must be after start date"
-msgstr "Data końcowa musi występować po dacie początkowej"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:113
-msgid "Please select a repeat day"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:10
-#, php-format
-msgid "Use %s Authentication:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:16
-msgid "Use Custom Authentication:"
-msgstr "Zastosuj własne uwierzytelnienie:"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:25
-msgid "Custom Username"
-msgstr "Nazwa użytkownika"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:37
-msgid "Custom Password"
-msgstr "Hasło"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:77
-msgid "Username field cannot be empty."
-msgstr "Pole nazwy użytkownika nie może być puste."
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:82
-msgid "Password field cannot be empty."
-msgstr "Pole hasła nie może być puste."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
-msgid "Enabled:"
-msgstr "Włączony:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
-msgid "Mobile:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
-msgid "Stream Type:"
-msgstr "Typ strumienia:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
-msgid "Service Type:"
-msgstr "Typ usługi:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
-msgid "Channels:"
-msgstr "Kanały:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "1 - Mono"
-msgstr "1 - Mono"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "2 - Stereo"
-msgstr "2 - Stereo"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
-msgid "Server"
-msgstr "Serwer"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
-msgid "Port"
-msgstr "Port"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
-msgid "Only numbers are allowed."
-msgstr "Możliwe są tylko cyfry."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
-msgid "URL"
-msgstr "adres URL"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
-msgid "Mount Point"
-msgstr "Punkt montowania"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
-msgid "Admin User"
-msgstr "Login Administratora"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
-msgid "Admin Password"
-msgstr "Hasło Administratora"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
-#: airtime_mvc/application/controllers/LocaleController.php:173
-msgid "Getting information from the server..."
-msgstr "Pobieranie informacji z serwera..."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
-msgid "Server cannot be empty."
-msgstr "Serwer nie może być pusty."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
-msgid "Port cannot be empty."
-msgstr "Port nie może być pusty."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
-msgid "Mount cannot be empty with Icecast server."
-msgstr "Punkt montowania nie może być pusty dla serwera Icecast."
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
-msgid "'%value%' is no valid email address in the basic format local-part@hostname"
-msgstr "'%value%' nie jest poprawnym adresem email w podstawowym formacie local-part@hostname"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
-msgid "'%value%' does not fit the date format '%format%'"
-msgstr "'%value%' nie pasuje do formatu daty '%format%'"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
-msgid "'%value%' is less than %min% characters long"
-msgstr "'%value%' zawiera mniej niż %min% znaków"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
-msgid "'%value%' is more than %max% characters long"
-msgstr "'%value%' zawiera więcej niż %max% znaków"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
-msgid "'%value%' is not between '%min%' and '%max%', inclusively"
-msgstr "'%value%' nie zawiera się w przedziale od '%min%' do '%max%'"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
-msgid "Passwords do not match"
-msgstr "Hasła muszą się zgadzać"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
-msgid "hours"
-msgstr "godzin(y)"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
-msgid "minutes"
-msgstr "minut(y)"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
-msgid "Randomly"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
-msgid "Newest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
-msgid "Oldest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
-msgid "Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
-msgid "Static"
-msgstr "Statyczny"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
-msgid "Dynamic"
-msgstr "Dynamiczny"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
-msgid "Allow Repeated Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
-msgid "Sort Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
-msgid "Limit to:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
-msgid "Generate playlist content and save criteria"
-msgstr "Tworzenie zawartości listy odtwarzania i zapisz kryteria"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
-msgid "Generate"
-msgstr "Utwórz"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
-msgid "Shuffle playlist content"
-msgstr "Losowa kolejność odtwarzania"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
-msgid "Limit cannot be empty or smaller than 0"
-msgstr "Limit nie może być pusty oraz mniejszy od 0"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
-msgid "Limit cannot be more than 24 hrs"
-msgstr "Limit nie może być większy niż 24 godziny"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
-msgid "The value should be an integer"
-msgstr "Wartość powinna być liczbą całkowitą"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
-msgid "500 is the max item limit value you can set"
-msgstr "Maksymalna liczba elementów do ustawienia to 500"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
-msgid "You must select Criteria and Modifier"
-msgstr "Należy wybrać kryteria i modyfikator"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
-msgid "'Length' should be in '00:00:00' format"
-msgstr "Długość powinna być wprowadzona w formacie '00:00:00'"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
-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:594
-msgid "The value has to be numeric"
-msgstr "Wartość musi być liczbą"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
-msgid "The value should be less then 2147483648"
-msgstr "Wartość powinna być mniejsza niż 2147483648"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
-#, php-format
-msgid "The value should be less than %s characters"
-msgstr "Wartość powinna posiadać mniej niż %s znaków"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
-msgid "Value cannot be empty"
-msgstr "Wartość nie może być pusta"
-
-#: airtime_mvc/application/forms/Login.php:102
-msgid "Type the characters you see in the picture below."
-msgstr "Wpisz znaki, które widzisz na obrazku poniżej."
-
-#: airtime_mvc/application/forms/StreamSetting.php:26
-msgid "Icecast Vorbis Metadata"
-msgstr "Metadane Icecast Vorbis"
-
-#: airtime_mvc/application/forms/StreamSetting.php:36
-msgid "Stream Label:"
-msgstr "Nazwa strumienia:"
-
-#: airtime_mvc/application/forms/StreamSetting.php:37
-msgid "Artist - Title"
-msgstr "Artysta - Tytuł"
-
-#: airtime_mvc/application/forms/StreamSetting.php:38
-msgid "Show - Artist - Title"
-msgstr "Audycja - Artysta -Tytuł"
-
-#: airtime_mvc/application/forms/StreamSetting.php:39
-msgid "Station name - Show name"
-msgstr "Nazwa stacji - Nazwa audycji"
-
-#: airtime_mvc/application/forms/StreamSetting.php:45
-msgid "Off Air Metadata"
-msgstr "Metadane Off Air"
-
-#: airtime_mvc/application/forms/StreamSetting.php:51
-msgid "Enable Replay Gain"
-msgstr "Włącz normalizację głośności (Replay Gain)"
-
-#: airtime_mvc/application/forms/StreamSetting.php:57
-msgid "Replay Gain Modifier"
-msgstr "Modyfikator normalizacji głośności"
-
-#: airtime_mvc/application/forms/StreamSetting.php:65
-msgid "Streaming Server:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Airtime Pro Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Custom / 3rd Party Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:95
-msgid "User Type:"
-msgstr "Typ użytkownika:"
-
-#: airtime_mvc/application/forms/AddUser.php:99
-#: airtime_mvc/application/controllers/LocaleController.php:324
-msgid "Guest"
-msgstr "Gość"
-
-#: airtime_mvc/application/forms/AddUser.php:100
-#: airtime_mvc/application/controllers/LocaleController.php:322
-msgid "DJ"
-msgstr "Prowadzący"
-
-#: airtime_mvc/application/forms/AddUser.php:101
-#: airtime_mvc/application/controllers/LocaleController.php:323
-msgid "Program Manager"
-msgstr "Menedżer programowy"
-
-#: airtime_mvc/application/forms/AddUser.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:321
-msgid "Admin"
-msgstr "Administrator"
-
-#: airtime_mvc/application/forms/BillingClient.php:17
-msgid "First Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:26
-msgid "Last Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:35
-msgid "Company Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:44
-msgid "Email Address:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:54
-msgid "Address 1:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:63
-msgid "Address 2:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:80
-msgid "State/Region:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:89
-msgid "Zip Code / Postal Code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:112
-msgid "Phone Number:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:121
-msgid "Please choose a security question:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:126
-msgid "What is the name of your favorite childhood friend?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:127
-msgid "What school did you attend for sixth grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:128
-msgid "In what city did you meet your spouse/significant other?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:129
-msgid "What street did you live on in third grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:130
-msgid "What is the first name of the boy or girl that you first kissed?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:131
-msgid "In what city or town was your first job?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:135
-msgid "Please enter an answer:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:152
-msgid "VAT/Tax ID (EU only)"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:162
-msgid "Subscribe to Sourcefabric newsletter"
-msgstr ""
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
-msgid "Import Folder:"
-msgstr "Katalog importu:"
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
-msgid "Watched Folders:"
-msgstr "Katalogi obserwowane:"
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
-msgid "Not a valid Directory"
-msgstr "Nieprawidłowy katalog"
-
-#: airtime_mvc/application/forms/PasswordRestore.php:14
-msgid "Email"
+msgid "File does not exist in %s"
msgstr ""
-#: airtime_mvc/application/forms/PasswordRestore.php:36
-msgid "Reset password"
-msgstr "Resetuj hasło"
+#: airtime_mvc/application/controllers/ApiController.php:781
+msgid "Bad request. no 'mode' parameter passed."
+msgstr "Złe zapytanie. Nie zaakceprtowano parametru 'mode'"
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
-msgid "Plan type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
-msgid "Billing cycle:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
-msgid "Payment method:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
-msgid "PayPal"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
-msgid "Credit Card via 2Checkout"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:213
-#, php-format
-msgid "The year %s must be within the range of 1753 - 9999"
-msgstr "Rok %s musi być w przedziale od 1753 do 9999"
-
-#: airtime_mvc/application/common/DateHelper.php:216
-#, php-format
-msgid "%s-%s-%s is not a valid date"
-msgstr "%s-%s-%s nie jest poprawną datą"
-
-#: airtime_mvc/application/common/DateHelper.php:240
-#, php-format
-msgid "%s:%s:%s is not a valid time"
-msgstr "%s:%s:%s nie jest prawidłowym czasem"
-
-#: airtime_mvc/application/common/UsabilityHints.php:55
-msgid "Upload some tracks below to add them to your library!"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:57
-#, php-format
-msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:63
-msgid "Click the 'New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:65
-#, php-format
-msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:73
-msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:75
-#, php-format
-msgid ""
-"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
-" %sCreate an unlinked show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:80
-msgid "To start broadcasting, click on the current show and select 'Schedule Show'"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:82
-#, php-format
-msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:89
-msgid "Click on the show starting next and select 'Schedule Show'"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:91
-#, php-format
-msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
-msgstr ""
+#: airtime_mvc/application/controllers/ApiController.php:791
+msgid "Bad request. 'mode' parameter is invalid"
+msgstr "Złe zapytanie. Parametr 'mode' jest nieprawidłowy"
#: airtime_mvc/application/controllers/LocaleController.php:30
#: airtime_mvc/application/layouts/scripts/audio-player.phtml:5
@@ -2909,11 +560,6 @@ msgstr "Dodawanie %s elementów"
msgid "You can only add tracks to smart blocks."
msgstr "do smart blocków mozna dodawać tylko utwory."
-#: airtime_mvc/application/controllers/LocaleController.php:50
-#: airtime_mvc/application/controllers/PlaylistController.php:180
-msgid "You can only add tracks, smart blocks, and webstreams to playlists."
-msgstr "Do list odtwarzania można dodawać tylko utwory, smart blocki i webstreamy"
-
#: airtime_mvc/application/controllers/LocaleController.php:53
msgid "Please select a cursor position on timeline."
msgstr "Proszę wybrać pozycję kursora na osi czasu."
@@ -2954,11 +600,6 @@ msgstr ""
msgid "Click 'New' to create one."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:66
-#: airtime_mvc/application/controllers/LibraryController.php:123
-msgid "Edit Metadata"
-msgstr "Edytuj Metadane."
-
#: airtime_mvc/application/controllers/LocaleController.php:67
msgid "Add to selected show"
msgstr "Dodaj do wybranej audycji"
@@ -2987,6 +628,12 @@ msgstr "Czy na pewno chcesz usunąć wybrane elementy?"
msgid "Scheduled"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:74
+#: airtime_mvc/application/layouts/scripts/layout.phtml:78
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
+msgid "Tracks"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:75
#: airtime_mvc/application/layouts/scripts/layout.phtml:60
msgid "Playlist"
@@ -2996,18 +643,96 @@ msgstr ""
msgid "Bit Rate"
msgstr "Bit Rate"
+#: airtime_mvc/application/controllers/LocaleController.php:80
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
+#: airtime_mvc/application/models/Block.php:1354
+msgid "BPM"
+msgstr "BPM"
+
+#: airtime_mvc/application/controllers/LocaleController.php:84
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
+#: airtime_mvc/application/models/Block.php:1361
+msgid "Encoded By"
+msgstr "Kodowane przez"
+
+#: airtime_mvc/application/controllers/LocaleController.php:89
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
+#: airtime_mvc/application/models/Block.php:1367
+msgid "Last Modified"
+msgstr "Ostatnio zmodyfikowany"
+
+#: airtime_mvc/application/controllers/LocaleController.php:90
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
+#: airtime_mvc/application/models/Block.php:1368
+msgid "Last Played"
+msgstr "Ostatnio odtwarzany"
+
+#: airtime_mvc/application/controllers/LocaleController.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
+#: airtime_mvc/application/models/Block.php:1370
+msgid "Mime"
+msgstr "Podobne do"
+
+#: airtime_mvc/application/controllers/LocaleController.php:94
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
+#: airtime_mvc/application/models/Block.php:1372
+msgid "Owner"
+msgstr "Właściciel"
+
+#: airtime_mvc/application/controllers/LocaleController.php:95
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
+#: airtime_mvc/application/models/Block.php:1373
+msgid "Replay Gain"
+msgstr "Normalizacja głośności (Replay Gain)"
+
#: airtime_mvc/application/controllers/LocaleController.php:96
msgid "Sample Rate"
msgstr "Wartość próbkowania"
+#: airtime_mvc/application/controllers/LocaleController.php:97
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
+#: airtime_mvc/application/models/Block.php:1376
+msgid "Track Number"
+msgstr "Numer utworu"
+
+#: airtime_mvc/application/controllers/LocaleController.php:98
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
+#: airtime_mvc/application/models/Block.php:1377
+msgid "Uploaded"
+msgstr "Przesłano"
+
+#: airtime_mvc/application/controllers/LocaleController.php:99
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
+#: airtime_mvc/application/models/Block.php:1378
+msgid "Website"
+msgstr "Strona internetowa"
+
#: airtime_mvc/application/controllers/LocaleController.php:101
msgid "Loading..."
msgstr "Ładowanie"
+#: airtime_mvc/application/controllers/LocaleController.php:102
+#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
+msgid "All"
+msgstr "Wszystko"
+
#: airtime_mvc/application/controllers/LocaleController.php:103
msgid "Files"
msgstr "Pliki"
+#: airtime_mvc/application/controllers/LocaleController.php:104
+#: airtime_mvc/application/layouts/scripts/layout.phtml:80
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
+msgid "Playlists"
+msgstr "Listy odtwarzania"
+
+#: airtime_mvc/application/controllers/LocaleController.php:105
+#: airtime_mvc/application/layouts/scripts/layout.phtml:82
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
+msgid "Smart Blocks"
+msgstr "Smart Blocki"
+
#: airtime_mvc/application/controllers/LocaleController.php:106
msgid "Web Streams"
msgstr "Web Stream"
@@ -3152,6 +877,74 @@ msgstr "Smart block został zapisany"
msgid "Processing..."
msgstr "Przetwarzanie..."
+#: airtime_mvc/application/controllers/LocaleController.php:151
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
+#: airtime_mvc/application/models/Block.php:1383
+msgid "Select modifier"
+msgstr "Wybierz modyfikator"
+
+#: airtime_mvc/application/controllers/LocaleController.php:152
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
+#: airtime_mvc/application/models/Block.php:1384
+msgid "contains"
+msgstr "zawiera"
+
+#: airtime_mvc/application/controllers/LocaleController.php:153
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
+#: airtime_mvc/application/models/Block.php:1385
+msgid "does not contain"
+msgstr "nie zawiera"
+
+#: airtime_mvc/application/controllers/LocaleController.php:154
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
+#: airtime_mvc/application/models/Block.php:1386
+#: airtime_mvc/application/models/Block.php:1390
+msgid "is"
+msgstr "to"
+
+#: airtime_mvc/application/controllers/LocaleController.php:155
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
+#: airtime_mvc/application/models/Block.php:1387
+#: airtime_mvc/application/models/Block.php:1391
+msgid "is not"
+msgstr "to nie"
+
+#: airtime_mvc/application/controllers/LocaleController.php:156
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
+#: airtime_mvc/application/models/Block.php:1388
+msgid "starts with"
+msgstr "zaczyna się od"
+
+#: airtime_mvc/application/controllers/LocaleController.php:157
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
+#: airtime_mvc/application/models/Block.php:1389
+msgid "ends with"
+msgstr "kończy się"
+
+#: airtime_mvc/application/controllers/LocaleController.php:158
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
+#: airtime_mvc/application/models/Block.php:1392
+msgid "is greater than"
+msgstr "jest większa niż"
+
+#: airtime_mvc/application/controllers/LocaleController.php:159
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
+#: airtime_mvc/application/models/Block.php:1393
+msgid "is less than"
+msgstr "jest mniejsza niż"
+
+#: airtime_mvc/application/controllers/LocaleController.php:160
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
+#: airtime_mvc/application/models/Block.php:1394
+msgid "is in the range"
+msgstr "mieści się w zakresie"
+
#: airtime_mvc/application/controllers/LocaleController.php:162
msgid "Choose Storage Folder"
msgstr "Wybierz ścieżkę do katalogu importu"
@@ -3168,6 +961,11 @@ msgstr ""
"Czy na pewno chcesz zamienić ścieżkę do katalogu importu\n"
"Wszystkie pliki z biblioteki Airtime zostaną usunięte."
+#: airtime_mvc/application/controllers/LocaleController.php:166
+#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
+msgid "Manage Media Folders"
+msgstr "Zarządzaj folderami mediów"
+
#: airtime_mvc/application/controllers/LocaleController.php:167
msgid "Are you sure you want to remove the watched folder?"
msgstr "Czy na pewno chcesz usunąć katalog z listy katalogów obserwowanych?"
@@ -3189,6 +987,11 @@ msgstr "Połączono z serwerem streamingu"
msgid "The stream is disabled"
msgstr "Strumień jest odłączony"
+#: airtime_mvc/application/controllers/LocaleController.php:173
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
+msgid "Getting information from the server..."
+msgstr "Pobieranie informacji z serwera..."
+
#: airtime_mvc/application/controllers/LocaleController.php:174
msgid "Can not connect to the streaming server"
msgstr "Nie można połączyć z serwerem streamującym"
@@ -3416,6 +1219,76 @@ msgstr ""
msgid "Month"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:249
+#: airtime_mvc/application/forms/GeneralPreferences.php:158
+msgid "Sunday"
+msgstr "Niedziela"
+
+#: airtime_mvc/application/controllers/LocaleController.php:250
+#: airtime_mvc/application/forms/GeneralPreferences.php:159
+msgid "Monday"
+msgstr "Poniedziałek"
+
+#: airtime_mvc/application/controllers/LocaleController.php:251
+#: airtime_mvc/application/forms/GeneralPreferences.php:160
+msgid "Tuesday"
+msgstr "Wtorek"
+
+#: airtime_mvc/application/controllers/LocaleController.php:252
+#: airtime_mvc/application/forms/GeneralPreferences.php:161
+msgid "Wednesday"
+msgstr "Środa"
+
+#: airtime_mvc/application/controllers/LocaleController.php:253
+#: airtime_mvc/application/forms/GeneralPreferences.php:162
+msgid "Thursday"
+msgstr "Czwartek"
+
+#: airtime_mvc/application/controllers/LocaleController.php:254
+#: airtime_mvc/application/forms/GeneralPreferences.php:163
+msgid "Friday"
+msgstr "Piątek"
+
+#: airtime_mvc/application/controllers/LocaleController.php:255
+#: airtime_mvc/application/forms/GeneralPreferences.php:164
+msgid "Saturday"
+msgstr "Sobota"
+
+#: airtime_mvc/application/controllers/LocaleController.php:256
+#: airtime_mvc/application/forms/AddShowRepeats.php:35
+msgid "Sun"
+msgstr "Nie"
+
+#: airtime_mvc/application/controllers/LocaleController.php:257
+#: airtime_mvc/application/forms/AddShowRepeats.php:36
+msgid "Mon"
+msgstr "Pon"
+
+#: airtime_mvc/application/controllers/LocaleController.php:258
+#: airtime_mvc/application/forms/AddShowRepeats.php:37
+msgid "Tue"
+msgstr "Wt"
+
+#: airtime_mvc/application/controllers/LocaleController.php:259
+#: airtime_mvc/application/forms/AddShowRepeats.php:38
+msgid "Wed"
+msgstr "Śr"
+
+#: airtime_mvc/application/controllers/LocaleController.php:260
+#: airtime_mvc/application/forms/AddShowRepeats.php:39
+msgid "Thu"
+msgstr "Czw"
+
+#: airtime_mvc/application/controllers/LocaleController.php:261
+#: airtime_mvc/application/forms/AddShowRepeats.php:40
+msgid "Fri"
+msgstr "Pt"
+
+#: airtime_mvc/application/controllers/LocaleController.php:262
+#: airtime_mvc/application/forms/AddShowRepeats.php:41
+msgid "Sat"
+msgstr "Sob"
+
#: airtime_mvc/application/controllers/LocaleController.php:263
msgid "Shows longer than their scheduled time will be cut off by a following show."
msgstr "Audycje o czasie dłuższym niż zaplanowany będą przerywane przez następne ."
@@ -3425,7 +1298,7 @@ msgid "Cancel Current Show?"
msgstr "Skasować obecną audycję?"
#: airtime_mvc/application/controllers/LocaleController.php:265
-#: airtime_mvc/application/controllers/LocaleController.php:309
+#: airtime_mvc/application/controllers/LocaleController.php:312
msgid "Stop recording current show?"
msgstr "Przerwać nagrywanie aktualnej audycji?"
@@ -3445,6 +1318,11 @@ msgstr "Usunąć całą zawartość?"
msgid "Delete selected item(s)?"
msgstr "Skasować wybrane elementy?"
+#: airtime_mvc/application/controllers/LocaleController.php:273
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
+msgid "Start"
+msgstr "Rozpocznij"
+
#: airtime_mvc/application/controllers/LocaleController.php:274
msgid "End"
msgstr "Zakończ"
@@ -3453,580 +1331,467 @@ msgstr "Zakończ"
msgid "Duration"
msgstr "Czas trwania"
-#: airtime_mvc/application/controllers/LocaleController.php:283
+#: airtime_mvc/application/controllers/LocaleController.php:276
+msgid "Filtering out "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:277
+msgid " of "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:278
+msgid " records"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/layouts/scripts/layout.phtml:140
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
+#: airtime_mvc/application/models/Block.php:1358
+msgid "Cue In"
+msgstr "Cue In"
+
+#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/layouts/scripts/layout.phtml:147
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
+#: airtime_mvc/application/models/Block.php:1359
+msgid "Cue Out"
+msgstr "Cue out"
+
+#: airtime_mvc/application/controllers/LocaleController.php:286
#: airtime_mvc/application/layouts/scripts/layout.phtml:167
msgid "Fade In"
msgstr "Zgłaśnianie [Fade In]"
-#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/controllers/LocaleController.php:287
#: airtime_mvc/application/layouts/scripts/layout.phtml:168
msgid "Fade Out"
msgstr "Wyciszanie [Fade out]"
-#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/controllers/LocaleController.php:288
msgid "Show Empty"
msgstr "Audycja jest pusta"
-#: airtime_mvc/application/controllers/LocaleController.php:286
+#: airtime_mvc/application/controllers/LocaleController.php:289
msgid "Recording From Line In"
msgstr "Nagrywaanie z wejścia liniowego"
-#: airtime_mvc/application/controllers/LocaleController.php:287
+#: airtime_mvc/application/controllers/LocaleController.php:290
msgid "Track preview"
msgstr "Podgląd utworu"
-#: airtime_mvc/application/controllers/LocaleController.php:291
+#: airtime_mvc/application/controllers/LocaleController.php:294
msgid "Cannot schedule outside a show."
msgstr "Nie ma możliwości planowania poza audycją."
-#: airtime_mvc/application/controllers/LocaleController.php:292
+#: airtime_mvc/application/controllers/LocaleController.php:295
msgid "Moving 1 Item"
msgstr "Przenoszenie 1 elementu"
-#: airtime_mvc/application/controllers/LocaleController.php:293
+#: airtime_mvc/application/controllers/LocaleController.php:296
#, php-format
msgid "Moving %s Items"
msgstr "Przenoszenie %s elementów"
-#: airtime_mvc/application/controllers/LocaleController.php:296
+#: airtime_mvc/application/controllers/LocaleController.php:297
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
+#: airtime_mvc/application/forms/Preferences.php:40
+#: airtime_mvc/application/forms/EditHistory.php:131
+#: airtime_mvc/application/forms/AddUser.php:110
+#: airtime_mvc/application/forms/PasswordChange.php:43
+#: airtime_mvc/application/forms/SupportSettings.php:131
+msgid "Save"
+msgstr "Zapisz"
+
+#: airtime_mvc/application/controllers/LocaleController.php:298
+#: airtime_mvc/application/controllers/LocaleController.php:321
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
+#: airtime_mvc/application/forms/EditHistory.php:141
+#: airtime_mvc/application/forms/EditAudioMD.php:186
+msgid "Cancel"
+msgstr "Anuluj"
+
+#: airtime_mvc/application/controllers/LocaleController.php:299
msgid "Fade Editor"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:297
+#: airtime_mvc/application/controllers/LocaleController.php:300
msgid "Cue Editor"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:298
+#: airtime_mvc/application/controllers/LocaleController.php:301
msgid "Waveform features are available in a browser supporting the Web Audio API"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:301
+#: airtime_mvc/application/controllers/LocaleController.php:304
msgid "Select all"
msgstr "Zaznacz wszystko"
-#: airtime_mvc/application/controllers/LocaleController.php:302
+#: airtime_mvc/application/controllers/LocaleController.php:305
msgid "Select none"
msgstr "Odznacz wszystkie"
-#: airtime_mvc/application/controllers/LocaleController.php:303
+#: airtime_mvc/application/controllers/LocaleController.php:306
msgid "Trim overbooked shows"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:304
+#: airtime_mvc/application/controllers/LocaleController.php:307
msgid "Remove selected scheduled items"
msgstr "Usuń wybrane elementy"
-#: airtime_mvc/application/controllers/LocaleController.php:305
+#: airtime_mvc/application/controllers/LocaleController.php:308
msgid "Jump to the current playing track"
msgstr "Przejdź do obecnie odtwarzanej ściezki"
-#: airtime_mvc/application/controllers/LocaleController.php:306
+#: airtime_mvc/application/controllers/LocaleController.php:309
msgid "Cancel current show"
msgstr "Skasuj obecną audycję"
-#: airtime_mvc/application/controllers/LocaleController.php:311
+#: airtime_mvc/application/controllers/LocaleController.php:314
msgid "Open library to add or remove content"
msgstr "Otwóz bibliotekę w celu dodania bądź usunięcia zawartości"
-#: airtime_mvc/application/controllers/LocaleController.php:312
+#: airtime_mvc/application/controllers/LocaleController.php:315
msgid "Add / Remove Content"
msgstr "Dodaj/usuń zawartość"
#: airtime_mvc/application/controllers/LocaleController.php:317
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
+msgid "in use"
+msgstr "W użyciu"
+
+#: airtime_mvc/application/controllers/LocaleController.php:318
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
+msgid "Disk"
+msgstr "Dysk"
+
+#: airtime_mvc/application/controllers/LocaleController.php:320
msgid "Look in"
msgstr "Sprawdź"
-#: airtime_mvc/application/controllers/LocaleController.php:319
+#: airtime_mvc/application/controllers/LocaleController.php:322
msgid "Open"
msgstr "Otwórz"
+#: airtime_mvc/application/controllers/LocaleController.php:324
+#: airtime_mvc/application/forms/AddUser.php:102
+msgid "Admin"
+msgstr "Administrator"
+
#: airtime_mvc/application/controllers/LocaleController.php:325
+#: airtime_mvc/application/forms/AddUser.php:100
+msgid "DJ"
+msgstr "Prowadzący"
+
+#: airtime_mvc/application/controllers/LocaleController.php:326
+#: airtime_mvc/application/forms/AddUser.php:101
+msgid "Program Manager"
+msgstr "Menedżer programowy"
+
+#: airtime_mvc/application/controllers/LocaleController.php:327
+#: airtime_mvc/application/forms/AddUser.php:99
+msgid "Guest"
+msgstr "Gość"
+
+#: airtime_mvc/application/controllers/LocaleController.php:328
msgid "Guests can do the following:"
msgstr "Goście mają mozliwość:"
-#: airtime_mvc/application/controllers/LocaleController.php:326
+#: airtime_mvc/application/controllers/LocaleController.php:329
msgid "View schedule"
msgstr "Przeglądanie harmonogramu"
-#: airtime_mvc/application/controllers/LocaleController.php:327
+#: airtime_mvc/application/controllers/LocaleController.php:330
msgid "View show content"
msgstr "Przeglądanie zawartości audycji"
-#: airtime_mvc/application/controllers/LocaleController.php:328
+#: airtime_mvc/application/controllers/LocaleController.php:331
msgid "DJs can do the following:"
msgstr "Prowadzący ma możliwość:"
-#: airtime_mvc/application/controllers/LocaleController.php:329
+#: airtime_mvc/application/controllers/LocaleController.php:332
msgid "Manage assigned show content"
msgstr "Zarządzać przypisaną sobie zawartością audycji"
-#: airtime_mvc/application/controllers/LocaleController.php:330
+#: airtime_mvc/application/controllers/LocaleController.php:333
msgid "Import media files"
msgstr "Importować pliki mediów"
-#: airtime_mvc/application/controllers/LocaleController.php:331
+#: airtime_mvc/application/controllers/LocaleController.php:334
msgid "Create playlists, smart blocks, and webstreams"
msgstr "Tworzyć playlisty, smart blocki i webstreamy"
-#: airtime_mvc/application/controllers/LocaleController.php:332
+#: airtime_mvc/application/controllers/LocaleController.php:335
msgid "Manage their own library content"
msgstr "Zarządzać zawartością własnej biblioteki"
-#: airtime_mvc/application/controllers/LocaleController.php:333
+#: airtime_mvc/application/controllers/LocaleController.php:336
msgid "Progam Managers can do the following:"
msgstr "Zarządzający programowi mają możliwość:"
-#: airtime_mvc/application/controllers/LocaleController.php:334
+#: airtime_mvc/application/controllers/LocaleController.php:337
msgid "View and manage show content"
msgstr "Przeglądać i zarządzać zawartością audycji"
-#: airtime_mvc/application/controllers/LocaleController.php:335
+#: airtime_mvc/application/controllers/LocaleController.php:338
msgid "Schedule shows"
msgstr "Planować audycję"
-#: airtime_mvc/application/controllers/LocaleController.php:336
+#: airtime_mvc/application/controllers/LocaleController.php:339
msgid "Manage all library content"
msgstr "Zarządzać całą zawartością biblioteki"
-#: airtime_mvc/application/controllers/LocaleController.php:337
+#: airtime_mvc/application/controllers/LocaleController.php:340
msgid "Admins can do the following:"
msgstr "Administrator ma mozliwość:"
-#: airtime_mvc/application/controllers/LocaleController.php:338
+#: airtime_mvc/application/controllers/LocaleController.php:341
msgid "Manage preferences"
msgstr "Zarządzać preferencjami"
-#: airtime_mvc/application/controllers/LocaleController.php:339
+#: airtime_mvc/application/controllers/LocaleController.php:342
msgid "Manage users"
msgstr "Zarządzać użytkownikami"
-#: airtime_mvc/application/controllers/LocaleController.php:340
+#: airtime_mvc/application/controllers/LocaleController.php:343
msgid "Manage watched folders"
msgstr "Zarządzać przeglądanymi katalogami"
-#: airtime_mvc/application/controllers/LocaleController.php:342
+#: airtime_mvc/application/controllers/LocaleController.php:344
+#: airtime_mvc/application/forms/RegisterAirtime.php:116
+#: airtime_mvc/application/forms/SupportSettings.php:98
+msgid "Send support feedback"
+msgstr "Wyślij informację zwrotną"
+
+#: airtime_mvc/application/controllers/LocaleController.php:345
msgid "View system status"
msgstr "Sprawdzać status systemu"
-#: airtime_mvc/application/controllers/LocaleController.php:343
+#: airtime_mvc/application/controllers/LocaleController.php:346
msgid "Access playout history"
msgstr "Przeglądać historię odtworzeń"
-#: airtime_mvc/application/controllers/LocaleController.php:344
+#: airtime_mvc/application/controllers/LocaleController.php:347
msgid "View listener stats"
msgstr "Sprawdzać statystyki słuchaczy"
-#: airtime_mvc/application/controllers/LocaleController.php:346
+#: airtime_mvc/application/controllers/LocaleController.php:349
msgid "Show / hide columns"
msgstr "Pokaż/ukryj kolumny"
-#: airtime_mvc/application/controllers/LocaleController.php:348
+#: airtime_mvc/application/controllers/LocaleController.php:351
msgid "From {from} to {to}"
msgstr "Od {from} do {to}"
-#: airtime_mvc/application/controllers/LocaleController.php:349
+#: airtime_mvc/application/controllers/LocaleController.php:352
msgid "kbps"
msgstr "kbps"
-#: airtime_mvc/application/controllers/LocaleController.php:350
+#: airtime_mvc/application/controllers/LocaleController.php:353
msgid "yyyy-mm-dd"
msgstr "yyyy-mm-dd"
-#: airtime_mvc/application/controllers/LocaleController.php:351
+#: airtime_mvc/application/controllers/LocaleController.php:354
msgid "hh:mm:ss.t"
msgstr "hh:mm:ss.t"
-#: airtime_mvc/application/controllers/LocaleController.php:352
+#: airtime_mvc/application/controllers/LocaleController.php:355
msgid "kHz"
msgstr "kHz"
-#: airtime_mvc/application/controllers/LocaleController.php:355
+#: airtime_mvc/application/controllers/LocaleController.php:358
msgid "Su"
msgstr "Nd"
-#: airtime_mvc/application/controllers/LocaleController.php:356
+#: airtime_mvc/application/controllers/LocaleController.php:359
msgid "Mo"
msgstr "Pn"
-#: airtime_mvc/application/controllers/LocaleController.php:357
+#: airtime_mvc/application/controllers/LocaleController.php:360
msgid "Tu"
msgstr "Wt"
-#: airtime_mvc/application/controllers/LocaleController.php:358
+#: airtime_mvc/application/controllers/LocaleController.php:361
msgid "We"
msgstr "Śr"
-#: airtime_mvc/application/controllers/LocaleController.php:359
+#: airtime_mvc/application/controllers/LocaleController.php:362
msgid "Th"
msgstr "Cz"
-#: airtime_mvc/application/controllers/LocaleController.php:360
+#: airtime_mvc/application/controllers/LocaleController.php:363
msgid "Fr"
msgstr "Pt"
-#: airtime_mvc/application/controllers/LocaleController.php:361
+#: airtime_mvc/application/controllers/LocaleController.php:364
msgid "Sa"
msgstr "So"
-#: airtime_mvc/application/controllers/LocaleController.php:364
+#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
+msgid "Close"
+msgstr "Zamknij"
+
+#: airtime_mvc/application/controllers/LocaleController.php:367
msgid "Hour"
msgstr "Godzina"
-#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:368
msgid "Minute"
msgstr "Minuta"
-#: airtime_mvc/application/controllers/LocaleController.php:366
+#: airtime_mvc/application/controllers/LocaleController.php:369
msgid "Done"
msgstr "Gotowe"
-#: airtime_mvc/application/controllers/LocaleController.php:369
+#: airtime_mvc/application/controllers/LocaleController.php:372
msgid "Select files"
msgstr "Wybierz pliki"
-#: airtime_mvc/application/controllers/LocaleController.php:370
-#: airtime_mvc/application/controllers/LocaleController.php:371
+#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:374
msgid "Add files to the upload queue and click the start button."
msgstr "Dodaj pliki do kolejki i wciśnij \"start\""
-#: airtime_mvc/application/controllers/LocaleController.php:372
-#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:376
msgid "Status"
msgstr "Status"
-#: airtime_mvc/application/controllers/LocaleController.php:374
+#: airtime_mvc/application/controllers/LocaleController.php:377
msgid "Add Files"
msgstr "Dodaj pliki"
-#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:378
msgid "Stop Upload"
msgstr "Zatrzymaj przesyłanie"
-#: airtime_mvc/application/controllers/LocaleController.php:376
+#: airtime_mvc/application/controllers/LocaleController.php:379
msgid "Start upload"
msgstr "Rozpocznij przesyłanie"
-#: airtime_mvc/application/controllers/LocaleController.php:377
+#: airtime_mvc/application/controllers/LocaleController.php:380
msgid "Add files"
msgstr "Dodaj pliki"
-#: airtime_mvc/application/controllers/LocaleController.php:378
+#: airtime_mvc/application/controllers/LocaleController.php:381
#, php-format
msgid "Uploaded %d/%d files"
msgstr "Dodano pliki %d%d"
-#: airtime_mvc/application/controllers/LocaleController.php:379
+#: airtime_mvc/application/controllers/LocaleController.php:382
msgid "N/A"
msgstr "Nie dotyczy"
-#: airtime_mvc/application/controllers/LocaleController.php:380
+#: airtime_mvc/application/controllers/LocaleController.php:383
msgid "Drag files here."
msgstr "Przeciągnij pliki tutaj."
-#: airtime_mvc/application/controllers/LocaleController.php:381
+#: airtime_mvc/application/controllers/LocaleController.php:384
msgid "File extension error."
msgstr "Błąd rozszerzenia pliku."
-#: airtime_mvc/application/controllers/LocaleController.php:382
+#: airtime_mvc/application/controllers/LocaleController.php:385
msgid "File size error."
msgstr "Błąd rozmiaru pliku."
-#: airtime_mvc/application/controllers/LocaleController.php:383
+#: airtime_mvc/application/controllers/LocaleController.php:386
msgid "File count error."
msgstr "Błąd liczenia plików"
-#: airtime_mvc/application/controllers/LocaleController.php:384
+#: airtime_mvc/application/controllers/LocaleController.php:387
msgid "Init error."
msgstr "Błąd inicjalizacji"
-#: airtime_mvc/application/controllers/LocaleController.php:385
+#: airtime_mvc/application/controllers/LocaleController.php:388
msgid "HTTP Error."
msgstr "Błąd HTTP."
-#: airtime_mvc/application/controllers/LocaleController.php:386
+#: airtime_mvc/application/controllers/LocaleController.php:389
msgid "Security error."
msgstr "Błąd zabezpieczeń."
-#: airtime_mvc/application/controllers/LocaleController.php:387
+#: airtime_mvc/application/controllers/LocaleController.php:390
msgid "Generic error."
msgstr "Błąd ogólny."
-#: airtime_mvc/application/controllers/LocaleController.php:388
+#: airtime_mvc/application/controllers/LocaleController.php:391
msgid "IO error."
msgstr "Błąd I/O"
-#: airtime_mvc/application/controllers/LocaleController.php:389
+#: airtime_mvc/application/controllers/LocaleController.php:392
#, php-format
msgid "File: %s"
msgstr "Plik: %s"
-#: airtime_mvc/application/controllers/LocaleController.php:391
+#: airtime_mvc/application/controllers/LocaleController.php:394
#, php-format
msgid "%d files queued"
msgstr "%d plików oczekujących"
-#: airtime_mvc/application/controllers/LocaleController.php:392
+#: airtime_mvc/application/controllers/LocaleController.php:395
msgid "File: %f, size: %s, max file size: %m"
msgstr "Plik: %f, rozmiar %s, maksymalny rozmiar pliku: %m"
-#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/controllers/LocaleController.php:396
msgid "Upload URL might be wrong or doesn't exist"
msgstr "URL nie istnieje bądź jest niewłaściwy"
-#: airtime_mvc/application/controllers/LocaleController.php:394
+#: airtime_mvc/application/controllers/LocaleController.php:397
msgid "Error: File too large: "
msgstr "Błąd: plik jest za duży:"
-#: airtime_mvc/application/controllers/LocaleController.php:395
+#: airtime_mvc/application/controllers/LocaleController.php:398
msgid "Error: Invalid file extension: "
msgstr "Błąd: nieprawidłowe rozszerzenie pliku:"
-#: airtime_mvc/application/controllers/LocaleController.php:398
+#: airtime_mvc/application/controllers/LocaleController.php:400
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
+msgid "Set Default"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:401
msgid "Create Entry"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:399
+#: airtime_mvc/application/controllers/LocaleController.php:402
msgid "Edit History Record"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:402
+#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
+#: airtime_mvc/application/forms/EditHistoryItem.php:57
+msgid "No Show"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:405
#, php-format
msgid "Copied %s row%s to the clipboard"
msgstr "Skopiowano %srow%s do schowka"
-#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/controllers/LocaleController.php:406
#, php-format
msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished."
msgstr "%sPrint view%s Użyj j funkcji drukowania na swojej wyszykiwarce. By zakończyć, wciśnij 'escape'."
-#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/controllers/LocaleController.php:407
msgid "New Show"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:405
+#: airtime_mvc/application/controllers/LocaleController.php:408
msgid "New Log Entry"
msgstr ""
-#: airtime_mvc/application/controllers/ScheduleController.php:389
-#, php-format
-msgid "Rebroadcast of show %s from %s at %s"
-msgstr "Retransmisja audycji %s z %s o %s"
-
-#: airtime_mvc/application/controllers/ScheduleController.php:712
-#: airtime_mvc/application/controllers/LibraryController.php:131
-msgid "Download"
-msgstr "Pobierz"
-
-#: airtime_mvc/application/controllers/ErrorController.php:78
-msgid "Page not found."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:87
-msgid "The requested action is not supported."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:98
-msgid "You do not have permission to access this resource."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:109
-msgid "An internal application error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ListenerstatController.php:51
-msgid "Please make sure admin user/password is correct on System->Streams page."
-msgstr "Upewnij się, że nazwa użytkownika i hasło są poprawne w System->Strumienie."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:53
-#, php-format
-msgid "You are viewing an older version of %s"
-msgstr "Przeglądasz starszą wersję %s"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:140
-msgid "You cannot add tracks to dynamic blocks."
-msgstr "Nie można dodać ścieżek do bloków dynamicznych"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:147
-#: airtime_mvc/application/controllers/LibraryController.php:31
-#, php-format
-msgid "%s not found"
-msgstr "nie znaleziono %s"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:161
-#, php-format
-msgid "You don't have permission to delete selected %s(s)."
-msgstr "Nie masz pozwolenia na usunięcie wybranych %s(s)"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:168
-#: airtime_mvc/application/controllers/LibraryController.php:40
-msgid "Something went wrong."
-msgstr "Wystapił błąd"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:174
-msgid "You can only add tracks to smart block."
-msgstr "Utwory mogą być dodane tylko do smartblocku"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:192
-msgid "Untitled Playlist"
-msgstr "Lista odtwarzania bez tytułu"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:194
-msgid "Untitled Smart Block"
-msgstr "Smartblock bez tytułu"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:522
-msgid "Unknown Playlist"
-msgstr "Nieznana playlista"
-
-#: airtime_mvc/application/controllers/LoginController.php:43
-msgid "Please enter your username and password."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:93
-msgid "Wrong username or password provided. Please try again."
-msgstr "Błędna nazwa użytkownika lub hasło. Spróbuj ponownie."
-
-#: airtime_mvc/application/controllers/LoginController.php:167
-msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
-msgstr "Email nie został wysłany. Sprawdź swoje ustawienia serwera pocztowego i upewnij się, że został skonfigurowany poprawnie."
-
-#: airtime_mvc/application/controllers/LoginController.php:173
-msgid "There was a problem with the username or email address you entered."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:35
-#: airtime_mvc/application/controllers/DashboardController.php:84
-msgid "You don't have permission to disconnect source."
-msgstr "Nie masz uprawnień do odłączenia żródła"
-
-#: airtime_mvc/application/controllers/DashboardController.php:37
-#: airtime_mvc/application/controllers/DashboardController.php:86
-msgid "There is no source connected to this input."
-msgstr "Źródło nie jest podłączone do tego wyjścia."
-
-#: airtime_mvc/application/controllers/DashboardController.php:81
-msgid "You don't have permission to switch source."
-msgstr "Nie masz uprawnień do przełączenia źródła."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:72
-msgid "Preferences updated."
-msgstr "Zaktualizowano preferencje."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:115
-msgid "Support setting updated."
-msgstr "Zaktualizowano ustawienia wsparcia."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:123
-msgid "Support Feedback"
-msgstr "Informacja zwrotna"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:251
-msgid "Stream Setting Updated."
-msgstr "Zaktualizowano ustawienia strumienia"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:342
-msgid "path should be specified"
-msgstr "należy okreslić ścieżkę"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:437
-msgid "Problem with Liquidsoap..."
-msgstr "Problem z Liquidsoap..."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:493
-msgid "Request method not accepted"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:86
-msgid "User added successfully!"
-msgstr "Użytkownik został dodany poprawnie!"
-
-#: airtime_mvc/application/controllers/UserController.php:88
-msgid "User updated successfully!"
-msgstr "Użytkownik został poprawnie zaktualizowany!"
-
-#: airtime_mvc/application/controllers/UserController.php:187
-msgid "Settings updated successfully!"
-msgstr "Ustawienia zostały poprawnie zaktualizowane!"
-
-#: airtime_mvc/application/controllers/WebstreamController.php:28
-#: airtime_mvc/application/controllers/WebstreamController.php:32
-msgid "Untitled Webstream"
-msgstr "Webstream bez nazwy"
-
-#: airtime_mvc/application/controllers/WebstreamController.php:150
-msgid "Webstream saved."
-msgstr "Zapisano webstream"
-
-#: airtime_mvc/application/controllers/WebstreamController.php:158
-msgid "Invalid form values."
-msgstr "Nieprawidłowe wartości formularzy"
-
-#: airtime_mvc/application/controllers/LibraryController.php:95
-#: airtime_mvc/application/controllers/ShowbuilderController.php:136
-msgid "Preview"
-msgstr "Podgląd"
-
-#: airtime_mvc/application/controllers/LibraryController.php:115
-#: airtime_mvc/application/controllers/LibraryController.php:177
-#: airtime_mvc/application/controllers/LibraryController.php:200
-msgid "Add to Playlist"
-msgstr "Dodaj do listy odtwarzania"
-
-#: airtime_mvc/application/controllers/LibraryController.php:117
-msgid "Add to Smart Block"
-msgstr "Dodaj do smartblocku"
-
-#: airtime_mvc/application/controllers/LibraryController.php:147
-msgid "View track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:148
-msgid "Remove track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:154
-#: airtime_mvc/application/controllers/LibraryController.php:159
-msgid "Upload track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:169
-msgid "Duplicate Playlist"
-msgstr "Skopiuj listę odtwarzania"
-
-#: airtime_mvc/application/controllers/LibraryController.php:213
-msgid "No action available"
-msgstr "Brak dostepnych czynności"
-
-#: airtime_mvc/application/controllers/LibraryController.php:233
-msgid "You don't have permission to delete selected items."
-msgstr "Nie masz uprawnień do usunięcia wybranych elementów"
-
-#: airtime_mvc/application/controllers/LibraryController.php:279
-msgid "Could not delete file because it is scheduled in the future."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:282
-msgid "Could not delete file(s)."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:322
-#, php-format
-msgid "Copy of %s"
-msgstr "Kopia %s"
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
-msgid ""
-"To configure and use the embeddable player you must:
\n"
-" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
-" 2. Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
-msgid ""
-"To use the embeddable weekly schedule widget you must:
\n"
-" Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
#: airtime_mvc/application/controllers/ShowbuilderController.php:138
msgid "Select cursor"
msgstr "Wybierz kursor"
@@ -4039,39 +1804,78 @@ msgstr "Usuń kursor"
msgid "show does not exist"
msgstr "audycja nie istnieje"
-#: airtime_mvc/application/controllers/ApiController.php:79
-msgid "You are not allowed to access this resource."
-msgstr "Nie masz dostępu do tej lokalizacji"
-
-#: airtime_mvc/application/controllers/ApiController.php:244
-#: airtime_mvc/application/controllers/ApiController.php:317
-#: airtime_mvc/application/controllers/ApiController.php:392
-#: airtime_mvc/application/controllers/ApiController.php:435
-#: airtime_mvc/application/controllers/ApiController.php:474
-#: airtime_mvc/application/controllers/ApiController.php:507
-msgid "You are not allowed to access this resource. "
-msgstr "Nie masz dostępu do tej lokalizacji."
-
-#: airtime_mvc/application/controllers/ApiController.php:698
-#: airtime_mvc/application/controllers/ApiController.php:718
-#: airtime_mvc/application/controllers/ApiController.php:730
+#: airtime_mvc/application/controllers/ScheduleController.php:389
#, php-format
-msgid "File does not exist in %s"
+msgid "Rebroadcast of show %s from %s at %s"
+msgstr "Retransmisja audycji %s z %s o %s"
+
+#: airtime_mvc/application/common/UsabilityHints.php:55
+msgid "Upload some tracks below to add them to your library!"
msgstr ""
-#: airtime_mvc/application/controllers/ApiController.php:781
-msgid "Bad request. no 'mode' parameter passed."
-msgstr "Złe zapytanie. Nie zaakceprtowano parametru 'mode'"
-
-#: airtime_mvc/application/controllers/ApiController.php:791
-msgid "Bad request. 'mode' parameter is invalid"
-msgstr "Złe zapytanie. Parametr 'mode' jest nieprawidłowy"
-
-#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#: airtime_mvc/application/common/UsabilityHints.php:57
#, php-format
-msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
msgstr ""
+#: airtime_mvc/application/common/UsabilityHints.php:63
+msgid "Click the 'New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:65
+#, php-format
+msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:73
+msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:75
+#, php-format
+msgid ""
+"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
+" %sCreate an unlinked show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:80
+msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:82
+#, php-format
+msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:89
+msgid "Click on the show starting next and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:91
+#, php-format
+msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/DateHelper.php:213
+#, php-format
+msgid "The year %s must be within the range of 1753 - 9999"
+msgstr "Rok %s musi być w przedziale od 1753 do 9999"
+
+#: airtime_mvc/application/common/DateHelper.php:216
+#, php-format
+msgid "%s-%s-%s is not a valid date"
+msgstr "%s-%s-%s nie jest poprawną datą"
+
+#: airtime_mvc/application/common/DateHelper.php:240
+#, php-format
+msgid "%s:%s:%s is not a valid time"
+msgstr "%s:%s:%s nie jest prawidłowym czasem"
+
+#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
+msgid "Live stream"
+msgstr "Transmisja na żywo"
+
#: airtime_mvc/application/layouts/scripts/layout.phtml:63
msgid "Smart Block"
msgstr ""
@@ -4084,6 +1888,17 @@ msgstr ""
msgid "Upload"
msgstr ""
+#: airtime_mvc/application/layouts/scripts/layout.phtml:76
+#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
+msgid "Dashboard"
+msgstr ""
+
+#: airtime_mvc/application/layouts/scripts/layout.phtml:84
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
+msgid "Webstreams"
+msgstr ""
+
#: airtime_mvc/application/layouts/scripts/layout.phtml:135
#: airtime_mvc/application/layouts/scripts/layout.phtml:161
msgid "Play"
@@ -4106,389 +1921,2128 @@ msgstr ""
msgid "Cursor"
msgstr ""
-#~ msgid "Show:"
-#~ msgstr "Audycja:"
+#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#, php-format
+msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
+msgid "Drop files here or click to browse your computer."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
+msgid "Failed"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
+msgid "Pending"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
+msgid "Recent Uploads"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
+msgid "Share"
+msgstr "Podziel się"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
+msgid "Select stream:"
+msgstr "Wybierz strumień:"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
+msgid "mute"
+msgstr "wycisz"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
+msgid "unmute"
+msgstr "włącz głos"
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
+msgid "About"
+msgstr "Informacje"
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
+#, php-format
+msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
+#, php-format
+msgid "%1$s %2$s is distributed under the %3$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
+#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
+#, php-format
+msgid "Welcome to %s!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
+#, php-format
+msgid "Here's how you can get started using %s to automate your broadcasts: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
+msgid "Upload audio tracks"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
+msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
+msgid "Schedule a show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
+msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
+msgid "Add tracks to your show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
+msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
+msgid "Now you're good to go!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
+#, php-format
+msgid "For more detailed help, read the %suser manual%s."
+msgstr "W celu uzyskania szczegółowej pomocy, skorzystaj z %suser manual%s"
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
+#: airtime_mvc/application/configs/navigation.php:40
+msgid "Weekly Schedule"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
+#: airtime_mvc/application/forms/Player.php:77
+msgid "Preview:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
+#: airtime_mvc/application/configs/navigation.php:34
+msgid "Player"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:97
+msgid "Playout History"
+msgstr "Historia odtwarzania"
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
+msgid "Log Sheet"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
+msgid "File Summary"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
+msgid "Show Summary"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
+msgid "Expand Static Block"
+msgstr "Zwiększ bok statyczny"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
+msgid "Expand Dynamic Block"
+msgstr "Zwiększ blok dynamiczny"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
+msgid "Choose some search criteria above and click Generate to create this playlist."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
+msgid "A track list will be generated when you schedule this smart block into a show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
+msgid "Drag tracks here from your library to add them to the playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
+msgid "Editing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:26
+msgid "Name:"
+msgstr "Nazwa:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
+#: airtime_mvc/application/forms/AddShowWhat.php:54
+msgid "Description:"
+msgstr "Opis:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
+#: airtime_mvc/application/forms/AddShowWhen.php:89
+msgid "Duration:"
+msgstr "Czas trwania:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
+msgid "Toggle Details"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+msgid "Shuffle playlist"
+msgstr "Wymieszaj listę odtwarzania"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
+msgid "Shuffle"
+msgstr "Przemieszaj"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
+msgid "Playlist crossfade"
+msgstr "Płynne przenikanie utworów na liście dotwarzania"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+msgid "Empty playlist content"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Clear"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+msgid "Fade in: "
+msgstr "Zgłaśnianie [fade in]:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "Fade out: "
+msgstr "Wyciszanie [fade out]:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+msgid "Save playlist"
+msgstr "Zapisz listę odtwarzania"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
+msgid "No open playlist"
+msgstr "Brak otwartej listy odtwarzania"
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
+msgid "Show Waveform"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "(ss.t)"
+msgstr "(ss.t)"
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Remove all content from this smart block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
+msgid "No smart block currently open"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+msgid "Cue In: "
+msgstr "Zgłaśnianie [Cue in]:"
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "(hh:mm:ss.t)"
+msgstr "(hh:mm:ss.t)"
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "Cue Out: "
+msgstr "Wyciszanie [Cue out]:"
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
+msgid "Original Length:"
+msgstr "Oryginalna długość:"
+
+#: airtime_mvc/application/views/scripts/preference/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:56
+msgid "General"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
+msgid "Stream Settings"
+msgstr "Ustawienia strumienia"
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
+msgid "Global"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
+msgid "dB"
+msgstr "dB"
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
+msgid "Output Streams"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:3
+#: airtime_mvc/application/forms/Login.php:83
+msgid "Login"
+msgstr "Zaloguj"
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:7
+#, php-format
+msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
+msgid "Email Sent!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
+msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
+msgid "Back"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
+msgid "Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
+msgid "New password"
+msgstr "Nowe hasło"
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
+msgid "Please enter and confirm your new password in the fields below."
+msgstr "Wprowadź i potwierdź swoje hasło w poniższych polach"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
+msgid "Manage Users"
+msgstr "Zarządzaj Użytkownikami"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
+msgid "New User"
+msgstr "Nowy Użytkownik"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
+msgid "id"
+msgstr "id"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
+#: airtime_mvc/application/forms/PasswordRestore.php:25
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
+msgid "Username"
+msgstr "Nazwa użytkownika"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
+msgid "First Name"
+msgstr "Imię"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
+msgid "Last Name"
+msgstr "Nazwisko"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
+msgid "User Type"
+msgstr "Typ użytkownika"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
+#, php-format
+msgid "Super Admin details can be changed in your Billing Settings."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
+msgid "Find Shows"
+msgstr "Znajdź audycję"
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
+msgid "Choose Show Instance"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
+msgid "Find"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
+#: airtime_mvc/application/configs/navigation.php:61
+msgid "My Profile"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
+#, php-format
+msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
+msgid "Repeat Days:"
+msgstr "Dni powtarzania:"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
+#: airtime_mvc/application/forms/GeneralPreferences.php:53
+#: airtime_mvc/application/forms/AddShowStyle.php:64
+msgid "Remove"
+msgstr "Usuń"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
+msgid "Add"
+msgstr "Dodaj"
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
+msgid "Show Source"
+msgstr "Źródło audycji"
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
+msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
+msgid "Register Airtime"
+msgstr "Zarejestruj Airtime"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
+#, php-format
+msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
+#, php-format
+msgid "Click the box below to promote your station on %s."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
+msgid "(Required)"
+msgstr "(Wymagane)"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
+msgid "(for verification purposes only, will not be published)"
+msgstr "(tylko dla celów weryfikacji, dane nie będą rozpowszechniane)"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
+#: airtime_mvc/application/forms/GeneralPreferences.php:43
+msgid "Note: Anything larger than 600x600 will be resized."
+msgstr "Uwaga: każdy plik o rozmiarze większym niż 600x600 zostanie zmniejszony"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
+msgid "Show me what I am sending "
+msgstr "Pokazuj, co wysyłam"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
+msgid "Terms and Conditions"
+msgstr "Zasady i warunki"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
+msgid "Choose Days:"
+msgstr "Wybierz dni:"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
+msgid "Search Criteria:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
+msgid "New Criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
+msgid "or"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
+msgid "and"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
+msgid "New Modifier"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
+msgid " to "
+msgstr "do"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
+msgid "files meet the criteria"
+msgstr "pliki spełniają kryteria"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
+msgid "file meets the criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
+msgid "Filter History"
+msgstr "Filtruj Historię"
+
+#: airtime_mvc/application/views/scripts/form/login.phtml:41
+msgid "Forgot your password?"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
+msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
+msgstr "(Aby promowac stację, należy udostepnić funkcję \"wyślij informację zwrotną\")"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
+msgid "Stream "
+msgstr "Strumień"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
+msgid "Additional Options"
+msgstr "Opcje dodatkowe"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
+msgid "The following info will be displayed to listeners in their media player:"
+msgstr "W odtwarzaczu słuchacza wyświetli sie nastepujaca informacja:"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
+msgid "(Your radio station website)"
+msgstr "(Strona internetowa Twojej stacji)"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
+msgid "Stream URL: "
+msgstr "URL strumienia:"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
+msgid "Choose folder"
+msgstr "Wybierz folder"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
+msgid "Set"
+msgstr "Ustaw"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
+msgid "Current Import Folder:"
+msgstr "Aktualny folder importu:"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
+#, php-format
+msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
+msgid "Remove watched directory"
+msgstr "Usuń obserwowany katalog."
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
+msgid "You are not watching any media folders."
+msgstr "Nie obserwujesz w tej chwili żadnych folderów"
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
+msgid "Live Broadcasting"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
+msgid "Master Source"
+msgstr "Źródło Nadrzędne"
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
+msgid "Use these settings in your broadcasting software to stream live at any time."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
+msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
+msgid "TuneIn Settings"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
+msgid "SoundCloud Settings"
+msgstr "Ustawienia SoundCloud"
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
+msgid "Dangerous Options"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Add this show"
+msgstr "Dodaj audycję"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Update show"
+msgstr "Aktualizuj audycję"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
+msgid "What"
+msgstr "Co"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
+msgid "When"
+msgstr "Kiedy"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
+msgid "Live Stream Input"
+msgstr "Wejście Strumienia \"Na żywo\""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
+msgid "Who"
+msgstr "Kto"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
+msgid "Style"
+msgstr "Styl"
+
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
+msgid "Disk Space"
+msgstr "Miejsce na dysku "
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:3
+msgid "File import in progress..."
+msgstr "Importowanie plików w toku..."
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:10
+#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
+msgid "Advanced Search Options"
+msgstr "Zaawansowane opcje wyszukiwania"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
+#: airtime_mvc/application/forms/EditAudioMD.php:24
+#: airtime_mvc/application/forms/Player.php:15
+msgid "Title:"
+msgstr "Tytuł:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
+#: airtime_mvc/application/forms/EditAudioMD.php:34
+msgid "Creator:"
+msgstr "Autor:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
+#: airtime_mvc/application/forms/EditAudioMD.php:44
+msgid "Album:"
+msgstr "Album:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
+msgid "Track:"
+msgstr "Utwór:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
+msgid "Length:"
+msgstr "Długość: "
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
+msgid "Sample Rate:"
+msgstr "Częstotliwość próbkowania:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
+msgid "Bit Rate:"
+msgstr "Bit Rate:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
+#: airtime_mvc/application/forms/EditAudioMD.php:115
+msgid "Mood:"
+msgstr "Nastrój:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:45
+#: airtime_mvc/application/forms/EditAudioMD.php:62
+msgid "Genre:"
+msgstr "Rodzaj:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
+#: airtime_mvc/application/forms/EditAudioMD.php:72
+msgid "Year:"
+msgstr "Rok:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
+#: airtime_mvc/application/forms/EditAudioMD.php:85
+msgid "Label:"
+msgstr "Wydawnictwo:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
+#: airtime_mvc/application/forms/EditAudioMD.php:125
+msgid "BPM:"
+msgstr "BPM:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
+#: airtime_mvc/application/forms/EditAudioMD.php:95
+msgid "Composer:"
+msgstr "Kompozytor:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
+#: airtime_mvc/application/forms/EditAudioMD.php:105
+msgid "Conductor:"
+msgstr "Dyrygent/Pod batutą:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
+#: airtime_mvc/application/forms/EditAudioMD.php:135
+msgid "Copyright:"
+msgstr "Prawa autorskie:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
+msgid "Isrc Number:"
+msgstr "Numer Isrc:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
+#: airtime_mvc/application/forms/EditAudioMD.php:155
+msgid "Website:"
+msgstr "Strona internetowa:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
+#: airtime_mvc/application/forms/EditAudioMD.php:165
+#: airtime_mvc/application/forms/EditUser.php:119
+#: airtime_mvc/application/forms/Login.php:68
+msgid "Language:"
+msgstr "Język:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
+msgid "File Path:"
+msgstr "Ścieżka pliku:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
+msgid "Web Stream"
+msgstr "Web Stream"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
+msgid "Dynamic Smart Block"
+msgstr "Smart block dynamiczny"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
+msgid "Static Smart Block"
+msgstr "Smart block statyczny"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
+msgid "Audio Track"
+msgstr "Ścieżka audio"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
+msgid "Playlist Contents: "
+msgstr "Zawartość listy odtwarzania:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
+msgid "Static Smart Block Contents: "
+msgstr "Zawartość statycznego Smart Blocka:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
+msgid "Dynamic Smart Block Criteria: "
+msgstr "Kryteria dynamicznego Smart Blocku "
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
+msgid "Limit to "
+msgstr "Ogranicz(enie) do:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
+#: airtime_mvc/application/forms/AddShowWhat.php:36
+msgid "URL:"
+msgstr "Adres URL"
+
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
+msgid "Viewing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
+msgid "Listeners"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
+msgid "Stream Data Collection Status"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
+msgid "Your trial expires in"
+msgstr "Twoja próba wygasa"
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
+msgid "days"
+msgstr "dni"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
+msgid "Previous:"
+msgstr "Poprzedni:"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
+msgid "Next:"
+msgstr "Następny:"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
+msgid "Source Streams"
+msgstr "Strumienie źródłowe"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
+msgid "ON AIR"
+msgstr "Na antenie"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
+msgid "Listen"
+msgstr "Słuchaj"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
+msgid "Logout"
+msgstr "Wyloguj"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
+msgid "Playout History Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
+msgid "Log Sheet Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
+msgid "New Log Sheet Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
+msgid "No Log Sheet Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
+msgid "File Summary Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
+msgid "New File Summary Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
+msgid "No File Summary Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
+msgid "Creating File Summary Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
+msgid "Creating Log Sheet Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
+msgid "Name"
+msgstr "Nazwa"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
+msgid "Add more elements"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
+msgid "Add New Field"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
+msgid "Set Default Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
+msgid "Description"
+msgstr "Opis"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
+msgid "Stream URL:"
+msgstr "URL strumienia:"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
+msgid "Default Length:"
+msgstr "Domyślna długość:"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
+msgid "No webstream"
+msgstr "Brak webstreamu"
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
+#: airtime_mvc/application/views/scripts/error/error.phtml:6
+msgid "An error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
+msgid "Access Denied!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
+msgid "You do not have permission to access this page!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
+#: airtime_mvc/application/views/scripts/error/error.phtml:14
+#: airtime_mvc/application/configs/navigation.php:143
+msgid "Help"
+msgstr "Pomoc"
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
+msgid "Oops!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
+msgid "Something went wrong!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
+msgid "Bad Request!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
+msgid "The requested action is not supported!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
+msgid "Page not found!"
+msgstr "Nie znaleziono strony!"
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
+msgid "We couldn't find the page you were looking for."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error.phtml:12
+msgid "Looks like the page you were looking for doesn't exist!"
+msgstr "Wygląda na to, że strona, której szukasz nie istnieje"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
+msgid "previous"
+msgstr "poprzedni"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
+msgid "play"
+msgstr "play"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
+msgid "pause"
+msgstr "pauza"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
+msgid "next"
+msgstr "następny"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
+msgid "stop"
+msgstr "stop"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
+msgid "max volume"
+msgstr "maksymalna głośność"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
+msgid "Update Required"
+msgstr "Wymagana aktualizacja"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
+#, php-format
+msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
+msgstr "By odtworzyć medium, należy zaktualizować przeglądarkę do najnowszej wersji bądź zainstalowac aktualizację %sFlash plugin%s"
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
+msgid "Plan type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
+msgid "Billing cycle:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
+msgid "Payment method:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
+msgid "PayPal"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
+msgid "Credit Card via 2Checkout"
+msgstr ""
+
+#: airtime_mvc/application/forms/DateRange.php:16
+#: airtime_mvc/application/forms/ShowBuilder.php:18
+msgid "Date Start:"
+msgstr "Data rozpoczęcia:"
+
+#: airtime_mvc/application/forms/DateRange.php:35
+#: airtime_mvc/application/forms/DateRange.php:63
+#: airtime_mvc/application/forms/ShowBuilder.php:37
+#: airtime_mvc/application/forms/ShowBuilder.php:65
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
+msgid "Invalid character entered"
+msgstr "Wprowadzony znak jest nieprawidłowy"
+
+#: airtime_mvc/application/forms/DateRange.php:44
+#: airtime_mvc/application/forms/ShowBuilder.php:46
+#: airtime_mvc/application/forms/AddShowRepeats.php:56
+msgid "Date End:"
+msgstr "Data zakończenia:"
+
+#: airtime_mvc/application/forms/ShowBuilder.php:72
+#: airtime_mvc/application/forms/ShowBuilder.php:88
+msgid "Filter by Show"
+msgstr ""
+
+#: airtime_mvc/application/forms/ShowBuilder.php:80
+msgid "All My Shows:"
+msgstr "Wszystkie moje audycje:"
+
+#: airtime_mvc/application/forms/AddShowWho.php:10
+msgid "Search Users:"
+msgstr "Szukaj Użytkowników:"
+
+#: airtime_mvc/application/forms/AddShowWho.php:24
+msgid "DJs:"
+msgstr "Prowadzący:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:30
+#: airtime_mvc/application/forms/GeneralPreferences.php:25
+#: airtime_mvc/application/forms/SupportSettings.php:18
+msgid "Station Name"
+msgstr "Nazwa stacji"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:39
+#: airtime_mvc/application/forms/SupportSettings.php:31
+msgid "Phone:"
+msgstr "Telefon:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:51
+#: airtime_mvc/application/forms/AddUser.php:67
+#: airtime_mvc/application/forms/EditUser.php:83
+#: airtime_mvc/application/forms/SupportSettings.php:43
+msgid "Email:"
+msgstr "Email:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:62
+#: airtime_mvc/application/forms/SupportSettings.php:54
+msgid "Station Web Site:"
+msgstr "Strona internetowa stacji:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:73
+#: airtime_mvc/application/forms/SupportSettings.php:65
+msgid "Country:"
+msgstr "Kraj:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:84
+#: airtime_mvc/application/forms/SupportSettings.php:76
+msgid "City:"
+msgstr "Miasto:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:96
+#: airtime_mvc/application/forms/SupportSettings.php:88
+msgid "Station Description:"
+msgstr "Opis stacji:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:106
+#: airtime_mvc/application/forms/GeneralPreferences.php:42
+msgid "Station Logo:"
+msgstr "Logo stacji:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:126
+#: airtime_mvc/application/forms/SupportSettings.php:108
+#, php-format
+msgid "Promote my station on %s"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:151
+#: airtime_mvc/application/forms/SupportSettings.php:120
+#, php-format
+msgid "By checking this box, I agree to %s's %sprivacy policy%s."
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:169
+#: airtime_mvc/application/forms/SupportSettings.php:143
+msgid "You have to agree to privacy policy."
+msgstr "Wymagana jest akceptacja polityki prywatności."
+
+#: airtime_mvc/application/forms/AddShowRR.php:10
+msgid "Record from Line In?"
+msgstr "Nagrywać z wejścia liniowego?"
+
+#: airtime_mvc/application/forms/AddShowRR.php:16
+msgid "Rebroadcast?"
+msgstr "Odtwarzać ponownie?"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
+#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
+msgid "Value is required and can't be empty"
+msgstr "Pole jest wymagane i nie może być puste"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
+msgid "'%value%' is no valid email address in the basic format local-part@hostname"
+msgstr "'%value%' nie jest poprawnym adresem email w podstawowym formacie local-part@hostname"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
+msgid "'%value%' does not fit the date format '%format%'"
+msgstr "'%value%' nie pasuje do formatu daty '%format%'"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
+msgid "'%value%' is less than %min% characters long"
+msgstr "'%value%' zawiera mniej niż %min% znaków"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
+msgid "'%value%' is more than %max% characters long"
+msgstr "'%value%' zawiera więcej niż %max% znaków"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
+msgid "'%value%' is not between '%min%' and '%max%', inclusively"
+msgstr "'%value%' nie zawiera się w przedziale od '%min%' do '%max%'"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
+msgid "Passwords do not match"
+msgstr "Hasła muszą się zgadzać"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
+msgid "Day must be specified"
+msgstr "Należy określić dzień"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
+msgid "Time must be specified"
+msgstr "Należy określić czas"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
+msgid "Must wait at least 1 hour to rebroadcast"
+msgstr "Należy odczekać przynajmniej 1 godzinę przed ponownym odtworzeniem"
+
+#: airtime_mvc/application/forms/PasswordRestore.php:14
+msgid "Email"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordRestore.php:36
+msgid "Reset password"
+msgstr "Resetuj hasło"
+
+#: airtime_mvc/application/forms/AddShowWhat.php:30
+msgid "Untitled Show"
+msgstr "Audycja bez nazwy"
+
+#: airtime_mvc/application/forms/AddShowWhat.php:69
+msgid "Instance Description:"
+msgstr ""
+
+#: airtime_mvc/application/forms/DangerousPreferences.php:12
+msgid "Delete All Tracks in Library"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditAudioMD.php:145
+msgid "ISRC Number:"
+msgstr "Numer ISRC:"
+
+#: airtime_mvc/application/forms/EditAudioMD.php:176
+msgid "OK"
+msgstr "OK"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:33
+msgid "Station Description"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:62
+msgid "Default Crossfade Duration (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:68
+#: airtime_mvc/application/forms/GeneralPreferences.php:82
+#: airtime_mvc/application/forms/GeneralPreferences.php:96
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
+msgid "Please enter a time in seconds (eg. 0.5)"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:76
+msgid "Default Fade In (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:90
+msgid "Default Fade Out (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:102
+msgid "Public Airtime API"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:103
+msgid "Required for embeddable schedule widget."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:105
+msgid "Disabled"
+msgstr "Wyłączone"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:106
+msgid "Enabled"
+msgstr "Włączone"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:109
+msgid ""
+"Enabling this feature will allow Airtime to provide schedule data\n"
+" to external widgets that can be embedded in your website."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:120
+msgid "Default Language"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:127
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
+msgid "Station Timezone"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:134
+msgid "Week Starts On"
+msgstr "Tydzień zaczynaj od"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:150
+msgid "Display login button on your Radio Page?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:29
+#: airtime_mvc/application/forms/EditUser.php:37
+#: airtime_mvc/application/forms/Login.php:41
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
+msgid "Username:"
+msgstr "Nazwa użytkownika:"
+
+#: airtime_mvc/application/forms/AddUser.php:38
+#: airtime_mvc/application/forms/EditUser.php:48
+#: airtime_mvc/application/forms/Login.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
+msgid "Password:"
+msgstr "Hasło:"
+
+#: airtime_mvc/application/forms/AddUser.php:46
+#: airtime_mvc/application/forms/EditUser.php:57
+msgid "Verify Password:"
+msgstr "Potwierdź hasło:"
+
+#: airtime_mvc/application/forms/AddUser.php:55
+#: airtime_mvc/application/forms/EditUser.php:67
+msgid "Firstname:"
+msgstr "Imię:"
+
+#: airtime_mvc/application/forms/AddUser.php:61
+#: airtime_mvc/application/forms/EditUser.php:75
+msgid "Lastname:"
+msgstr "Nazwisko:"
+
+#: airtime_mvc/application/forms/AddUser.php:76
+#: airtime_mvc/application/forms/EditUser.php:94
+msgid "Mobile Phone:"
+msgstr "Telefon:"
+
+#: airtime_mvc/application/forms/AddUser.php:82
+#: airtime_mvc/application/forms/EditUser.php:102
+msgid "Skype:"
+msgstr "Skype:"
+
+#: airtime_mvc/application/forms/AddUser.php:88
+#: airtime_mvc/application/forms/EditUser.php:110
+msgid "Jabber:"
+msgstr "Jabber:"
+
+#: airtime_mvc/application/forms/AddUser.php:95
+msgid "User Type:"
+msgstr "Typ użytkownika:"
+
+#: airtime_mvc/application/forms/AddUser.php:120
+#: airtime_mvc/application/forms/EditUser.php:155
+msgid "Login name is not unique."
+msgstr "Nazwa użytkownika musi być unikalna."
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
+msgid "Import Folder:"
+msgstr "Katalog importu:"
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
+msgid "Watched Folders:"
+msgstr "Katalogi obserwowane:"
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
+msgid "Not a valid Directory"
+msgstr "Nieprawidłowy katalog"
+
+#: airtime_mvc/application/forms/BillingClient.php:126
+msgid "What is the name of your favorite childhood friend?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:127
+msgid "What school did you attend for sixth grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:128
+msgid "In what city did you meet your spouse/significant other?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:129
+msgid "What street did you live on in third grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:130
+msgid "What is the first name of the boy or girl that you first kissed?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:131
+msgid "In what city or town was your first job?"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
+msgid "Default License:"
+msgstr "Domyślna licencja:"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
+msgid "All rights are reserved"
+msgstr "Wszelkie prawa zastrzeżone"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
+msgid "The work is in the public domain"
+msgstr "Utwór w domenie publicznej"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
+msgid "Creative Commons Attribution"
+msgstr "Uznanie autorstwa wg licencji Creative Commons "
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
+msgid "Creative Commons Attribution Noncommercial"
+msgstr "Użycie niekomercyjne wg Creative Commons "
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
+msgid "Creative Commons Attribution No Derivative Works"
+msgstr "Uznanie Autorstwa Bez Utworów Zależnych wg Creative Commons"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
+msgid "Creative Commons Attribution Share Alike"
+msgstr "Uznanie a Na Tych Samych Warunkach wg Creative Commons "
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
+msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
+msgstr "Uznanie Autorstwa Bez Utworów Zależnych wg Creative Commons"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
+msgid "Creative Commons Attribution Noncommercial Share Alike"
+msgstr "Uznanie a Na Tych Samych Warunkach wg Creative Commons "
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
+msgid "Default Sharing Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
+msgid "Public"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
+msgid "Private"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditUser.php:129
+msgid "Interface Timezone:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:14
+msgid "Now Playing"
+msgstr "Aktualnie odtwarzane"
+
+#: airtime_mvc/application/forms/Player.php:25
+msgid "Select Stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:28
+msgid "Auto detect the most appropriate stream to use."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:29
+msgid "Select a stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:41
+msgid " - Mobile friendly"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:45
+msgid " - The player does not support Opus streams."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:71
+msgid "Embeddable code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:72
+msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
+#: airtime_mvc/application/models/Block.php:1351
+msgid "Select criteria"
+msgstr "Wybierz kryteria"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
+#: airtime_mvc/application/models/Block.php:1353
+msgid "Bit Rate (Kbps)"
+msgstr "Bit Rate (Kbps)"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
+#: airtime_mvc/application/models/Block.php:1374
+msgid "Sample Rate (kHz)"
+msgstr "Częstotliwość próbkowania (kHz)"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
+msgid "hours"
+msgstr "godzin(y)"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
+msgid "minutes"
+msgstr "minut(y)"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
+#: airtime_mvc/application/models/Block.php:333
+msgid "items"
+msgstr "elementy"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
+msgid "Randomly"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
+msgid "Newest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
+msgid "Oldest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
+msgid "Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
+msgid "Static"
+msgstr "Statyczny"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
+msgid "Dynamic"
+msgstr "Dynamiczny"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
+msgid "Allow Repeated Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
+msgid "Sort Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
+msgid "Limit to:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
+msgid "Generate playlist content and save criteria"
+msgstr "Tworzenie zawartości listy odtwarzania i zapisz kryteria"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
+msgid "Generate"
+msgstr "Utwórz"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
+msgid "Shuffle playlist content"
+msgstr "Losowa kolejność odtwarzania"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
+msgid "Limit cannot be empty or smaller than 0"
+msgstr "Limit nie może być pusty oraz mniejszy od 0"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
+msgid "Limit cannot be more than 24 hrs"
+msgstr "Limit nie może być większy niż 24 godziny"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
+msgid "The value should be an integer"
+msgstr "Wartość powinna być liczbą całkowitą"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
+msgid "500 is the max item limit value you can set"
+msgstr "Maksymalna liczba elementów do ustawienia to 500"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
+msgid "You must select Criteria and Modifier"
+msgstr "Należy wybrać kryteria i modyfikator"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
+msgid "'Length' should be in '00:00:00' format"
+msgstr "Długość powinna być wprowadzona w formacie '00:00:00'"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
+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:594
+msgid "The value has to be numeric"
+msgstr "Wartość musi być liczbą"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
+msgid "The value should be less then 2147483648"
+msgstr "Wartość powinna być mniejsza niż 2147483648"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
+#, php-format
+msgid "The value should be less than %s characters"
+msgstr "Wartość powinna posiadać mniej niż %s znaków"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
+msgid "Value cannot be empty"
+msgstr "Wartość nie może być pusta"
+
+#: airtime_mvc/application/forms/StreamSetting.php:26
+msgid "Icecast Vorbis Metadata"
+msgstr "Metadane Icecast Vorbis"
+
+#: airtime_mvc/application/forms/StreamSetting.php:36
+msgid "Stream Label:"
+msgstr "Nazwa strumienia:"
+
+#: airtime_mvc/application/forms/StreamSetting.php:37
+msgid "Artist - Title"
+msgstr "Artysta - Tytuł"
+
+#: airtime_mvc/application/forms/StreamSetting.php:38
+msgid "Show - Artist - Title"
+msgstr "Audycja - Artysta -Tytuł"
+
+#: airtime_mvc/application/forms/StreamSetting.php:39
+msgid "Station name - Show name"
+msgstr "Nazwa stacji - Nazwa audycji"
+
+#: airtime_mvc/application/forms/StreamSetting.php:45
+msgid "Off Air Metadata"
+msgstr "Metadane Off Air"
+
+#: airtime_mvc/application/forms/StreamSetting.php:51
+msgid "Enable Replay Gain"
+msgstr "Włącz normalizację głośności (Replay Gain)"
+
+#: airtime_mvc/application/forms/StreamSetting.php:57
+msgid "Replay Gain Modifier"
+msgstr "Modyfikator normalizacji głośności"
+
+#: airtime_mvc/application/forms/StreamSetting.php:65
+msgid "Streaming Server:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Airtime Pro Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Custom / 3rd Party Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordChange.php:17
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
+msgid "Password"
+msgstr "Hasło"
-#~ msgid "enter a time in seconds 0{.0}"
-#~ msgstr "wprowadź czas w sekundach 0{.0}"
+#: airtime_mvc/application/forms/PasswordChange.php:28
+msgid "Confirm new password"
+msgstr "Potwierdź nowe hasło"
-#~ msgid "Allow Remote Websites To Access \"Schedule\" Info?%s (Enable this to make front-end widgets work.)"
-#~ msgstr "Umożliwienie zdalnego dostępu z innych stron \"Plan\" Info?%s (Włącz, aby zewnętrzne widgety działały.)"
+#: airtime_mvc/application/forms/PasswordChange.php:36
+msgid "Password confirmation does not match your password."
+msgstr "Hasła muszą się zgadzać."
-#~ msgid "Default Interface Language"
-#~ msgstr "Domyślny język"
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
+msgid "Station Language"
+msgstr ""
-#~ msgid "Get new password"
-#~ msgstr "Uzyskaj nowe hasło"
-
-#~ msgid "Set smart block type:"
-#~ msgstr "Ustaw typ smart blocku:"
-
-#~ msgid "Allow Repeat Tracks:"
-#~ msgstr "Zezwól na powtarzanie utworów:"
-
-#~ msgid "Limit to"
-#~ msgstr "Ogranicz do"
-
-#~ msgid "Auto Switch Off"
-#~ msgstr "Automatyczne wyłączanie"
-
-#~ msgid "Auto Switch On"
-#~ msgstr "Automatyczne włączanie"
-
-#~ msgid "Switch Transition Fade (s)"
-#~ msgstr "Zmień długość przenikania się utworów"
-
-#~ msgid "enter a time in seconds 00{.000000}"
-#~ msgstr "wprowadź czas w sekundach 00{.000000}"
-
-#~ msgid "Master Username"
-#~ msgstr "Nazwa użytkownika nadrzędnego"
-
-#~ msgid "Master Password"
-#~ msgstr "Hasło użytkownika nadrzędnego"
-
-#~ msgid "Master Source Connection URL"
-#~ msgstr "Adres URL do źródła nadrzędnego"
-
-#~ msgid "Show Source Connection URL"
-#~ msgstr "Adres URL dostępu do źródła audycji"
-
-#~ msgid "Master Source Port"
-#~ msgstr "Nadrzędny port źródłowy"
-
-#~ msgid "Master Source Mount Point"
-#~ msgstr "Nadrzędny punkt montowania źródła"
-
-#~ msgid "Show Source Port"
-#~ msgstr "Port źródłowy audycji"
-
-#~ msgid "Show Source Mount Point"
-#~ msgstr "Źródłowy punkt montowania audycji"
-
-#~ msgid "You cannot use same port as Master DJ port."
-#~ msgstr "Nie można użyć tego samego portu co źródło nadrzędne"
-
-#~ msgid "Port %s is not available"
-#~ msgstr "Port %s nie jest dostępny"
-
-#~ msgid "E-mail"
-#~ msgstr "E-mail"
-
-#~ msgid "Restore password"
-#~ msgstr "Przywracanie hasła"
-
-#~ msgid "Hardware Audio Output"
-#~ msgstr "Sprzętowe wyjście audio"
-
-#~ msgid "Output Type"
-#~ msgstr "Typ wyjścia"
-
-#~ msgid "Date/Time Start:"
-#~ msgstr "Data/Czas rozpoczęcia:"
-
-#~ msgid "Date/Time End:"
-#~ msgstr "Data/Czas zakończenia:"
-
-#~ msgid "Automatically Upload Recorded Shows"
-#~ msgstr "Automatycznie dodawaj nagrane audycje"
-
-#~ msgid "Enable SoundCloud Upload"
-#~ msgstr "Włącz wysyłanie do SoundCloud"
-
-#~ msgid "Automatically Mark Files \"Downloadable\" on SoundCloud"
-#~ msgstr "Automatycznie oznaczaj pliki jako \"Do pobrania\" na SoundCloud"
-
-#~ msgid "SoundCloud Email"
-#~ msgstr "Email SoundCloud"
-
-#~ msgid "SoundCloud Password"
-#~ msgstr "Hasło SoundCloud"
-
-#~ msgid "SoundCloud Tags: (separate tags with spaces)"
-#~ msgstr "Tagi SoundCloud: (oddzielaj tagi spacją)"
-
-#~ msgid "Default Genre:"
-#~ msgstr "Domyślny gatunek:"
-
-#~ msgid "Default Track Type:"
-#~ msgstr "Domyślny typ utworu:"
-
-#~ msgid "Original"
-#~ msgstr "Oryginalny"
-
-#~ msgid "Remix"
-#~ msgstr "Remix"
-
-#~ msgid "Live"
-#~ msgstr "Na żywo"
-
-#~ msgid "Recording"
-#~ msgstr "Nagranie"
-
-#~ msgid "Spoken"
-#~ msgstr "Mówiony"
-
-#~ msgid "Podcast"
-#~ msgstr "Podcast"
-
-#~ msgid "Demo"
-#~ msgstr "Demo"
-
-#~ msgid "Work in progress"
-#~ msgstr "Praca w toku"
-
-#~ msgid "Stem"
-#~ msgstr "Rdzeń"
-
-#~ msgid "Loop"
-#~ msgstr "Pętla"
-
-#~ msgid "Sound Effect"
-#~ msgstr "Efekt dźwiękowy"
-
-#~ msgid "One Shot Sample"
-#~ msgstr "Próbka one-shot"
-
-#~ msgid "Other"
-#~ msgstr "Inne"
-
-#~ msgid "Enable System Emails (Password Reset)"
-#~ msgstr "Włącz Emaile Systemowe (Resetowanie hasła)"
-
-#~ msgid "Reset Password 'From' Email"
-#~ msgstr "Adres nadawcy Emaila"
-
-#~ msgid "Configure Mail Server"
-#~ msgstr "Skonfiguruj serwer pocztowy"
-
-#~ msgid "Requires Authentication"
-#~ msgstr "Wymagana autoryzacja"
-
-#~ msgid "Mail Server"
-#~ msgstr "Serwer Email"
-
-#~ msgid "Email Address"
-#~ msgstr "Adres Email"
-
-#~ msgid "Please enter your user name and password"
-#~ msgstr "Proszę wpisać nazwę użytkownika i hasło"
-
-#~ msgid "Given email not found."
-#~ msgstr "Podany adres email nie został odnaleziony."
-
-#~ msgid "Page not found"
-#~ msgstr "Nie odnaleziono strony"
-
-#~ msgid "Application error"
-#~ msgstr "Błąd aplikacji"
-
-#~ msgid "If you change the username or password values for an enabled stream the playout engine will be rebooted and your listeners will hear silence for 5-10 seconds. Changing the following fields will NOT cause a reboot: Stream Label (Global Settings), and Switch Transition Fade(s), Master Username, and Master Password (Input Stream Settings). If Airtime is recording, and if the change causes a playout engine restart, the recording will be interrupted."
-#~ msgstr "Jeśli nazwa użytkownika bądź hasło zostaną zmienione na włączonym strumieniu, urządzenie zostanie uruchomione ponownie i nastąpi 5-10 sekundowa cisza. Zmiany w następujących polach NIE spowodują ponownego uruchomienia: Nazwa Strumienia (ustawienia globalne), Zmiana Czasu Zanikania, Nazwa Użytkownika Nadrzędnego (Ustawienia Strumienia Wyjściowego). Jeśli Airtime jest w trakcie nagrywania programu, a zmiany spowodują ponowne uruchomienie urządzenia, nagrywanie zostanie przerwane."
-
-#~ msgid "today"
-#~ msgstr "dzisiaj"
-
-#~ msgid "day"
-#~ msgstr "dzień"
-
-#~ msgid "week"
-#~ msgstr "tydzień"
-
-#~ msgid "month"
-#~ msgstr "miesiąć"
-
-#~ msgid "Remove overbooked tracks"
-#~ msgstr "Usuń utwory niemieszczące się w ramach czasowych audycji"
-
-#~ msgid "Soundcloud"
-#~ msgstr "Soundcloud"
-
-#~ msgid "View on Soundcloud"
-#~ msgstr "Zobacz na Soundcloud"
-
-#~ msgid "Re-upload to SoundCloud"
-#~ msgstr "Prześlij ponownie do SoundCloud"
-
-#~ msgid "Upload to SoundCloud"
-#~ msgstr "Prześlij do SoundCloud"
-
-#~ msgid "Could not delete some scheduled files."
-#~ msgstr "Nie można skasować niektórych plików z harmonogramu."
-
-#~ msgid "Add Media"
-#~ msgstr "Dodaj media"
-
-#~ msgid "Library"
-#~ msgstr "Biblioteka"
-
-#~ msgid "System"
-#~ msgstr "System"
-
-#~ msgid "Preferences"
-#~ msgstr "Preferencje"
-
-#~ msgid "Media Folders"
-#~ msgstr "Foldery mediów"
-
-#~ msgid "Service"
-#~ msgstr "Usługa"
-
-#~ msgid "Uptime"
-#~ msgstr "Czas pracy"
-
-#~ msgid "CPU"
-#~ msgstr "CPU"
-
-#~ msgid "Memory"
-#~ msgstr "Pamięć"
-
-#~ msgid "Email / Mail Server Settings"
-#~ msgstr "Ustawienia Email/Serwera pocztowego"
-
-#~ msgid "Connection URL: "
-#~ msgstr "Połaczenie URL:"
-
-#~ msgid "Input Stream Settings"
-#~ msgstr "Ustawienia strumienia wejściowego"
-
-#~ msgid "Master Source Connection URL:"
-#~ msgstr "Adres URL połącznia dla Źródła Nadrzędnego"
-
-#~ msgid "Override"
-#~ msgstr "Zastąp"
-
-#~ msgid "RESET"
-#~ msgstr "RESETUJ"
-
-#~ msgid "Show Source Connection URL:"
-#~ msgstr "Adres URL połączenia dla Żródła audycji"
-
-#~ msgid "Filter By Show:"
-#~ msgstr "Filtruj wg audycji"
-
-#~ msgid "%s's Settings"
-#~ msgstr "ustawienia %s's "
-
-#~ msgid "Sourcefabric Privacy Policy"
-#~ msgstr "Polityka prywatności Sourcefabric"
-
-#~ msgid "Smart Block Options"
-#~ msgstr "Opcje smart blocku"
-
-#~ msgid "file meet the criteria"
-#~ msgstr "plik spełnia kryteria"
-
-#~ msgid "New"
-#~ msgstr "Nowy"
-
-#~ msgid "New Playlist"
-#~ msgstr "Nowa lista odtwarzania"
-
-#~ msgid "New Smart Block"
-#~ msgstr "Nowy Smartblock"
-
-#~ msgid "New Webstream"
-#~ msgstr "Nowy webstream"
-
-#~ msgid "View / edit description"
-#~ msgstr "Zobacz/edytuj opis"
-
-#~ msgid "Global Settings"
-#~ msgstr "Ustawienia ogólne"
-
-#~ msgid "Output Stream Settings"
-#~ msgstr "Ustawienia strumienia wyjściowego"
-
-#~ msgid "Listener Count Over Time"
-#~ msgstr "Licznik słuchaczy na przestrzeni czasu"
-
-#~ msgid "Begin by adding your files to the library using the 'Add Media' menu button. You can drag and drop your files to this window too."
-#~ msgstr "Zacznij od dodania swoich plików do biblioteki używając przycisku \"dodaj media\" w menu programu\". Możesz także przeciągnąć pliki do tego okna."
-
-#~ msgid "Create a show by going to 'Calendar' in the menu bar, and then clicking the '+ Show' icon. This can be either a one-time or repeating show. Only admins and program managers can add shows."
-#~ msgstr "Utwórz audycję przechodząc do '\"kalendarza\" w pasku \"menu\" a następnie klikając w ikonę \"+ Audycja\". Można utworzyć audycję do jednorazowego bądź wielokrotnego odtwarzania. Jedynie administratorzy i zarządzający audycjami mogą je dodawać."
-
-#~ msgid "Add media to the show by going to your show in the Schedule calendar, left-clicking on it and selecting 'Add / Remove Content'"
-#~ msgstr "Dodaj media do audycji przez przejście do audycji w kalendarzu, kliknij na niego lewym przyciskiem myszki wybierając opcję 'dodaj/usuń zawartość'"
-
-#~ msgid "Select your media from the left pane and drag them to your show in the right pane."
-#~ msgstr "Wybierz media z lewego okna i przeciągnij do utworzonej audyji w prawym oknie"
-
-#~ msgid "Then you're good to go!"
-#~ msgstr "Gotowe!"
-
-#~ msgid "Please enter your account e-mail address. You will receive a link to create a new password via e-mail."
-#~ msgstr "Wprowadź adres swojego konta e-mail, na który zostanie przesłany link w celu utworzenia nowego hasła. "
-
-#~ msgid "Email sent"
-#~ msgstr "Email został wysłany"
-
-#~ msgid "An email has been sent"
-#~ msgstr "E-mail został wysłany"
-
-#~ msgid "Back to login screen"
-#~ msgstr "Powrót do okna logowania"
-
-#~ msgid "Scheduled Play"
-#~ msgstr "Planowane odtwarzanie"
-
-#~ msgid "Station time"
-#~ msgstr "Czas stacji"
-
-#~ msgid "Zend Framework Default Application"
-#~ msgstr "Aplikacja domyślna Zend Framework"
-
-#~ msgid "Empty smart block"
-#~ msgstr "Pusty smart block"
-
-#~ msgid "Empty playlist"
-#~ msgstr "Pusta playlista"
-
-#~ msgid "No open smart block"
-#~ msgstr "Brak otwartego smartblocka"
-
-#~ msgid "Record & Rebroadcast"
-#~ msgstr "Nagrywaj i odtwarzaj ponownie"
-
-#~ msgid "Failed to create 'organize' directory."
-#~ msgstr "Katalog 'organize' nie może zostać utworzony."
-
-#~ msgid "The file was not uploaded, there is %s MB of disk space left and the file you are uploading has a size of %s MB."
-#~ msgstr "Plik nie został przesłany, na dysku pozostało %s MB wolnego miejsca, a plik który próbujesz przesłać ma %s MB."
-
-#~ msgid "This file appears to be corrupted and will not be added to media library."
-#~ msgstr "Ten plik jest prawdopodobnie uszkodzony i nie można go dodać do biblioteki mediów."
-
-#~ msgid "The file was not uploaded, this error can occur if the computer hard drive does not have enough disk space or the stor directory does not have correct write permissions."
-#~ msgstr "Plik nie został dodany, błąd ten może występować w przypadku, kiedy nie ma wystarczającej ilości wolnego miejsca na dysku lub katalog przechowywania nie posiada odpowiednich uprawnień do zapisu."
-
-#~ msgid ""
-#~ "Hi %s, \n"
-#~ "\n"
-#~ "Click this link to reset your password: "
-#~ msgstr ""
-#~ "Witaj %s, \n"
-#~ "\n"
-#~ "Kliknij w ten link aby zresetować swoje hasło:"
-
-#~ msgid "Show Content"
-#~ msgstr "Zawartość audycji"
-
-#~ msgid "Remove All Content"
-#~ msgstr "Usuń całą zawartość"
-
-#~ msgid "Cancel Current Show"
-#~ msgstr "Skasuj obecną audycję"
-
-#~ msgid "Delete This Instance"
-#~ msgstr "Usuń tą instancję"
-
-#~ msgid "Delete This Instance and All Following"
-#~ msgstr "Usuń ten i wszystkie inne instancje"
-
-#~ msgid "Please selection an option"
-#~ msgstr "Wybierz opcję"
-
-#~ msgid "No Records"
-#~ msgstr "Brak danych"
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
+msgid "Enabled:"
+msgstr "Włączony:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
+msgid "Mobile:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
+msgid "Stream Type:"
+msgstr "Typ strumienia:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
+msgid "Service Type:"
+msgstr "Typ usługi:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
+msgid "Channels:"
+msgstr "Kanały:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "1 - Mono"
+msgstr "1 - Mono"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "2 - Stereo"
+msgstr "2 - Stereo"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
+msgid "Server"
+msgstr "Serwer"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
+msgid "Port"
+msgstr "Port"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
+msgid "Only numbers are allowed."
+msgstr "Możliwe są tylko cyfry."
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
+msgid "URL"
+msgstr "adres URL"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
+msgid "Mount Point"
+msgstr "Punkt montowania"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
+msgid "Admin User"
+msgstr "Login Administratora"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
+msgid "Admin Password"
+msgstr "Hasło Administratora"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
+msgid "Server cannot be empty."
+msgstr "Serwer nie może być pusty."
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
+msgid "Port cannot be empty."
+msgstr "Port nie może być pusty."
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
+msgid "Mount cannot be empty with Icecast server."
+msgstr "Punkt montowania nie może być pusty dla serwera Icecast."
+
+#: airtime_mvc/application/forms/AddShowWhen.php:16
+msgid "'%value%' does not fit the time format 'HH:mm'"
+msgstr "%value% nie odpowiada formatowi 'HH:mm'"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:22
+msgid "Start Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:37
+msgid "In the Future:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:64
+msgid "End Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:98
+msgid "Timezone:"
+msgstr "Strefa czasowa:"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:107
+msgid "Repeats?"
+msgstr "Powtarzanie?"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:139
+msgid "Cannot create show in the past"
+msgstr "Nie można utworzyć audycji w przeszłości"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:147
+msgid "Cannot modify start date/time of the show that is already started"
+msgstr "Nie mozna zmienić daty/czasu audycji, która się już rozpoczęła"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:156
+#: airtime_mvc/application/models/Show.php:282
+msgid "End date/time cannot be in the past"
+msgstr "Data lub czas zakończenia nie może być z przeszłości."
+
+#: airtime_mvc/application/forms/AddShowWhen.php:164
+msgid "Cannot have duration < 0m"
+msgstr "Czas trwania nie może być mniejszy niż 0m"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:168
+msgid "Cannot have duration 00h 00m"
+msgstr "Czas trwania nie może wynosić 00h 00m"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:175
+msgid "Cannot have duration greater than 24h"
+msgstr "Czas trwania nie może być dłuższy niż 24h"
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:19
+msgid "Push metadata to your station on TuneIn?"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:24
+msgid "Station ID:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:30
+msgid "Partner Key:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:36
+msgid "Partner Id:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:77
+#: airtime_mvc/application/forms/TuneInPreferences.php:86
+msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:10
+#, php-format
+msgid "Use %s Authentication:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:16
+msgid "Use Custom Authentication:"
+msgstr "Zastosuj własne uwierzytelnienie:"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:25
+msgid "Custom Username"
+msgstr "Nazwa użytkownika"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:37
+msgid "Custom Password"
+msgstr "Hasło"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:48
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
+msgid "Host:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
+msgid "Port:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:60
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
+msgid "Mount:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:77
+msgid "Username field cannot be empty."
+msgstr "Pole nazwy użytkownika nie może być puste."
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:82
+msgid "Password field cannot be empty."
+msgstr "Pole hasła nie może być puste."
+
+#: airtime_mvc/application/forms/AddShowStyle.php:12
+msgid "Background Colour:"
+msgstr "Kolor tła:"
+
+#: airtime_mvc/application/forms/AddShowStyle.php:31
+msgid "Text Colour:"
+msgstr "Kolor tekstu:"
+
+#: airtime_mvc/application/forms/AddShowStyle.php:49
+msgid "Current Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:72
+msgid "Show Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:87
+msgid "Logo Preview:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Login.php:102
+msgid "Type the characters you see in the picture below."
+msgstr "Wpisz znaki, które widzisz na obrazku poniżej."
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
+msgid "Auto Switch Off:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
+msgid "Auto Switch On:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
+msgid "Switch Transition Fade (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:10
+msgid "Link:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:16
+msgid "Repeat Type:"
+msgstr "Typ powtarzania:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:19
+msgid "weekly"
+msgstr "tygodniowo"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:20
+msgid "every 2 weeks"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:21
+msgid "every 3 weeks"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:22
+msgid "every 4 weeks"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:23
+msgid "monthly"
+msgstr "miesięcznie"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:32
+msgid "Select Days:"
+msgstr "Wybierz dni:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:47
+msgid "Repeat By:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the month"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the week"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:69
+msgid "No End?"
+msgstr "Bez czasu końcowego?"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:106
+msgid "End date must be after start date"
+msgstr "Data końcowa musi występować po dacie początkowej"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:113
+msgid "Please select a repeat day"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:12
+msgid "Radio Page"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:19
+msgid "Calendar"
+msgstr "Kalendarz"
+
+#: airtime_mvc/application/configs/navigation.php:26
+msgid "Widgets"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:48
+msgid "Settings"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:67
+msgid "Users"
+msgstr "Użytkownicy"
+
+#: airtime_mvc/application/configs/navigation.php:74
+msgid "Streams"
+msgstr "Strumienie"
+
+#: airtime_mvc/application/configs/navigation.php:82
+msgid "Analytics"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:90
+msgid "Listener Stats"
+msgstr "Statystyki słuchaczy"
+
+#: airtime_mvc/application/configs/navigation.php:104
+msgid "History Templates"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:113
+msgid "Billing"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:120
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:127
+msgid "Account Details"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:134
+msgid "View Invoices"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:150
+msgid "Getting Started"
+msgstr "Jak zacząć"
+
+#: airtime_mvc/application/configs/navigation.php:157
+msgid "FAQ"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:162
+msgid "User Manual"
+msgstr "Instrukcja użytkowania"
+
+#: airtime_mvc/application/configs/navigation.php:167
+msgid "File a Support Ticket"
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:833
+#: airtime_mvc/application/models/Playlist.php:812
+msgid "Cue in and cue out are null."
+msgstr "Cue-in i cue-out mają wartość zerową."
+
+#: airtime_mvc/application/models/Block.php:868
+#: airtime_mvc/application/models/Block.php:924
+#: airtime_mvc/application/models/Playlist.php:851
+#: airtime_mvc/application/models/Playlist.php:895
+msgid "Can't set cue out to be greater than file length."
+msgstr "Wartość cue-out nie może być większa niż długość pliku."
+
+#: airtime_mvc/application/models/Block.php:879
+#: airtime_mvc/application/models/Block.php:900
+#: airtime_mvc/application/models/Playlist.php:843
+#: airtime_mvc/application/models/Playlist.php:868
+msgid "Can't set cue in to be larger than cue out."
+msgstr "Wartość cue-in nie może być większa niż cue-out."
+
+#: airtime_mvc/application/models/Block.php:935
+#: airtime_mvc/application/models/Playlist.php:887
+msgid "Can't set cue out to be smaller than cue in."
+msgstr "Wartość cue-out nie może być mniejsza od cue-in."
+
+#: airtime_mvc/application/models/Block.php:1366
+msgid "Upload Time"
+msgstr ""
+
+#: airtime_mvc/application/models/ShowBuilder.php:212
+#, php-format
+msgid "Rebroadcast of %s from %s"
+msgstr "Retransmisja z %s do %s"
+
+#: airtime_mvc/application/models/Preference.php:460
+#, php-format
+msgid "Powered by %s"
+msgstr ""
+
+#: airtime_mvc/application/models/Preference.php:588
+msgid "Select Country"
+msgstr "Wybierz kraj"
+
+#: airtime_mvc/application/models/MusicDir.php:160
+#, php-format
+msgid "%s is already watched."
+msgstr "%s jest już obserwowny."
+
+#: airtime_mvc/application/models/MusicDir.php:164
+#, php-format
+msgid "%s contains nested watched directory: %s"
+msgstr "%s zawiera obserwowany katalog zagnieżdzony: %s"
+
+#: airtime_mvc/application/models/MusicDir.php:168
+#, php-format
+msgid "%s is nested within existing watched directory: %s"
+msgstr "%s jest zagnieżdzony w istniejącym, aktualnie obserwowanym katalogu: %s"
+
+#: airtime_mvc/application/models/MusicDir.php:189
+#: airtime_mvc/application/models/MusicDir.php:370
+#, php-format
+msgid "%s is not a valid directory."
+msgstr "%s nie jest poprawnym katalogiem."
+
+#: airtime_mvc/application/models/MusicDir.php:232
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list"
+msgstr "%s jest już ustawiony jako katalog główny bądź znajduje się na liście katalogów obserwowanych"
+
+#: airtime_mvc/application/models/MusicDir.php:388
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list."
+msgstr "%s jest już ustawiony jako katalog główny bądź znajduje się na liście katalogów obserwowanych."
+
+#: airtime_mvc/application/models/MusicDir.php:431
+#, php-format
+msgid "%s doesn't exist in the watched list."
+msgstr "%s nie występuje na liście katalogów obserwowanych."
+
+#: airtime_mvc/application/models/Auth.php:33
+#, php-format
+msgid ""
+"Hi %s, \n"
+"\n"
+"Please click this link to reset your password: "
+msgstr ""
+
+#: airtime_mvc/application/models/Auth.php:38
+#, php-format
+msgid "%s Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/models/Show.php:184
+msgid "Shows can have a max length of 24 hours."
+msgstr "Audycje mogą mieć maksymalną długość 24 godzin."
+
+#: airtime_mvc/application/models/Show.php:293
+msgid ""
+"Cannot schedule overlapping shows.\n"
+"Note: Resizing a repeating show affects all of its repeats."
+msgstr ""
+"Nie można planować audycji nakładających się na siebie.\n"
+"Uwaga: zmiana audycji powoduje automatyczną zmianę wszystkich jej powtórzeń."
+
+#: airtime_mvc/application/models/Scheduler.php:73
+msgid "Cannot move items out of linked shows"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:119
+msgid "The schedule you're viewing is out of date! (sched mismatch)"
+msgstr "Harmonogram, który przeglądasz jest nieaktualny! (błędne dopasowanie harmonogramu)"
+
+#: airtime_mvc/application/models/Scheduler.php:124
+msgid "The schedule you're viewing is out of date! (instance mismatch)"
+msgstr "Harmonogram, który przeglądasz jest nieaktualny! (błędne dopasowanie instancji)"
+
+#: airtime_mvc/application/models/Scheduler.php:132
+#: airtime_mvc/application/models/Scheduler.php:458
+#: airtime_mvc/application/models/Scheduler.php:490
+msgid "The schedule you're viewing is out of date!"
+msgstr "Harmonogram, który przeglądasz jest nieaktualny!"
+
+#: airtime_mvc/application/models/Scheduler.php:142
+#, php-format
+msgid "You are not allowed to schedule show %s."
+msgstr "Nie posiadasz uprawnień, aby zaplanować audycję %s."
+
+#: airtime_mvc/application/models/Scheduler.php:146
+msgid "You cannot add files to recording shows."
+msgstr "Nie można dodawać plików do nagrywanych audycji."
+
+#: airtime_mvc/application/models/Scheduler.php:152
+#, php-format
+msgid "The show %s is over and cannot be scheduled."
+msgstr "Audycja %s przekracza dopuszczalną długość i nie może zostać zaplanowana."
+
+#: airtime_mvc/application/models/Scheduler.php:159
+#, php-format
+msgid "The show %s has been previously updated!"
+msgstr "Audycja %s została zaktualizowana wcześniej!"
+
+#: airtime_mvc/application/models/Scheduler.php:178
+msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:195
+msgid "Cannot schedule a playlist that contains missing files."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:216
+#: airtime_mvc/application/models/Scheduler.php:305
+msgid "A selected File does not exist!"
+msgstr "Wybrany plik nie istnieje!"
+
+#: airtime_mvc/application/models/Schedule.php:206
+msgid "livestream"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:166
+msgid "Length needs to be greater than 0 minutes"
+msgstr "Długość musi być większa niż 0 minut"
+
+#: airtime_mvc/application/models/Webstream.php:171
+msgid "Length should be of form \"00h 00m\""
+msgstr "Długość powinna mieć postać \"00h 00m\""
+
+#: airtime_mvc/application/models/Webstream.php:184
+msgid "URL should be of form \"http://domain\""
+msgstr "URL powinien mieć postać \"http://domain\""
+
+#: airtime_mvc/application/models/Webstream.php:187
+msgid "URL should be 512 characters or less"
+msgstr "URL powinien mieć 512 znaków lub mniej"
+
+#: airtime_mvc/application/models/Webstream.php:193
+msgid "No MIME type found for webstream."
+msgstr "Nie znaleziono typu MIME dla webstreamu"
+
+#: airtime_mvc/application/models/Webstream.php:209
+msgid "Webstream name cannot be empty"
+msgstr "Nazwa webstreamu nie może być pusta"
+
+#: airtime_mvc/application/models/Webstream.php:278
+msgid "Could not parse XSPF playlist"
+msgstr "Nie można przeanalizować playlisty XSPF"
+
+#: airtime_mvc/application/models/Webstream.php:298
+msgid "Could not parse PLS playlist"
+msgstr "Nie można przeanalizować playlisty PLS"
+
+#: airtime_mvc/application/models/Webstream.php:318
+msgid "Could not parse M3U playlist"
+msgstr "Nie można przeanalizować playlisty M3U"
+
+#: airtime_mvc/application/models/Webstream.php:332
+msgid "Invalid webstream - This appears to be a file download."
+msgstr "Nieprawidłowy webstream, prawdopodobnie trwa pobieranie pliku."
+
+#: airtime_mvc/application/models/Webstream.php:336
+#, php-format
+msgid "Unrecognized stream type: %s"
+msgstr "Nie rozpoznano typu strumienia: %s"
+
+#: airtime_mvc/public/setup/rabbitmq-setup.php:78
+msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
+msgstr ""
+
+#~ msgid "My Account"
+#~ msgstr "Moje konto"
diff --git a/airtime_mvc/locale/pl_PL/LC_MESSAGES/pro.po b/airtime_mvc/locale/pl_PL/LC_MESSAGES/pro.po
index 866ee0acb..f59b52c3d 100644
--- a/airtime_mvc/locale/pl_PL/LC_MESSAGES/pro.po
+++ b/airtime_mvc/locale/pl_PL/LC_MESSAGES/pro.po
@@ -1,3 +1,139 @@
+#: airtime_mvc/application/controllers/LoginController.php:170
+#, php-format
+msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
+#, php-format
+msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
+#, php-format
+msgid "If you are the primary owner of this station, please reset your password here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
+msgid "Thank you!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
+msgid "Your station has been upgraded successfully."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
+msgid "Return to Airtime"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+#, php-format
+msgid "Purchase an %s plan!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+msgid "My Account"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
+msgid "Upgrade today to get more listeners and storage space!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
+msgid "View Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:257
+msgid "Your Current Plan:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:291
+msgid "Please enter your payment details:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
+msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
+msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:17
+msgid "First Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:26
+msgid "Last Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:35
+msgid "Company Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:44
+msgid "Email Address:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:54
+msgid "Address 1:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:63
+msgid "Address 2:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:70
+msgid "City:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:80
+msgid "State/Region:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:89
+msgid "Zip Code / Postal Code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:102
+msgid "Country:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:112
+msgid "Phone Number:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:121
+msgid "Please choose a security question:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:135
+msgid "Please enter an answer:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:152
+msgid "VAT/Tax ID (EU only)"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:162
+msgid "Subscribe to Sourcefabric newsletter"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:172
+msgid "Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:181
+msgid "Verify Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:193
+msgid "Save"
+msgstr ""
+
#: airtime_mvc/application/models/Auth.php:35
#, php-format
msgid ""
@@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
-msgid "Thank you!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
-msgid "Your station has been upgraded successfully."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
-msgid "Return to Airtime"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
-#, php-format
-msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
-msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
-msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
-#, php-format
-msgid "If you are the primary owner of this station, please reset your password here."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:170
-#, php-format
-msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
-msgstr ""
diff --git a/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.mo
index 5439d9523..df30e0ba0 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 9344d5b92..ccf218260 100644
--- a/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.po
+++ b/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.po
@@ -10,9 +10,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Airtime\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-09-03 10:24-0400\n"
-"PO-Revision-Date: 2015-07-02 10:16+0000\n"
-"Last-Translator: Felipe Thomaz Pedroni\n"
+"POT-Creation-Date: 2015-09-04 11:17-0400\n"
+"PO-Revision-Date: 2015-09-04 08:15+0000\n"
+"Last-Translator: Daniel James \n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/sourcefabric/airtime/language/pt_BR/)\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
@@ -20,132 +20,6 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-#: airtime_mvc/public/setup/rabbitmq-setup.php:78
-msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1117
-#: airtime_mvc/application/services/HistoryService.php:1157
-#: airtime_mvc/application/services/HistoryService.php:1174
-#: airtime_mvc/application/models/Block.php:1375
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
-#: airtime_mvc/application/controllers/LocaleController.php:76
-msgid "Title"
-msgstr "Título"
-
-#: airtime_mvc/application/services/HistoryService.php:1118
-#: airtime_mvc/application/services/HistoryService.php:1158
-#: airtime_mvc/application/services/HistoryService.php:1175
-#: airtime_mvc/application/models/Block.php:1360
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
-#: airtime_mvc/application/controllers/LocaleController.php:77
-msgid "Creator"
-msgstr "Criador"
-
-#: airtime_mvc/application/services/HistoryService.php:1119
-#: airtime_mvc/application/models/Block.php:1352
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
-#: airtime_mvc/application/controllers/LocaleController.php:78
-msgid "Album"
-msgstr "Álbum"
-
-#: airtime_mvc/application/services/HistoryService.php:1120
-#: airtime_mvc/application/services/HistoryService.php:1177
-#: airtime_mvc/application/models/Block.php:1369
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
-#: airtime_mvc/application/controllers/LocaleController.php:91
-msgid "Length"
-msgstr "Duração"
-
-#: airtime_mvc/application/services/HistoryService.php:1121
-#: airtime_mvc/application/models/Block.php:1362
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
-#: airtime_mvc/application/controllers/LocaleController.php:85
-msgid "Genre"
-msgstr "Gênero"
-
-#: airtime_mvc/application/services/HistoryService.php:1122
-#: airtime_mvc/application/models/Block.php:1371
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
-#: airtime_mvc/application/controllers/LocaleController.php:93
-msgid "Mood"
-msgstr "Humor"
-
-#: airtime_mvc/application/services/HistoryService.php:1123
-#: airtime_mvc/application/models/Block.php:1364
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
-#: airtime_mvc/application/controllers/LocaleController.php:87
-msgid "Label"
-msgstr "Legenda"
-
-#: airtime_mvc/application/services/HistoryService.php:1124
-#: airtime_mvc/application/services/HistoryService.php:1178
-#: airtime_mvc/application/models/Block.php:1355
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
-#: airtime_mvc/application/controllers/LocaleController.php:81
-msgid "Composer"
-msgstr "Compositor"
-
-#: airtime_mvc/application/services/HistoryService.php:1125
-#: airtime_mvc/application/models/Block.php:1363
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
-#: airtime_mvc/application/controllers/LocaleController.php:86
-msgid "ISRC"
-msgstr "ISRC"
-
-#: airtime_mvc/application/services/HistoryService.php:1126
-#: airtime_mvc/application/services/HistoryService.php:1179
-#: airtime_mvc/application/models/Block.php:1357
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
-#: airtime_mvc/application/controllers/LocaleController.php:83
-msgid "Copyright"
-msgstr "Copyright"
-
-#: airtime_mvc/application/services/HistoryService.php:1127
-#: airtime_mvc/application/models/Block.php:1379
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
-#: airtime_mvc/application/controllers/LocaleController.php:100
-msgid "Year"
-msgstr "Ano"
-
-#: airtime_mvc/application/services/HistoryService.php:1128
-msgid "Track"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1129
-#: airtime_mvc/application/models/Block.php:1356
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
-#: airtime_mvc/application/controllers/LocaleController.php:82
-msgid "Conductor"
-msgstr "Maestro"
-
-#: airtime_mvc/application/services/HistoryService.php:1130
-#: airtime_mvc/application/models/Block.php:1365
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
-#: airtime_mvc/application/controllers/LocaleController.php:88
-msgid "Language"
-msgstr "Idioma"
-
-#: airtime_mvc/application/services/HistoryService.php:1155
-#: airtime_mvc/application/forms/EditHistoryItem.php:32
-msgid "Start Time"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1156
-#: airtime_mvc/application/forms/EditHistoryItem.php:44
-msgid "End Time"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1176
-msgid "Played"
-msgstr "Executado"
-
#: airtime_mvc/application/services/CalendarService.php:50
msgid "Record file doesn't exist"
msgstr ""
@@ -241,2604 +115,381 @@ msgstr "O programa foi excluído porque a gravação prévia não existe!"
msgid "Must wait 1 hour to rebroadcast."
msgstr "É necessário aguardar 1 hora antes de retransmitir."
-#: airtime_mvc/application/models/Schedule.php:206
-msgid "livestream"
+#: airtime_mvc/application/services/HistoryService.php:1117
+#: airtime_mvc/application/services/HistoryService.php:1157
+#: airtime_mvc/application/services/HistoryService.php:1174
+#: airtime_mvc/application/controllers/LocaleController.php:76
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
+#: airtime_mvc/application/models/Block.php:1375
+msgid "Title"
+msgstr "Título"
+
+#: airtime_mvc/application/services/HistoryService.php:1118
+#: airtime_mvc/application/services/HistoryService.php:1158
+#: airtime_mvc/application/services/HistoryService.php:1175
+#: airtime_mvc/application/controllers/LocaleController.php:77
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
+#: airtime_mvc/application/models/Block.php:1360
+msgid "Creator"
+msgstr "Criador"
+
+#: airtime_mvc/application/services/HistoryService.php:1119
+#: airtime_mvc/application/controllers/LocaleController.php:78
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
+#: airtime_mvc/application/models/Block.php:1352
+msgid "Album"
+msgstr "Álbum"
+
+#: airtime_mvc/application/services/HistoryService.php:1120
+#: airtime_mvc/application/services/HistoryService.php:1177
+#: airtime_mvc/application/controllers/LocaleController.php:91
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
+#: airtime_mvc/application/models/Block.php:1369
+msgid "Length"
+msgstr "Duração"
+
+#: airtime_mvc/application/services/HistoryService.php:1121
+#: airtime_mvc/application/controllers/LocaleController.php:85
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
+#: airtime_mvc/application/models/Block.php:1362
+msgid "Genre"
+msgstr "Gênero"
+
+#: airtime_mvc/application/services/HistoryService.php:1122
+#: airtime_mvc/application/controllers/LocaleController.php:93
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
+#: airtime_mvc/application/models/Block.php:1371
+msgid "Mood"
+msgstr "Humor"
+
+#: airtime_mvc/application/services/HistoryService.php:1123
+#: airtime_mvc/application/controllers/LocaleController.php:87
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
+#: airtime_mvc/application/models/Block.php:1364
+msgid "Label"
+msgstr "Legenda"
+
+#: airtime_mvc/application/services/HistoryService.php:1124
+#: airtime_mvc/application/services/HistoryService.php:1178
+#: airtime_mvc/application/controllers/LocaleController.php:81
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
+#: airtime_mvc/application/models/Block.php:1355
+msgid "Composer"
+msgstr "Compositor"
+
+#: airtime_mvc/application/services/HistoryService.php:1125
+#: airtime_mvc/application/controllers/LocaleController.php:86
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
+#: airtime_mvc/application/models/Block.php:1363
+msgid "ISRC"
+msgstr "ISRC"
+
+#: airtime_mvc/application/services/HistoryService.php:1126
+#: airtime_mvc/application/services/HistoryService.php:1179
+#: airtime_mvc/application/controllers/LocaleController.php:83
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
+#: airtime_mvc/application/models/Block.php:1357
+msgid "Copyright"
+msgstr "Copyright"
+
+#: airtime_mvc/application/services/HistoryService.php:1127
+#: airtime_mvc/application/controllers/LocaleController.php:100
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
+#: airtime_mvc/application/models/Block.php:1379
+msgid "Year"
+msgstr "Ano"
+
+#: airtime_mvc/application/services/HistoryService.php:1128
+msgid "Track"
msgstr ""
-#: airtime_mvc/application/models/ShowBuilder.php:212
-#, php-format
-msgid "Rebroadcast of %s from %s"
-msgstr "Retransmissão de %s a partir de %s"
+#: airtime_mvc/application/services/HistoryService.php:1129
+#: airtime_mvc/application/controllers/LocaleController.php:82
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
+#: airtime_mvc/application/models/Block.php:1356
+msgid "Conductor"
+msgstr "Maestro"
-#: airtime_mvc/application/models/Webstream.php:166
-msgid "Length needs to be greater than 0 minutes"
-msgstr "A duração precisa ser maior que 0 minuto"
+#: airtime_mvc/application/services/HistoryService.php:1130
+#: airtime_mvc/application/controllers/LocaleController.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
+#: airtime_mvc/application/models/Block.php:1365
+msgid "Language"
+msgstr "Idioma"
-#: airtime_mvc/application/models/Webstream.php:171
-msgid "Length should be of form \"00h 00m\""
-msgstr "A duração deve ser informada no formato \"00h 00m\""
-
-#: airtime_mvc/application/models/Webstream.php:184
-msgid "URL should be of form \"http://domain\""
-msgstr "A URL deve estar no formato \"http://domain\""
-
-#: airtime_mvc/application/models/Webstream.php:187
-msgid "URL should be 512 characters or less"
-msgstr "A URL de conter no máximo 512 caracteres"
-
-#: airtime_mvc/application/models/Webstream.php:193
-msgid "No MIME type found for webstream."
-msgstr "Nenhum tipo MIME encontrado para o fluxo."
-
-#: airtime_mvc/application/models/Webstream.php:209
-msgid "Webstream name cannot be empty"
-msgstr "O nome do fluxo não pode estar vazio"
-
-#: airtime_mvc/application/models/Webstream.php:278
-msgid "Could not parse XSPF playlist"
-msgstr "Não foi possível analisar a lista XSPF"
-
-#: airtime_mvc/application/models/Webstream.php:298
-msgid "Could not parse PLS playlist"
-msgstr "Não foi possível analisar a lista PLS"
-
-#: airtime_mvc/application/models/Webstream.php:318
-msgid "Could not parse M3U playlist"
-msgstr "Não foi possível analisar a lista M3U"
-
-#: airtime_mvc/application/models/Webstream.php:332
-msgid "Invalid webstream - This appears to be a file download."
-msgstr "Fluxo web inválido. A URL parece tratar-se de download de arquivo."
-
-#: airtime_mvc/application/models/Webstream.php:336
-#, php-format
-msgid "Unrecognized stream type: %s"
-msgstr "Tipo de fluxo não reconhecido: %s"
-
-#: airtime_mvc/application/models/Preference.php:460
-#, php-format
-msgid "Powered by %s"
+#: airtime_mvc/application/services/HistoryService.php:1155
+#: airtime_mvc/application/forms/EditHistoryItem.php:32
+msgid "Start Time"
msgstr ""
-#: airtime_mvc/application/models/Preference.php:588
-msgid "Select Country"
-msgstr "Selecione o País"
+#: airtime_mvc/application/services/HistoryService.php:1156
+#: airtime_mvc/application/forms/EditHistoryItem.php:44
+msgid "End Time"
+msgstr ""
-#: airtime_mvc/application/models/MusicDir.php:160
+#: airtime_mvc/application/services/HistoryService.php:1176
+msgid "Played"
+msgstr "Executado"
+
+#: airtime_mvc/application/controllers/LibraryController.php:31
+#: airtime_mvc/application/controllers/PlaylistController.php:147
#, php-format
-msgid "%s is already watched."
-msgstr "%s já está monitorado."
+msgid "%s not found"
+msgstr "%s não encontrado"
-#: airtime_mvc/application/models/MusicDir.php:164
+#: airtime_mvc/application/controllers/LibraryController.php:40
+#: airtime_mvc/application/controllers/PlaylistController.php:168
+msgid "Something went wrong."
+msgstr "Ocorreu algo errado."
+
+#: airtime_mvc/application/controllers/LibraryController.php:95
+#: airtime_mvc/application/controllers/ShowbuilderController.php:136
+msgid "Preview"
+msgstr "Visualizar"
+
+#: airtime_mvc/application/controllers/LibraryController.php:115
+#: airtime_mvc/application/controllers/LibraryController.php:177
+#: airtime_mvc/application/controllers/LibraryController.php:200
+msgid "Add to Playlist"
+msgstr "Adicionar à Lista"
+
+#: airtime_mvc/application/controllers/LibraryController.php:117
+msgid "Add to Smart Block"
+msgstr "Adicionar ao Bloco"
+
+#: airtime_mvc/application/controllers/LibraryController.php:123
+#: airtime_mvc/application/controllers/LocaleController.php:66
+msgid "Edit Metadata"
+msgstr "Editar Metadados"
+
+#: airtime_mvc/application/controllers/LibraryController.php:131
+#: airtime_mvc/application/controllers/ScheduleController.php:712
+msgid "Download"
+msgstr "Download"
+
+#: airtime_mvc/application/controllers/LibraryController.php:147
+msgid "View track"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:148
+msgid "Remove track"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:154
+#: airtime_mvc/application/controllers/LibraryController.php:159
+msgid "Upload track"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:169
+msgid "Duplicate Playlist"
+msgstr "Duplicar Lista"
+
+#: airtime_mvc/application/controllers/LibraryController.php:213
+msgid "No action available"
+msgstr "Nenhuma ação disponível"
+
+#: airtime_mvc/application/controllers/LibraryController.php:233
+msgid "You don't have permission to delete selected items."
+msgstr "Você não tem permissão para excluir os itens selecionados."
+
+#: airtime_mvc/application/controllers/LibraryController.php:279
+msgid "Could not delete file because it is scheduled in the future."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:282
+msgid "Could not delete file(s)."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:322
#, php-format
-msgid "%s contains nested watched directory: %s"
-msgstr "%s contém o diretório monitorado:% s"
+msgid "Copy of %s"
+msgstr "Cópia de %s"
-#: airtime_mvc/application/models/MusicDir.php:168
-#, php-format
-msgid "%s is nested within existing watched directory: %s"
-msgstr "%s está contido dentro de diretório já monitorado: %s"
+#: airtime_mvc/application/controllers/WebstreamController.php:28
+#: airtime_mvc/application/controllers/WebstreamController.php:32
+msgid "Untitled Webstream"
+msgstr "Fluxo Sem Título"
-#: airtime_mvc/application/models/MusicDir.php:189
-#: airtime_mvc/application/models/MusicDir.php:370
-#, php-format
-msgid "%s is not a valid directory."
-msgstr "%s não é um diretório válido."
+#: airtime_mvc/application/controllers/WebstreamController.php:150
+msgid "Webstream saved."
+msgstr "Fluxo gravado."
-#: airtime_mvc/application/models/MusicDir.php:232
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list"
-msgstr "%s já está definido como armazenamento atual ou está na lista de diretórios monitorados"
+#: airtime_mvc/application/controllers/WebstreamController.php:158
+msgid "Invalid form values."
+msgstr "Valores do formulário inválidos."
-#: airtime_mvc/application/models/MusicDir.php:388
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list."
-msgstr "%s já está definido como armazenamento atual ou está na lista de diretórios monitorados."
-
-#: airtime_mvc/application/models/MusicDir.php:431
-#, php-format
-msgid "%s doesn't exist in the watched list."
-msgstr "%s não existe na lista de diretórios monitorados."
-
-#: airtime_mvc/application/models/Show.php:184
-msgid "Shows can have a max length of 24 hours."
-msgstr "Os programas podem ter duração máxima de 24 horas."
-
-#: airtime_mvc/application/models/Show.php:282
-#: airtime_mvc/application/forms/AddShowWhen.php:156
-msgid "End date/time cannot be in the past"
-msgstr "Data e horário finais não podem ser definidos no passado."
-
-#: airtime_mvc/application/models/Show.php:293
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
msgid ""
-"Cannot schedule overlapping shows.\n"
-"Note: Resizing a repeating show affects all of its repeats."
+"To configure and use the embeddable player you must:
\n"
+" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
+" 2. Enable the Public Airtime API under System -> Preferences"
msgstr ""
-"Não é possível agendar programas sobrepostos.\n"
-"Nota: Redimensionar um programa repetitivo afeta todas as suas repetições."
-#: airtime_mvc/application/models/Auth.php:33
-#, php-format
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
msgid ""
-"Hi %s, \n"
-"\n"
-"Please click this link to reset your password: "
+"To use the embeddable weekly schedule widget you must:
\n"
+" Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/models/Auth.php:38
+#: airtime_mvc/application/controllers/ListenerstatController.php:51
+msgid "Please make sure admin user/password is correct on System->Streams page."
+msgstr "Confirme se o nome de usuário / senha do administrador estão corretos na página Sistema > Fluxos."
+
+#: airtime_mvc/application/controllers/UserController.php:86
+msgid "User added successfully!"
+msgstr "Usuário adicionado com sucesso!"
+
+#: airtime_mvc/application/controllers/UserController.php:88
+msgid "User updated successfully!"
+msgstr "Usuário atualizado com sucesso!"
+
+#: airtime_mvc/application/controllers/UserController.php:187
+msgid "Settings updated successfully!"
+msgstr "Configurações atualizadas com sucesso!"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:53
#, php-format
-msgid "%s Password Reset"
-msgstr ""
+msgid "You are viewing an older version of %s"
+msgstr "Você está vendo uma versão obsoleta de %s"
-#: airtime_mvc/application/models/Block.php:333
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
-msgid "items"
-msgstr "itens"
+#: airtime_mvc/application/controllers/PlaylistController.php:140
+msgid "You cannot add tracks to dynamic blocks."
+msgstr "Você não pode adicionar faixas a um bloco dinâmico"
-#: airtime_mvc/application/models/Block.php:833
-#: airtime_mvc/application/models/Playlist.php:812
-msgid "Cue in and cue out are null."
-msgstr "Cue de entrada e saída são nulos."
-
-#: airtime_mvc/application/models/Block.php:868
-#: airtime_mvc/application/models/Block.php:924
-#: airtime_mvc/application/models/Playlist.php:851
-#: airtime_mvc/application/models/Playlist.php:895
-msgid "Can't set cue out to be greater than file length."
-msgstr "O ponto de saída não pode ser maior que a duração do arquivo"
-
-#: airtime_mvc/application/models/Block.php:879
-#: airtime_mvc/application/models/Block.php:900
-#: airtime_mvc/application/models/Playlist.php:843
-#: airtime_mvc/application/models/Playlist.php:868
-msgid "Can't set cue in to be larger than cue out."
-msgstr "A duração do ponto de entrada não pode ser maior que a do ponto de saída."
-
-#: airtime_mvc/application/models/Block.php:935
-#: airtime_mvc/application/models/Playlist.php:887
-msgid "Can't set cue out to be smaller than cue in."
-msgstr "A duração do ponto de saída não pode ser menor que a do ponto de entrada."
-
-#: airtime_mvc/application/models/Block.php:1351
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
-msgid "Select criteria"
-msgstr "Selecione um critério"
-
-#: airtime_mvc/application/models/Block.php:1353
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
-msgid "Bit Rate (Kbps)"
-msgstr "Bitrate (Kbps)"
-
-#: airtime_mvc/application/models/Block.php:1354
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
-#: airtime_mvc/application/controllers/LocaleController.php:80
-msgid "BPM"
-msgstr "BPM"
-
-#: airtime_mvc/application/models/Block.php:1358
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
-#: airtime_mvc/application/controllers/LocaleController.php:281
-#: airtime_mvc/application/layouts/scripts/layout.phtml:140
-msgid "Cue In"
-msgstr "Cue Entrada"
-
-#: airtime_mvc/application/models/Block.php:1359
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:282
-#: airtime_mvc/application/layouts/scripts/layout.phtml:147
-msgid "Cue Out"
-msgstr "Cue Saída"
-
-#: airtime_mvc/application/models/Block.php:1361
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
-#: airtime_mvc/application/controllers/LocaleController.php:84
-msgid "Encoded By"
-msgstr "Convertido por"
-
-#: airtime_mvc/application/models/Block.php:1366
-msgid "Upload Time"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1367
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
-#: airtime_mvc/application/controllers/LocaleController.php:89
-msgid "Last Modified"
-msgstr "Última Ateração"
-
-#: airtime_mvc/application/models/Block.php:1368
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
-#: airtime_mvc/application/controllers/LocaleController.php:90
-msgid "Last Played"
-msgstr "Última Execução"
-
-#: airtime_mvc/application/models/Block.php:1370
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
-#: airtime_mvc/application/controllers/LocaleController.php:92
-msgid "Mime"
-msgstr "Mime"
-
-#: airtime_mvc/application/models/Block.php:1372
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
-#: airtime_mvc/application/controllers/LocaleController.php:94
-msgid "Owner"
-msgstr "Prorietário"
-
-#: airtime_mvc/application/models/Block.php:1373
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
-#: airtime_mvc/application/controllers/LocaleController.php:95
-msgid "Replay Gain"
-msgstr "Ganho de Reprodução"
-
-#: airtime_mvc/application/models/Block.php:1374
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
-msgid "Sample Rate (kHz)"
-msgstr "Taxa de Amostragem (khz)"
-
-#: airtime_mvc/application/models/Block.php:1376
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
-#: airtime_mvc/application/controllers/LocaleController.php:97
-msgid "Track Number"
-msgstr "Número de Faixa"
-
-#: airtime_mvc/application/models/Block.php:1377
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
-#: airtime_mvc/application/controllers/LocaleController.php:98
-msgid "Uploaded"
-msgstr "Adicionado"
-
-#: airtime_mvc/application/models/Block.php:1378
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
-#: airtime_mvc/application/controllers/LocaleController.php:99
-msgid "Website"
-msgstr "Website"
-
-#: airtime_mvc/application/models/Block.php:1383
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
-#: airtime_mvc/application/controllers/LocaleController.php:151
-msgid "Select modifier"
-msgstr "Selecionar modificador"
-
-#: airtime_mvc/application/models/Block.php:1384
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
-#: airtime_mvc/application/controllers/LocaleController.php:152
-msgid "contains"
-msgstr "contém"
-
-#: airtime_mvc/application/models/Block.php:1385
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
-#: airtime_mvc/application/controllers/LocaleController.php:153
-msgid "does not contain"
-msgstr "não contém"
-
-#: airtime_mvc/application/models/Block.php:1386
-#: airtime_mvc/application/models/Block.php:1390
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
-#: airtime_mvc/application/controllers/LocaleController.php:154
-msgid "is"
-msgstr "é"
-
-#: airtime_mvc/application/models/Block.php:1387
-#: airtime_mvc/application/models/Block.php:1391
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
-#: airtime_mvc/application/controllers/LocaleController.php:155
-msgid "is not"
-msgstr "não é"
-
-#: airtime_mvc/application/models/Block.php:1388
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
-#: airtime_mvc/application/controllers/LocaleController.php:156
-msgid "starts with"
-msgstr "começa com"
-
-#: airtime_mvc/application/models/Block.php:1389
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
-#: airtime_mvc/application/controllers/LocaleController.php:157
-msgid "ends with"
-msgstr "termina com"
-
-#: airtime_mvc/application/models/Block.php:1392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
-#: airtime_mvc/application/controllers/LocaleController.php:158
-msgid "is greater than"
-msgstr "é maior que"
-
-#: airtime_mvc/application/models/Block.php:1393
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
-#: airtime_mvc/application/controllers/LocaleController.php:159
-msgid "is less than"
-msgstr "é menor que"
-
-#: airtime_mvc/application/models/Block.php:1394
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
-#: airtime_mvc/application/controllers/LocaleController.php:160
-msgid "is in the range"
-msgstr "está no intervalo"
-
-#: airtime_mvc/application/models/Scheduler.php:73
-msgid "Cannot move items out of linked shows"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:119
-msgid "The schedule you're viewing is out of date! (sched mismatch)"
-msgstr "A programação que você está vendo está desatualizada! (programação incompatível)"
-
-#: airtime_mvc/application/models/Scheduler.php:124
-msgid "The schedule you're viewing is out of date! (instance mismatch)"
-msgstr "A programação que você está vendo está desatualizada! (instância incompatível)"
-
-#: airtime_mvc/application/models/Scheduler.php:132
-#: airtime_mvc/application/models/Scheduler.php:458
-#: airtime_mvc/application/models/Scheduler.php:490
-msgid "The schedule you're viewing is out of date!"
-msgstr "A programação que você está vendo está desatualizada!"
-
-#: airtime_mvc/application/models/Scheduler.php:142
+#: airtime_mvc/application/controllers/PlaylistController.php:161
#, php-format
-msgid "You are not allowed to schedule show %s."
-msgstr "Você não tem permissão para agendar programa %s."
+msgid "You don't have permission to delete selected %s(s)."
+msgstr "Você não tem permissão para excluir os %s(s) selecionados."
-#: airtime_mvc/application/models/Scheduler.php:146
-msgid "You cannot add files to recording shows."
-msgstr "Você não pode adicionar arquivos para gravação de programas."
+#: airtime_mvc/application/controllers/PlaylistController.php:174
+msgid "You can only add tracks to smart block."
+msgstr "Você pode somente adicionar faixas um bloco inteligente."
-#: airtime_mvc/application/models/Scheduler.php:152
+#: airtime_mvc/application/controllers/PlaylistController.php:180
+#: airtime_mvc/application/controllers/LocaleController.php:50
+msgid "You can only add tracks, smart blocks, and webstreams to playlists."
+msgstr "Você pode adicionar apenas faixas, blocos e fluxos às listas de reprodução"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:192
+msgid "Untitled Playlist"
+msgstr "Lista Sem Título"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:194
+msgid "Untitled Smart Block"
+msgstr "Bloco Sem Título"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:522
+msgid "Unknown Playlist"
+msgstr "Lista Desconhecida"
+
+#: airtime_mvc/application/controllers/ErrorController.php:78
+msgid "Page not found."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:87
+msgid "The requested action is not supported."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:98
+msgid "You do not have permission to access this resource."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:109
+msgid "An internal application error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/controllers/Apiv2Controller.php:77
+#: airtime_mvc/application/controllers/ApiController.php:79
+msgid "You are not allowed to access this resource."
+msgstr "Você não tem permissão para acessar esta funcionalidade."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:72
+msgid "Preferences updated."
+msgstr "Preferências atualizadas."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:115
+msgid "Support setting updated."
+msgstr "Configurações de suporte atualizadas."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:123
+msgid "Support Feedback"
+msgstr "Informações de Suporte"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:251
+msgid "Stream Setting Updated."
+msgstr "Preferências de fluxo atualizadas."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:342
+msgid "path should be specified"
+msgstr "o caminho precisa ser informado"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:437
+msgid "Problem with Liquidsoap..."
+msgstr "Problemas com o Liquidsoap..."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:493
+msgid "Request method not accepted"
+msgstr ""
+
+#: airtime_mvc/application/controllers/DashboardController.php:35
+#: airtime_mvc/application/controllers/DashboardController.php:84
+msgid "You don't have permission to disconnect source."
+msgstr "Você não tem permissão para desconectar a fonte."
+
+#: airtime_mvc/application/controllers/DashboardController.php:37
+#: airtime_mvc/application/controllers/DashboardController.php:86
+msgid "There is no source connected to this input."
+msgstr "Não há fonte conectada a esta entrada."
+
+#: airtime_mvc/application/controllers/DashboardController.php:81
+msgid "You don't have permission to switch source."
+msgstr "Você não tem permissão para alternar entre as fontes."
+
+#: airtime_mvc/application/controllers/LoginController.php:43
+msgid "Please enter your username and password."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:93
+msgid "Wrong username or password provided. Please try again."
+msgstr "Usuário ou senha inválidos. Tente novamente."
+
+#: airtime_mvc/application/controllers/LoginController.php:167
+msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
+msgstr "O email não pôde ser enviado. Verifique as definições do servidor de email e certifique-se de que esteja corretamente configurado."
+
+#: airtime_mvc/application/controllers/LoginController.php:173
+msgid "There was a problem with the username or email address you entered."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ApiController.php:244
+#: airtime_mvc/application/controllers/ApiController.php:317
+#: airtime_mvc/application/controllers/ApiController.php:392
+#: airtime_mvc/application/controllers/ApiController.php:435
+#: airtime_mvc/application/controllers/ApiController.php:474
+#: airtime_mvc/application/controllers/ApiController.php:507
+msgid "You are not allowed to access this resource. "
+msgstr "Você não tem permissão para acessar esta funcionalidade."
+
+#: airtime_mvc/application/controllers/ApiController.php:698
+#: airtime_mvc/application/controllers/ApiController.php:718
+#: airtime_mvc/application/controllers/ApiController.php:730
#, php-format
-msgid "The show %s is over and cannot be scheduled."
-msgstr "O programa %s terminou e não pode ser agendado."
-
-#: airtime_mvc/application/models/Scheduler.php:159
-#, php-format
-msgid "The show %s has been previously updated!"
-msgstr "O programa %s foi previamente atualizado!"
-
-#: airtime_mvc/application/models/Scheduler.php:178
-msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:195
-msgid "Cannot schedule a playlist that contains missing files."
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:216
-#: airtime_mvc/application/models/Scheduler.php:305
-msgid "A selected File does not exist!"
-msgstr "Um dos arquivos selecionados não existe!"
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
-#: airtime_mvc/application/configs/navigation.php:40
-msgid "Weekly Schedule"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
-#: airtime_mvc/application/forms/Player.php:77
-msgid "Preview:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
-#: airtime_mvc/application/configs/navigation.php:34
-msgid "Player"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
-#: airtime_mvc/application/controllers/LocaleController.php:362
-#: airtime_mvc/application/controllers/LocaleController.php:390
-msgid "Close"
-msgstr "Fechar"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Add this show"
-msgstr "Adicionar este programa"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Update show"
-msgstr "Atualizar programa"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
-msgid "What"
-msgstr "O que"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
-msgid "When"
-msgstr "Quando"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
-msgid "Live Stream Input"
-msgstr "Fluxo de entrada ao vivo"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
-msgid "Who"
-msgstr "Quem"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
-msgid "Style"
-msgstr "Aparência"
-
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
-#: airtime_mvc/application/controllers/LocaleController.php:273
-msgid "Start"
-msgstr "Início"
-
-#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
-msgid "Password Reset"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
-msgid "Email Sent!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
-msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
-msgid "Back"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
-msgid "New password"
-msgstr "Nova senha"
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
-msgid "Please enter and confirm your new password in the fields below."
-msgstr "Por favor informe e confirme sua nova senha nos campos abaixo."
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:3
-#: airtime_mvc/application/forms/Login.php:83
-msgid "Login"
-msgstr "Acessar"
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:7
-#, php-format
-msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:97
-msgid "Playout History"
-msgstr "Histórico da Programação"
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
-msgid "Log Sheet"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
-msgid "File Summary"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
-msgid "Show Summary"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
-msgid "Your trial expires in"
-msgstr "Seu período de teste termina em"
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
-msgid "days"
-msgstr "dias"
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-#, php-format
-msgid "Purchase an %s Pro plan!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-msgid "My Account"
-msgstr "Minha Conta"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
-msgid "Previous:"
-msgstr "Anterior:"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
-msgid "Next:"
-msgstr "Próximo:"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
-msgid "Source Streams"
-msgstr "Fontes de Fluxo"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
-msgid "Master Source"
-msgstr "Master"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
-msgid "Show Source"
-msgstr "Programa"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
-msgid "ON AIR"
-msgstr "NO AR"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
-msgid "Listen"
-msgstr "Ouvir"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
-msgid "Logout"
-msgstr "Sair"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
-msgid "Drop files here or click to browse your computer."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
-#: airtime_mvc/application/controllers/LocaleController.php:314
-msgid "in use"
-msgstr "em uso"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
-#: airtime_mvc/application/controllers/LocaleController.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:401
-msgid "All"
-msgstr "Todos"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
-msgid "Failed"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
-msgid "Pending"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
-msgid "Recent Uploads"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
-#: airtime_mvc/application/configs/navigation.php:120
-msgid "Account Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
-msgid "Upgrade today to get more listeners and storage space!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
-msgid "View Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
-msgid "About"
-msgstr "Sobre"
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
-#, php-format
-msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
-#, php-format
-msgid "%1$s %2$s is distributed under the %3$s"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
-#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
-msgid "Live stream"
-msgstr "Fluxo ao vivo"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
-msgid "Share"
-msgstr "Compartilhar"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
-msgid "Select stream:"
-msgstr "Selecionar fluxo:"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
-msgid "mute"
-msgstr "Mudo"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
-msgid "unmute"
-msgstr "retirar mudo"
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
-#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
-#, php-format
-msgid "Welcome to %s!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
-#, php-format
-msgid "Here's how you can get started using %s to automate your broadcasts: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
-msgid "Upload audio tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
-msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
-msgid "Schedule a show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
-msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
-msgid "Add tracks to your show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
-msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
-msgid "Now you're good to go!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
-#, php-format
-msgid "For more detailed help, read the %suser manual%s."
-msgstr "Para obter ajuda mais detalhada, leia o %smanual do usuário%s."
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
-msgid "Listeners"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
-msgid "Stream Data Collection Status"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
-#: airtime_mvc/application/views/scripts/error/error.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
-msgid "An error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
-msgid "Access Denied!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
-msgid "You do not have permission to access this page!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
-#: airtime_mvc/application/views/scripts/error/error.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
-#: airtime_mvc/application/configs/navigation.php:143
-msgid "Help"
-msgstr "Ajuda"
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
-msgid "Page not found!"
-msgstr "Página não encontrada!"
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
-msgid "We couldn't find the page you were looking for."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error.phtml:12
-msgid "Looks like the page you were looking for doesn't exist!"
-msgstr "A página que você procura não existe!"
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
-msgid "Oops!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
-msgid "Something went wrong!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
-msgid "Bad Request!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
-msgid "The requested action is not supported!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
-msgid "Viewing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
-msgid "Editing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:3
-msgid "File import in progress..."
-msgstr "Importação de arquivo em progresso..."
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:10
-#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
-msgid "Advanced Search Options"
-msgstr "Opções da Busca Avançada"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
-#: airtime_mvc/application/forms/Player.php:15
-#: airtime_mvc/application/forms/EditAudioMD.php:24
-msgid "Title:"
-msgstr "Título:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
-#: airtime_mvc/application/forms/EditAudioMD.php:34
-msgid "Creator:"
-msgstr "Criador:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
-#: airtime_mvc/application/forms/EditAudioMD.php:44
-msgid "Album:"
-msgstr "Álbum:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
-msgid "Track:"
-msgstr "Faixa:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
-msgid "Length:"
-msgstr "Duração:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
-msgid "Sample Rate:"
-msgstr "Taxa de Amostragem:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
-msgid "Bit Rate:"
-msgstr "Bitrate:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
-#: airtime_mvc/application/forms/EditAudioMD.php:115
-msgid "Mood:"
-msgstr "Humor:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
-#: airtime_mvc/application/forms/EditAudioMD.php:62
-#: airtime_mvc/application/forms/AddShowWhat.php:45
-msgid "Genre:"
-msgstr "Gênero:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
-#: airtime_mvc/application/forms/EditAudioMD.php:72
-msgid "Year:"
-msgstr "Ano:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
-#: airtime_mvc/application/forms/EditAudioMD.php:85
-msgid "Label:"
-msgstr "Legenda:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
-#: airtime_mvc/application/forms/EditAudioMD.php:125
-msgid "BPM:"
-msgstr "BPM:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
-#: airtime_mvc/application/forms/EditAudioMD.php:95
-msgid "Composer:"
-msgstr "Compositor:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
-#: airtime_mvc/application/forms/EditAudioMD.php:105
-msgid "Conductor:"
-msgstr "Maestro:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
-#: airtime_mvc/application/forms/EditAudioMD.php:135
-msgid "Copyright:"
-msgstr "Copyright:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
-msgid "Isrc Number:"
-msgstr "Número Isrc:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
-#: airtime_mvc/application/forms/EditAudioMD.php:155
-msgid "Website:"
-msgstr "Website:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
-#: airtime_mvc/application/forms/EditUser.php:119
-#: airtime_mvc/application/forms/EditAudioMD.php:165
-#: airtime_mvc/application/forms/Login.php:68
-msgid "Language:"
-msgstr "Idioma:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
-msgid "File Path:"
-msgstr "Caminho do Arquivo:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
-#: airtime_mvc/application/forms/AddShowWhat.php:26
-msgid "Name:"
-msgstr "Nome:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
-#: airtime_mvc/application/forms/AddShowWhat.php:54
-msgid "Description:"
-msgstr "Descrição:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
-msgid "Web Stream"
-msgstr "Fluxo Web"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
-msgid "Dynamic Smart Block"
-msgstr "Bloco Inteligente Dinâmico"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
-msgid "Static Smart Block"
-msgstr "Bloco Inteligente Estático"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
-msgid "Audio Track"
-msgstr "Faixa de Áudio"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
-msgid "Playlist Contents: "
-msgstr "Conteúdos da Lista de Reprodução:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
-msgid "Static Smart Block Contents: "
-msgstr "Conteúdo do Bloco Inteligente Estático:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
-msgid "Dynamic Smart Block Criteria: "
-msgstr "Critério para Bloco Inteligente Dinâmico:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
-msgid "Limit to "
-msgstr "Limitar em"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
-#: airtime_mvc/application/forms/AddShowWhat.php:36
-msgid "URL:"
-msgstr "URL:"
-
-#: airtime_mvc/application/views/scripts/form/login.phtml:41
-msgid "Forgot your password?"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
-#, php-format
-msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
-#, php-format
-msgid "Click the box below to promote your station on %s."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
-msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
-msgstr "(para divulgação de sua estação, a opção 'Enviar Informações de Suporte\" precisa estar habilitada)"
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
-msgid "(Required)"
-msgstr "(Obrigatório)"
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
-msgid "(for verification purposes only, will not be published)"
-msgstr "(somente para efeito de verificação, não será publicado)"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
-msgid "Choose folder"
-msgstr "Selecione o diretório"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
-msgid "Set"
-msgstr "Definir"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
-msgid "Current Import Folder:"
-msgstr "Diretório de Importação Atual:"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
-msgid "Add"
-msgstr "Adicionar"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
-#, php-format
-msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
-msgid "Remove watched directory"
-msgstr "Remover diretório monitorado"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
-msgid "You are not watching any media folders."
-msgstr "Você não está monitorando nenhum diretório."
-
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
-msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
-msgid "Live Broadcasting"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
-msgid "Use these settings in your broadcasting software to stream live at any time."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
-msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
-msgid "Choose Show Instance"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
-#: airtime_mvc/application/forms/EditHistoryItem.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:400
-msgid "No Show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
-msgid "Find"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
-msgid "Choose Days:"
-msgstr "Selecione os Dias:"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
-#: airtime_mvc/application/forms/AddShowStyle.php:64
-#: airtime_mvc/application/forms/GeneralPreferences.php:53
-msgid "Remove"
-msgstr "Remover"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
-msgid "Stream "
-msgstr "Fluxo"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
-msgid "Additional Options"
-msgstr "Opções Adicionais"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
-msgid "The following info will be displayed to listeners in their media player:"
-msgstr "A informação a seguir será exibida para os ouvintes em seu player de mídia:"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
-msgid "(Your radio station website)"
-msgstr "(O website de sua estação de rádio)"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
-msgid "Stream URL: "
-msgstr "URL do Fluxo:"
-
-#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
-msgid "Find Shows"
-msgstr "Encontrar Programas"
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
-msgid "TuneIn Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
-msgid "SoundCloud Settings"
-msgstr "Configurações do SoundCloud"
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
-msgid "Dangerous Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
-msgid "Search Criteria:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
-msgid "New Criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
-msgid "or"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
-msgid "and"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
-msgid "New Modifier"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
-msgid " to "
-msgstr "para"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
-msgid "files meet the criteria"
-msgstr "arquivos correspondem ao critério"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
-msgid "file meets the criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
-msgid "Filter History"
-msgstr "Histórico de Filtros"
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
-#: airtime_mvc/application/configs/navigation.php:61
-msgid "My Profile"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
-#, php-format
-msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
-#: airtime_mvc/application/forms/Preferences.php:40
-#: airtime_mvc/application/forms/PasswordChange.php:43
-#: airtime_mvc/application/forms/AddUser.php:110
-#: airtime_mvc/application/forms/BillingClient.php:193
-#: airtime_mvc/application/forms/SupportSettings.php:131
-#: airtime_mvc/application/forms/EditHistory.php:131
-#: airtime_mvc/application/controllers/LocaleController.php:294
-msgid "Save"
-msgstr "Salvar"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
-msgid "Repeat Days:"
-msgstr "Dias para reexibir:"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
-msgid "Register Airtime"
-msgstr "Registrar Airtime"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
-#: airtime_mvc/application/forms/GeneralPreferences.php:43
-msgid "Note: Anything larger than 600x600 will be resized."
-msgstr "Nota: qualquer arquivo maior que 600x600 será redimensionado"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
-msgid "Show me what I am sending "
-msgstr "Mostrar quais informações estou enviando"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
-msgid "Terms and Conditions"
-msgstr "Termos e Condições"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
-msgid "Creating File Summary Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
-msgid "Creating Log Sheet Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
-msgid "Name"
-msgstr "Nome"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
-msgid "Add more elements"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
-msgid "Add New Field"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
-msgid "Set Default Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
-msgid "Playout History Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
-msgid "Log Sheet Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
-msgid "New Log Sheet Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
-msgid "No Log Sheet Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
-#: airtime_mvc/application/controllers/LocaleController.php:397
-msgid "Set Default"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
-msgid "File Summary Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
-msgid "New File Summary Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
-msgid "No File Summary Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
-msgid "Disk Space"
-msgstr "Espaço em Disco"
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
-#: airtime_mvc/application/controllers/LocaleController.php:315
-msgid "Disk"
-msgstr "Disco"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
-#: airtime_mvc/application/forms/AddShowWhen.php:89
-msgid "Duration:"
-msgstr "Duração:"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
-msgid "Toggle Details"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
-msgid "Playlist crossfade"
-msgstr "Crossfade da Lista"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-msgid "Remove all content from this smart block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Clear"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "Fade in: "
-msgstr "Fade de entrada"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "(ss.t)"
-msgstr "(ss,t)"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-msgid "Fade out: "
-msgstr "Fade de saída"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
-#: airtime_mvc/application/forms/EditAudioMD.php:186
-#: airtime_mvc/application/forms/EditHistory.php:141
-#: airtime_mvc/application/controllers/LocaleController.php:295
-#: airtime_mvc/application/controllers/LocaleController.php:318
-msgid "Cancel"
-msgstr "Cancelar"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
-msgid "No smart block currently open"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
-msgid "Show Waveform"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-msgid "Cue In: "
-msgstr "Cue entrada:"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "(hh:mm:ss.t)"
-msgstr "(hh:mm:ss.t)"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "Cue Out: "
-msgstr "Cue Saída:"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
-msgid "Original Length:"
-msgstr "Duração Original:"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
-msgid "Expand Static Block"
-msgstr "Expandir Bloco Estático"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
-msgid "Expand Dynamic Block"
-msgstr "Expandir Bloco Dinâmico"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
-msgid "Choose some search criteria above and click Generate to create this playlist."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
-msgid "A track list will be generated when you schedule this smart block into a show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
-msgid "Drag tracks here from your library to add them to the playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-msgid "Shuffle playlist"
-msgstr "Embaralhar Lista"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
-msgid "Shuffle"
-msgstr "Embaralhar"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Empty playlist content"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-msgid "Save playlist"
-msgstr "Salvar Lista"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
-msgid "No open playlist"
-msgstr "Nenhuma lista aberta"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
-msgid "previous"
-msgstr "anterior"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
-msgid "play"
-msgstr "play"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
-msgid "pause"
-msgstr "pause"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
-msgid "next"
-msgstr "próximo"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
-msgid "stop"
-msgstr "stop"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
-msgid "max volume"
-msgstr "volume máximo"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
-msgid "Update Required"
-msgstr "Atualização Necessária"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
-#, php-format
-msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
-msgstr "Para reproduzir a mídia que você terá que quer atualizar seu navegador para uma versão recente ou atualizar seu %sFlash plugin%s."
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
-msgid "Stream Settings"
-msgstr "Configurações de Fluxo"
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
-msgid "Global"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
-msgid "dB"
-msgstr "dB"
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
-msgid "Output Streams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
-#: airtime_mvc/application/controllers/LocaleController.php:166
-msgid "Manage Media Folders"
-msgstr "Gerenciar Diretórios de Mídia"
-
-#: airtime_mvc/application/views/scripts/preference/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:56
-msgid "General"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
-msgid "Description"
-msgstr "Descrição"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
-msgid "Stream URL:"
-msgstr "URL do Fluxo:"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
-msgid "Default Length:"
-msgstr "Duração Padrão:"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
-msgid "No webstream"
-msgstr "Nenhum fluxo web"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
-msgid "Manage Users"
-msgstr "Gerenciar Usuários"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
-msgid "New User"
-msgstr "Novo Usuário"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
-msgid "id"
-msgstr "id"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
-#: airtime_mvc/application/forms/PasswordRestore.php:25
-msgid "Username"
-msgstr "Usuário"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
-msgid "First Name"
-msgstr "Primeiro Nome"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
-msgid "Last Name"
-msgstr "Último Nome"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
-msgid "User Type"
-msgstr "Tipo de Usuário"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
-#, php-format
-msgid "Super Admin details can be changed in your Billing Settings."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
-#: airtime_mvc/application/controllers/LocaleController.php:74
-#: airtime_mvc/application/layouts/scripts/layout.phtml:78
-msgid "Tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
-#: airtime_mvc/application/controllers/LocaleController.php:104
-#: airtime_mvc/application/layouts/scripts/layout.phtml:80
-msgid "Playlists"
-msgstr "Listas"
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
-#: airtime_mvc/application/controllers/LocaleController.php:105
-#: airtime_mvc/application/layouts/scripts/layout.phtml:82
-msgid "Smart Blocks"
-msgstr "Blocos"
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
-#: airtime_mvc/application/layouts/scripts/layout.phtml:84
-msgid "Webstreams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
-#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
-#: airtime_mvc/application/layouts/scripts/layout.phtml:76
-msgid "Dashboard"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:12
-msgid "Radio Page"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:19
-msgid "Calendar"
-msgstr "Calendário"
-
-#: airtime_mvc/application/configs/navigation.php:26
-msgid "Widgets"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:48
-msgid "Settings"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:67
-msgid "Users"
-msgstr "Usuários"
-
-#: airtime_mvc/application/configs/navigation.php:74
-msgid "Streams"
-msgstr "Fluxos"
-
-#: airtime_mvc/application/configs/navigation.php:82
-msgid "Analytics"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:90
-msgid "Listener Stats"
-msgstr "Estatísticas de Ouvintes"
-
-#: airtime_mvc/application/configs/navigation.php:104
-msgid "History Templates"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:113
-msgid "Billing"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:127
-msgid "Account Details"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:134
-msgid "View Invoices"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:150
-msgid "Getting Started"
-msgstr "Iniciando"
-
-#: airtime_mvc/application/configs/navigation.php:157
-msgid "FAQ"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:162
-msgid "User Manual"
-msgstr "Manual do Usuário"
-
-#: airtime_mvc/application/configs/navigation.php:167
-msgid "File a Support Ticket"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:12
-msgid "Background Colour:"
-msgstr "Cor de Fundo:"
-
-#: airtime_mvc/application/forms/AddShowStyle.php:31
-msgid "Text Colour:"
-msgstr "Cor da Fonte:"
-
-#: airtime_mvc/application/forms/AddShowStyle.php:49
-msgid "Current Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:72
-msgid "Show Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:87
-msgid "Logo Preview:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:19
-msgid "Push metadata to your station on TuneIn?"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:24
-msgid "Station ID:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:30
-msgid "Partner Key:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:36
-msgid "Partner Id:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:77
-#: airtime_mvc/application/forms/TuneInPreferences.php:86
-msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:14
-msgid "Now Playing"
-msgstr "Tocando agora"
-
-#: airtime_mvc/application/forms/Player.php:25
-msgid "Select Stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:28
-msgid "Auto detect the most appropriate stream to use."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:29
-msgid "Select a stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:41
-msgid " - Mobile friendly"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:45
-msgid " - The player does not support Opus streams."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:71
-msgid "Embeddable code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:72
-msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:37
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
-#: airtime_mvc/application/forms/Login.php:41
-#: airtime_mvc/application/forms/AddUser.php:29
-msgid "Username:"
-msgstr "Usuário:"
-
-#: airtime_mvc/application/forms/EditUser.php:48
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
-#: airtime_mvc/application/forms/Login.php:54
-#: airtime_mvc/application/forms/AddUser.php:38
-#: airtime_mvc/application/forms/BillingClient.php:172
-msgid "Password:"
-msgstr "Senha:"
-
-#: airtime_mvc/application/forms/EditUser.php:57
-#: airtime_mvc/application/forms/AddUser.php:46
-#: airtime_mvc/application/forms/BillingClient.php:181
-msgid "Verify Password:"
-msgstr "Confirmar Senha:"
-
-#: airtime_mvc/application/forms/EditUser.php:67
-#: airtime_mvc/application/forms/AddUser.php:55
-msgid "Firstname:"
-msgstr "Primeiro nome:"
-
-#: airtime_mvc/application/forms/EditUser.php:75
-#: airtime_mvc/application/forms/AddUser.php:61
-msgid "Lastname:"
-msgstr "Último nome:"
-
-#: airtime_mvc/application/forms/EditUser.php:83
-#: airtime_mvc/application/forms/RegisterAirtime.php:51
-#: airtime_mvc/application/forms/AddUser.php:67
-#: airtime_mvc/application/forms/SupportSettings.php:43
-msgid "Email:"
-msgstr "Email:"
-
-#: airtime_mvc/application/forms/EditUser.php:94
-#: airtime_mvc/application/forms/AddUser.php:76
-msgid "Mobile Phone:"
-msgstr "Celular:"
-
-#: airtime_mvc/application/forms/EditUser.php:102
-#: airtime_mvc/application/forms/AddUser.php:82
-msgid "Skype:"
-msgstr "Skype:"
-
-#: airtime_mvc/application/forms/EditUser.php:110
-#: airtime_mvc/application/forms/AddUser.php:88
-msgid "Jabber:"
-msgstr "Jabber:"
-
-#: airtime_mvc/application/forms/EditUser.php:129
-msgid "Interface Timezone:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:155
-#: airtime_mvc/application/forms/AddUser.php:120
-msgid "Login name is not unique."
-msgstr "Usuário já existe."
-
-#: airtime_mvc/application/forms/AddShowRR.php:10
-msgid "Record from Line In?"
-msgstr "Gravar a partir do Line In?"
-
-#: airtime_mvc/application/forms/AddShowRR.php:16
-msgid "Rebroadcast?"
-msgstr "Retransmitir?"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:16
-msgid "'%value%' does not fit the time format 'HH:mm'"
-msgstr "'%value%' não corresponde ao formato 'HH:mm'"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:22
-msgid "Start Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:37
-msgid "In the Future:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:64
-msgid "End Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:98
-msgid "Timezone:"
-msgstr "Fuso Horário:"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:107
-msgid "Repeats?"
-msgstr "Reexibir?"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:139
-msgid "Cannot create show in the past"
-msgstr "Não é possível criar um programa no passado."
-
-#: airtime_mvc/application/forms/AddShowWhen.php:147
-msgid "Cannot modify start date/time of the show that is already started"
-msgstr "Não é possível alterar o início de um programa que está em execução"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:164
-msgid "Cannot have duration < 0m"
-msgstr "Não pode ter duração < 0m"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:168
-msgid "Cannot have duration 00h 00m"
-msgstr "Não pode ter duração 00h 00m"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:175
-msgid "Cannot have duration greater than 24h"
-msgstr "Não pode ter duração maior que 24 horas"
-
-#: airtime_mvc/application/forms/AddShowWho.php:10
-msgid "Search Users:"
-msgstr "Procurar Usuários:"
-
-#: airtime_mvc/application/forms/AddShowWho.php:24
-msgid "DJs:"
-msgstr "DJs:"
-
-#: airtime_mvc/application/forms/PasswordChange.php:17
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
-msgid "Password"
-msgstr "Senha"
-
-#: airtime_mvc/application/forms/PasswordChange.php:28
-msgid "Confirm new password"
-msgstr "Confirmar nova senha"
-
-#: airtime_mvc/application/forms/PasswordChange.php:36
-msgid "Password confirmation does not match your password."
-msgstr "A senha de confirmação não confere."
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
-msgid "Station Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
-#: airtime_mvc/application/forms/GeneralPreferences.php:127
-msgid "Station Timezone"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
-msgid "Auto Switch Off:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
-msgid "Auto Switch On:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
-msgid "Switch Transition Fade (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
-#: airtime_mvc/application/forms/GeneralPreferences.php:68
-#: airtime_mvc/application/forms/GeneralPreferences.php:82
-#: airtime_mvc/application/forms/GeneralPreferences.php:96
-msgid "Please enter a time in seconds (eg. 0.5)"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
-#: airtime_mvc/application/forms/AddShowLiveStream.php:48
-msgid "Host:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
-#: airtime_mvc/application/forms/AddShowLiveStream.php:54
-msgid "Port:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
-#: airtime_mvc/application/forms/AddShowLiveStream.php:60
-msgid "Mount:"
-msgstr ""
-
-#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
-msgid "Value is required and can't be empty"
-msgstr "Valor é obrigatório e não poder estar em branco."
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:25
-#: airtime_mvc/application/forms/RegisterAirtime.php:30
-#: airtime_mvc/application/forms/SupportSettings.php:18
-msgid "Station Name"
-msgstr "Nome da Estação"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:33
-msgid "Station Description"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:42
-#: airtime_mvc/application/forms/RegisterAirtime.php:106
-msgid "Station Logo:"
-msgstr "Logo da Estação:"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:62
-msgid "Default Crossfade Duration (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:76
-msgid "Default Fade In (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:90
-msgid "Default Fade Out (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:102
-msgid "Public Airtime API"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:103
-msgid "Required for embeddable schedule widget."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:105
-msgid "Disabled"
-msgstr "Inativo"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:106
-msgid "Enabled"
-msgstr "Ativo"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:109
-msgid ""
-"Enabling this feature will allow Airtime to provide schedule data\n"
-" to external widgets that can be embedded in your website."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:120
-msgid "Default Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:134
-msgid "Week Starts On"
-msgstr "Semana Inicia Em"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:150
-msgid "Display login button on your Radio Page?"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:158
-#: airtime_mvc/application/controllers/LocaleController.php:249
-msgid "Sunday"
-msgstr "Domingo"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:159
-#: airtime_mvc/application/controllers/LocaleController.php:250
-msgid "Monday"
-msgstr "Segunda"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:160
-#: airtime_mvc/application/controllers/LocaleController.php:251
-msgid "Tuesday"
-msgstr "Terça"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:161
-#: airtime_mvc/application/controllers/LocaleController.php:252
-msgid "Wednesday"
-msgstr "Quarta"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:162
-#: airtime_mvc/application/controllers/LocaleController.php:253
-msgid "Thursday"
-msgstr "Quinta"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:163
-#: airtime_mvc/application/controllers/LocaleController.php:254
-msgid "Friday"
-msgstr "Sexta"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:164
-#: airtime_mvc/application/controllers/LocaleController.php:255
-msgid "Saturday"
-msgstr "Sábado"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
-msgid "Default License:"
-msgstr "Licença Padrão:"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
-msgid "All rights are reserved"
-msgstr "Todos os direitos são reservados"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
-msgid "The work is in the public domain"
-msgstr "O trabalho é de domínio público"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
-msgid "Creative Commons Attribution"
-msgstr "Creative Commons Attribution"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
-msgid "Creative Commons Attribution Noncommercial"
-msgstr "Creative Commons Attribution Noncommercial"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
-msgid "Creative Commons Attribution No Derivative Works"
-msgstr "Creative Commons Attribution No Derivative Works"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
-msgid "Creative Commons Attribution Share Alike"
-msgstr "Creative Commons Attribution Share Alike"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
-msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
-msgstr "Creative Commons Attribution Noncommercial Non Derivate Works"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
-msgid "Creative Commons Attribution Noncommercial Share Alike"
-msgstr "Creative Commons Attribution Noncommercial Share Alike"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
-msgid "Default Sharing Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
-msgid "Public"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
-msgid "Private"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:18
-#: airtime_mvc/application/forms/DateRange.php:16
-msgid "Date Start:"
-msgstr "Data de Início:"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:37
-#: airtime_mvc/application/forms/ShowBuilder.php:65
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
-#: airtime_mvc/application/forms/DateRange.php:35
-#: airtime_mvc/application/forms/DateRange.php:63
-msgid "Invalid character entered"
-msgstr "Caracter inválido informado"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:46
-#: airtime_mvc/application/forms/AddShowRepeats.php:56
-#: airtime_mvc/application/forms/DateRange.php:44
-msgid "Date End:"
-msgstr "Data de Fim:"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:72
-#: airtime_mvc/application/forms/ShowBuilder.php:88
-msgid "Filter by Show"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:80
-msgid "All My Shows:"
-msgstr "Meus Programas:"
-
-#: airtime_mvc/application/forms/EditAudioMD.php:145
-msgid "ISRC Number:"
-msgstr "Número ISRC:"
-
-#: airtime_mvc/application/forms/EditAudioMD.php:176
-msgid "OK"
-msgstr "OK"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
-msgid "Day must be specified"
-msgstr "O dia precisa ser especificado"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
-msgid "Time must be specified"
-msgstr "O horário deve ser especificado"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
-msgid "Must wait at least 1 hour to rebroadcast"
-msgstr "É preciso aguardar uma hora para retransmitir"
-
-#: airtime_mvc/application/forms/AddShowWhat.php:30
-msgid "Untitled Show"
-msgstr "Programa Sem Título"
-
-#: airtime_mvc/application/forms/AddShowWhat.php:69
-msgid "Instance Description:"
-msgstr ""
-
-#: airtime_mvc/application/forms/DangerousPreferences.php:12
-msgid "Delete All Tracks in Library"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:39
-#: airtime_mvc/application/forms/SupportSettings.php:31
-msgid "Phone:"
-msgstr "Fone:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:62
-#: airtime_mvc/application/forms/SupportSettings.php:54
-msgid "Station Web Site:"
-msgstr "Website da Estação:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:73
-#: airtime_mvc/application/forms/BillingClient.php:102
-#: airtime_mvc/application/forms/SupportSettings.php:65
-msgid "Country:"
-msgstr "País:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:84
-#: airtime_mvc/application/forms/BillingClient.php:70
-#: airtime_mvc/application/forms/SupportSettings.php:76
-msgid "City:"
-msgstr "Cidade:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:96
-#: airtime_mvc/application/forms/SupportSettings.php:88
-msgid "Station Description:"
-msgstr "Descrição da Estação:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:116
-#: airtime_mvc/application/forms/SupportSettings.php:98
-#: airtime_mvc/application/controllers/LocaleController.php:341
-msgid "Send support feedback"
-msgstr "Enviar informações de suporte"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:126
-#: airtime_mvc/application/forms/SupportSettings.php:108
-#, php-format
-msgid "Promote my station on %s"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:151
-#: airtime_mvc/application/forms/SupportSettings.php:120
-#, php-format
-msgid "By checking this box, I agree to %s's %sprivacy policy%s."
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:169
-#: airtime_mvc/application/forms/SupportSettings.php:143
-msgid "You have to agree to privacy policy."
-msgstr "Você precisa concordar com a política de privacidade."
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:10
-msgid "Link:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:16
-msgid "Repeat Type:"
-msgstr "Tipo de Reexibição:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:19
-msgid "weekly"
-msgstr "semanal"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:20
-msgid "every 2 weeks"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:21
-msgid "every 3 weeks"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:22
-msgid "every 4 weeks"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:23
-msgid "monthly"
-msgstr "mensal"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:32
-msgid "Select Days:"
-msgstr "Selecione os Dias:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:35
-#: airtime_mvc/application/controllers/LocaleController.php:256
-msgid "Sun"
-msgstr "Dom"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:36
-#: airtime_mvc/application/controllers/LocaleController.php:257
-msgid "Mon"
-msgstr "Seg"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:37
-#: airtime_mvc/application/controllers/LocaleController.php:258
-msgid "Tue"
-msgstr "Ter"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:38
-#: airtime_mvc/application/controllers/LocaleController.php:259
-msgid "Wed"
-msgstr "Qua"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:39
-#: airtime_mvc/application/controllers/LocaleController.php:260
-msgid "Thu"
-msgstr "Qui"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:40
-#: airtime_mvc/application/controllers/LocaleController.php:261
-msgid "Fri"
-msgstr "Sex"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:41
-#: airtime_mvc/application/controllers/LocaleController.php:262
-msgid "Sat"
-msgstr "Sab"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:47
-msgid "Repeat By:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the month"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the week"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:69
-msgid "No End?"
-msgstr "Sem fim?"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:106
-msgid "End date must be after start date"
-msgstr "A data de fim deve ser posterior à data de início"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:113
-msgid "Please select a repeat day"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:10
-#, php-format
-msgid "Use %s Authentication:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:16
-msgid "Use Custom Authentication:"
-msgstr "Usar Autenticação Personalizada:"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:25
-msgid "Custom Username"
-msgstr "Definir Usuário:"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:37
-msgid "Custom Password"
-msgstr "Definir Senha:"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:77
-msgid "Username field cannot be empty."
-msgstr "O usuário não pode estar em branco."
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:82
-msgid "Password field cannot be empty."
-msgstr "A senha não pode estar em branco."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
-msgid "Enabled:"
-msgstr "Habilitado:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
-msgid "Mobile:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
-msgid "Stream Type:"
-msgstr "Tipo de Fluxo:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
-msgid "Service Type:"
-msgstr "Tipo de Serviço:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
-msgid "Channels:"
-msgstr "Canais:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "1 - Mono"
-msgstr "1 - Mono"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "2 - Stereo"
-msgstr "2 - Stéreo"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
-msgid "Server"
-msgstr "Servidor"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
-msgid "Port"
-msgstr "Porta"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
-msgid "Only numbers are allowed."
-msgstr "Somente números são permitidos."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
-msgid "URL"
-msgstr "URL"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
-msgid "Mount Point"
-msgstr "Ponto de Montagem"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
-msgid "Admin User"
-msgstr "Usuário Administrador"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
-msgid "Admin Password"
-msgstr "Senha do Administrador"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
-#: airtime_mvc/application/controllers/LocaleController.php:173
-msgid "Getting information from the server..."
-msgstr "Obtendo informações do servidor..."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
-msgid "Server cannot be empty."
-msgstr "Servidor não pode estar em branco."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
-msgid "Port cannot be empty."
-msgstr "Porta não pode estar em branco."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
-msgid "Mount cannot be empty with Icecast server."
-msgstr "Ponto de montagem deve ser informada em servidor Icecast."
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
-msgid "'%value%' is no valid email address in the basic format local-part@hostname"
-msgstr "%value%' não é um enderçeo de email válido"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
-msgid "'%value%' does not fit the date format '%format%'"
-msgstr "'%value%' não corresponde a uma data válida '%format%'"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
-msgid "'%value%' is less than %min% characters long"
-msgstr "'%value%' is menor que comprimento mínimo %min% de caracteres"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
-msgid "'%value%' is more than %max% characters long"
-msgstr "'%value%' is maior que o número máximo %max% de caracteres"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
-msgid "'%value%' is not between '%min%' and '%max%', inclusively"
-msgstr "'%value%' não está compreendido entre '%min%' e '%max%', inclusive"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
-msgid "Passwords do not match"
-msgstr "Senhas não conferem"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
-msgid "hours"
-msgstr "horas"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
-msgid "minutes"
-msgstr "minutos"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
-msgid "Randomly"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
-msgid "Newest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
-msgid "Oldest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
-msgid "Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
-msgid "Static"
-msgstr "Estático"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
-msgid "Dynamic"
-msgstr "Dinâmico"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
-msgid "Allow Repeated Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
-msgid "Sort Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
-msgid "Limit to:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
-msgid "Generate playlist content and save criteria"
-msgstr "Gerar conteúdo da lista e salvar critério"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
-msgid "Generate"
-msgstr "Gerar"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
-msgid "Shuffle playlist content"
-msgstr "Embaralhar conteúdo da lista"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
-msgid "Limit cannot be empty or smaller than 0"
-msgstr "O limite não pode ser vazio ou menor que 0"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
-msgid "Limit cannot be more than 24 hrs"
-msgstr "O limite não pode ser maior que 24 horas"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
-msgid "The value should be an integer"
-msgstr "O valor deve ser um número inteiro"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
-msgid "500 is the max item limit value you can set"
-msgstr "O número máximo de itens é 500"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
-msgid "You must select Criteria and Modifier"
-msgstr "Você precisa selecionar Critério e Modificador "
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
-msgid "'Length' should be in '00:00:00' format"
-msgstr "A duração deve ser informada no formato '00:00:00'"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
-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:594
-msgid "The value has to be numeric"
-msgstr "O valor deve ser numérico"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
-msgid "The value should be less then 2147483648"
-msgstr "O valor precisa ser menor que 2147483648"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
-#, php-format
-msgid "The value should be less than %s characters"
-msgstr "O valor deve conter no máximo %s caracteres"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
-msgid "Value cannot be empty"
-msgstr "O valor não pode estar em branco"
-
-#: airtime_mvc/application/forms/Login.php:102
-msgid "Type the characters you see in the picture below."
-msgstr "Digite os caracteres que você vê na imagem abaixo."
-
-#: airtime_mvc/application/forms/StreamSetting.php:26
-msgid "Icecast Vorbis Metadata"
-msgstr "Metadados Icecast Vorbis"
-
-#: airtime_mvc/application/forms/StreamSetting.php:36
-msgid "Stream Label:"
-msgstr "Legenda do Fluxo:"
-
-#: airtime_mvc/application/forms/StreamSetting.php:37
-msgid "Artist - Title"
-msgstr "Artista - Título"
-
-#: airtime_mvc/application/forms/StreamSetting.php:38
-msgid "Show - Artist - Title"
-msgstr "Programa - Artista - Título"
-
-#: airtime_mvc/application/forms/StreamSetting.php:39
-msgid "Station name - Show name"
-msgstr "Nome da Estação - Nome do Programa"
-
-#: airtime_mvc/application/forms/StreamSetting.php:45
-msgid "Off Air Metadata"
-msgstr "Metadados Off Air"
-
-#: airtime_mvc/application/forms/StreamSetting.php:51
-msgid "Enable Replay Gain"
-msgstr "Habilitar Ganho de Reprodução"
-
-#: airtime_mvc/application/forms/StreamSetting.php:57
-msgid "Replay Gain Modifier"
-msgstr "Modificador de Ganho de Reprodução"
-
-#: airtime_mvc/application/forms/StreamSetting.php:65
-msgid "Streaming Server:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Airtime Pro Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Custom / 3rd Party Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:95
-msgid "User Type:"
-msgstr "Perfil do Usuário:"
-
-#: airtime_mvc/application/forms/AddUser.php:99
-#: airtime_mvc/application/controllers/LocaleController.php:324
-msgid "Guest"
-msgstr "Visitante"
-
-#: airtime_mvc/application/forms/AddUser.php:100
-#: airtime_mvc/application/controllers/LocaleController.php:322
-msgid "DJ"
-msgstr "DJ"
-
-#: airtime_mvc/application/forms/AddUser.php:101
-#: airtime_mvc/application/controllers/LocaleController.php:323
-msgid "Program Manager"
-msgstr "Gerente de Programação"
-
-#: airtime_mvc/application/forms/AddUser.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:321
-msgid "Admin"
-msgstr "Administrador"
-
-#: airtime_mvc/application/forms/BillingClient.php:17
-msgid "First Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:26
-msgid "Last Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:35
-msgid "Company Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:44
-msgid "Email Address:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:54
-msgid "Address 1:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:63
-msgid "Address 2:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:80
-msgid "State/Region:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:89
-msgid "Zip Code / Postal Code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:112
-msgid "Phone Number:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:121
-msgid "Please choose a security question:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:126
-msgid "What is the name of your favorite childhood friend?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:127
-msgid "What school did you attend for sixth grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:128
-msgid "In what city did you meet your spouse/significant other?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:129
-msgid "What street did you live on in third grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:130
-msgid "What is the first name of the boy or girl that you first kissed?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:131
-msgid "In what city or town was your first job?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:135
-msgid "Please enter an answer:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:152
-msgid "VAT/Tax ID (EU only)"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:162
-msgid "Subscribe to Sourcefabric newsletter"
-msgstr ""
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
-msgid "Import Folder:"
-msgstr "Diretório de Importação:"
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
-msgid "Watched Folders:"
-msgstr "Diretórios Monitorados: "
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
-msgid "Not a valid Directory"
-msgstr "Não é um diretório válido"
-
-#: airtime_mvc/application/forms/PasswordRestore.php:14
-msgid "Email"
+msgid "File does not exist in %s"
msgstr ""
-#: airtime_mvc/application/forms/PasswordRestore.php:36
-msgid "Reset password"
-msgstr "Redefinir senha"
+#: airtime_mvc/application/controllers/ApiController.php:781
+msgid "Bad request. no 'mode' parameter passed."
+msgstr "Requisição inválida. Parâmetro não informado."
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
-msgid "Plan type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
-msgid "Billing cycle:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
-msgid "Payment method:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
-msgid "PayPal"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
-msgid "Credit Card via 2Checkout"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:213
-#, php-format
-msgid "The year %s must be within the range of 1753 - 9999"
-msgstr "O ano % s deve estar compreendido no intervalo entre 1753 - 9999"
-
-#: airtime_mvc/application/common/DateHelper.php:216
-#, php-format
-msgid "%s-%s-%s is not a valid date"
-msgstr "%s-%s-%s não é uma data válida"
-
-#: airtime_mvc/application/common/DateHelper.php:240
-#, php-format
-msgid "%s:%s:%s is not a valid time"
-msgstr "%s:%s:%s não é um horário válido"
-
-#: airtime_mvc/application/common/UsabilityHints.php:55
-msgid "Upload some tracks below to add them to your library!"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:57
-#, php-format
-msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:63
-msgid "Click the 'New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:65
-#, php-format
-msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:73
-msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:75
-#, php-format
-msgid ""
-"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
-" %sCreate an unlinked show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:80
-msgid "To start broadcasting, click on the current show and select 'Schedule Show'"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:82
-#, php-format
-msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:89
-msgid "Click on the show starting next and select 'Schedule Show'"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:91
-#, php-format
-msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
-msgstr ""
+#: airtime_mvc/application/controllers/ApiController.php:791
+msgid "Bad request. 'mode' parameter is invalid"
+msgstr "Requisição inválida. Parâmetro informado é inválido."
#: airtime_mvc/application/controllers/LocaleController.php:30
#: airtime_mvc/application/layouts/scripts/audio-player.phtml:5
@@ -2910,11 +561,6 @@ msgstr "Adicionando %s items"
msgid "You can only add tracks to smart blocks."
msgstr "Você pode adicionar somente faixas a um bloco inteligente."
-#: airtime_mvc/application/controllers/LocaleController.php:50
-#: airtime_mvc/application/controllers/PlaylistController.php:180
-msgid "You can only add tracks, smart blocks, and webstreams to playlists."
-msgstr "Você pode adicionar apenas faixas, blocos e fluxos às listas de reprodução"
-
#: airtime_mvc/application/controllers/LocaleController.php:53
msgid "Please select a cursor position on timeline."
msgstr "Por favor selecione um posição do cursor na linha do tempo."
@@ -2955,11 +601,6 @@ msgstr ""
msgid "Click 'New' to create one."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:66
-#: airtime_mvc/application/controllers/LibraryController.php:123
-msgid "Edit Metadata"
-msgstr "Editar Metadados"
-
#: airtime_mvc/application/controllers/LocaleController.php:67
msgid "Add to selected show"
msgstr "Adicionar ao programa selecionado"
@@ -2988,6 +629,12 @@ msgstr "Você tem certeza que deseja excluir o(s) item(ns) selecionado(s)?"
msgid "Scheduled"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:74
+#: airtime_mvc/application/layouts/scripts/layout.phtml:78
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
+msgid "Tracks"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:75
#: airtime_mvc/application/layouts/scripts/layout.phtml:60
msgid "Playlist"
@@ -2997,18 +644,96 @@ msgstr ""
msgid "Bit Rate"
msgstr "Bitrate"
+#: airtime_mvc/application/controllers/LocaleController.php:80
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
+#: airtime_mvc/application/models/Block.php:1354
+msgid "BPM"
+msgstr "BPM"
+
+#: airtime_mvc/application/controllers/LocaleController.php:84
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
+#: airtime_mvc/application/models/Block.php:1361
+msgid "Encoded By"
+msgstr "Convertido por"
+
+#: airtime_mvc/application/controllers/LocaleController.php:89
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
+#: airtime_mvc/application/models/Block.php:1367
+msgid "Last Modified"
+msgstr "Última Ateração"
+
+#: airtime_mvc/application/controllers/LocaleController.php:90
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
+#: airtime_mvc/application/models/Block.php:1368
+msgid "Last Played"
+msgstr "Última Execução"
+
+#: airtime_mvc/application/controllers/LocaleController.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
+#: airtime_mvc/application/models/Block.php:1370
+msgid "Mime"
+msgstr "Mime"
+
+#: airtime_mvc/application/controllers/LocaleController.php:94
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
+#: airtime_mvc/application/models/Block.php:1372
+msgid "Owner"
+msgstr "Prorietário"
+
+#: airtime_mvc/application/controllers/LocaleController.php:95
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
+#: airtime_mvc/application/models/Block.php:1373
+msgid "Replay Gain"
+msgstr "Ganho de Reprodução"
+
#: airtime_mvc/application/controllers/LocaleController.php:96
msgid "Sample Rate"
msgstr "Taxa de Amostragem"
+#: airtime_mvc/application/controllers/LocaleController.php:97
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
+#: airtime_mvc/application/models/Block.php:1376
+msgid "Track Number"
+msgstr "Número de Faixa"
+
+#: airtime_mvc/application/controllers/LocaleController.php:98
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
+#: airtime_mvc/application/models/Block.php:1377
+msgid "Uploaded"
+msgstr "Adicionado"
+
+#: airtime_mvc/application/controllers/LocaleController.php:99
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
+#: airtime_mvc/application/models/Block.php:1378
+msgid "Website"
+msgstr "Website"
+
#: airtime_mvc/application/controllers/LocaleController.php:101
msgid "Loading..."
msgstr "Carregando..."
+#: airtime_mvc/application/controllers/LocaleController.php:102
+#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
+msgid "All"
+msgstr "Todos"
+
#: airtime_mvc/application/controllers/LocaleController.php:103
msgid "Files"
msgstr "Arquivos"
+#: airtime_mvc/application/controllers/LocaleController.php:104
+#: airtime_mvc/application/layouts/scripts/layout.phtml:80
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
+msgid "Playlists"
+msgstr "Listas"
+
+#: airtime_mvc/application/controllers/LocaleController.php:105
+#: airtime_mvc/application/layouts/scripts/layout.phtml:82
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
+msgid "Smart Blocks"
+msgstr "Blocos"
+
#: airtime_mvc/application/controllers/LocaleController.php:106
msgid "Web Streams"
msgstr "Fluxos"
@@ -3153,6 +878,74 @@ msgstr "O bloco foi salvo"
msgid "Processing..."
msgstr "Processando..."
+#: airtime_mvc/application/controllers/LocaleController.php:151
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
+#: airtime_mvc/application/models/Block.php:1383
+msgid "Select modifier"
+msgstr "Selecionar modificador"
+
+#: airtime_mvc/application/controllers/LocaleController.php:152
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
+#: airtime_mvc/application/models/Block.php:1384
+msgid "contains"
+msgstr "contém"
+
+#: airtime_mvc/application/controllers/LocaleController.php:153
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
+#: airtime_mvc/application/models/Block.php:1385
+msgid "does not contain"
+msgstr "não contém"
+
+#: airtime_mvc/application/controllers/LocaleController.php:154
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
+#: airtime_mvc/application/models/Block.php:1386
+#: airtime_mvc/application/models/Block.php:1390
+msgid "is"
+msgstr "é"
+
+#: airtime_mvc/application/controllers/LocaleController.php:155
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
+#: airtime_mvc/application/models/Block.php:1387
+#: airtime_mvc/application/models/Block.php:1391
+msgid "is not"
+msgstr "não é"
+
+#: airtime_mvc/application/controllers/LocaleController.php:156
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
+#: airtime_mvc/application/models/Block.php:1388
+msgid "starts with"
+msgstr "começa com"
+
+#: airtime_mvc/application/controllers/LocaleController.php:157
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
+#: airtime_mvc/application/models/Block.php:1389
+msgid "ends with"
+msgstr "termina com"
+
+#: airtime_mvc/application/controllers/LocaleController.php:158
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
+#: airtime_mvc/application/models/Block.php:1392
+msgid "is greater than"
+msgstr "é maior que"
+
+#: airtime_mvc/application/controllers/LocaleController.php:159
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
+#: airtime_mvc/application/models/Block.php:1393
+msgid "is less than"
+msgstr "é menor que"
+
+#: airtime_mvc/application/controllers/LocaleController.php:160
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
+#: airtime_mvc/application/models/Block.php:1394
+msgid "is in the range"
+msgstr "está no intervalo"
+
#: airtime_mvc/application/controllers/LocaleController.php:162
msgid "Choose Storage Folder"
msgstr "Selecione o Diretório de Armazenamento"
@@ -3169,6 +962,11 @@ msgstr ""
"Tem certeza de que deseja alterar o diretório de armazenamento? \n"
"Isto irá remover os arquivos de sua biblioteca Airtime!"
+#: airtime_mvc/application/controllers/LocaleController.php:166
+#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
+msgid "Manage Media Folders"
+msgstr "Gerenciar Diretórios de Mídia"
+
#: airtime_mvc/application/controllers/LocaleController.php:167
msgid "Are you sure you want to remove the watched folder?"
msgstr "Tem certeza que deseja remover o diretório monitorado?"
@@ -3190,6 +988,11 @@ msgstr "Conectado ao servidor de fluxo"
msgid "The stream is disabled"
msgstr "O fluxo está desabilitado"
+#: airtime_mvc/application/controllers/LocaleController.php:173
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
+msgid "Getting information from the server..."
+msgstr "Obtendo informações do servidor..."
+
#: airtime_mvc/application/controllers/LocaleController.php:174
msgid "Can not connect to the streaming server"
msgstr "Não é possível conectar ao servidor de streaming"
@@ -3417,6 +1220,76 @@ msgstr ""
msgid "Month"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:249
+#: airtime_mvc/application/forms/GeneralPreferences.php:158
+msgid "Sunday"
+msgstr "Domingo"
+
+#: airtime_mvc/application/controllers/LocaleController.php:250
+#: airtime_mvc/application/forms/GeneralPreferences.php:159
+msgid "Monday"
+msgstr "Segunda"
+
+#: airtime_mvc/application/controllers/LocaleController.php:251
+#: airtime_mvc/application/forms/GeneralPreferences.php:160
+msgid "Tuesday"
+msgstr "Terça"
+
+#: airtime_mvc/application/controllers/LocaleController.php:252
+#: airtime_mvc/application/forms/GeneralPreferences.php:161
+msgid "Wednesday"
+msgstr "Quarta"
+
+#: airtime_mvc/application/controllers/LocaleController.php:253
+#: airtime_mvc/application/forms/GeneralPreferences.php:162
+msgid "Thursday"
+msgstr "Quinta"
+
+#: airtime_mvc/application/controllers/LocaleController.php:254
+#: airtime_mvc/application/forms/GeneralPreferences.php:163
+msgid "Friday"
+msgstr "Sexta"
+
+#: airtime_mvc/application/controllers/LocaleController.php:255
+#: airtime_mvc/application/forms/GeneralPreferences.php:164
+msgid "Saturday"
+msgstr "Sábado"
+
+#: airtime_mvc/application/controllers/LocaleController.php:256
+#: airtime_mvc/application/forms/AddShowRepeats.php:35
+msgid "Sun"
+msgstr "Dom"
+
+#: airtime_mvc/application/controllers/LocaleController.php:257
+#: airtime_mvc/application/forms/AddShowRepeats.php:36
+msgid "Mon"
+msgstr "Seg"
+
+#: airtime_mvc/application/controllers/LocaleController.php:258
+#: airtime_mvc/application/forms/AddShowRepeats.php:37
+msgid "Tue"
+msgstr "Ter"
+
+#: airtime_mvc/application/controllers/LocaleController.php:259
+#: airtime_mvc/application/forms/AddShowRepeats.php:38
+msgid "Wed"
+msgstr "Qua"
+
+#: airtime_mvc/application/controllers/LocaleController.php:260
+#: airtime_mvc/application/forms/AddShowRepeats.php:39
+msgid "Thu"
+msgstr "Qui"
+
+#: airtime_mvc/application/controllers/LocaleController.php:261
+#: airtime_mvc/application/forms/AddShowRepeats.php:40
+msgid "Fri"
+msgstr "Sex"
+
+#: airtime_mvc/application/controllers/LocaleController.php:262
+#: airtime_mvc/application/forms/AddShowRepeats.php:41
+msgid "Sat"
+msgstr "Sab"
+
#: airtime_mvc/application/controllers/LocaleController.php:263
msgid "Shows longer than their scheduled time will be cut off by a following show."
msgstr "Um programa com tempo maior que a duração programada será cortado pelo programa seguinte."
@@ -3426,7 +1299,7 @@ msgid "Cancel Current Show?"
msgstr "Cancelar Programa em Execução?"
#: airtime_mvc/application/controllers/LocaleController.php:265
-#: airtime_mvc/application/controllers/LocaleController.php:309
+#: airtime_mvc/application/controllers/LocaleController.php:312
msgid "Stop recording current show?"
msgstr "Parar gravação do programa em execução?"
@@ -3446,6 +1319,11 @@ msgstr "Remover todos os conteúdos?"
msgid "Delete selected item(s)?"
msgstr "Excluir item(ns) selecionado(s)?"
+#: airtime_mvc/application/controllers/LocaleController.php:273
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
+msgid "Start"
+msgstr "Início"
+
#: airtime_mvc/application/controllers/LocaleController.php:274
msgid "End"
msgstr "Fim"
@@ -3454,580 +1332,467 @@ msgstr "Fim"
msgid "Duration"
msgstr "Duração"
-#: airtime_mvc/application/controllers/LocaleController.php:283
+#: airtime_mvc/application/controllers/LocaleController.php:276
+msgid "Filtering out "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:277
+msgid " of "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:278
+msgid " records"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/layouts/scripts/layout.phtml:140
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
+#: airtime_mvc/application/models/Block.php:1358
+msgid "Cue In"
+msgstr "Cue Entrada"
+
+#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/layouts/scripts/layout.phtml:147
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
+#: airtime_mvc/application/models/Block.php:1359
+msgid "Cue Out"
+msgstr "Cue Saída"
+
+#: airtime_mvc/application/controllers/LocaleController.php:286
#: airtime_mvc/application/layouts/scripts/layout.phtml:167
msgid "Fade In"
msgstr "Fade Entrada"
-#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/controllers/LocaleController.php:287
#: airtime_mvc/application/layouts/scripts/layout.phtml:168
msgid "Fade Out"
msgstr "Fade Saída"
-#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/controllers/LocaleController.php:288
msgid "Show Empty"
msgstr "Programa vazio"
-#: airtime_mvc/application/controllers/LocaleController.php:286
+#: airtime_mvc/application/controllers/LocaleController.php:289
msgid "Recording From Line In"
msgstr "Gravando a partir do Line In"
-#: airtime_mvc/application/controllers/LocaleController.php:287
+#: airtime_mvc/application/controllers/LocaleController.php:290
msgid "Track preview"
msgstr "Prévia da faixa"
-#: airtime_mvc/application/controllers/LocaleController.php:291
+#: airtime_mvc/application/controllers/LocaleController.php:294
msgid "Cannot schedule outside a show."
msgstr "Não é possível realizar agendamento fora de um programa."
-#: airtime_mvc/application/controllers/LocaleController.php:292
+#: airtime_mvc/application/controllers/LocaleController.php:295
msgid "Moving 1 Item"
msgstr "Movendo 1 item"
-#: airtime_mvc/application/controllers/LocaleController.php:293
+#: airtime_mvc/application/controllers/LocaleController.php:296
#, php-format
msgid "Moving %s Items"
msgstr "Movendo %s itens"
-#: airtime_mvc/application/controllers/LocaleController.php:296
+#: airtime_mvc/application/controllers/LocaleController.php:297
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
+#: airtime_mvc/application/forms/Preferences.php:40
+#: airtime_mvc/application/forms/EditHistory.php:131
+#: airtime_mvc/application/forms/AddUser.php:110
+#: airtime_mvc/application/forms/PasswordChange.php:43
+#: airtime_mvc/application/forms/SupportSettings.php:131
+msgid "Save"
+msgstr "Salvar"
+
+#: airtime_mvc/application/controllers/LocaleController.php:298
+#: airtime_mvc/application/controllers/LocaleController.php:321
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
+#: airtime_mvc/application/forms/EditHistory.php:141
+#: airtime_mvc/application/forms/EditAudioMD.php:186
+msgid "Cancel"
+msgstr "Cancelar"
+
+#: airtime_mvc/application/controllers/LocaleController.php:299
msgid "Fade Editor"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:297
+#: airtime_mvc/application/controllers/LocaleController.php:300
msgid "Cue Editor"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:298
+#: airtime_mvc/application/controllers/LocaleController.php:301
msgid "Waveform features are available in a browser supporting the Web Audio API"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:301
+#: airtime_mvc/application/controllers/LocaleController.php:304
msgid "Select all"
msgstr "Selecionar todos"
-#: airtime_mvc/application/controllers/LocaleController.php:302
+#: airtime_mvc/application/controllers/LocaleController.php:305
msgid "Select none"
msgstr "Selecionar nenhum"
-#: airtime_mvc/application/controllers/LocaleController.php:303
+#: airtime_mvc/application/controllers/LocaleController.php:306
msgid "Trim overbooked shows"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:304
+#: airtime_mvc/application/controllers/LocaleController.php:307
msgid "Remove selected scheduled items"
msgstr "Remover seleção de itens agendados"
-#: airtime_mvc/application/controllers/LocaleController.php:305
+#: airtime_mvc/application/controllers/LocaleController.php:308
msgid "Jump to the current playing track"
msgstr "Saltar para faixa em execução"
-#: airtime_mvc/application/controllers/LocaleController.php:306
+#: airtime_mvc/application/controllers/LocaleController.php:309
msgid "Cancel current show"
msgstr "Cancelar programa atual"
-#: airtime_mvc/application/controllers/LocaleController.php:311
+#: airtime_mvc/application/controllers/LocaleController.php:314
msgid "Open library to add or remove content"
msgstr "Abrir biblioteca para adicionar ou remover conteúdo"
-#: airtime_mvc/application/controllers/LocaleController.php:312
+#: airtime_mvc/application/controllers/LocaleController.php:315
msgid "Add / Remove Content"
msgstr "Adicionar / Remover Conteúdo"
#: airtime_mvc/application/controllers/LocaleController.php:317
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
+msgid "in use"
+msgstr "em uso"
+
+#: airtime_mvc/application/controllers/LocaleController.php:318
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
+msgid "Disk"
+msgstr "Disco"
+
+#: airtime_mvc/application/controllers/LocaleController.php:320
msgid "Look in"
msgstr "Explorar"
-#: airtime_mvc/application/controllers/LocaleController.php:319
+#: airtime_mvc/application/controllers/LocaleController.php:322
msgid "Open"
msgstr "Abrir"
+#: airtime_mvc/application/controllers/LocaleController.php:324
+#: airtime_mvc/application/forms/AddUser.php:102
+msgid "Admin"
+msgstr "Administrador"
+
#: airtime_mvc/application/controllers/LocaleController.php:325
+#: airtime_mvc/application/forms/AddUser.php:100
+msgid "DJ"
+msgstr "DJ"
+
+#: airtime_mvc/application/controllers/LocaleController.php:326
+#: airtime_mvc/application/forms/AddUser.php:101
+msgid "Program Manager"
+msgstr "Gerente de Programação"
+
+#: airtime_mvc/application/controllers/LocaleController.php:327
+#: airtime_mvc/application/forms/AddUser.php:99
+msgid "Guest"
+msgstr "Visitante"
+
+#: airtime_mvc/application/controllers/LocaleController.php:328
msgid "Guests can do the following:"
msgstr "Visitantes podem fazer o seguinte:"
-#: airtime_mvc/application/controllers/LocaleController.php:326
+#: airtime_mvc/application/controllers/LocaleController.php:329
msgid "View schedule"
msgstr "Visualizar agendamentos"
-#: airtime_mvc/application/controllers/LocaleController.php:327
+#: airtime_mvc/application/controllers/LocaleController.php:330
msgid "View show content"
msgstr "Visualizar conteúdo dos programas"
-#: airtime_mvc/application/controllers/LocaleController.php:328
+#: airtime_mvc/application/controllers/LocaleController.php:331
msgid "DJs can do the following:"
msgstr "DJs podem fazer o seguinte:"
-#: airtime_mvc/application/controllers/LocaleController.php:329
+#: airtime_mvc/application/controllers/LocaleController.php:332
msgid "Manage assigned show content"
msgstr "Gerenciar o conteúdo de programas delegados a ele"
-#: airtime_mvc/application/controllers/LocaleController.php:330
+#: airtime_mvc/application/controllers/LocaleController.php:333
msgid "Import media files"
msgstr "Importar arquivos de mídia"
-#: airtime_mvc/application/controllers/LocaleController.php:331
+#: airtime_mvc/application/controllers/LocaleController.php:334
msgid "Create playlists, smart blocks, and webstreams"
msgstr "Criar listas de reprodução, blocos inteligentes e fluxos"
-#: airtime_mvc/application/controllers/LocaleController.php:332
+#: airtime_mvc/application/controllers/LocaleController.php:335
msgid "Manage their own library content"
msgstr "Gerenciar sua própria blblioteca de conteúdos"
-#: airtime_mvc/application/controllers/LocaleController.php:333
+#: airtime_mvc/application/controllers/LocaleController.php:336
msgid "Progam Managers can do the following:"
msgstr "Gerentes de Programação podem fazer o seguinte:"
-#: airtime_mvc/application/controllers/LocaleController.php:334
+#: airtime_mvc/application/controllers/LocaleController.php:337
msgid "View and manage show content"
msgstr "Visualizar e gerenciar o conteúdo dos programas"
-#: airtime_mvc/application/controllers/LocaleController.php:335
+#: airtime_mvc/application/controllers/LocaleController.php:338
msgid "Schedule shows"
msgstr "Agendar programas"
-#: airtime_mvc/application/controllers/LocaleController.php:336
+#: airtime_mvc/application/controllers/LocaleController.php:339
msgid "Manage all library content"
msgstr "Gerenciar bibliotecas de conteúdo"
-#: airtime_mvc/application/controllers/LocaleController.php:337
+#: airtime_mvc/application/controllers/LocaleController.php:340
msgid "Admins can do the following:"
msgstr "Administradores podem fazer o seguinte:"
-#: airtime_mvc/application/controllers/LocaleController.php:338
+#: airtime_mvc/application/controllers/LocaleController.php:341
msgid "Manage preferences"
msgstr "Gerenciar configurações"
-#: airtime_mvc/application/controllers/LocaleController.php:339
+#: airtime_mvc/application/controllers/LocaleController.php:342
msgid "Manage users"
msgstr "Gerenciar usuários"
-#: airtime_mvc/application/controllers/LocaleController.php:340
+#: airtime_mvc/application/controllers/LocaleController.php:343
msgid "Manage watched folders"
msgstr "Gerenciar diretórios monitorados"
-#: airtime_mvc/application/controllers/LocaleController.php:342
+#: airtime_mvc/application/controllers/LocaleController.php:344
+#: airtime_mvc/application/forms/RegisterAirtime.php:116
+#: airtime_mvc/application/forms/SupportSettings.php:98
+msgid "Send support feedback"
+msgstr "Enviar informações de suporte"
+
+#: airtime_mvc/application/controllers/LocaleController.php:345
msgid "View system status"
msgstr "Visualizar estado do sistema"
-#: airtime_mvc/application/controllers/LocaleController.php:343
+#: airtime_mvc/application/controllers/LocaleController.php:346
msgid "Access playout history"
msgstr "Acessar o histórico da programação"
-#: airtime_mvc/application/controllers/LocaleController.php:344
+#: airtime_mvc/application/controllers/LocaleController.php:347
msgid "View listener stats"
msgstr "Ver estado dos ouvintes"
-#: airtime_mvc/application/controllers/LocaleController.php:346
+#: airtime_mvc/application/controllers/LocaleController.php:349
msgid "Show / hide columns"
msgstr "Exibir / ocultar colunas"
-#: airtime_mvc/application/controllers/LocaleController.php:348
+#: airtime_mvc/application/controllers/LocaleController.php:351
msgid "From {from} to {to}"
msgstr "De {from} até {to}"
-#: airtime_mvc/application/controllers/LocaleController.php:349
+#: airtime_mvc/application/controllers/LocaleController.php:352
msgid "kbps"
msgstr "kbps"
-#: airtime_mvc/application/controllers/LocaleController.php:350
+#: airtime_mvc/application/controllers/LocaleController.php:353
msgid "yyyy-mm-dd"
msgstr "yyy-mm-dd"
-#: airtime_mvc/application/controllers/LocaleController.php:351
+#: airtime_mvc/application/controllers/LocaleController.php:354
msgid "hh:mm:ss.t"
msgstr "hh:mm:ss.t"
-#: airtime_mvc/application/controllers/LocaleController.php:352
+#: airtime_mvc/application/controllers/LocaleController.php:355
msgid "kHz"
msgstr "khz"
-#: airtime_mvc/application/controllers/LocaleController.php:355
+#: airtime_mvc/application/controllers/LocaleController.php:358
msgid "Su"
msgstr "Do"
-#: airtime_mvc/application/controllers/LocaleController.php:356
+#: airtime_mvc/application/controllers/LocaleController.php:359
msgid "Mo"
msgstr "Se"
-#: airtime_mvc/application/controllers/LocaleController.php:357
+#: airtime_mvc/application/controllers/LocaleController.php:360
msgid "Tu"
msgstr "Te"
-#: airtime_mvc/application/controllers/LocaleController.php:358
+#: airtime_mvc/application/controllers/LocaleController.php:361
msgid "We"
msgstr "Qu"
-#: airtime_mvc/application/controllers/LocaleController.php:359
+#: airtime_mvc/application/controllers/LocaleController.php:362
msgid "Th"
msgstr "Qu"
-#: airtime_mvc/application/controllers/LocaleController.php:360
+#: airtime_mvc/application/controllers/LocaleController.php:363
msgid "Fr"
msgstr "Se"
-#: airtime_mvc/application/controllers/LocaleController.php:361
+#: airtime_mvc/application/controllers/LocaleController.php:364
msgid "Sa"
msgstr "Sa"
-#: airtime_mvc/application/controllers/LocaleController.php:364
+#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
+msgid "Close"
+msgstr "Fechar"
+
+#: airtime_mvc/application/controllers/LocaleController.php:367
msgid "Hour"
msgstr "Hora"
-#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:368
msgid "Minute"
msgstr "Minuto"
-#: airtime_mvc/application/controllers/LocaleController.php:366
+#: airtime_mvc/application/controllers/LocaleController.php:369
msgid "Done"
msgstr "Concluído"
-#: airtime_mvc/application/controllers/LocaleController.php:369
+#: airtime_mvc/application/controllers/LocaleController.php:372
msgid "Select files"
msgstr "Selecionar arquivos"
-#: airtime_mvc/application/controllers/LocaleController.php:370
-#: airtime_mvc/application/controllers/LocaleController.php:371
+#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:374
msgid "Add files to the upload queue and click the start button."
msgstr "Adicione arquivos para a fila de upload e pressione o botão iniciar "
-#: airtime_mvc/application/controllers/LocaleController.php:372
-#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:376
msgid "Status"
msgstr "Estado"
-#: airtime_mvc/application/controllers/LocaleController.php:374
+#: airtime_mvc/application/controllers/LocaleController.php:377
msgid "Add Files"
msgstr "Adicionar Arquivos"
-#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:378
msgid "Stop Upload"
msgstr "Parar Upload"
-#: airtime_mvc/application/controllers/LocaleController.php:376
+#: airtime_mvc/application/controllers/LocaleController.php:379
msgid "Start upload"
msgstr "Iniciar Upload"
-#: airtime_mvc/application/controllers/LocaleController.php:377
+#: airtime_mvc/application/controllers/LocaleController.php:380
msgid "Add files"
msgstr "Adicionar arquivos"
-#: airtime_mvc/application/controllers/LocaleController.php:378
+#: airtime_mvc/application/controllers/LocaleController.php:381
#, php-format
msgid "Uploaded %d/%d files"
msgstr "%d/%d arquivos importados"
-#: airtime_mvc/application/controllers/LocaleController.php:379
+#: airtime_mvc/application/controllers/LocaleController.php:382
msgid "N/A"
msgstr "N/A"
-#: airtime_mvc/application/controllers/LocaleController.php:380
+#: airtime_mvc/application/controllers/LocaleController.php:383
msgid "Drag files here."
msgstr "Arraste arquivos nesta área."
-#: airtime_mvc/application/controllers/LocaleController.php:381
+#: airtime_mvc/application/controllers/LocaleController.php:384
msgid "File extension error."
msgstr "Erro na extensão do arquivo."
-#: airtime_mvc/application/controllers/LocaleController.php:382
+#: airtime_mvc/application/controllers/LocaleController.php:385
msgid "File size error."
msgstr "Erro no tamanho do arquivo."
-#: airtime_mvc/application/controllers/LocaleController.php:383
+#: airtime_mvc/application/controllers/LocaleController.php:386
msgid "File count error."
msgstr "Erro na contagem dos arquivos."
-#: airtime_mvc/application/controllers/LocaleController.php:384
+#: airtime_mvc/application/controllers/LocaleController.php:387
msgid "Init error."
msgstr "Erro de inicialização."
-#: airtime_mvc/application/controllers/LocaleController.php:385
+#: airtime_mvc/application/controllers/LocaleController.php:388
msgid "HTTP Error."
msgstr "Erro HTTP."
-#: airtime_mvc/application/controllers/LocaleController.php:386
+#: airtime_mvc/application/controllers/LocaleController.php:389
msgid "Security error."
msgstr "Erro de segurança."
-#: airtime_mvc/application/controllers/LocaleController.php:387
+#: airtime_mvc/application/controllers/LocaleController.php:390
msgid "Generic error."
msgstr "Erro genérico."
-#: airtime_mvc/application/controllers/LocaleController.php:388
+#: airtime_mvc/application/controllers/LocaleController.php:391
msgid "IO error."
msgstr "Erro de I/O."
-#: airtime_mvc/application/controllers/LocaleController.php:389
+#: airtime_mvc/application/controllers/LocaleController.php:392
#, php-format
msgid "File: %s"
msgstr "Arquivos: %s."
-#: airtime_mvc/application/controllers/LocaleController.php:391
+#: airtime_mvc/application/controllers/LocaleController.php:394
#, php-format
msgid "%d files queued"
msgstr "%d arquivos adicionados à fila."
-#: airtime_mvc/application/controllers/LocaleController.php:392
+#: airtime_mvc/application/controllers/LocaleController.php:395
msgid "File: %f, size: %s, max file size: %m"
msgstr "Arquivo: %f, tamanho: %s, tamanho máximo: %m"
-#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/controllers/LocaleController.php:396
msgid "Upload URL might be wrong or doesn't exist"
msgstr "URL de upload pode estar incorreta ou inexiste."
-#: airtime_mvc/application/controllers/LocaleController.php:394
+#: airtime_mvc/application/controllers/LocaleController.php:397
msgid "Error: File too large: "
msgstr "Erro: Arquivo muito grande:"
-#: airtime_mvc/application/controllers/LocaleController.php:395
+#: airtime_mvc/application/controllers/LocaleController.php:398
msgid "Error: Invalid file extension: "
msgstr "Erro: Extensão de arquivo inválida."
-#: airtime_mvc/application/controllers/LocaleController.php:398
+#: airtime_mvc/application/controllers/LocaleController.php:400
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
+msgid "Set Default"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:401
msgid "Create Entry"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:399
+#: airtime_mvc/application/controllers/LocaleController.php:402
msgid "Edit History Record"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:402
+#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
+#: airtime_mvc/application/forms/EditHistoryItem.php:57
+msgid "No Show"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:405
#, php-format
msgid "Copied %s row%s to the clipboard"
msgstr "%s linhas%s copiadas para a área de transferência"
-#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/controllers/LocaleController.php:406
#, php-format
msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished."
msgstr "%sVisualizar impressão%sUse a função de impressão do navegador para imprimir esta tabela. Pressione ESC quando terminar."
-#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/controllers/LocaleController.php:407
msgid "New Show"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:405
+#: airtime_mvc/application/controllers/LocaleController.php:408
msgid "New Log Entry"
msgstr ""
-#: airtime_mvc/application/controllers/ScheduleController.php:389
-#, php-format
-msgid "Rebroadcast of show %s from %s at %s"
-msgstr "Retransmissão do programa %s de %s as %s"
-
-#: airtime_mvc/application/controllers/ScheduleController.php:712
-#: airtime_mvc/application/controllers/LibraryController.php:131
-msgid "Download"
-msgstr "Download"
-
-#: airtime_mvc/application/controllers/ErrorController.php:78
-msgid "Page not found."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:87
-msgid "The requested action is not supported."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:98
-msgid "You do not have permission to access this resource."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:109
-msgid "An internal application error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ListenerstatController.php:51
-msgid "Please make sure admin user/password is correct on System->Streams page."
-msgstr "Confirme se o nome de usuário / senha do administrador estão corretos na página Sistema > Fluxos."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:53
-#, php-format
-msgid "You are viewing an older version of %s"
-msgstr "Você está vendo uma versão obsoleta de %s"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:140
-msgid "You cannot add tracks to dynamic blocks."
-msgstr "Você não pode adicionar faixas a um bloco dinâmico"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:147
-#: airtime_mvc/application/controllers/LibraryController.php:31
-#, php-format
-msgid "%s not found"
-msgstr "%s não encontrado"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:161
-#, php-format
-msgid "You don't have permission to delete selected %s(s)."
-msgstr "Você não tem permissão para excluir os %s(s) selecionados."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:168
-#: airtime_mvc/application/controllers/LibraryController.php:40
-msgid "Something went wrong."
-msgstr "Ocorreu algo errado."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:174
-msgid "You can only add tracks to smart block."
-msgstr "Você pode somente adicionar faixas um bloco inteligente."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:192
-msgid "Untitled Playlist"
-msgstr "Lista Sem Título"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:194
-msgid "Untitled Smart Block"
-msgstr "Bloco Sem Título"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:522
-msgid "Unknown Playlist"
-msgstr "Lista Desconhecida"
-
-#: airtime_mvc/application/controllers/LoginController.php:43
-msgid "Please enter your username and password."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:93
-msgid "Wrong username or password provided. Please try again."
-msgstr "Usuário ou senha inválidos. Tente novamente."
-
-#: airtime_mvc/application/controllers/LoginController.php:167
-msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
-msgstr "O email não pôde ser enviado. Verifique as definições do servidor de email e certifique-se de que esteja corretamente configurado."
-
-#: airtime_mvc/application/controllers/LoginController.php:173
-msgid "There was a problem with the username or email address you entered."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:35
-#: airtime_mvc/application/controllers/DashboardController.php:84
-msgid "You don't have permission to disconnect source."
-msgstr "Você não tem permissão para desconectar a fonte."
-
-#: airtime_mvc/application/controllers/DashboardController.php:37
-#: airtime_mvc/application/controllers/DashboardController.php:86
-msgid "There is no source connected to this input."
-msgstr "Não há fonte conectada a esta entrada."
-
-#: airtime_mvc/application/controllers/DashboardController.php:81
-msgid "You don't have permission to switch source."
-msgstr "Você não tem permissão para alternar entre as fontes."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:72
-msgid "Preferences updated."
-msgstr "Preferências atualizadas."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:115
-msgid "Support setting updated."
-msgstr "Configurações de suporte atualizadas."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:123
-msgid "Support Feedback"
-msgstr "Informações de Suporte"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:251
-msgid "Stream Setting Updated."
-msgstr "Preferências de fluxo atualizadas."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:342
-msgid "path should be specified"
-msgstr "o caminho precisa ser informado"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:437
-msgid "Problem with Liquidsoap..."
-msgstr "Problemas com o Liquidsoap..."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:493
-msgid "Request method not accepted"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:86
-msgid "User added successfully!"
-msgstr "Usuário adicionado com sucesso!"
-
-#: airtime_mvc/application/controllers/UserController.php:88
-msgid "User updated successfully!"
-msgstr "Usuário atualizado com sucesso!"
-
-#: airtime_mvc/application/controllers/UserController.php:187
-msgid "Settings updated successfully!"
-msgstr "Configurações atualizadas com sucesso!"
-
-#: airtime_mvc/application/controllers/WebstreamController.php:28
-#: airtime_mvc/application/controllers/WebstreamController.php:32
-msgid "Untitled Webstream"
-msgstr "Fluxo Sem Título"
-
-#: airtime_mvc/application/controllers/WebstreamController.php:150
-msgid "Webstream saved."
-msgstr "Fluxo gravado."
-
-#: airtime_mvc/application/controllers/WebstreamController.php:158
-msgid "Invalid form values."
-msgstr "Valores do formulário inválidos."
-
-#: airtime_mvc/application/controllers/LibraryController.php:95
-#: airtime_mvc/application/controllers/ShowbuilderController.php:136
-msgid "Preview"
-msgstr "Visualizar"
-
-#: airtime_mvc/application/controllers/LibraryController.php:115
-#: airtime_mvc/application/controllers/LibraryController.php:177
-#: airtime_mvc/application/controllers/LibraryController.php:200
-msgid "Add to Playlist"
-msgstr "Adicionar à Lista"
-
-#: airtime_mvc/application/controllers/LibraryController.php:117
-msgid "Add to Smart Block"
-msgstr "Adicionar ao Bloco"
-
-#: airtime_mvc/application/controllers/LibraryController.php:147
-msgid "View track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:148
-msgid "Remove track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:154
-#: airtime_mvc/application/controllers/LibraryController.php:159
-msgid "Upload track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:169
-msgid "Duplicate Playlist"
-msgstr "Duplicar Lista"
-
-#: airtime_mvc/application/controllers/LibraryController.php:213
-msgid "No action available"
-msgstr "Nenhuma ação disponível"
-
-#: airtime_mvc/application/controllers/LibraryController.php:233
-msgid "You don't have permission to delete selected items."
-msgstr "Você não tem permissão para excluir os itens selecionados."
-
-#: airtime_mvc/application/controllers/LibraryController.php:279
-msgid "Could not delete file because it is scheduled in the future."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:282
-msgid "Could not delete file(s)."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:322
-#, php-format
-msgid "Copy of %s"
-msgstr "Cópia de %s"
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
-msgid ""
-"To configure and use the embeddable player you must:
\n"
-" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
-" 2. Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
-msgid ""
-"To use the embeddable weekly schedule widget you must:
\n"
-" Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
#: airtime_mvc/application/controllers/ShowbuilderController.php:138
msgid "Select cursor"
msgstr "Selecione o cursor"
@@ -4040,39 +1805,78 @@ msgstr "Remover o cursor"
msgid "show does not exist"
msgstr "programa inexistente"
-#: airtime_mvc/application/controllers/ApiController.php:79
-msgid "You are not allowed to access this resource."
-msgstr "Você não tem permissão para acessar esta funcionalidade."
-
-#: airtime_mvc/application/controllers/ApiController.php:244
-#: airtime_mvc/application/controllers/ApiController.php:317
-#: airtime_mvc/application/controllers/ApiController.php:392
-#: airtime_mvc/application/controllers/ApiController.php:435
-#: airtime_mvc/application/controllers/ApiController.php:474
-#: airtime_mvc/application/controllers/ApiController.php:507
-msgid "You are not allowed to access this resource. "
-msgstr "Você não tem permissão para acessar esta funcionalidade."
-
-#: airtime_mvc/application/controllers/ApiController.php:698
-#: airtime_mvc/application/controllers/ApiController.php:718
-#: airtime_mvc/application/controllers/ApiController.php:730
+#: airtime_mvc/application/controllers/ScheduleController.php:389
#, php-format
-msgid "File does not exist in %s"
+msgid "Rebroadcast of show %s from %s at %s"
+msgstr "Retransmissão do programa %s de %s as %s"
+
+#: airtime_mvc/application/common/UsabilityHints.php:55
+msgid "Upload some tracks below to add them to your library!"
msgstr ""
-#: airtime_mvc/application/controllers/ApiController.php:781
-msgid "Bad request. no 'mode' parameter passed."
-msgstr "Requisição inválida. Parâmetro não informado."
-
-#: airtime_mvc/application/controllers/ApiController.php:791
-msgid "Bad request. 'mode' parameter is invalid"
-msgstr "Requisição inválida. Parâmetro informado é inválido."
-
-#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#: airtime_mvc/application/common/UsabilityHints.php:57
#, php-format
-msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
msgstr ""
+#: airtime_mvc/application/common/UsabilityHints.php:63
+msgid "Click the 'New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:65
+#, php-format
+msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:73
+msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:75
+#, php-format
+msgid ""
+"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
+" %sCreate an unlinked show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:80
+msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:82
+#, php-format
+msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:89
+msgid "Click on the show starting next and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:91
+#, php-format
+msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/DateHelper.php:213
+#, php-format
+msgid "The year %s must be within the range of 1753 - 9999"
+msgstr "O ano % s deve estar compreendido no intervalo entre 1753 - 9999"
+
+#: airtime_mvc/application/common/DateHelper.php:216
+#, php-format
+msgid "%s-%s-%s is not a valid date"
+msgstr "%s-%s-%s não é uma data válida"
+
+#: airtime_mvc/application/common/DateHelper.php:240
+#, php-format
+msgid "%s:%s:%s is not a valid time"
+msgstr "%s:%s:%s não é um horário válido"
+
+#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
+msgid "Live stream"
+msgstr "Fluxo ao vivo"
+
#: airtime_mvc/application/layouts/scripts/layout.phtml:63
msgid "Smart Block"
msgstr ""
@@ -4085,6 +1889,17 @@ msgstr ""
msgid "Upload"
msgstr ""
+#: airtime_mvc/application/layouts/scripts/layout.phtml:76
+#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
+msgid "Dashboard"
+msgstr ""
+
+#: airtime_mvc/application/layouts/scripts/layout.phtml:84
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
+msgid "Webstreams"
+msgstr ""
+
#: airtime_mvc/application/layouts/scripts/layout.phtml:135
#: airtime_mvc/application/layouts/scripts/layout.phtml:161
msgid "Play"
@@ -4107,389 +1922,2128 @@ msgstr ""
msgid "Cursor"
msgstr ""
-#~ msgid "Show:"
-#~ msgstr "Programa:"
+#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#, php-format
+msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
+msgid "Drop files here or click to browse your computer."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
+msgid "Failed"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
+msgid "Pending"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
+msgid "Recent Uploads"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
+msgid "Share"
+msgstr "Compartilhar"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
+msgid "Select stream:"
+msgstr "Selecionar fluxo:"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
+msgid "mute"
+msgstr "Mudo"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
+msgid "unmute"
+msgstr "retirar mudo"
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
+msgid "About"
+msgstr "Sobre"
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
+#, php-format
+msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
+#, php-format
+msgid "%1$s %2$s is distributed under the %3$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
+#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
+#, php-format
+msgid "Welcome to %s!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
+#, php-format
+msgid "Here's how you can get started using %s to automate your broadcasts: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
+msgid "Upload audio tracks"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
+msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
+msgid "Schedule a show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
+msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
+msgid "Add tracks to your show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
+msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
+msgid "Now you're good to go!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
+#, php-format
+msgid "For more detailed help, read the %suser manual%s."
+msgstr "Para obter ajuda mais detalhada, leia o %smanual do usuário%s."
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
+#: airtime_mvc/application/configs/navigation.php:40
+msgid "Weekly Schedule"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
+#: airtime_mvc/application/forms/Player.php:77
+msgid "Preview:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
+#: airtime_mvc/application/configs/navigation.php:34
+msgid "Player"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:97
+msgid "Playout History"
+msgstr "Histórico da Programação"
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
+msgid "Log Sheet"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
+msgid "File Summary"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
+msgid "Show Summary"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
+msgid "Expand Static Block"
+msgstr "Expandir Bloco Estático"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
+msgid "Expand Dynamic Block"
+msgstr "Expandir Bloco Dinâmico"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
+msgid "Choose some search criteria above and click Generate to create this playlist."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
+msgid "A track list will be generated when you schedule this smart block into a show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
+msgid "Drag tracks here from your library to add them to the playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
+msgid "Editing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:26
+msgid "Name:"
+msgstr "Nome:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
+#: airtime_mvc/application/forms/AddShowWhat.php:54
+msgid "Description:"
+msgstr "Descrição:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
+#: airtime_mvc/application/forms/AddShowWhen.php:89
+msgid "Duration:"
+msgstr "Duração:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
+msgid "Toggle Details"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+msgid "Shuffle playlist"
+msgstr "Embaralhar Lista"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
+msgid "Shuffle"
+msgstr "Embaralhar"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
+msgid "Playlist crossfade"
+msgstr "Crossfade da Lista"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+msgid "Empty playlist content"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Clear"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+msgid "Fade in: "
+msgstr "Fade de entrada"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "Fade out: "
+msgstr "Fade de saída"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+msgid "Save playlist"
+msgstr "Salvar Lista"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
+msgid "No open playlist"
+msgstr "Nenhuma lista aberta"
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
+msgid "Show Waveform"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "(ss.t)"
+msgstr "(ss,t)"
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Remove all content from this smart block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
+msgid "No smart block currently open"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+msgid "Cue In: "
+msgstr "Cue entrada:"
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "(hh:mm:ss.t)"
+msgstr "(hh:mm:ss.t)"
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "Cue Out: "
+msgstr "Cue Saída:"
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
+msgid "Original Length:"
+msgstr "Duração Original:"
+
+#: airtime_mvc/application/views/scripts/preference/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:56
+msgid "General"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
+msgid "Stream Settings"
+msgstr "Configurações de Fluxo"
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
+msgid "Global"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
+msgid "dB"
+msgstr "dB"
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
+msgid "Output Streams"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:3
+#: airtime_mvc/application/forms/Login.php:83
+msgid "Login"
+msgstr "Acessar"
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:7
+#, php-format
+msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
+msgid "Email Sent!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
+msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
+msgid "Back"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
+msgid "Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
+msgid "New password"
+msgstr "Nova senha"
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
+msgid "Please enter and confirm your new password in the fields below."
+msgstr "Por favor informe e confirme sua nova senha nos campos abaixo."
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
+msgid "Manage Users"
+msgstr "Gerenciar Usuários"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
+msgid "New User"
+msgstr "Novo Usuário"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
+msgid "id"
+msgstr "id"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
+#: airtime_mvc/application/forms/PasswordRestore.php:25
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
+msgid "Username"
+msgstr "Usuário"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
+msgid "First Name"
+msgstr "Primeiro Nome"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
+msgid "Last Name"
+msgstr "Último Nome"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
+msgid "User Type"
+msgstr "Tipo de Usuário"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
+#, php-format
+msgid "Super Admin details can be changed in your Billing Settings."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
+msgid "Find Shows"
+msgstr "Encontrar Programas"
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
+msgid "Choose Show Instance"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
+msgid "Find"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
+#: airtime_mvc/application/configs/navigation.php:61
+msgid "My Profile"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
+#, php-format
+msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
+msgid "Repeat Days:"
+msgstr "Dias para reexibir:"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
+#: airtime_mvc/application/forms/GeneralPreferences.php:53
+#: airtime_mvc/application/forms/AddShowStyle.php:64
+msgid "Remove"
+msgstr "Remover"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
+msgid "Add"
+msgstr "Adicionar"
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
+msgid "Show Source"
+msgstr "Programa"
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
+msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
+msgid "Register Airtime"
+msgstr "Registrar Airtime"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
+#, php-format
+msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
+#, php-format
+msgid "Click the box below to promote your station on %s."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
+msgid "(Required)"
+msgstr "(Obrigatório)"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
+msgid "(for verification purposes only, will not be published)"
+msgstr "(somente para efeito de verificação, não será publicado)"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
+#: airtime_mvc/application/forms/GeneralPreferences.php:43
+msgid "Note: Anything larger than 600x600 will be resized."
+msgstr "Nota: qualquer arquivo maior que 600x600 será redimensionado"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
+msgid "Show me what I am sending "
+msgstr "Mostrar quais informações estou enviando"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
+msgid "Terms and Conditions"
+msgstr "Termos e Condições"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
+msgid "Choose Days:"
+msgstr "Selecione os Dias:"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
+msgid "Search Criteria:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
+msgid "New Criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
+msgid "or"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
+msgid "and"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
+msgid "New Modifier"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
+msgid " to "
+msgstr "para"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
+msgid "files meet the criteria"
+msgstr "arquivos correspondem ao critério"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
+msgid "file meets the criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
+msgid "Filter History"
+msgstr "Histórico de Filtros"
+
+#: airtime_mvc/application/views/scripts/form/login.phtml:41
+msgid "Forgot your password?"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
+msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
+msgstr "(para divulgação de sua estação, a opção 'Enviar Informações de Suporte\" precisa estar habilitada)"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
+msgid "Stream "
+msgstr "Fluxo"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
+msgid "Additional Options"
+msgstr "Opções Adicionais"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
+msgid "The following info will be displayed to listeners in their media player:"
+msgstr "A informação a seguir será exibida para os ouvintes em seu player de mídia:"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
+msgid "(Your radio station website)"
+msgstr "(O website de sua estação de rádio)"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
+msgid "Stream URL: "
+msgstr "URL do Fluxo:"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
+msgid "Choose folder"
+msgstr "Selecione o diretório"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
+msgid "Set"
+msgstr "Definir"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
+msgid "Current Import Folder:"
+msgstr "Diretório de Importação Atual:"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
+#, php-format
+msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
+msgid "Remove watched directory"
+msgstr "Remover diretório monitorado"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
+msgid "You are not watching any media folders."
+msgstr "Você não está monitorando nenhum diretório."
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
+msgid "Live Broadcasting"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
+msgid "Master Source"
+msgstr "Master"
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
+msgid "Use these settings in your broadcasting software to stream live at any time."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
+msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
+msgid "TuneIn Settings"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
+msgid "SoundCloud Settings"
+msgstr "Configurações do SoundCloud"
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
+msgid "Dangerous Options"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Add this show"
+msgstr "Adicionar este programa"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Update show"
+msgstr "Atualizar programa"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
+msgid "What"
+msgstr "O que"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
+msgid "When"
+msgstr "Quando"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
+msgid "Live Stream Input"
+msgstr "Fluxo de entrada ao vivo"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
+msgid "Who"
+msgstr "Quem"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
+msgid "Style"
+msgstr "Aparência"
+
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
+msgid "Disk Space"
+msgstr "Espaço em Disco"
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:3
+msgid "File import in progress..."
+msgstr "Importação de arquivo em progresso..."
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:10
+#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
+msgid "Advanced Search Options"
+msgstr "Opções da Busca Avançada"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
+#: airtime_mvc/application/forms/EditAudioMD.php:24
+#: airtime_mvc/application/forms/Player.php:15
+msgid "Title:"
+msgstr "Título:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
+#: airtime_mvc/application/forms/EditAudioMD.php:34
+msgid "Creator:"
+msgstr "Criador:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
+#: airtime_mvc/application/forms/EditAudioMD.php:44
+msgid "Album:"
+msgstr "Álbum:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
+msgid "Track:"
+msgstr "Faixa:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
+msgid "Length:"
+msgstr "Duração:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
+msgid "Sample Rate:"
+msgstr "Taxa de Amostragem:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
+msgid "Bit Rate:"
+msgstr "Bitrate:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
+#: airtime_mvc/application/forms/EditAudioMD.php:115
+msgid "Mood:"
+msgstr "Humor:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:45
+#: airtime_mvc/application/forms/EditAudioMD.php:62
+msgid "Genre:"
+msgstr "Gênero:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
+#: airtime_mvc/application/forms/EditAudioMD.php:72
+msgid "Year:"
+msgstr "Ano:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
+#: airtime_mvc/application/forms/EditAudioMD.php:85
+msgid "Label:"
+msgstr "Legenda:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
+#: airtime_mvc/application/forms/EditAudioMD.php:125
+msgid "BPM:"
+msgstr "BPM:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
+#: airtime_mvc/application/forms/EditAudioMD.php:95
+msgid "Composer:"
+msgstr "Compositor:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
+#: airtime_mvc/application/forms/EditAudioMD.php:105
+msgid "Conductor:"
+msgstr "Maestro:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
+#: airtime_mvc/application/forms/EditAudioMD.php:135
+msgid "Copyright:"
+msgstr "Copyright:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
+msgid "Isrc Number:"
+msgstr "Número Isrc:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
+#: airtime_mvc/application/forms/EditAudioMD.php:155
+msgid "Website:"
+msgstr "Website:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
+#: airtime_mvc/application/forms/EditAudioMD.php:165
+#: airtime_mvc/application/forms/EditUser.php:119
+#: airtime_mvc/application/forms/Login.php:68
+msgid "Language:"
+msgstr "Idioma:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
+msgid "File Path:"
+msgstr "Caminho do Arquivo:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
+msgid "Web Stream"
+msgstr "Fluxo Web"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
+msgid "Dynamic Smart Block"
+msgstr "Bloco Inteligente Dinâmico"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
+msgid "Static Smart Block"
+msgstr "Bloco Inteligente Estático"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
+msgid "Audio Track"
+msgstr "Faixa de Áudio"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
+msgid "Playlist Contents: "
+msgstr "Conteúdos da Lista de Reprodução:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
+msgid "Static Smart Block Contents: "
+msgstr "Conteúdo do Bloco Inteligente Estático:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
+msgid "Dynamic Smart Block Criteria: "
+msgstr "Critério para Bloco Inteligente Dinâmico:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
+msgid "Limit to "
+msgstr "Limitar em"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
+#: airtime_mvc/application/forms/AddShowWhat.php:36
+msgid "URL:"
+msgstr "URL:"
+
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
+msgid "Viewing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
+msgid "Listeners"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
+msgid "Stream Data Collection Status"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
+msgid "Your trial expires in"
+msgstr "Seu período de teste termina em"
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
+msgid "days"
+msgstr "dias"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
+msgid "Previous:"
+msgstr "Anterior:"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
+msgid "Next:"
+msgstr "Próximo:"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
+msgid "Source Streams"
+msgstr "Fontes de Fluxo"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
+msgid "ON AIR"
+msgstr "NO AR"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
+msgid "Listen"
+msgstr "Ouvir"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
+msgid "Logout"
+msgstr "Sair"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
+msgid "Playout History Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
+msgid "Log Sheet Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
+msgid "New Log Sheet Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
+msgid "No Log Sheet Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
+msgid "File Summary Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
+msgid "New File Summary Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
+msgid "No File Summary Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
+msgid "Creating File Summary Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
+msgid "Creating Log Sheet Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
+msgid "Name"
+msgstr "Nome"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
+msgid "Add more elements"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
+msgid "Add New Field"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
+msgid "Set Default Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
+msgid "Description"
+msgstr "Descrição"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
+msgid "Stream URL:"
+msgstr "URL do Fluxo:"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
+msgid "Default Length:"
+msgstr "Duração Padrão:"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
+msgid "No webstream"
+msgstr "Nenhum fluxo web"
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
+#: airtime_mvc/application/views/scripts/error/error.phtml:6
+msgid "An error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
+msgid "Access Denied!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
+msgid "You do not have permission to access this page!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
+#: airtime_mvc/application/views/scripts/error/error.phtml:14
+#: airtime_mvc/application/configs/navigation.php:143
+msgid "Help"
+msgstr "Ajuda"
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
+msgid "Oops!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
+msgid "Something went wrong!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
+msgid "Bad Request!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
+msgid "The requested action is not supported!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
+msgid "Page not found!"
+msgstr "Página não encontrada!"
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
+msgid "We couldn't find the page you were looking for."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error.phtml:12
+msgid "Looks like the page you were looking for doesn't exist!"
+msgstr "A página que você procura não existe!"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
+msgid "previous"
+msgstr "anterior"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
+msgid "play"
+msgstr "play"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
+msgid "pause"
+msgstr "pause"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
+msgid "next"
+msgstr "próximo"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
+msgid "stop"
+msgstr "stop"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
+msgid "max volume"
+msgstr "volume máximo"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
+msgid "Update Required"
+msgstr "Atualização Necessária"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
+#, php-format
+msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
+msgstr "Para reproduzir a mídia que você terá que quer atualizar seu navegador para uma versão recente ou atualizar seu %sFlash plugin%s."
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
+msgid "Plan type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
+msgid "Billing cycle:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
+msgid "Payment method:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
+msgid "PayPal"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
+msgid "Credit Card via 2Checkout"
+msgstr ""
+
+#: airtime_mvc/application/forms/DateRange.php:16
+#: airtime_mvc/application/forms/ShowBuilder.php:18
+msgid "Date Start:"
+msgstr "Data de Início:"
+
+#: airtime_mvc/application/forms/DateRange.php:35
+#: airtime_mvc/application/forms/DateRange.php:63
+#: airtime_mvc/application/forms/ShowBuilder.php:37
+#: airtime_mvc/application/forms/ShowBuilder.php:65
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
+msgid "Invalid character entered"
+msgstr "Caracter inválido informado"
+
+#: airtime_mvc/application/forms/DateRange.php:44
+#: airtime_mvc/application/forms/ShowBuilder.php:46
+#: airtime_mvc/application/forms/AddShowRepeats.php:56
+msgid "Date End:"
+msgstr "Data de Fim:"
+
+#: airtime_mvc/application/forms/ShowBuilder.php:72
+#: airtime_mvc/application/forms/ShowBuilder.php:88
+msgid "Filter by Show"
+msgstr ""
+
+#: airtime_mvc/application/forms/ShowBuilder.php:80
+msgid "All My Shows:"
+msgstr "Meus Programas:"
+
+#: airtime_mvc/application/forms/AddShowWho.php:10
+msgid "Search Users:"
+msgstr "Procurar Usuários:"
+
+#: airtime_mvc/application/forms/AddShowWho.php:24
+msgid "DJs:"
+msgstr "DJs:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:30
+#: airtime_mvc/application/forms/GeneralPreferences.php:25
+#: airtime_mvc/application/forms/SupportSettings.php:18
+msgid "Station Name"
+msgstr "Nome da Estação"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:39
+#: airtime_mvc/application/forms/SupportSettings.php:31
+msgid "Phone:"
+msgstr "Fone:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:51
+#: airtime_mvc/application/forms/AddUser.php:67
+#: airtime_mvc/application/forms/EditUser.php:83
+#: airtime_mvc/application/forms/SupportSettings.php:43
+msgid "Email:"
+msgstr "Email:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:62
+#: airtime_mvc/application/forms/SupportSettings.php:54
+msgid "Station Web Site:"
+msgstr "Website da Estação:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:73
+#: airtime_mvc/application/forms/SupportSettings.php:65
+msgid "Country:"
+msgstr "País:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:84
+#: airtime_mvc/application/forms/SupportSettings.php:76
+msgid "City:"
+msgstr "Cidade:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:96
+#: airtime_mvc/application/forms/SupportSettings.php:88
+msgid "Station Description:"
+msgstr "Descrição da Estação:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:106
+#: airtime_mvc/application/forms/GeneralPreferences.php:42
+msgid "Station Logo:"
+msgstr "Logo da Estação:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:126
+#: airtime_mvc/application/forms/SupportSettings.php:108
+#, php-format
+msgid "Promote my station on %s"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:151
+#: airtime_mvc/application/forms/SupportSettings.php:120
+#, php-format
+msgid "By checking this box, I agree to %s's %sprivacy policy%s."
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:169
+#: airtime_mvc/application/forms/SupportSettings.php:143
+msgid "You have to agree to privacy policy."
+msgstr "Você precisa concordar com a política de privacidade."
+
+#: airtime_mvc/application/forms/AddShowRR.php:10
+msgid "Record from Line In?"
+msgstr "Gravar a partir do Line In?"
+
+#: airtime_mvc/application/forms/AddShowRR.php:16
+msgid "Rebroadcast?"
+msgstr "Retransmitir?"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
+#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
+msgid "Value is required and can't be empty"
+msgstr "Valor é obrigatório e não poder estar em branco."
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
+msgid "'%value%' is no valid email address in the basic format local-part@hostname"
+msgstr "%value%' não é um enderçeo de email válido"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
+msgid "'%value%' does not fit the date format '%format%'"
+msgstr "'%value%' não corresponde a uma data válida '%format%'"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
+msgid "'%value%' is less than %min% characters long"
+msgstr "'%value%' is menor que comprimento mínimo %min% de caracteres"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
+msgid "'%value%' is more than %max% characters long"
+msgstr "'%value%' is maior que o número máximo %max% de caracteres"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
+msgid "'%value%' is not between '%min%' and '%max%', inclusively"
+msgstr "'%value%' não está compreendido entre '%min%' e '%max%', inclusive"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
+msgid "Passwords do not match"
+msgstr "Senhas não conferem"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
+msgid "Day must be specified"
+msgstr "O dia precisa ser especificado"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
+msgid "Time must be specified"
+msgstr "O horário deve ser especificado"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
+msgid "Must wait at least 1 hour to rebroadcast"
+msgstr "É preciso aguardar uma hora para retransmitir"
+
+#: airtime_mvc/application/forms/PasswordRestore.php:14
+msgid "Email"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordRestore.php:36
+msgid "Reset password"
+msgstr "Redefinir senha"
+
+#: airtime_mvc/application/forms/AddShowWhat.php:30
+msgid "Untitled Show"
+msgstr "Programa Sem Título"
+
+#: airtime_mvc/application/forms/AddShowWhat.php:69
+msgid "Instance Description:"
+msgstr ""
+
+#: airtime_mvc/application/forms/DangerousPreferences.php:12
+msgid "Delete All Tracks in Library"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditAudioMD.php:145
+msgid "ISRC Number:"
+msgstr "Número ISRC:"
+
+#: airtime_mvc/application/forms/EditAudioMD.php:176
+msgid "OK"
+msgstr "OK"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:33
+msgid "Station Description"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:62
+msgid "Default Crossfade Duration (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:68
+#: airtime_mvc/application/forms/GeneralPreferences.php:82
+#: airtime_mvc/application/forms/GeneralPreferences.php:96
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
+msgid "Please enter a time in seconds (eg. 0.5)"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:76
+msgid "Default Fade In (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:90
+msgid "Default Fade Out (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:102
+msgid "Public Airtime API"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:103
+msgid "Required for embeddable schedule widget."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:105
+msgid "Disabled"
+msgstr "Inativo"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:106
+msgid "Enabled"
+msgstr "Ativo"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:109
+msgid ""
+"Enabling this feature will allow Airtime to provide schedule data\n"
+" to external widgets that can be embedded in your website."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:120
+msgid "Default Language"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:127
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
+msgid "Station Timezone"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:134
+msgid "Week Starts On"
+msgstr "Semana Inicia Em"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:150
+msgid "Display login button on your Radio Page?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:29
+#: airtime_mvc/application/forms/EditUser.php:37
+#: airtime_mvc/application/forms/Login.php:41
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
+msgid "Username:"
+msgstr "Usuário:"
+
+#: airtime_mvc/application/forms/AddUser.php:38
+#: airtime_mvc/application/forms/EditUser.php:48
+#: airtime_mvc/application/forms/Login.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
+msgid "Password:"
+msgstr "Senha:"
+
+#: airtime_mvc/application/forms/AddUser.php:46
+#: airtime_mvc/application/forms/EditUser.php:57
+msgid "Verify Password:"
+msgstr "Confirmar Senha:"
+
+#: airtime_mvc/application/forms/AddUser.php:55
+#: airtime_mvc/application/forms/EditUser.php:67
+msgid "Firstname:"
+msgstr "Primeiro nome:"
+
+#: airtime_mvc/application/forms/AddUser.php:61
+#: airtime_mvc/application/forms/EditUser.php:75
+msgid "Lastname:"
+msgstr "Último nome:"
+
+#: airtime_mvc/application/forms/AddUser.php:76
+#: airtime_mvc/application/forms/EditUser.php:94
+msgid "Mobile Phone:"
+msgstr "Celular:"
+
+#: airtime_mvc/application/forms/AddUser.php:82
+#: airtime_mvc/application/forms/EditUser.php:102
+msgid "Skype:"
+msgstr "Skype:"
+
+#: airtime_mvc/application/forms/AddUser.php:88
+#: airtime_mvc/application/forms/EditUser.php:110
+msgid "Jabber:"
+msgstr "Jabber:"
+
+#: airtime_mvc/application/forms/AddUser.php:95
+msgid "User Type:"
+msgstr "Perfil do Usuário:"
+
+#: airtime_mvc/application/forms/AddUser.php:120
+#: airtime_mvc/application/forms/EditUser.php:155
+msgid "Login name is not unique."
+msgstr "Usuário já existe."
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
+msgid "Import Folder:"
+msgstr "Diretório de Importação:"
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
+msgid "Watched Folders:"
+msgstr "Diretórios Monitorados: "
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
+msgid "Not a valid Directory"
+msgstr "Não é um diretório válido"
+
+#: airtime_mvc/application/forms/BillingClient.php:126
+msgid "What is the name of your favorite childhood friend?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:127
+msgid "What school did you attend for sixth grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:128
+msgid "In what city did you meet your spouse/significant other?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:129
+msgid "What street did you live on in third grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:130
+msgid "What is the first name of the boy or girl that you first kissed?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:131
+msgid "In what city or town was your first job?"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
+msgid "Default License:"
+msgstr "Licença Padrão:"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
+msgid "All rights are reserved"
+msgstr "Todos os direitos são reservados"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
+msgid "The work is in the public domain"
+msgstr "O trabalho é de domínio público"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
+msgid "Creative Commons Attribution"
+msgstr "Creative Commons Attribution"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
+msgid "Creative Commons Attribution Noncommercial"
+msgstr "Creative Commons Attribution Noncommercial"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
+msgid "Creative Commons Attribution No Derivative Works"
+msgstr "Creative Commons Attribution No Derivative Works"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
+msgid "Creative Commons Attribution Share Alike"
+msgstr "Creative Commons Attribution Share Alike"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
+msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
+msgstr "Creative Commons Attribution Noncommercial Non Derivate Works"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
+msgid "Creative Commons Attribution Noncommercial Share Alike"
+msgstr "Creative Commons Attribution Noncommercial Share Alike"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
+msgid "Default Sharing Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
+msgid "Public"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
+msgid "Private"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditUser.php:129
+msgid "Interface Timezone:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:14
+msgid "Now Playing"
+msgstr "Tocando agora"
+
+#: airtime_mvc/application/forms/Player.php:25
+msgid "Select Stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:28
+msgid "Auto detect the most appropriate stream to use."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:29
+msgid "Select a stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:41
+msgid " - Mobile friendly"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:45
+msgid " - The player does not support Opus streams."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:71
+msgid "Embeddable code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:72
+msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
+#: airtime_mvc/application/models/Block.php:1351
+msgid "Select criteria"
+msgstr "Selecione um critério"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
+#: airtime_mvc/application/models/Block.php:1353
+msgid "Bit Rate (Kbps)"
+msgstr "Bitrate (Kbps)"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
+#: airtime_mvc/application/models/Block.php:1374
+msgid "Sample Rate (kHz)"
+msgstr "Taxa de Amostragem (khz)"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
+msgid "hours"
+msgstr "horas"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
+msgid "minutes"
+msgstr "minutos"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
+#: airtime_mvc/application/models/Block.php:333
+msgid "items"
+msgstr "itens"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
+msgid "Randomly"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
+msgid "Newest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
+msgid "Oldest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
+msgid "Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
+msgid "Static"
+msgstr "Estático"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
+msgid "Dynamic"
+msgstr "Dinâmico"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
+msgid "Allow Repeated Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
+msgid "Sort Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
+msgid "Limit to:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
+msgid "Generate playlist content and save criteria"
+msgstr "Gerar conteúdo da lista e salvar critério"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
+msgid "Generate"
+msgstr "Gerar"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
+msgid "Shuffle playlist content"
+msgstr "Embaralhar conteúdo da lista"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
+msgid "Limit cannot be empty or smaller than 0"
+msgstr "O limite não pode ser vazio ou menor que 0"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
+msgid "Limit cannot be more than 24 hrs"
+msgstr "O limite não pode ser maior que 24 horas"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
+msgid "The value should be an integer"
+msgstr "O valor deve ser um número inteiro"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
+msgid "500 is the max item limit value you can set"
+msgstr "O número máximo de itens é 500"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
+msgid "You must select Criteria and Modifier"
+msgstr "Você precisa selecionar Critério e Modificador "
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
+msgid "'Length' should be in '00:00:00' format"
+msgstr "A duração deve ser informada no formato '00:00:00'"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
+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:594
+msgid "The value has to be numeric"
+msgstr "O valor deve ser numérico"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
+msgid "The value should be less then 2147483648"
+msgstr "O valor precisa ser menor que 2147483648"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
+#, php-format
+msgid "The value should be less than %s characters"
+msgstr "O valor deve conter no máximo %s caracteres"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
+msgid "Value cannot be empty"
+msgstr "O valor não pode estar em branco"
+
+#: airtime_mvc/application/forms/StreamSetting.php:26
+msgid "Icecast Vorbis Metadata"
+msgstr "Metadados Icecast Vorbis"
+
+#: airtime_mvc/application/forms/StreamSetting.php:36
+msgid "Stream Label:"
+msgstr "Legenda do Fluxo:"
+
+#: airtime_mvc/application/forms/StreamSetting.php:37
+msgid "Artist - Title"
+msgstr "Artista - Título"
+
+#: airtime_mvc/application/forms/StreamSetting.php:38
+msgid "Show - Artist - Title"
+msgstr "Programa - Artista - Título"
+
+#: airtime_mvc/application/forms/StreamSetting.php:39
+msgid "Station name - Show name"
+msgstr "Nome da Estação - Nome do Programa"
+
+#: airtime_mvc/application/forms/StreamSetting.php:45
+msgid "Off Air Metadata"
+msgstr "Metadados Off Air"
+
+#: airtime_mvc/application/forms/StreamSetting.php:51
+msgid "Enable Replay Gain"
+msgstr "Habilitar Ganho de Reprodução"
+
+#: airtime_mvc/application/forms/StreamSetting.php:57
+msgid "Replay Gain Modifier"
+msgstr "Modificador de Ganho de Reprodução"
+
+#: airtime_mvc/application/forms/StreamSetting.php:65
+msgid "Streaming Server:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Airtime Pro Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Custom / 3rd Party Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordChange.php:17
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
+msgid "Password"
+msgstr "Senha"
-#~ msgid "enter a time in seconds 0{.0}"
-#~ msgstr "informe o tempo em segundos 0{.0}"
+#: airtime_mvc/application/forms/PasswordChange.php:28
+msgid "Confirm new password"
+msgstr "Confirmar nova senha"
-#~ msgid "Allow Remote Websites To Access \"Schedule\" Info?%s (Enable this to make front-end widgets work.)"
-#~ msgstr "Permitir que sites remotos acessem as informações sobre \"Programação\"?%s (Habilite para fazer com que widgets externos funcionem.)"
+#: airtime_mvc/application/forms/PasswordChange.php:36
+msgid "Password confirmation does not match your password."
+msgstr "A senha de confirmação não confere."
-#~ msgid "Default Interface Language"
-#~ msgstr "Idioma Padrão da Interface"
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
+msgid "Station Language"
+msgstr ""
-#~ msgid "Get new password"
-#~ msgstr "Obter nova senha"
-
-#~ msgid "Set smart block type:"
-#~ msgstr "Definir tipo de bloco:"
-
-#~ msgid "Allow Repeat Tracks:"
-#~ msgstr "Permitir Repetição de Faixas:"
-
-#~ msgid "Limit to"
-#~ msgstr "Limitar em"
-
-#~ msgid "Auto Switch Off"
-#~ msgstr "Desligar Auto Switch"
-
-#~ msgid "Auto Switch On"
-#~ msgstr "Ligar Auto Switch"
-
-#~ msgid "Switch Transition Fade (s)"
-#~ msgstr "Fade de Transição do Switch:"
-
-#~ msgid "enter a time in seconds 00{.000000}"
-#~ msgstr "informe o tempo em segundo 00{.000000}"
-
-#~ msgid "Master Username"
-#~ msgstr "Usuário Master"
-
-#~ msgid "Master Password"
-#~ msgstr "Senha Master"
-
-#~ msgid "Master Source Connection URL"
-#~ msgstr "URL de Conexão da Fonte Master"
-
-#~ msgid "Show Source Connection URL"
-#~ msgstr "URL de Conexão da Fonte Programa"
-
-#~ msgid "Master Source Port"
-#~ msgstr "Porta da Fonte Master"
-
-#~ msgid "Master Source Mount Point"
-#~ msgstr "Ponto de Montagem da Fonte Master"
-
-#~ msgid "Show Source Port"
-#~ msgstr "Porta da Fonte Programa"
-
-#~ msgid "Show Source Mount Point"
-#~ msgstr "Ponto de Montagem da Fonte Programa"
-
-#~ msgid "You cannot use same port as Master DJ port."
-#~ msgstr "Você não pode utilizar a mesma porta do Master DJ."
-
-#~ msgid "Port %s is not available"
-#~ msgstr "Porta %s indisponível."
-
-#~ msgid "E-mail"
-#~ msgstr "Email"
-
-#~ msgid "Restore password"
-#~ msgstr "Redefinir senha"
-
-#~ msgid "Hardware Audio Output"
-#~ msgstr "Hardware para Saída de Áudio"
-
-#~ msgid "Output Type"
-#~ msgstr "Tipo de Saída"
-
-#~ msgid "Date/Time Start:"
-#~ msgstr "Data/Horário de Início:"
-
-#~ msgid "Date/Time End:"
-#~ msgstr "Data/Horário de Fim:"
-
-#~ msgid "Automatically Upload Recorded Shows"
-#~ msgstr "Enviar programas gravados automaticamente"
-
-#~ msgid "Enable SoundCloud Upload"
-#~ msgstr "Habilitar envio para SoundCloud"
-
-#~ msgid "Automatically Mark Files \"Downloadable\" on SoundCloud"
-#~ msgstr "Permitir download dos arquivos no SoundCloud"
-
-#~ msgid "SoundCloud Email"
-#~ msgstr "Email do SoundCloud"
-
-#~ msgid "SoundCloud Password"
-#~ msgstr "Senha do SoundCloud"
-
-#~ msgid "SoundCloud Tags: (separate tags with spaces)"
-#~ msgstr "Tags do SoundCloud: (separados por espaços)"
-
-#~ msgid "Default Genre:"
-#~ msgstr "Gênero Padrão:"
-
-#~ msgid "Default Track Type:"
-#~ msgstr "Tipo de Faixa Padrão:"
-
-#~ msgid "Original"
-#~ msgstr "Original"
-
-#~ msgid "Remix"
-#~ msgstr "Remix"
-
-#~ msgid "Live"
-#~ msgstr "Ao Vivo"
-
-#~ msgid "Recording"
-#~ msgstr "Gravando"
-
-#~ msgid "Spoken"
-#~ msgstr "Falado"
-
-#~ msgid "Podcast"
-#~ msgstr "Podcast"
-
-#~ msgid "Demo"
-#~ msgstr "Demo"
-
-#~ msgid "Work in progress"
-#~ msgstr "Trabalho am andamento"
-
-#~ msgid "Stem"
-#~ msgstr "Base"
-
-#~ msgid "Loop"
-#~ msgstr "Loop"
-
-#~ msgid "Sound Effect"
-#~ msgstr "Efeito de Áudio"
-
-#~ msgid "One Shot Sample"
-#~ msgstr "Amostra 'One Shot'"
-
-#~ msgid "Other"
-#~ msgstr "Outro"
-
-#~ msgid "Enable System Emails (Password Reset)"
-#~ msgstr "Ativar Envio de Emails (Recuperação de Senha)"
-
-#~ msgid "Reset Password 'From' Email"
-#~ msgstr "Remetente de Email para Recuperação de Senha"
-
-#~ msgid "Configure Mail Server"
-#~ msgstr "Configurar Servidor de Email"
-
-#~ msgid "Requires Authentication"
-#~ msgstr "Requer Autenticação"
-
-#~ msgid "Mail Server"
-#~ msgstr "Servidor de Email"
-
-#~ msgid "Email Address"
-#~ msgstr "Endereço de Email"
-
-#~ msgid "Please enter your user name and password"
-#~ msgstr "Por favor informe seu usuário e senha"
-
-#~ msgid "Given email not found."
-#~ msgstr "O email informado não foi localizado."
-
-#~ msgid "Page not found"
-#~ msgstr "Página não encontrada"
-
-#~ msgid "Application error"
-#~ msgstr "Erro na aplicação"
-
-#~ msgid "If you change the username or password values for an enabled stream the playout engine will be rebooted and your listeners will hear silence for 5-10 seconds. Changing the following fields will NOT cause a reboot: Stream Label (Global Settings), and Switch Transition Fade(s), Master Username, and Master Password (Input Stream Settings). If Airtime is recording, and if the change causes a playout engine restart, the recording will be interrupted."
-#~ msgstr "Se você alterar os campos de usuário ou senha de um fluxo ativo, o mecanismo de saída será reiniciado e seus ouvintes ouvirão um silêncio por 5-10 segundos. Alterando os seguintes campos não causará reinicialização: Legenda do Fluxo (Configurações Globais), e Mudar Fade(s) de Transição, Usuário Master e Senha Master (Configurações de fluxo de entrada). Se o Airtime estiver gravando e, se a mudança fizer com que uma reinicialização de mecanismo de saída seja necessária, a gravação será interrompida."
-
-#~ msgid "today"
-#~ msgstr "hoje"
-
-#~ msgid "day"
-#~ msgstr "dia"
-
-#~ msgid "week"
-#~ msgstr "semana"
-
-#~ msgid "month"
-#~ msgstr "mês"
-
-#~ msgid "Remove overbooked tracks"
-#~ msgstr "Remover faixas excedentes"
-
-#~ msgid "Soundcloud"
-#~ msgstr "SoundCloud"
-
-#~ msgid "View on Soundcloud"
-#~ msgstr "Visualizar no SoundCloud"
-
-#~ msgid "Re-upload to SoundCloud"
-#~ msgstr "Re-enviar para SoundCloud"
-
-#~ msgid "Upload to SoundCloud"
-#~ msgstr "Enviar para SoundCloud"
-
-#~ msgid "Could not delete some scheduled files."
-#~ msgstr "Não foi possível excluir alguns arquivos, por estarem com execução agendada."
-
-#~ msgid "Add Media"
-#~ msgstr "Adicionar Mídia"
-
-#~ msgid "Library"
-#~ msgstr "Biblioteca"
-
-#~ msgid "System"
-#~ msgstr "Sistema"
-
-#~ msgid "Preferences"
-#~ msgstr "Preferências"
-
-#~ msgid "Media Folders"
-#~ msgstr "Diretórios de Mídia"
-
-#~ msgid "Service"
-#~ msgstr "Serviço"
-
-#~ msgid "Uptime"
-#~ msgstr "Uptime"
-
-#~ msgid "CPU"
-#~ msgstr "CPU"
-
-#~ msgid "Memory"
-#~ msgstr "Memória"
-
-#~ msgid "Email / Mail Server Settings"
-#~ msgstr "Configurações de Email"
-
-#~ msgid "Connection URL: "
-#~ msgstr "URL de Conexão:"
-
-#~ msgid "Input Stream Settings"
-#~ msgstr "Configurações do Fluxo de Entrada"
-
-#~ msgid "Master Source Connection URL:"
-#~ msgstr "URL de Conexão da Fonte Master:"
-
-#~ msgid "Override"
-#~ msgstr "Soprebor"
-
-#~ msgid "RESET"
-#~ msgstr "REDEFINIR"
-
-#~ msgid "Show Source Connection URL:"
-#~ msgstr "URL de Conexão da Fonte do Programa:"
-
-#~ msgid "Filter By Show:"
-#~ msgstr "Filtrar por Programa:"
-
-#~ msgid "%s's Settings"
-#~ msgstr "Configurações de %s"
-
-#~ msgid "Sourcefabric Privacy Policy"
-#~ msgstr "Política de Privacidade Sourcefabric"
-
-#~ msgid "Smart Block Options"
-#~ msgstr "Opções de Bloco"
-
-#~ msgid "file meet the criteria"
-#~ msgstr "arquivo corresponde ao critério"
-
-#~ msgid "New"
-#~ msgstr "Novo"
-
-#~ msgid "New Playlist"
-#~ msgstr "Nova Lista"
-
-#~ msgid "New Smart Block"
-#~ msgstr "Novo Bloco"
-
-#~ msgid "New Webstream"
-#~ msgstr "Novo Fluxo Web"
-
-#~ msgid "View / edit description"
-#~ msgstr "Ver / editar descrição"
-
-#~ msgid "Global Settings"
-#~ msgstr "Configurações Globais"
-
-#~ msgid "Output Stream Settings"
-#~ msgstr "Configurações do Fluxo de Saída"
-
-#~ msgid "Listener Count Over Time"
-#~ msgstr "Número de ouvintes durante a exibição"
-
-#~ msgid "Begin by adding your files to the library using the 'Add Media' menu button. You can drag and drop your files to this window too."
-#~ msgstr "Comece adicionando seus arquivos à biblioteca usando o botão \"Adicionar Mídia\" . Você também pode arrastar e soltar os arquivos dentro da página."
-
-#~ msgid "Create a show by going to 'Calendar' in the menu bar, and then clicking the '+ Show' icon. This can be either a one-time or repeating show. Only admins and program managers can add shows."
-#~ msgstr "Crie um programa, através do 'Calendário' , clicando no ícone '+Programa'. Este pode ser um programa inédito ou retransmitido. Apenas administradores e gerentes de programação podem adicionar programas."
-
-#~ msgid "Add media to the show by going to your show in the Schedule calendar, left-clicking on it and selecting 'Add / Remove Content'"
-#~ msgstr "Adicione conteúdos ao seu programa, através do link Calendário, clique com o botão esquerdo do mouse sobre o programa e selecione \"Adicionar / Remover Conteúdo\""
-
-#~ msgid "Select your media from the left pane and drag them to your show in the right pane."
-#~ msgstr "Selecione seu conteúdo a partir da lista , no painel esquerdo, e arraste-o para o seu programa, no painel da direita."
-
-#~ msgid "Then you're good to go!"
-#~ msgstr "Você já está pronto para começar!"
-
-#~ msgid "Please enter your account e-mail address. You will receive a link to create a new password via e-mail."
-#~ msgstr "Digite seu endereço de email. Você receberá uma mensagem contendo um link para criar sua senha."
-
-#~ msgid "Email sent"
-#~ msgstr "Email enviado"
-
-#~ msgid "An email has been sent"
-#~ msgstr "Um email foi enviado"
-
-#~ msgid "Back to login screen"
-#~ msgstr "Voltar à tela de login"
-
-#~ msgid "Scheduled Play"
-#~ msgstr "Programação"
-
-#~ msgid "Station time"
-#~ msgstr "Hora Local"
-
-#~ msgid "Zend Framework Default Application"
-#~ msgstr "Aplicativo Padrão Zend Framework"
-
-#~ msgid "Empty smart block"
-#~ msgstr "Bloco vazio"
-
-#~ msgid "Empty playlist"
-#~ msgstr "Lista vazia"
-
-#~ msgid "No open smart block"
-#~ msgstr "Nenhum bloco aberto"
-
-#~ msgid "Record & Rebroadcast"
-#~ msgstr "Gravar & Retransmitir"
-
-#~ msgid "Failed to create 'organize' directory."
-#~ msgstr "Falha ao criar diretório 'organize'"
-
-#~ msgid "The file was not uploaded, there is %s MB of disk space left and the file you are uploading has a size of %s MB."
-#~ msgstr "O arquivo não foi transferido, há %s MB de espaço livre em disco e o arquivo que você está enviando tem um tamanho de %s MB."
-
-#~ msgid "This file appears to be corrupted and will not be added to media library."
-#~ msgstr "Este arquivo parece estar corrompido e não será adicionado à biblioteca de mídia."
-
-#~ msgid "The file was not uploaded, this error can occur if the computer hard drive does not have enough disk space or the stor directory does not have correct write permissions."
-#~ msgstr "O arquivo não foi transferido, esse erro pode ocorrer se o computador não tem espaço suficiente em disco ou o diretório stor não tem as permissões de gravação corretas."
-
-#~ msgid ""
-#~ "Hi %s, \n"
-#~ "\n"
-#~ "Click this link to reset your password: "
-#~ msgstr ""
-#~ "Olá %s, \n"
-#~ "\n"
-#~ "Clique neste link para redefinir sua senha: "
-
-#~ msgid "Show Content"
-#~ msgstr "Exibir Conteúdo"
-
-#~ msgid "Remove All Content"
-#~ msgstr "Remover Todo o Conteúdo"
-
-#~ msgid "Cancel Current Show"
-#~ msgstr "Cancelar Programa em Exibição"
-
-#~ msgid "Delete This Instance"
-#~ msgstr "Excluir esta Instância"
-
-#~ msgid "Delete This Instance and All Following"
-#~ msgstr "Excluir esta Instância e todas as seguintes"
-
-#~ msgid "Please selection an option"
-#~ msgstr "Por favor selecione uma opção"
-
-#~ msgid "No Records"
-#~ msgstr "Não há gravações"
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
+msgid "Enabled:"
+msgstr "Habilitado:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
+msgid "Mobile:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
+msgid "Stream Type:"
+msgstr "Tipo de Fluxo:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
+msgid "Service Type:"
+msgstr "Tipo de Serviço:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
+msgid "Channels:"
+msgstr "Canais:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "1 - Mono"
+msgstr "1 - Mono"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "2 - Stereo"
+msgstr "2 - Stéreo"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
+msgid "Server"
+msgstr "Servidor"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
+msgid "Port"
+msgstr "Porta"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
+msgid "Only numbers are allowed."
+msgstr "Somente números são permitidos."
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
+msgid "URL"
+msgstr "URL"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
+msgid "Mount Point"
+msgstr "Ponto de Montagem"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
+msgid "Admin User"
+msgstr "Usuário Administrador"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
+msgid "Admin Password"
+msgstr "Senha do Administrador"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
+msgid "Server cannot be empty."
+msgstr "Servidor não pode estar em branco."
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
+msgid "Port cannot be empty."
+msgstr "Porta não pode estar em branco."
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
+msgid "Mount cannot be empty with Icecast server."
+msgstr "Ponto de montagem deve ser informada em servidor Icecast."
+
+#: airtime_mvc/application/forms/AddShowWhen.php:16
+msgid "'%value%' does not fit the time format 'HH:mm'"
+msgstr "'%value%' não corresponde ao formato 'HH:mm'"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:22
+msgid "Start Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:37
+msgid "In the Future:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:64
+msgid "End Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:98
+msgid "Timezone:"
+msgstr "Fuso Horário:"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:107
+msgid "Repeats?"
+msgstr "Reexibir?"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:139
+msgid "Cannot create show in the past"
+msgstr "Não é possível criar um programa no passado."
+
+#: airtime_mvc/application/forms/AddShowWhen.php:147
+msgid "Cannot modify start date/time of the show that is already started"
+msgstr "Não é possível alterar o início de um programa que está em execução"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:156
+#: airtime_mvc/application/models/Show.php:282
+msgid "End date/time cannot be in the past"
+msgstr "Data e horário finais não podem ser definidos no passado."
+
+#: airtime_mvc/application/forms/AddShowWhen.php:164
+msgid "Cannot have duration < 0m"
+msgstr "Não pode ter duração < 0m"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:168
+msgid "Cannot have duration 00h 00m"
+msgstr "Não pode ter duração 00h 00m"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:175
+msgid "Cannot have duration greater than 24h"
+msgstr "Não pode ter duração maior que 24 horas"
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:19
+msgid "Push metadata to your station on TuneIn?"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:24
+msgid "Station ID:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:30
+msgid "Partner Key:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:36
+msgid "Partner Id:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:77
+#: airtime_mvc/application/forms/TuneInPreferences.php:86
+msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:10
+#, php-format
+msgid "Use %s Authentication:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:16
+msgid "Use Custom Authentication:"
+msgstr "Usar Autenticação Personalizada:"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:25
+msgid "Custom Username"
+msgstr "Definir Usuário:"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:37
+msgid "Custom Password"
+msgstr "Definir Senha:"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:48
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
+msgid "Host:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
+msgid "Port:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:60
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
+msgid "Mount:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:77
+msgid "Username field cannot be empty."
+msgstr "O usuário não pode estar em branco."
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:82
+msgid "Password field cannot be empty."
+msgstr "A senha não pode estar em branco."
+
+#: airtime_mvc/application/forms/AddShowStyle.php:12
+msgid "Background Colour:"
+msgstr "Cor de Fundo:"
+
+#: airtime_mvc/application/forms/AddShowStyle.php:31
+msgid "Text Colour:"
+msgstr "Cor da Fonte:"
+
+#: airtime_mvc/application/forms/AddShowStyle.php:49
+msgid "Current Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:72
+msgid "Show Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:87
+msgid "Logo Preview:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Login.php:102
+msgid "Type the characters you see in the picture below."
+msgstr "Digite os caracteres que você vê na imagem abaixo."
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
+msgid "Auto Switch Off:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
+msgid "Auto Switch On:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
+msgid "Switch Transition Fade (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:10
+msgid "Link:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:16
+msgid "Repeat Type:"
+msgstr "Tipo de Reexibição:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:19
+msgid "weekly"
+msgstr "semanal"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:20
+msgid "every 2 weeks"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:21
+msgid "every 3 weeks"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:22
+msgid "every 4 weeks"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:23
+msgid "monthly"
+msgstr "mensal"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:32
+msgid "Select Days:"
+msgstr "Selecione os Dias:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:47
+msgid "Repeat By:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the month"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the week"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:69
+msgid "No End?"
+msgstr "Sem fim?"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:106
+msgid "End date must be after start date"
+msgstr "A data de fim deve ser posterior à data de início"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:113
+msgid "Please select a repeat day"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:12
+msgid "Radio Page"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:19
+msgid "Calendar"
+msgstr "Calendário"
+
+#: airtime_mvc/application/configs/navigation.php:26
+msgid "Widgets"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:48
+msgid "Settings"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:67
+msgid "Users"
+msgstr "Usuários"
+
+#: airtime_mvc/application/configs/navigation.php:74
+msgid "Streams"
+msgstr "Fluxos"
+
+#: airtime_mvc/application/configs/navigation.php:82
+msgid "Analytics"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:90
+msgid "Listener Stats"
+msgstr "Estatísticas de Ouvintes"
+
+#: airtime_mvc/application/configs/navigation.php:104
+msgid "History Templates"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:113
+msgid "Billing"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:120
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:127
+msgid "Account Details"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:134
+msgid "View Invoices"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:150
+msgid "Getting Started"
+msgstr "Iniciando"
+
+#: airtime_mvc/application/configs/navigation.php:157
+msgid "FAQ"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:162
+msgid "User Manual"
+msgstr "Manual do Usuário"
+
+#: airtime_mvc/application/configs/navigation.php:167
+msgid "File a Support Ticket"
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:833
+#: airtime_mvc/application/models/Playlist.php:812
+msgid "Cue in and cue out are null."
+msgstr "Cue de entrada e saída são nulos."
+
+#: airtime_mvc/application/models/Block.php:868
+#: airtime_mvc/application/models/Block.php:924
+#: airtime_mvc/application/models/Playlist.php:851
+#: airtime_mvc/application/models/Playlist.php:895
+msgid "Can't set cue out to be greater than file length."
+msgstr "O ponto de saída não pode ser maior que a duração do arquivo"
+
+#: airtime_mvc/application/models/Block.php:879
+#: airtime_mvc/application/models/Block.php:900
+#: airtime_mvc/application/models/Playlist.php:843
+#: airtime_mvc/application/models/Playlist.php:868
+msgid "Can't set cue in to be larger than cue out."
+msgstr "A duração do ponto de entrada não pode ser maior que a do ponto de saída."
+
+#: airtime_mvc/application/models/Block.php:935
+#: airtime_mvc/application/models/Playlist.php:887
+msgid "Can't set cue out to be smaller than cue in."
+msgstr "A duração do ponto de saída não pode ser menor que a do ponto de entrada."
+
+#: airtime_mvc/application/models/Block.php:1366
+msgid "Upload Time"
+msgstr ""
+
+#: airtime_mvc/application/models/ShowBuilder.php:212
+#, php-format
+msgid "Rebroadcast of %s from %s"
+msgstr "Retransmissão de %s a partir de %s"
+
+#: airtime_mvc/application/models/Preference.php:460
+#, php-format
+msgid "Powered by %s"
+msgstr ""
+
+#: airtime_mvc/application/models/Preference.php:588
+msgid "Select Country"
+msgstr "Selecione o País"
+
+#: airtime_mvc/application/models/MusicDir.php:160
+#, php-format
+msgid "%s is already watched."
+msgstr "%s já está monitorado."
+
+#: airtime_mvc/application/models/MusicDir.php:164
+#, php-format
+msgid "%s contains nested watched directory: %s"
+msgstr "%s contém o diretório monitorado:% s"
+
+#: airtime_mvc/application/models/MusicDir.php:168
+#, php-format
+msgid "%s is nested within existing watched directory: %s"
+msgstr "%s está contido dentro de diretório já monitorado: %s"
+
+#: airtime_mvc/application/models/MusicDir.php:189
+#: airtime_mvc/application/models/MusicDir.php:370
+#, php-format
+msgid "%s is not a valid directory."
+msgstr "%s não é um diretório válido."
+
+#: airtime_mvc/application/models/MusicDir.php:232
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list"
+msgstr "%s já está definido como armazenamento atual ou está na lista de diretórios monitorados"
+
+#: airtime_mvc/application/models/MusicDir.php:388
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list."
+msgstr "%s já está definido como armazenamento atual ou está na lista de diretórios monitorados."
+
+#: airtime_mvc/application/models/MusicDir.php:431
+#, php-format
+msgid "%s doesn't exist in the watched list."
+msgstr "%s não existe na lista de diretórios monitorados."
+
+#: airtime_mvc/application/models/Auth.php:33
+#, php-format
+msgid ""
+"Hi %s, \n"
+"\n"
+"Please click this link to reset your password: "
+msgstr ""
+
+#: airtime_mvc/application/models/Auth.php:38
+#, php-format
+msgid "%s Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/models/Show.php:184
+msgid "Shows can have a max length of 24 hours."
+msgstr "Os programas podem ter duração máxima de 24 horas."
+
+#: airtime_mvc/application/models/Show.php:293
+msgid ""
+"Cannot schedule overlapping shows.\n"
+"Note: Resizing a repeating show affects all of its repeats."
+msgstr ""
+"Não é possível agendar programas sobrepostos.\n"
+"Nota: Redimensionar um programa repetitivo afeta todas as suas repetições."
+
+#: airtime_mvc/application/models/Scheduler.php:73
+msgid "Cannot move items out of linked shows"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:119
+msgid "The schedule you're viewing is out of date! (sched mismatch)"
+msgstr "A programação que você está vendo está desatualizada! (programação incompatível)"
+
+#: airtime_mvc/application/models/Scheduler.php:124
+msgid "The schedule you're viewing is out of date! (instance mismatch)"
+msgstr "A programação que você está vendo está desatualizada! (instância incompatível)"
+
+#: airtime_mvc/application/models/Scheduler.php:132
+#: airtime_mvc/application/models/Scheduler.php:458
+#: airtime_mvc/application/models/Scheduler.php:490
+msgid "The schedule you're viewing is out of date!"
+msgstr "A programação que você está vendo está desatualizada!"
+
+#: airtime_mvc/application/models/Scheduler.php:142
+#, php-format
+msgid "You are not allowed to schedule show %s."
+msgstr "Você não tem permissão para agendar programa %s."
+
+#: airtime_mvc/application/models/Scheduler.php:146
+msgid "You cannot add files to recording shows."
+msgstr "Você não pode adicionar arquivos para gravação de programas."
+
+#: airtime_mvc/application/models/Scheduler.php:152
+#, php-format
+msgid "The show %s is over and cannot be scheduled."
+msgstr "O programa %s terminou e não pode ser agendado."
+
+#: airtime_mvc/application/models/Scheduler.php:159
+#, php-format
+msgid "The show %s has been previously updated!"
+msgstr "O programa %s foi previamente atualizado!"
+
+#: airtime_mvc/application/models/Scheduler.php:178
+msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:195
+msgid "Cannot schedule a playlist that contains missing files."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:216
+#: airtime_mvc/application/models/Scheduler.php:305
+msgid "A selected File does not exist!"
+msgstr "Um dos arquivos selecionados não existe!"
+
+#: airtime_mvc/application/models/Schedule.php:206
+msgid "livestream"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:166
+msgid "Length needs to be greater than 0 minutes"
+msgstr "A duração precisa ser maior que 0 minuto"
+
+#: airtime_mvc/application/models/Webstream.php:171
+msgid "Length should be of form \"00h 00m\""
+msgstr "A duração deve ser informada no formato \"00h 00m\""
+
+#: airtime_mvc/application/models/Webstream.php:184
+msgid "URL should be of form \"http://domain\""
+msgstr "A URL deve estar no formato \"http://domain\""
+
+#: airtime_mvc/application/models/Webstream.php:187
+msgid "URL should be 512 characters or less"
+msgstr "A URL de conter no máximo 512 caracteres"
+
+#: airtime_mvc/application/models/Webstream.php:193
+msgid "No MIME type found for webstream."
+msgstr "Nenhum tipo MIME encontrado para o fluxo."
+
+#: airtime_mvc/application/models/Webstream.php:209
+msgid "Webstream name cannot be empty"
+msgstr "O nome do fluxo não pode estar vazio"
+
+#: airtime_mvc/application/models/Webstream.php:278
+msgid "Could not parse XSPF playlist"
+msgstr "Não foi possível analisar a lista XSPF"
+
+#: airtime_mvc/application/models/Webstream.php:298
+msgid "Could not parse PLS playlist"
+msgstr "Não foi possível analisar a lista PLS"
+
+#: airtime_mvc/application/models/Webstream.php:318
+msgid "Could not parse M3U playlist"
+msgstr "Não foi possível analisar a lista M3U"
+
+#: airtime_mvc/application/models/Webstream.php:332
+msgid "Invalid webstream - This appears to be a file download."
+msgstr "Fluxo web inválido. A URL parece tratar-se de download de arquivo."
+
+#: airtime_mvc/application/models/Webstream.php:336
+#, php-format
+msgid "Unrecognized stream type: %s"
+msgstr "Tipo de fluxo não reconhecido: %s"
+
+#: airtime_mvc/public/setup/rabbitmq-setup.php:78
+msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
+msgstr ""
+
+#~ msgid "My Account"
+#~ msgstr "Minha Conta"
diff --git a/airtime_mvc/locale/pt_BR/LC_MESSAGES/pro.po b/airtime_mvc/locale/pt_BR/LC_MESSAGES/pro.po
index 866ee0acb..f59b52c3d 100644
--- a/airtime_mvc/locale/pt_BR/LC_MESSAGES/pro.po
+++ b/airtime_mvc/locale/pt_BR/LC_MESSAGES/pro.po
@@ -1,3 +1,139 @@
+#: airtime_mvc/application/controllers/LoginController.php:170
+#, php-format
+msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
+#, php-format
+msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
+#, php-format
+msgid "If you are the primary owner of this station, please reset your password here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
+msgid "Thank you!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
+msgid "Your station has been upgraded successfully."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
+msgid "Return to Airtime"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+#, php-format
+msgid "Purchase an %s plan!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+msgid "My Account"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
+msgid "Upgrade today to get more listeners and storage space!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
+msgid "View Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:257
+msgid "Your Current Plan:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:291
+msgid "Please enter your payment details:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
+msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
+msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:17
+msgid "First Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:26
+msgid "Last Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:35
+msgid "Company Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:44
+msgid "Email Address:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:54
+msgid "Address 1:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:63
+msgid "Address 2:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:70
+msgid "City:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:80
+msgid "State/Region:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:89
+msgid "Zip Code / Postal Code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:102
+msgid "Country:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:112
+msgid "Phone Number:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:121
+msgid "Please choose a security question:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:135
+msgid "Please enter an answer:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:152
+msgid "VAT/Tax ID (EU only)"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:162
+msgid "Subscribe to Sourcefabric newsletter"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:172
+msgid "Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:181
+msgid "Verify Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:193
+msgid "Save"
+msgstr ""
+
#: airtime_mvc/application/models/Auth.php:35
#, php-format
msgid ""
@@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
-msgid "Thank you!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
-msgid "Your station has been upgraded successfully."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
-msgid "Return to Airtime"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
-#, php-format
-msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
-msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
-msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
-#, php-format
-msgid "If you are the primary owner of this station, please reset your password here."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:170
-#, php-format
-msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
-msgstr ""
diff --git a/airtime_mvc/locale/ro_RO/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/ro_RO/LC_MESSAGES/airtime.mo
index 0ac47c9af..986deb735 100644
Binary files a/airtime_mvc/locale/ro_RO/LC_MESSAGES/airtime.mo and b/airtime_mvc/locale/ro_RO/LC_MESSAGES/airtime.mo differ
diff --git a/airtime_mvc/locale/ro_RO/LC_MESSAGES/airtime.po b/airtime_mvc/locale/ro_RO/LC_MESSAGES/airtime.po
index 80e6045b2..dae11da7d 100644
--- a/airtime_mvc/locale/ro_RO/LC_MESSAGES/airtime.po
+++ b/airtime_mvc/locale/ro_RO/LC_MESSAGES/airtime.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Airtime\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-09-03 10:24-0400\n"
-"PO-Revision-Date: 2014-01-27 10:20+0000\n"
-"Last-Translator: FULL NAME \n"
+"POT-Creation-Date: 2015-09-04 11:17-0400\n"
+"PO-Revision-Date: 2015-09-04 08:15+0000\n"
+"Last-Translator: Daniel James \n"
"Language-Team: Romanian (Romania) (http://www.transifex.com/sourcefabric/airtime/language/ro_RO/)\n"
"Language: ro_RO\n"
"MIME-Version: 1.0\n"
@@ -17,132 +17,6 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
-#: airtime_mvc/public/setup/rabbitmq-setup.php:78
-msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1117
-#: airtime_mvc/application/services/HistoryService.php:1157
-#: airtime_mvc/application/services/HistoryService.php:1174
-#: airtime_mvc/application/models/Block.php:1375
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
-#: airtime_mvc/application/controllers/LocaleController.php:76
-msgid "Title"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1118
-#: airtime_mvc/application/services/HistoryService.php:1158
-#: airtime_mvc/application/services/HistoryService.php:1175
-#: airtime_mvc/application/models/Block.php:1360
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
-#: airtime_mvc/application/controllers/LocaleController.php:77
-msgid "Creator"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1119
-#: airtime_mvc/application/models/Block.php:1352
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
-#: airtime_mvc/application/controllers/LocaleController.php:78
-msgid "Album"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1120
-#: airtime_mvc/application/services/HistoryService.php:1177
-#: airtime_mvc/application/models/Block.php:1369
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
-#: airtime_mvc/application/controllers/LocaleController.php:91
-msgid "Length"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1121
-#: airtime_mvc/application/models/Block.php:1362
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
-#: airtime_mvc/application/controllers/LocaleController.php:85
-msgid "Genre"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1122
-#: airtime_mvc/application/models/Block.php:1371
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
-#: airtime_mvc/application/controllers/LocaleController.php:93
-msgid "Mood"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1123
-#: airtime_mvc/application/models/Block.php:1364
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
-#: airtime_mvc/application/controllers/LocaleController.php:87
-msgid "Label"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1124
-#: airtime_mvc/application/services/HistoryService.php:1178
-#: airtime_mvc/application/models/Block.php:1355
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
-#: airtime_mvc/application/controllers/LocaleController.php:81
-msgid "Composer"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1125
-#: airtime_mvc/application/models/Block.php:1363
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
-#: airtime_mvc/application/controllers/LocaleController.php:86
-msgid "ISRC"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1126
-#: airtime_mvc/application/services/HistoryService.php:1179
-#: airtime_mvc/application/models/Block.php:1357
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
-#: airtime_mvc/application/controllers/LocaleController.php:83
-msgid "Copyright"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1127
-#: airtime_mvc/application/models/Block.php:1379
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
-#: airtime_mvc/application/controllers/LocaleController.php:100
-msgid "Year"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1128
-msgid "Track"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1129
-#: airtime_mvc/application/models/Block.php:1356
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
-#: airtime_mvc/application/controllers/LocaleController.php:82
-msgid "Conductor"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1130
-#: airtime_mvc/application/models/Block.php:1365
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
-#: airtime_mvc/application/controllers/LocaleController.php:88
-msgid "Language"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1155
-#: airtime_mvc/application/forms/EditHistoryItem.php:32
-msgid "Start Time"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1156
-#: airtime_mvc/application/forms/EditHistoryItem.php:44
-msgid "End Time"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1176
-msgid "Played"
-msgstr ""
-
#: airtime_mvc/application/services/CalendarService.php:50
msgid "Record file doesn't exist"
msgstr ""
@@ -238,2601 +112,380 @@ msgstr ""
msgid "Must wait 1 hour to rebroadcast."
msgstr ""
-#: airtime_mvc/application/models/Schedule.php:206
-msgid "livestream"
+#: airtime_mvc/application/services/HistoryService.php:1117
+#: airtime_mvc/application/services/HistoryService.php:1157
+#: airtime_mvc/application/services/HistoryService.php:1174
+#: airtime_mvc/application/controllers/LocaleController.php:76
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
+#: airtime_mvc/application/models/Block.php:1375
+msgid "Title"
msgstr ""
-#: airtime_mvc/application/models/ShowBuilder.php:212
+#: airtime_mvc/application/services/HistoryService.php:1118
+#: airtime_mvc/application/services/HistoryService.php:1158
+#: airtime_mvc/application/services/HistoryService.php:1175
+#: airtime_mvc/application/controllers/LocaleController.php:77
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
+#: airtime_mvc/application/models/Block.php:1360
+msgid "Creator"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1119
+#: airtime_mvc/application/controllers/LocaleController.php:78
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
+#: airtime_mvc/application/models/Block.php:1352
+msgid "Album"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1120
+#: airtime_mvc/application/services/HistoryService.php:1177
+#: airtime_mvc/application/controllers/LocaleController.php:91
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
+#: airtime_mvc/application/models/Block.php:1369
+msgid "Length"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1121
+#: airtime_mvc/application/controllers/LocaleController.php:85
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
+#: airtime_mvc/application/models/Block.php:1362
+msgid "Genre"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1122
+#: airtime_mvc/application/controllers/LocaleController.php:93
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
+#: airtime_mvc/application/models/Block.php:1371
+msgid "Mood"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1123
+#: airtime_mvc/application/controllers/LocaleController.php:87
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
+#: airtime_mvc/application/models/Block.php:1364
+msgid "Label"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1124
+#: airtime_mvc/application/services/HistoryService.php:1178
+#: airtime_mvc/application/controllers/LocaleController.php:81
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
+#: airtime_mvc/application/models/Block.php:1355
+msgid "Composer"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1125
+#: airtime_mvc/application/controllers/LocaleController.php:86
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
+#: airtime_mvc/application/models/Block.php:1363
+msgid "ISRC"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1126
+#: airtime_mvc/application/services/HistoryService.php:1179
+#: airtime_mvc/application/controllers/LocaleController.php:83
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
+#: airtime_mvc/application/models/Block.php:1357
+msgid "Copyright"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1127
+#: airtime_mvc/application/controllers/LocaleController.php:100
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
+#: airtime_mvc/application/models/Block.php:1379
+msgid "Year"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1128
+msgid "Track"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1129
+#: airtime_mvc/application/controllers/LocaleController.php:82
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
+#: airtime_mvc/application/models/Block.php:1356
+msgid "Conductor"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1130
+#: airtime_mvc/application/controllers/LocaleController.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
+#: airtime_mvc/application/models/Block.php:1365
+msgid "Language"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1155
+#: airtime_mvc/application/forms/EditHistoryItem.php:32
+msgid "Start Time"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1156
+#: airtime_mvc/application/forms/EditHistoryItem.php:44
+msgid "End Time"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1176
+msgid "Played"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:31
+#: airtime_mvc/application/controllers/PlaylistController.php:147
#, php-format
-msgid "Rebroadcast of %s from %s"
+msgid "%s not found"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:166
-msgid "Length needs to be greater than 0 minutes"
+#: airtime_mvc/application/controllers/LibraryController.php:40
+#: airtime_mvc/application/controllers/PlaylistController.php:168
+msgid "Something went wrong."
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:171
-msgid "Length should be of form \"00h 00m\""
+#: airtime_mvc/application/controllers/LibraryController.php:95
+#: airtime_mvc/application/controllers/ShowbuilderController.php:136
+msgid "Preview"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:184
-msgid "URL should be of form \"http://domain\""
+#: airtime_mvc/application/controllers/LibraryController.php:115
+#: airtime_mvc/application/controllers/LibraryController.php:177
+#: airtime_mvc/application/controllers/LibraryController.php:200
+msgid "Add to Playlist"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:187
-msgid "URL should be 512 characters or less"
+#: airtime_mvc/application/controllers/LibraryController.php:117
+msgid "Add to Smart Block"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:193
-msgid "No MIME type found for webstream."
+#: airtime_mvc/application/controllers/LibraryController.php:123
+#: airtime_mvc/application/controllers/LocaleController.php:66
+msgid "Edit Metadata"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:209
-msgid "Webstream name cannot be empty"
+#: airtime_mvc/application/controllers/LibraryController.php:131
+#: airtime_mvc/application/controllers/ScheduleController.php:712
+msgid "Download"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:278
-msgid "Could not parse XSPF playlist"
+#: airtime_mvc/application/controllers/LibraryController.php:147
+msgid "View track"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:298
-msgid "Could not parse PLS playlist"
+#: airtime_mvc/application/controllers/LibraryController.php:148
+msgid "Remove track"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:318
-msgid "Could not parse M3U playlist"
+#: airtime_mvc/application/controllers/LibraryController.php:154
+#: airtime_mvc/application/controllers/LibraryController.php:159
+msgid "Upload track"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:332
-msgid "Invalid webstream - This appears to be a file download."
+#: airtime_mvc/application/controllers/LibraryController.php:169
+msgid "Duplicate Playlist"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:336
+#: airtime_mvc/application/controllers/LibraryController.php:213
+msgid "No action available"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:233
+msgid "You don't have permission to delete selected items."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:279
+msgid "Could not delete file because it is scheduled in the future."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:282
+msgid "Could not delete file(s)."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:322
#, php-format
-msgid "Unrecognized stream type: %s"
+msgid "Copy of %s"
msgstr ""
-#: airtime_mvc/application/models/Preference.php:460
-#, php-format
-msgid "Powered by %s"
+#: airtime_mvc/application/controllers/WebstreamController.php:28
+#: airtime_mvc/application/controllers/WebstreamController.php:32
+msgid "Untitled Webstream"
msgstr ""
-#: airtime_mvc/application/models/Preference.php:588
-msgid "Select Country"
+#: airtime_mvc/application/controllers/WebstreamController.php:150
+msgid "Webstream saved."
msgstr ""
-#: airtime_mvc/application/models/MusicDir.php:160
-#, php-format
-msgid "%s is already watched."
+#: airtime_mvc/application/controllers/WebstreamController.php:158
+msgid "Invalid form values."
msgstr ""
-#: airtime_mvc/application/models/MusicDir.php:164
-#, php-format
-msgid "%s contains nested watched directory: %s"
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:168
-#, php-format
-msgid "%s is nested within existing watched directory: %s"
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:189
-#: airtime_mvc/application/models/MusicDir.php:370
-#, php-format
-msgid "%s is not a valid directory."
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:232
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list"
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:388
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list."
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:431
-#, php-format
-msgid "%s doesn't exist in the watched list."
-msgstr ""
-
-#: airtime_mvc/application/models/Show.php:184
-msgid "Shows can have a max length of 24 hours."
-msgstr ""
-
-#: airtime_mvc/application/models/Show.php:282
-#: airtime_mvc/application/forms/AddShowWhen.php:156
-msgid "End date/time cannot be in the past"
-msgstr ""
-
-#: airtime_mvc/application/models/Show.php:293
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
msgid ""
-"Cannot schedule overlapping shows.\n"
-"Note: Resizing a repeating show affects all of its repeats."
+"To configure and use the embeddable player you must:
\n"
+" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
+" 2. Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/models/Auth.php:33
-#, php-format
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
msgid ""
-"Hi %s, \n"
-"\n"
-"Please click this link to reset your password: "
+"To use the embeddable weekly schedule widget you must:
\n"
+" Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/models/Auth.php:38
+#: airtime_mvc/application/controllers/ListenerstatController.php:51
+msgid "Please make sure admin user/password is correct on System->Streams page."
+msgstr ""
+
+#: airtime_mvc/application/controllers/UserController.php:86
+msgid "User added successfully!"
+msgstr ""
+
+#: airtime_mvc/application/controllers/UserController.php:88
+msgid "User updated successfully!"
+msgstr ""
+
+#: airtime_mvc/application/controllers/UserController.php:187
+msgid "Settings updated successfully!"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PlaylistController.php:53
#, php-format
-msgid "%s Password Reset"
+msgid "You are viewing an older version of %s"
msgstr ""
-#: airtime_mvc/application/models/Block.php:333
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
-msgid "items"
+#: airtime_mvc/application/controllers/PlaylistController.php:140
+msgid "You cannot add tracks to dynamic blocks."
msgstr ""
-#: airtime_mvc/application/models/Block.php:833
-#: airtime_mvc/application/models/Playlist.php:812
-msgid "Cue in and cue out are null."
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:868
-#: airtime_mvc/application/models/Block.php:924
-#: airtime_mvc/application/models/Playlist.php:851
-#: airtime_mvc/application/models/Playlist.php:895
-msgid "Can't set cue out to be greater than file length."
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:879
-#: airtime_mvc/application/models/Block.php:900
-#: airtime_mvc/application/models/Playlist.php:843
-#: airtime_mvc/application/models/Playlist.php:868
-msgid "Can't set cue in to be larger than cue out."
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:935
-#: airtime_mvc/application/models/Playlist.php:887
-msgid "Can't set cue out to be smaller than cue in."
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1351
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
-msgid "Select criteria"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1353
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
-msgid "Bit Rate (Kbps)"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1354
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
-#: airtime_mvc/application/controllers/LocaleController.php:80
-msgid "BPM"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1358
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
-#: airtime_mvc/application/controllers/LocaleController.php:281
-#: airtime_mvc/application/layouts/scripts/layout.phtml:140
-msgid "Cue In"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1359
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:282
-#: airtime_mvc/application/layouts/scripts/layout.phtml:147
-msgid "Cue Out"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1361
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
-#: airtime_mvc/application/controllers/LocaleController.php:84
-msgid "Encoded By"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1366
-msgid "Upload Time"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1367
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
-#: airtime_mvc/application/controllers/LocaleController.php:89
-msgid "Last Modified"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1368
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
-#: airtime_mvc/application/controllers/LocaleController.php:90
-msgid "Last Played"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1370
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
-#: airtime_mvc/application/controllers/LocaleController.php:92
-msgid "Mime"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1372
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
-#: airtime_mvc/application/controllers/LocaleController.php:94
-msgid "Owner"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1373
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
-#: airtime_mvc/application/controllers/LocaleController.php:95
-msgid "Replay Gain"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1374
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
-msgid "Sample Rate (kHz)"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1376
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
-#: airtime_mvc/application/controllers/LocaleController.php:97
-msgid "Track Number"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1377
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
-#: airtime_mvc/application/controllers/LocaleController.php:98
-msgid "Uploaded"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1378
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
-#: airtime_mvc/application/controllers/LocaleController.php:99
-msgid "Website"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1383
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
-#: airtime_mvc/application/controllers/LocaleController.php:151
-msgid "Select modifier"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1384
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
-#: airtime_mvc/application/controllers/LocaleController.php:152
-msgid "contains"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1385
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
-#: airtime_mvc/application/controllers/LocaleController.php:153
-msgid "does not contain"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1386
-#: airtime_mvc/application/models/Block.php:1390
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
-#: airtime_mvc/application/controllers/LocaleController.php:154
-msgid "is"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1387
-#: airtime_mvc/application/models/Block.php:1391
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
-#: airtime_mvc/application/controllers/LocaleController.php:155
-msgid "is not"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1388
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
-#: airtime_mvc/application/controllers/LocaleController.php:156
-msgid "starts with"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1389
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
-#: airtime_mvc/application/controllers/LocaleController.php:157
-msgid "ends with"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
-#: airtime_mvc/application/controllers/LocaleController.php:158
-msgid "is greater than"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1393
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
-#: airtime_mvc/application/controllers/LocaleController.php:159
-msgid "is less than"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1394
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
-#: airtime_mvc/application/controllers/LocaleController.php:160
-msgid "is in the range"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:73
-msgid "Cannot move items out of linked shows"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:119
-msgid "The schedule you're viewing is out of date! (sched mismatch)"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:124
-msgid "The schedule you're viewing is out of date! (instance mismatch)"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:132
-#: airtime_mvc/application/models/Scheduler.php:458
-#: airtime_mvc/application/models/Scheduler.php:490
-msgid "The schedule you're viewing is out of date!"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:142
+#: airtime_mvc/application/controllers/PlaylistController.php:161
#, php-format
-msgid "You are not allowed to schedule show %s."
+msgid "You don't have permission to delete selected %s(s)."
msgstr ""
-#: airtime_mvc/application/models/Scheduler.php:146
-msgid "You cannot add files to recording shows."
+#: airtime_mvc/application/controllers/PlaylistController.php:174
+msgid "You can only add tracks to smart block."
msgstr ""
-#: airtime_mvc/application/models/Scheduler.php:152
+#: airtime_mvc/application/controllers/PlaylistController.php:180
+#: airtime_mvc/application/controllers/LocaleController.php:50
+msgid "You can only add tracks, smart blocks, and webstreams to playlists."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PlaylistController.php:192
+msgid "Untitled Playlist"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PlaylistController.php:194
+msgid "Untitled Smart Block"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PlaylistController.php:522
+msgid "Unknown Playlist"
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:78
+msgid "Page not found."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:87
+msgid "The requested action is not supported."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:98
+msgid "You do not have permission to access this resource."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:109
+msgid "An internal application error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/controllers/Apiv2Controller.php:77
+#: airtime_mvc/application/controllers/ApiController.php:79
+msgid "You are not allowed to access this resource."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:72
+msgid "Preferences updated."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:115
+msgid "Support setting updated."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:123
+msgid "Support Feedback"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:251
+msgid "Stream Setting Updated."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:342
+msgid "path should be specified"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:437
+msgid "Problem with Liquidsoap..."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:493
+msgid "Request method not accepted"
+msgstr ""
+
+#: airtime_mvc/application/controllers/DashboardController.php:35
+#: airtime_mvc/application/controllers/DashboardController.php:84
+msgid "You don't have permission to disconnect source."
+msgstr ""
+
+#: airtime_mvc/application/controllers/DashboardController.php:37
+#: airtime_mvc/application/controllers/DashboardController.php:86
+msgid "There is no source connected to this input."
+msgstr ""
+
+#: airtime_mvc/application/controllers/DashboardController.php:81
+msgid "You don't have permission to switch source."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:43
+msgid "Please enter your username and password."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:93
+msgid "Wrong username or password provided. Please try again."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:167
+msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:173
+msgid "There was a problem with the username or email address you entered."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ApiController.php:244
+#: airtime_mvc/application/controllers/ApiController.php:317
+#: airtime_mvc/application/controllers/ApiController.php:392
+#: airtime_mvc/application/controllers/ApiController.php:435
+#: airtime_mvc/application/controllers/ApiController.php:474
+#: airtime_mvc/application/controllers/ApiController.php:507
+msgid "You are not allowed to access this resource. "
+msgstr ""
+
+#: airtime_mvc/application/controllers/ApiController.php:698
+#: airtime_mvc/application/controllers/ApiController.php:718
+#: airtime_mvc/application/controllers/ApiController.php:730
#, php-format
-msgid "The show %s is over and cannot be scheduled."
+msgid "File does not exist in %s"
msgstr ""
-#: airtime_mvc/application/models/Scheduler.php:159
-#, php-format
-msgid "The show %s has been previously updated!"
+#: airtime_mvc/application/controllers/ApiController.php:781
+msgid "Bad request. no 'mode' parameter passed."
msgstr ""
-#: airtime_mvc/application/models/Scheduler.php:178
-msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:195
-msgid "Cannot schedule a playlist that contains missing files."
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:216
-#: airtime_mvc/application/models/Scheduler.php:305
-msgid "A selected File does not exist!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
-#: airtime_mvc/application/configs/navigation.php:40
-msgid "Weekly Schedule"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
-#: airtime_mvc/application/forms/Player.php:77
-msgid "Preview:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
-#: airtime_mvc/application/configs/navigation.php:34
-msgid "Player"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
-#: airtime_mvc/application/controllers/LocaleController.php:362
-#: airtime_mvc/application/controllers/LocaleController.php:390
-msgid "Close"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Add this show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Update show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
-msgid "What"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
-msgid "When"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
-msgid "Live Stream Input"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
-msgid "Who"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
-msgid "Style"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
-#: airtime_mvc/application/controllers/LocaleController.php:273
-msgid "Start"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
-msgid "Password Reset"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
-msgid "Email Sent!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
-msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
-msgid "Back"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
-msgid "New password"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
-msgid "Please enter and confirm your new password in the fields below."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:3
-#: airtime_mvc/application/forms/Login.php:83
-msgid "Login"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:7
-#, php-format
-msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:97
-msgid "Playout History"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
-msgid "Log Sheet"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
-msgid "File Summary"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
-msgid "Show Summary"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
-msgid "Your trial expires in"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
-msgid "days"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-#, php-format
-msgid "Purchase an %s Pro plan!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-msgid "My Account"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
-msgid "Previous:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
-msgid "Next:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
-msgid "Source Streams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
-msgid "Master Source"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
-msgid "Show Source"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
-msgid "ON AIR"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
-msgid "Listen"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
-msgid "Logout"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
-msgid "Drop files here or click to browse your computer."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
-#: airtime_mvc/application/controllers/LocaleController.php:314
-msgid "in use"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
-#: airtime_mvc/application/controllers/LocaleController.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:401
-msgid "All"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
-msgid "Failed"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
-msgid "Pending"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
-msgid "Recent Uploads"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
-#: airtime_mvc/application/configs/navigation.php:120
-msgid "Account Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
-msgid "Upgrade today to get more listeners and storage space!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
-msgid "View Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
-msgid "About"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
-#, php-format
-msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
-#, php-format
-msgid "%1$s %2$s is distributed under the %3$s"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
-#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
-msgid "Live stream"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
-msgid "Share"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
-msgid "Select stream:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
-msgid "mute"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
-msgid "unmute"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
-#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
-#, php-format
-msgid "Welcome to %s!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
-#, php-format
-msgid "Here's how you can get started using %s to automate your broadcasts: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
-msgid "Upload audio tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
-msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
-msgid "Schedule a show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
-msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
-msgid "Add tracks to your show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
-msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
-msgid "Now you're good to go!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
-#, php-format
-msgid "For more detailed help, read the %suser manual%s."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
-msgid "Listeners"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
-msgid "Stream Data Collection Status"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
-#: airtime_mvc/application/views/scripts/error/error.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
-msgid "An error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
-msgid "Access Denied!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
-msgid "You do not have permission to access this page!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
-#: airtime_mvc/application/views/scripts/error/error.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
-#: airtime_mvc/application/configs/navigation.php:143
-msgid "Help"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
-msgid "Page not found!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
-msgid "We couldn't find the page you were looking for."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error.phtml:12
-msgid "Looks like the page you were looking for doesn't exist!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
-msgid "Oops!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
-msgid "Something went wrong!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
-msgid "Bad Request!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
-msgid "The requested action is not supported!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
-msgid "Viewing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
-msgid "Editing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:3
-msgid "File import in progress..."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:10
-#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
-msgid "Advanced Search Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
-#: airtime_mvc/application/forms/Player.php:15
-#: airtime_mvc/application/forms/EditAudioMD.php:24
-msgid "Title:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
-#: airtime_mvc/application/forms/EditAudioMD.php:34
-msgid "Creator:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
-#: airtime_mvc/application/forms/EditAudioMD.php:44
-msgid "Album:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
-msgid "Track:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
-msgid "Length:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
-msgid "Sample Rate:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
-msgid "Bit Rate:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
-#: airtime_mvc/application/forms/EditAudioMD.php:115
-msgid "Mood:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
-#: airtime_mvc/application/forms/EditAudioMD.php:62
-#: airtime_mvc/application/forms/AddShowWhat.php:45
-msgid "Genre:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
-#: airtime_mvc/application/forms/EditAudioMD.php:72
-msgid "Year:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
-#: airtime_mvc/application/forms/EditAudioMD.php:85
-msgid "Label:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
-#: airtime_mvc/application/forms/EditAudioMD.php:125
-msgid "BPM:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
-#: airtime_mvc/application/forms/EditAudioMD.php:95
-msgid "Composer:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
-#: airtime_mvc/application/forms/EditAudioMD.php:105
-msgid "Conductor:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
-#: airtime_mvc/application/forms/EditAudioMD.php:135
-msgid "Copyright:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
-msgid "Isrc Number:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
-#: airtime_mvc/application/forms/EditAudioMD.php:155
-msgid "Website:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
-#: airtime_mvc/application/forms/EditUser.php:119
-#: airtime_mvc/application/forms/EditAudioMD.php:165
-#: airtime_mvc/application/forms/Login.php:68
-msgid "Language:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
-msgid "File Path:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
-#: airtime_mvc/application/forms/AddShowWhat.php:26
-msgid "Name:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
-#: airtime_mvc/application/forms/AddShowWhat.php:54
-msgid "Description:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
-msgid "Web Stream"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
-msgid "Dynamic Smart Block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
-msgid "Static Smart Block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
-msgid "Audio Track"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
-msgid "Playlist Contents: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
-msgid "Static Smart Block Contents: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
-msgid "Dynamic Smart Block Criteria: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
-msgid "Limit to "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
-#: airtime_mvc/application/forms/AddShowWhat.php:36
-msgid "URL:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/login.phtml:41
-msgid "Forgot your password?"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
-#, php-format
-msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
-#, php-format
-msgid "Click the box below to promote your station on %s."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
-msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
-msgid "(Required)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
-msgid "(for verification purposes only, will not be published)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
-msgid "Choose folder"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
-msgid "Set"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
-msgid "Current Import Folder:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
-msgid "Add"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
-#, php-format
-msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
-msgid "Remove watched directory"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
-msgid "You are not watching any media folders."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
-msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
-msgid "Live Broadcasting"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
-msgid "Use these settings in your broadcasting software to stream live at any time."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
-msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
-msgid "Choose Show Instance"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
-#: airtime_mvc/application/forms/EditHistoryItem.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:400
-msgid "No Show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
-msgid "Find"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
-msgid "Choose Days:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
-#: airtime_mvc/application/forms/AddShowStyle.php:64
-#: airtime_mvc/application/forms/GeneralPreferences.php:53
-msgid "Remove"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
-msgid "Stream "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
-msgid "Additional Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
-msgid "The following info will be displayed to listeners in their media player:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
-msgid "(Your radio station website)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
-msgid "Stream URL: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
-msgid "Find Shows"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
-msgid "TuneIn Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
-msgid "SoundCloud Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
-msgid "Dangerous Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
-msgid "Search Criteria:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
-msgid "New Criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
-msgid "or"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
-msgid "and"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
-msgid "New Modifier"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
-msgid " to "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
-msgid "files meet the criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
-msgid "file meets the criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
-msgid "Filter History"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
-#: airtime_mvc/application/configs/navigation.php:61
-msgid "My Profile"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
-#, php-format
-msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
-#: airtime_mvc/application/forms/Preferences.php:40
-#: airtime_mvc/application/forms/PasswordChange.php:43
-#: airtime_mvc/application/forms/AddUser.php:110
-#: airtime_mvc/application/forms/BillingClient.php:193
-#: airtime_mvc/application/forms/SupportSettings.php:131
-#: airtime_mvc/application/forms/EditHistory.php:131
-#: airtime_mvc/application/controllers/LocaleController.php:294
-msgid "Save"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
-msgid "Repeat Days:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
-msgid "Register Airtime"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
-#: airtime_mvc/application/forms/GeneralPreferences.php:43
-msgid "Note: Anything larger than 600x600 will be resized."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
-msgid "Show me what I am sending "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
-msgid "Terms and Conditions"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
-msgid "Creating File Summary Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
-msgid "Creating Log Sheet Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
-msgid "Name"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
-msgid "Add more elements"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
-msgid "Add New Field"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
-msgid "Set Default Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
-msgid "Playout History Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
-msgid "Log Sheet Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
-msgid "New Log Sheet Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
-msgid "No Log Sheet Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
-#: airtime_mvc/application/controllers/LocaleController.php:397
-msgid "Set Default"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
-msgid "File Summary Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
-msgid "New File Summary Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
-msgid "No File Summary Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
-msgid "Disk Space"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
-#: airtime_mvc/application/controllers/LocaleController.php:315
-msgid "Disk"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
-#: airtime_mvc/application/forms/AddShowWhen.php:89
-msgid "Duration:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
-msgid "Toggle Details"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
-msgid "Playlist crossfade"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-msgid "Remove all content from this smart block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Clear"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "Fade in: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "(ss.t)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-msgid "Fade out: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
-#: airtime_mvc/application/forms/EditAudioMD.php:186
-#: airtime_mvc/application/forms/EditHistory.php:141
-#: airtime_mvc/application/controllers/LocaleController.php:295
-#: airtime_mvc/application/controllers/LocaleController.php:318
-msgid "Cancel"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
-msgid "No smart block currently open"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
-msgid "Show Waveform"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-msgid "Cue In: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "(hh:mm:ss.t)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "Cue Out: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
-msgid "Original Length:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
-msgid "Expand Static Block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
-msgid "Expand Dynamic Block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
-msgid "Choose some search criteria above and click Generate to create this playlist."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
-msgid "A track list will be generated when you schedule this smart block into a show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
-msgid "Drag tracks here from your library to add them to the playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-msgid "Shuffle playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
-msgid "Shuffle"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Empty playlist content"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-msgid "Save playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
-msgid "No open playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
-msgid "previous"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
-msgid "play"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
-msgid "pause"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
-msgid "next"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
-msgid "stop"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
-msgid "max volume"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
-msgid "Update Required"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
-#, php-format
-msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
-msgid "Stream Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
-msgid "Global"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
-msgid "dB"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
-msgid "Output Streams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
-#: airtime_mvc/application/controllers/LocaleController.php:166
-msgid "Manage Media Folders"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:56
-msgid "General"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
-msgid "Description"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
-msgid "Stream URL:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
-msgid "Default Length:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
-msgid "No webstream"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
-msgid "Manage Users"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
-msgid "New User"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
-msgid "id"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
-#: airtime_mvc/application/forms/PasswordRestore.php:25
-msgid "Username"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
-msgid "First Name"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
-msgid "Last Name"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
-msgid "User Type"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
-#, php-format
-msgid "Super Admin details can be changed in your Billing Settings."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
-#: airtime_mvc/application/controllers/LocaleController.php:74
-#: airtime_mvc/application/layouts/scripts/layout.phtml:78
-msgid "Tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
-#: airtime_mvc/application/controllers/LocaleController.php:104
-#: airtime_mvc/application/layouts/scripts/layout.phtml:80
-msgid "Playlists"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
-#: airtime_mvc/application/controllers/LocaleController.php:105
-#: airtime_mvc/application/layouts/scripts/layout.phtml:82
-msgid "Smart Blocks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
-#: airtime_mvc/application/layouts/scripts/layout.phtml:84
-msgid "Webstreams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
-#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
-#: airtime_mvc/application/layouts/scripts/layout.phtml:76
-msgid "Dashboard"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:12
-msgid "Radio Page"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:19
-msgid "Calendar"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:26
-msgid "Widgets"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:48
-msgid "Settings"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:67
-msgid "Users"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:74
-msgid "Streams"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:82
-msgid "Analytics"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:90
-msgid "Listener Stats"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:104
-msgid "History Templates"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:113
-msgid "Billing"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:127
-msgid "Account Details"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:134
-msgid "View Invoices"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:150
-msgid "Getting Started"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:157
-msgid "FAQ"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:162
-msgid "User Manual"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:167
-msgid "File a Support Ticket"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:12
-msgid "Background Colour:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:31
-msgid "Text Colour:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:49
-msgid "Current Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:72
-msgid "Show Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:87
-msgid "Logo Preview:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:19
-msgid "Push metadata to your station on TuneIn?"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:24
-msgid "Station ID:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:30
-msgid "Partner Key:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:36
-msgid "Partner Id:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:77
-#: airtime_mvc/application/forms/TuneInPreferences.php:86
-msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:14
-msgid "Now Playing"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:25
-msgid "Select Stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:28
-msgid "Auto detect the most appropriate stream to use."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:29
-msgid "Select a stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:41
-msgid " - Mobile friendly"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:45
-msgid " - The player does not support Opus streams."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:71
-msgid "Embeddable code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:72
-msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:37
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
-#: airtime_mvc/application/forms/Login.php:41
-#: airtime_mvc/application/forms/AddUser.php:29
-msgid "Username:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:48
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
-#: airtime_mvc/application/forms/Login.php:54
-#: airtime_mvc/application/forms/AddUser.php:38
-#: airtime_mvc/application/forms/BillingClient.php:172
-msgid "Password:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:57
-#: airtime_mvc/application/forms/AddUser.php:46
-#: airtime_mvc/application/forms/BillingClient.php:181
-msgid "Verify Password:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:67
-#: airtime_mvc/application/forms/AddUser.php:55
-msgid "Firstname:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:75
-#: airtime_mvc/application/forms/AddUser.php:61
-msgid "Lastname:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:83
-#: airtime_mvc/application/forms/RegisterAirtime.php:51
-#: airtime_mvc/application/forms/AddUser.php:67
-#: airtime_mvc/application/forms/SupportSettings.php:43
-msgid "Email:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:94
-#: airtime_mvc/application/forms/AddUser.php:76
-msgid "Mobile Phone:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:102
-#: airtime_mvc/application/forms/AddUser.php:82
-msgid "Skype:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:110
-#: airtime_mvc/application/forms/AddUser.php:88
-msgid "Jabber:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:129
-msgid "Interface Timezone:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:155
-#: airtime_mvc/application/forms/AddUser.php:120
-msgid "Login name is not unique."
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRR.php:10
-msgid "Record from Line In?"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRR.php:16
-msgid "Rebroadcast?"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:16
-msgid "'%value%' does not fit the time format 'HH:mm'"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:22
-msgid "Start Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:37
-msgid "In the Future:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:64
-msgid "End Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:98
-msgid "Timezone:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:107
-msgid "Repeats?"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:139
-msgid "Cannot create show in the past"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:147
-msgid "Cannot modify start date/time of the show that is already started"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:164
-msgid "Cannot have duration < 0m"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:168
-msgid "Cannot have duration 00h 00m"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:175
-msgid "Cannot have duration greater than 24h"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWho.php:10
-msgid "Search Users:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWho.php:24
-msgid "DJs:"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordChange.php:17
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
-msgid "Password"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordChange.php:28
-msgid "Confirm new password"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordChange.php:36
-msgid "Password confirmation does not match your password."
-msgstr ""
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
-msgid "Station Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
-#: airtime_mvc/application/forms/GeneralPreferences.php:127
-msgid "Station Timezone"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
-msgid "Auto Switch Off:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
-msgid "Auto Switch On:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
-msgid "Switch Transition Fade (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
-#: airtime_mvc/application/forms/GeneralPreferences.php:68
-#: airtime_mvc/application/forms/GeneralPreferences.php:82
-#: airtime_mvc/application/forms/GeneralPreferences.php:96
-msgid "Please enter a time in seconds (eg. 0.5)"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
-#: airtime_mvc/application/forms/AddShowLiveStream.php:48
-msgid "Host:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
-#: airtime_mvc/application/forms/AddShowLiveStream.php:54
-msgid "Port:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
-#: airtime_mvc/application/forms/AddShowLiveStream.php:60
-msgid "Mount:"
-msgstr ""
-
-#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
-msgid "Value is required and can't be empty"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:25
-#: airtime_mvc/application/forms/RegisterAirtime.php:30
-#: airtime_mvc/application/forms/SupportSettings.php:18
-msgid "Station Name"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:33
-msgid "Station Description"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:42
-#: airtime_mvc/application/forms/RegisterAirtime.php:106
-msgid "Station Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:62
-msgid "Default Crossfade Duration (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:76
-msgid "Default Fade In (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:90
-msgid "Default Fade Out (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:102
-msgid "Public Airtime API"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:103
-msgid "Required for embeddable schedule widget."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:105
-msgid "Disabled"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:106
-msgid "Enabled"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:109
-msgid ""
-"Enabling this feature will allow Airtime to provide schedule data\n"
-" to external widgets that can be embedded in your website."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:120
-msgid "Default Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:134
-msgid "Week Starts On"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:150
-msgid "Display login button on your Radio Page?"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:158
-#: airtime_mvc/application/controllers/LocaleController.php:249
-msgid "Sunday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:159
-#: airtime_mvc/application/controllers/LocaleController.php:250
-msgid "Monday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:160
-#: airtime_mvc/application/controllers/LocaleController.php:251
-msgid "Tuesday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:161
-#: airtime_mvc/application/controllers/LocaleController.php:252
-msgid "Wednesday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:162
-#: airtime_mvc/application/controllers/LocaleController.php:253
-msgid "Thursday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:163
-#: airtime_mvc/application/controllers/LocaleController.php:254
-msgid "Friday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:164
-#: airtime_mvc/application/controllers/LocaleController.php:255
-msgid "Saturday"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
-msgid "Default License:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
-msgid "All rights are reserved"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
-msgid "The work is in the public domain"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
-msgid "Creative Commons Attribution"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
-msgid "Creative Commons Attribution Noncommercial"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
-msgid "Creative Commons Attribution No Derivative Works"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
-msgid "Creative Commons Attribution Share Alike"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
-msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
-msgid "Creative Commons Attribution Noncommercial Share Alike"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
-msgid "Default Sharing Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
-msgid "Public"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
-msgid "Private"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:18
-#: airtime_mvc/application/forms/DateRange.php:16
-msgid "Date Start:"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:37
-#: airtime_mvc/application/forms/ShowBuilder.php:65
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
-#: airtime_mvc/application/forms/DateRange.php:35
-#: airtime_mvc/application/forms/DateRange.php:63
-msgid "Invalid character entered"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:46
-#: airtime_mvc/application/forms/AddShowRepeats.php:56
-#: airtime_mvc/application/forms/DateRange.php:44
-msgid "Date End:"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:72
-#: airtime_mvc/application/forms/ShowBuilder.php:88
-msgid "Filter by Show"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:80
-msgid "All My Shows:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditAudioMD.php:145
-msgid "ISRC Number:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditAudioMD.php:176
-msgid "OK"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
-msgid "Day must be specified"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
-msgid "Time must be specified"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
-msgid "Must wait at least 1 hour to rebroadcast"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhat.php:30
-msgid "Untitled Show"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhat.php:69
-msgid "Instance Description:"
-msgstr ""
-
-#: airtime_mvc/application/forms/DangerousPreferences.php:12
-msgid "Delete All Tracks in Library"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:39
-#: airtime_mvc/application/forms/SupportSettings.php:31
-msgid "Phone:"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:62
-#: airtime_mvc/application/forms/SupportSettings.php:54
-msgid "Station Web Site:"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:73
-#: airtime_mvc/application/forms/BillingClient.php:102
-#: airtime_mvc/application/forms/SupportSettings.php:65
-msgid "Country:"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:84
-#: airtime_mvc/application/forms/BillingClient.php:70
-#: airtime_mvc/application/forms/SupportSettings.php:76
-msgid "City:"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:96
-#: airtime_mvc/application/forms/SupportSettings.php:88
-msgid "Station Description:"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:116
-#: airtime_mvc/application/forms/SupportSettings.php:98
-#: airtime_mvc/application/controllers/LocaleController.php:341
-msgid "Send support feedback"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:126
-#: airtime_mvc/application/forms/SupportSettings.php:108
-#, php-format
-msgid "Promote my station on %s"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:151
-#: airtime_mvc/application/forms/SupportSettings.php:120
-#, php-format
-msgid "By checking this box, I agree to %s's %sprivacy policy%s."
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:169
-#: airtime_mvc/application/forms/SupportSettings.php:143
-msgid "You have to agree to privacy policy."
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:10
-msgid "Link:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:16
-msgid "Repeat Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:19
-msgid "weekly"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:20
-msgid "every 2 weeks"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:21
-msgid "every 3 weeks"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:22
-msgid "every 4 weeks"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:23
-msgid "monthly"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:32
-msgid "Select Days:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:35
-#: airtime_mvc/application/controllers/LocaleController.php:256
-msgid "Sun"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:36
-#: airtime_mvc/application/controllers/LocaleController.php:257
-msgid "Mon"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:37
-#: airtime_mvc/application/controllers/LocaleController.php:258
-msgid "Tue"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:38
-#: airtime_mvc/application/controllers/LocaleController.php:259
-msgid "Wed"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:39
-#: airtime_mvc/application/controllers/LocaleController.php:260
-msgid "Thu"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:40
-#: airtime_mvc/application/controllers/LocaleController.php:261
-msgid "Fri"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:41
-#: airtime_mvc/application/controllers/LocaleController.php:262
-msgid "Sat"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:47
-msgid "Repeat By:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the month"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the week"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:69
-msgid "No End?"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:106
-msgid "End date must be after start date"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:113
-msgid "Please select a repeat day"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:10
-#, php-format
-msgid "Use %s Authentication:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:16
-msgid "Use Custom Authentication:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:25
-msgid "Custom Username"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:37
-msgid "Custom Password"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:77
-msgid "Username field cannot be empty."
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:82
-msgid "Password field cannot be empty."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
-msgid "Enabled:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
-msgid "Mobile:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
-msgid "Stream Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
-msgid "Service Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
-msgid "Channels:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "1 - Mono"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "2 - Stereo"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
-msgid "Server"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
-msgid "Port"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
-msgid "Only numbers are allowed."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
-msgid "URL"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
-msgid "Mount Point"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
-msgid "Admin User"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
-msgid "Admin Password"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
-#: airtime_mvc/application/controllers/LocaleController.php:173
-msgid "Getting information from the server..."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
-msgid "Server cannot be empty."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
-msgid "Port cannot be empty."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
-msgid "Mount cannot be empty with Icecast server."
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
-msgid "'%value%' is no valid email address in the basic format local-part@hostname"
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
-msgid "'%value%' does not fit the date format '%format%'"
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
-msgid "'%value%' is less than %min% characters long"
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
-msgid "'%value%' is more than %max% characters long"
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
-msgid "'%value%' is not between '%min%' and '%max%', inclusively"
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
-msgid "Passwords do not match"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
-msgid "hours"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
-msgid "minutes"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
-msgid "Randomly"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
-msgid "Newest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
-msgid "Oldest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
-msgid "Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
-msgid "Static"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
-msgid "Dynamic"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
-msgid "Allow Repeated Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
-msgid "Sort Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
-msgid "Limit to:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
-msgid "Generate playlist content and save criteria"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
-msgid "Generate"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
-msgid "Shuffle playlist content"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
-msgid "Limit cannot be empty or smaller than 0"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
-msgid "Limit cannot be more than 24 hrs"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
-msgid "The value should be an integer"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
-msgid "500 is the max item limit value you can set"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
-msgid "You must select Criteria and Modifier"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
-msgid "'Length' should be in '00:00:00' format"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
-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:594
-msgid "The value has to be numeric"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
-msgid "The value should be less then 2147483648"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
-#, php-format
-msgid "The value should be less than %s characters"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
-msgid "Value cannot be empty"
-msgstr ""
-
-#: airtime_mvc/application/forms/Login.php:102
-msgid "Type the characters you see in the picture below."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:26
-msgid "Icecast Vorbis Metadata"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:36
-msgid "Stream Label:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:37
-msgid "Artist - Title"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:38
-msgid "Show - Artist - Title"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:39
-msgid "Station name - Show name"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:45
-msgid "Off Air Metadata"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:51
-msgid "Enable Replay Gain"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:57
-msgid "Replay Gain Modifier"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:65
-msgid "Streaming Server:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Airtime Pro Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Custom / 3rd Party Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:95
-msgid "User Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:99
-#: airtime_mvc/application/controllers/LocaleController.php:324
-msgid "Guest"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:100
-#: airtime_mvc/application/controllers/LocaleController.php:322
-msgid "DJ"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:101
-#: airtime_mvc/application/controllers/LocaleController.php:323
-msgid "Program Manager"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:321
-msgid "Admin"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:17
-msgid "First Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:26
-msgid "Last Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:35
-msgid "Company Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:44
-msgid "Email Address:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:54
-msgid "Address 1:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:63
-msgid "Address 2:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:80
-msgid "State/Region:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:89
-msgid "Zip Code / Postal Code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:112
-msgid "Phone Number:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:121
-msgid "Please choose a security question:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:126
-msgid "What is the name of your favorite childhood friend?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:127
-msgid "What school did you attend for sixth grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:128
-msgid "In what city did you meet your spouse/significant other?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:129
-msgid "What street did you live on in third grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:130
-msgid "What is the first name of the boy or girl that you first kissed?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:131
-msgid "In what city or town was your first job?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:135
-msgid "Please enter an answer:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:152
-msgid "VAT/Tax ID (EU only)"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:162
-msgid "Subscribe to Sourcefabric newsletter"
-msgstr ""
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
-msgid "Import Folder:"
-msgstr ""
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
-msgid "Watched Folders:"
-msgstr ""
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
-msgid "Not a valid Directory"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordRestore.php:14
-msgid "Email"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordRestore.php:36
-msgid "Reset password"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
-msgid "Plan type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
-msgid "Billing cycle:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
-msgid "Payment method:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
-msgid "PayPal"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
-msgid "Credit Card via 2Checkout"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:213
-#, php-format
-msgid "The year %s must be within the range of 1753 - 9999"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:216
-#, php-format
-msgid "%s-%s-%s is not a valid date"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:240
-#, php-format
-msgid "%s:%s:%s is not a valid time"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:55
-msgid "Upload some tracks below to add them to your library!"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:57
-#, php-format
-msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:63
-msgid "Click the 'New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:65
-#, php-format
-msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:73
-msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:75
-#, php-format
-msgid ""
-"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
-" %sCreate an unlinked show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:80
-msgid "To start broadcasting, click on the current show and select 'Schedule Show'"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:82
-#, php-format
-msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:89
-msgid "Click on the show starting next and select 'Schedule Show'"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:91
-#, php-format
-msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+#: airtime_mvc/application/controllers/ApiController.php:791
+msgid "Bad request. 'mode' parameter is invalid"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:30
@@ -2905,11 +558,6 @@ msgstr ""
msgid "You can only add tracks to smart blocks."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:50
-#: airtime_mvc/application/controllers/PlaylistController.php:180
-msgid "You can only add tracks, smart blocks, and webstreams to playlists."
-msgstr ""
-
#: airtime_mvc/application/controllers/LocaleController.php:53
msgid "Please select a cursor position on timeline."
msgstr ""
@@ -2950,11 +598,6 @@ msgstr ""
msgid "Click 'New' to create one."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:66
-#: airtime_mvc/application/controllers/LibraryController.php:123
-msgid "Edit Metadata"
-msgstr ""
-
#: airtime_mvc/application/controllers/LocaleController.php:67
msgid "Add to selected show"
msgstr ""
@@ -2983,6 +626,12 @@ msgstr ""
msgid "Scheduled"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:74
+#: airtime_mvc/application/layouts/scripts/layout.phtml:78
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
+msgid "Tracks"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:75
#: airtime_mvc/application/layouts/scripts/layout.phtml:60
msgid "Playlist"
@@ -2992,18 +641,96 @@ msgstr ""
msgid "Bit Rate"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:80
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
+#: airtime_mvc/application/models/Block.php:1354
+msgid "BPM"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:84
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
+#: airtime_mvc/application/models/Block.php:1361
+msgid "Encoded By"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:89
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
+#: airtime_mvc/application/models/Block.php:1367
+msgid "Last Modified"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:90
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
+#: airtime_mvc/application/models/Block.php:1368
+msgid "Last Played"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
+#: airtime_mvc/application/models/Block.php:1370
+msgid "Mime"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:94
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
+#: airtime_mvc/application/models/Block.php:1372
+msgid "Owner"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:95
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
+#: airtime_mvc/application/models/Block.php:1373
+msgid "Replay Gain"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:96
msgid "Sample Rate"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:97
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
+#: airtime_mvc/application/models/Block.php:1376
+msgid "Track Number"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:98
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
+#: airtime_mvc/application/models/Block.php:1377
+msgid "Uploaded"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:99
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
+#: airtime_mvc/application/models/Block.php:1378
+msgid "Website"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:101
msgid "Loading..."
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:102
+#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
+msgid "All"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:103
msgid "Files"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:104
+#: airtime_mvc/application/layouts/scripts/layout.phtml:80
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
+msgid "Playlists"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:105
+#: airtime_mvc/application/layouts/scripts/layout.phtml:82
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
+msgid "Smart Blocks"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:106
msgid "Web Streams"
msgstr ""
@@ -3148,6 +875,74 @@ msgstr ""
msgid "Processing..."
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:151
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
+#: airtime_mvc/application/models/Block.php:1383
+msgid "Select modifier"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:152
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
+#: airtime_mvc/application/models/Block.php:1384
+msgid "contains"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:153
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
+#: airtime_mvc/application/models/Block.php:1385
+msgid "does not contain"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:154
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
+#: airtime_mvc/application/models/Block.php:1386
+#: airtime_mvc/application/models/Block.php:1390
+msgid "is"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:155
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
+#: airtime_mvc/application/models/Block.php:1387
+#: airtime_mvc/application/models/Block.php:1391
+msgid "is not"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:156
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
+#: airtime_mvc/application/models/Block.php:1388
+msgid "starts with"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:157
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
+#: airtime_mvc/application/models/Block.php:1389
+msgid "ends with"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:158
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
+#: airtime_mvc/application/models/Block.php:1392
+msgid "is greater than"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:159
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
+#: airtime_mvc/application/models/Block.php:1393
+msgid "is less than"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:160
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
+#: airtime_mvc/application/models/Block.php:1394
+msgid "is in the range"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:162
msgid "Choose Storage Folder"
msgstr ""
@@ -3162,6 +957,11 @@ msgid ""
"This will remove the files from your Airtime library!"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:166
+#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
+msgid "Manage Media Folders"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:167
msgid "Are you sure you want to remove the watched folder?"
msgstr ""
@@ -3183,6 +983,11 @@ msgstr ""
msgid "The stream is disabled"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:173
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
+msgid "Getting information from the server..."
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:174
msgid "Can not connect to the streaming server"
msgstr ""
@@ -3410,6 +1215,76 @@ msgstr ""
msgid "Month"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:249
+#: airtime_mvc/application/forms/GeneralPreferences.php:158
+msgid "Sunday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:250
+#: airtime_mvc/application/forms/GeneralPreferences.php:159
+msgid "Monday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:251
+#: airtime_mvc/application/forms/GeneralPreferences.php:160
+msgid "Tuesday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:252
+#: airtime_mvc/application/forms/GeneralPreferences.php:161
+msgid "Wednesday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:253
+#: airtime_mvc/application/forms/GeneralPreferences.php:162
+msgid "Thursday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:254
+#: airtime_mvc/application/forms/GeneralPreferences.php:163
+msgid "Friday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:255
+#: airtime_mvc/application/forms/GeneralPreferences.php:164
+msgid "Saturday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:256
+#: airtime_mvc/application/forms/AddShowRepeats.php:35
+msgid "Sun"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:257
+#: airtime_mvc/application/forms/AddShowRepeats.php:36
+msgid "Mon"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:258
+#: airtime_mvc/application/forms/AddShowRepeats.php:37
+msgid "Tue"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:259
+#: airtime_mvc/application/forms/AddShowRepeats.php:38
+msgid "Wed"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:260
+#: airtime_mvc/application/forms/AddShowRepeats.php:39
+msgid "Thu"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:261
+#: airtime_mvc/application/forms/AddShowRepeats.php:40
+msgid "Fri"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:262
+#: airtime_mvc/application/forms/AddShowRepeats.php:41
+msgid "Sat"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:263
msgid "Shows longer than their scheduled time will be cut off by a following show."
msgstr ""
@@ -3419,7 +1294,7 @@ msgid "Cancel Current Show?"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:265
-#: airtime_mvc/application/controllers/LocaleController.php:309
+#: airtime_mvc/application/controllers/LocaleController.php:312
msgid "Stop recording current show?"
msgstr ""
@@ -3439,6 +1314,11 @@ msgstr ""
msgid "Delete selected item(s)?"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:273
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
+msgid "Start"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:274
msgid "End"
msgstr ""
@@ -3447,580 +1327,467 @@ msgstr ""
msgid "Duration"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:283
+#: airtime_mvc/application/controllers/LocaleController.php:276
+msgid "Filtering out "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:277
+msgid " of "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:278
+msgid " records"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/layouts/scripts/layout.phtml:140
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
+#: airtime_mvc/application/models/Block.php:1358
+msgid "Cue In"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/layouts/scripts/layout.phtml:147
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
+#: airtime_mvc/application/models/Block.php:1359
+msgid "Cue Out"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:286
#: airtime_mvc/application/layouts/scripts/layout.phtml:167
msgid "Fade In"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/controllers/LocaleController.php:287
#: airtime_mvc/application/layouts/scripts/layout.phtml:168
msgid "Fade Out"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/controllers/LocaleController.php:288
msgid "Show Empty"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:286
+#: airtime_mvc/application/controllers/LocaleController.php:289
msgid "Recording From Line In"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:287
+#: airtime_mvc/application/controllers/LocaleController.php:290
msgid "Track preview"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:291
+#: airtime_mvc/application/controllers/LocaleController.php:294
msgid "Cannot schedule outside a show."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:292
+#: airtime_mvc/application/controllers/LocaleController.php:295
msgid "Moving 1 Item"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:293
+#: airtime_mvc/application/controllers/LocaleController.php:296
#, php-format
msgid "Moving %s Items"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:296
-msgid "Fade Editor"
-msgstr ""
-
#: airtime_mvc/application/controllers/LocaleController.php:297
-msgid "Cue Editor"
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
+#: airtime_mvc/application/forms/Preferences.php:40
+#: airtime_mvc/application/forms/EditHistory.php:131
+#: airtime_mvc/application/forms/AddUser.php:110
+#: airtime_mvc/application/forms/PasswordChange.php:43
+#: airtime_mvc/application/forms/SupportSettings.php:131
+msgid "Save"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:298
-msgid "Waveform features are available in a browser supporting the Web Audio API"
+#: airtime_mvc/application/controllers/LocaleController.php:321
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
+#: airtime_mvc/application/forms/EditHistory.php:141
+#: airtime_mvc/application/forms/EditAudioMD.php:186
+msgid "Cancel"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:299
+msgid "Fade Editor"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:300
+msgid "Cue Editor"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:301
-msgid "Select all"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LocaleController.php:302
-msgid "Select none"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LocaleController.php:303
-msgid "Trim overbooked shows"
+msgid "Waveform features are available in a browser supporting the Web Audio API"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:304
-msgid "Remove selected scheduled items"
+msgid "Select all"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:305
-msgid "Jump to the current playing track"
+msgid "Select none"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:306
+msgid "Trim overbooked shows"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:307
+msgid "Remove selected scheduled items"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:308
+msgid "Jump to the current playing track"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:309
msgid "Cancel current show"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:311
+#: airtime_mvc/application/controllers/LocaleController.php:314
msgid "Open library to add or remove content"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:312
+#: airtime_mvc/application/controllers/LocaleController.php:315
msgid "Add / Remove Content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:317
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
+msgid "in use"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:318
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
+msgid "Disk"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:320
msgid "Look in"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:319
+#: airtime_mvc/application/controllers/LocaleController.php:322
msgid "Open"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:324
+#: airtime_mvc/application/forms/AddUser.php:102
+msgid "Admin"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:325
-msgid "Guests can do the following:"
+#: airtime_mvc/application/forms/AddUser.php:100
+msgid "DJ"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:326
-msgid "View schedule"
+#: airtime_mvc/application/forms/AddUser.php:101
+msgid "Program Manager"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:327
-msgid "View show content"
+#: airtime_mvc/application/forms/AddUser.php:99
+msgid "Guest"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:328
-msgid "DJs can do the following:"
+msgid "Guests can do the following:"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:329
-msgid "Manage assigned show content"
+msgid "View schedule"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:330
-msgid "Import media files"
+msgid "View show content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:331
-msgid "Create playlists, smart blocks, and webstreams"
+msgid "DJs can do the following:"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:332
-msgid "Manage their own library content"
+msgid "Manage assigned show content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:333
-msgid "Progam Managers can do the following:"
+msgid "Import media files"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:334
-msgid "View and manage show content"
+msgid "Create playlists, smart blocks, and webstreams"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:335
-msgid "Schedule shows"
+msgid "Manage their own library content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:336
-msgid "Manage all library content"
+msgid "Progam Managers can do the following:"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:337
-msgid "Admins can do the following:"
+msgid "View and manage show content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:338
-msgid "Manage preferences"
+msgid "Schedule shows"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:339
-msgid "Manage users"
+msgid "Manage all library content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:340
-msgid "Manage watched folders"
+msgid "Admins can do the following:"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:341
+msgid "Manage preferences"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:342
-msgid "View system status"
+msgid "Manage users"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:343
-msgid "Access playout history"
+msgid "Manage watched folders"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:344
-msgid "View listener stats"
+#: airtime_mvc/application/forms/RegisterAirtime.php:116
+#: airtime_mvc/application/forms/SupportSettings.php:98
+msgid "Send support feedback"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:345
+msgid "View system status"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:346
-msgid "Show / hide columns"
+msgid "Access playout history"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:348
-msgid "From {from} to {to}"
+#: airtime_mvc/application/controllers/LocaleController.php:347
+msgid "View listener stats"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:349
-msgid "kbps"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LocaleController.php:350
-msgid "yyyy-mm-dd"
+msgid "Show / hide columns"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:351
-msgid "hh:mm:ss.t"
+msgid "From {from} to {to}"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:352
-msgid "kHz"
+msgid "kbps"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:353
+msgid "yyyy-mm-dd"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:354
+msgid "hh:mm:ss.t"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:355
-msgid "Su"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LocaleController.php:356
-msgid "Mo"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LocaleController.php:357
-msgid "Tu"
+msgid "kHz"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:358
-msgid "We"
+msgid "Su"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:359
-msgid "Th"
+msgid "Mo"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:360
-msgid "Fr"
+msgid "Tu"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:361
-msgid "Sa"
+msgid "We"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:362
+msgid "Th"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:363
+msgid "Fr"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:364
-msgid "Hour"
+msgid "Sa"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
+msgid "Close"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:367
+msgid "Hour"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:368
msgid "Minute"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:366
+#: airtime_mvc/application/controllers/LocaleController.php:369
msgid "Done"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:369
+#: airtime_mvc/application/controllers/LocaleController.php:372
msgid "Select files"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:370
-#: airtime_mvc/application/controllers/LocaleController.php:371
+#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:374
msgid "Add files to the upload queue and click the start button."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:372
-#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:376
msgid "Status"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:374
+#: airtime_mvc/application/controllers/LocaleController.php:377
msgid "Add Files"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:378
msgid "Stop Upload"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:376
+#: airtime_mvc/application/controllers/LocaleController.php:379
msgid "Start upload"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:377
+#: airtime_mvc/application/controllers/LocaleController.php:380
msgid "Add files"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:378
+#: airtime_mvc/application/controllers/LocaleController.php:381
#, php-format
msgid "Uploaded %d/%d files"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:379
+#: airtime_mvc/application/controllers/LocaleController.php:382
msgid "N/A"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:380
+#: airtime_mvc/application/controllers/LocaleController.php:383
msgid "Drag files here."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:381
+#: airtime_mvc/application/controllers/LocaleController.php:384
msgid "File extension error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:382
+#: airtime_mvc/application/controllers/LocaleController.php:385
msgid "File size error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:383
+#: airtime_mvc/application/controllers/LocaleController.php:386
msgid "File count error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:384
+#: airtime_mvc/application/controllers/LocaleController.php:387
msgid "Init error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:385
+#: airtime_mvc/application/controllers/LocaleController.php:388
msgid "HTTP Error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:386
+#: airtime_mvc/application/controllers/LocaleController.php:389
msgid "Security error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:387
+#: airtime_mvc/application/controllers/LocaleController.php:390
msgid "Generic error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:388
+#: airtime_mvc/application/controllers/LocaleController.php:391
msgid "IO error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:389
+#: airtime_mvc/application/controllers/LocaleController.php:392
#, php-format
msgid "File: %s"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:391
+#: airtime_mvc/application/controllers/LocaleController.php:394
#, php-format
msgid "%d files queued"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:392
+#: airtime_mvc/application/controllers/LocaleController.php:395
msgid "File: %f, size: %s, max file size: %m"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/controllers/LocaleController.php:396
msgid "Upload URL might be wrong or doesn't exist"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:394
+#: airtime_mvc/application/controllers/LocaleController.php:397
msgid "Error: File too large: "
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:395
+#: airtime_mvc/application/controllers/LocaleController.php:398
msgid "Error: Invalid file extension: "
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:398
+#: airtime_mvc/application/controllers/LocaleController.php:400
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
+msgid "Set Default"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:401
msgid "Create Entry"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:399
+#: airtime_mvc/application/controllers/LocaleController.php:402
msgid "Edit History Record"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:402
+#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
+#: airtime_mvc/application/forms/EditHistoryItem.php:57
+msgid "No Show"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:405
#, php-format
msgid "Copied %s row%s to the clipboard"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/controllers/LocaleController.php:406
#, php-format
msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/controllers/LocaleController.php:407
msgid "New Show"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:405
+#: airtime_mvc/application/controllers/LocaleController.php:408
msgid "New Log Entry"
msgstr ""
-#: airtime_mvc/application/controllers/ScheduleController.php:389
-#, php-format
-msgid "Rebroadcast of show %s from %s at %s"
-msgstr ""
-
-#: airtime_mvc/application/controllers/ScheduleController.php:712
-#: airtime_mvc/application/controllers/LibraryController.php:131
-msgid "Download"
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:78
-msgid "Page not found."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:87
-msgid "The requested action is not supported."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:98
-msgid "You do not have permission to access this resource."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:109
-msgid "An internal application error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ListenerstatController.php:51
-msgid "Please make sure admin user/password is correct on System->Streams page."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:53
-#, php-format
-msgid "You are viewing an older version of %s"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:140
-msgid "You cannot add tracks to dynamic blocks."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:147
-#: airtime_mvc/application/controllers/LibraryController.php:31
-#, php-format
-msgid "%s not found"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:161
-#, php-format
-msgid "You don't have permission to delete selected %s(s)."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:168
-#: airtime_mvc/application/controllers/LibraryController.php:40
-msgid "Something went wrong."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:174
-msgid "You can only add tracks to smart block."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:192
-msgid "Untitled Playlist"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:194
-msgid "Untitled Smart Block"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:522
-msgid "Unknown Playlist"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:43
-msgid "Please enter your username and password."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:93
-msgid "Wrong username or password provided. Please try again."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:167
-msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:173
-msgid "There was a problem with the username or email address you entered."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:35
-#: airtime_mvc/application/controllers/DashboardController.php:84
-msgid "You don't have permission to disconnect source."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:37
-#: airtime_mvc/application/controllers/DashboardController.php:86
-msgid "There is no source connected to this input."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:81
-msgid "You don't have permission to switch source."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:72
-msgid "Preferences updated."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:115
-msgid "Support setting updated."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:123
-msgid "Support Feedback"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:251
-msgid "Stream Setting Updated."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:342
-msgid "path should be specified"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:437
-msgid "Problem with Liquidsoap..."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:493
-msgid "Request method not accepted"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:86
-msgid "User added successfully!"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:88
-msgid "User updated successfully!"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:187
-msgid "Settings updated successfully!"
-msgstr ""
-
-#: airtime_mvc/application/controllers/WebstreamController.php:28
-#: airtime_mvc/application/controllers/WebstreamController.php:32
-msgid "Untitled Webstream"
-msgstr ""
-
-#: airtime_mvc/application/controllers/WebstreamController.php:150
-msgid "Webstream saved."
-msgstr ""
-
-#: airtime_mvc/application/controllers/WebstreamController.php:158
-msgid "Invalid form values."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:95
-#: airtime_mvc/application/controllers/ShowbuilderController.php:136
-msgid "Preview"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:115
-#: airtime_mvc/application/controllers/LibraryController.php:177
-#: airtime_mvc/application/controllers/LibraryController.php:200
-msgid "Add to Playlist"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:117
-msgid "Add to Smart Block"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:147
-msgid "View track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:148
-msgid "Remove track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:154
-#: airtime_mvc/application/controllers/LibraryController.php:159
-msgid "Upload track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:169
-msgid "Duplicate Playlist"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:213
-msgid "No action available"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:233
-msgid "You don't have permission to delete selected items."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:279
-msgid "Could not delete file because it is scheduled in the future."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:282
-msgid "Could not delete file(s)."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:322
-#, php-format
-msgid "Copy of %s"
-msgstr ""
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
-msgid ""
-"To configure and use the embeddable player you must:
\n"
-" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
-" 2. Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
-msgid ""
-"To use the embeddable weekly schedule widget you must:
\n"
-" Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
#: airtime_mvc/application/controllers/ShowbuilderController.php:138
msgid "Select cursor"
msgstr ""
@@ -4033,37 +1800,76 @@ msgstr ""
msgid "show does not exist"
msgstr ""
-#: airtime_mvc/application/controllers/ApiController.php:79
-msgid "You are not allowed to access this resource."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ApiController.php:244
-#: airtime_mvc/application/controllers/ApiController.php:317
-#: airtime_mvc/application/controllers/ApiController.php:392
-#: airtime_mvc/application/controllers/ApiController.php:435
-#: airtime_mvc/application/controllers/ApiController.php:474
-#: airtime_mvc/application/controllers/ApiController.php:507
-msgid "You are not allowed to access this resource. "
-msgstr ""
-
-#: airtime_mvc/application/controllers/ApiController.php:698
-#: airtime_mvc/application/controllers/ApiController.php:718
-#: airtime_mvc/application/controllers/ApiController.php:730
+#: airtime_mvc/application/controllers/ScheduleController.php:389
#, php-format
-msgid "File does not exist in %s"
+msgid "Rebroadcast of show %s from %s at %s"
msgstr ""
-#: airtime_mvc/application/controllers/ApiController.php:781
-msgid "Bad request. no 'mode' parameter passed."
+#: airtime_mvc/application/common/UsabilityHints.php:55
+msgid "Upload some tracks below to add them to your library!"
msgstr ""
-#: airtime_mvc/application/controllers/ApiController.php:791
-msgid "Bad request. 'mode' parameter is invalid"
-msgstr ""
-
-#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#: airtime_mvc/application/common/UsabilityHints.php:57
#, php-format
-msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:63
+msgid "Click the 'New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:65
+#, php-format
+msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:73
+msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:75
+#, php-format
+msgid ""
+"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
+" %sCreate an unlinked show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:80
+msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:82
+#, php-format
+msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:89
+msgid "Click on the show starting next and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:91
+#, php-format
+msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/DateHelper.php:213
+#, php-format
+msgid "The year %s must be within the range of 1753 - 9999"
+msgstr ""
+
+#: airtime_mvc/application/common/DateHelper.php:216
+#, php-format
+msgid "%s-%s-%s is not a valid date"
+msgstr ""
+
+#: airtime_mvc/application/common/DateHelper.php:240
+#, php-format
+msgid "%s:%s:%s is not a valid time"
+msgstr ""
+
+#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
+msgid "Live stream"
msgstr ""
#: airtime_mvc/application/layouts/scripts/layout.phtml:63
@@ -4078,6 +1884,17 @@ msgstr ""
msgid "Upload"
msgstr ""
+#: airtime_mvc/application/layouts/scripts/layout.phtml:76
+#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
+msgid "Dashboard"
+msgstr ""
+
+#: airtime_mvc/application/layouts/scripts/layout.phtml:84
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
+msgid "Webstreams"
+msgstr ""
+
#: airtime_mvc/application/layouts/scripts/layout.phtml:135
#: airtime_mvc/application/layouts/scripts/layout.phtml:161
msgid "Play"
@@ -4099,3 +1916,2124 @@ msgstr ""
#: airtime_mvc/application/layouts/scripts/layout.phtml:166
msgid "Cursor"
msgstr ""
+
+#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#, php-format
+msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
+msgid "Drop files here or click to browse your computer."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
+msgid "Failed"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
+msgid "Pending"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
+msgid "Recent Uploads"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
+msgid "Share"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
+msgid "Select stream:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
+msgid "mute"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
+msgid "unmute"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
+msgid "About"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
+#, php-format
+msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
+#, php-format
+msgid "%1$s %2$s is distributed under the %3$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
+#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
+#, php-format
+msgid "Welcome to %s!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
+#, php-format
+msgid "Here's how you can get started using %s to automate your broadcasts: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
+msgid "Upload audio tracks"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
+msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
+msgid "Schedule a show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
+msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
+msgid "Add tracks to your show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
+msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
+msgid "Now you're good to go!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
+#, php-format
+msgid "For more detailed help, read the %suser manual%s."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
+#: airtime_mvc/application/configs/navigation.php:40
+msgid "Weekly Schedule"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
+#: airtime_mvc/application/forms/Player.php:77
+msgid "Preview:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
+#: airtime_mvc/application/configs/navigation.php:34
+msgid "Player"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:97
+msgid "Playout History"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
+msgid "Log Sheet"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
+msgid "File Summary"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
+msgid "Show Summary"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
+msgid "Expand Static Block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
+msgid "Expand Dynamic Block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
+msgid "Choose some search criteria above and click Generate to create this playlist."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
+msgid "A track list will be generated when you schedule this smart block into a show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
+msgid "Drag tracks here from your library to add them to the playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
+msgid "Editing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:26
+msgid "Name:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
+#: airtime_mvc/application/forms/AddShowWhat.php:54
+msgid "Description:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
+#: airtime_mvc/application/forms/AddShowWhen.php:89
+msgid "Duration:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
+msgid "Toggle Details"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+msgid "Shuffle playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
+msgid "Shuffle"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
+msgid "Playlist crossfade"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+msgid "Empty playlist content"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Clear"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+msgid "Fade in: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "Fade out: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+msgid "Save playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
+msgid "No open playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
+msgid "Show Waveform"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "(ss.t)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Remove all content from this smart block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
+msgid "No smart block currently open"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+msgid "Cue In: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "(hh:mm:ss.t)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "Cue Out: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
+msgid "Original Length:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:56
+msgid "General"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
+msgid "Stream Settings"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
+msgid "Global"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
+msgid "dB"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
+msgid "Output Streams"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:3
+#: airtime_mvc/application/forms/Login.php:83
+msgid "Login"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:7
+#, php-format
+msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
+msgid "Email Sent!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
+msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
+msgid "Back"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
+msgid "Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
+msgid "New password"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
+msgid "Please enter and confirm your new password in the fields below."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
+msgid "Manage Users"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
+msgid "New User"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
+msgid "id"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
+#: airtime_mvc/application/forms/PasswordRestore.php:25
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
+msgid "Username"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
+msgid "First Name"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
+msgid "Last Name"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
+msgid "User Type"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
+#, php-format
+msgid "Super Admin details can be changed in your Billing Settings."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
+msgid "Find Shows"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
+msgid "Choose Show Instance"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
+msgid "Find"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
+#: airtime_mvc/application/configs/navigation.php:61
+msgid "My Profile"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
+#, php-format
+msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
+msgid "Repeat Days:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
+#: airtime_mvc/application/forms/GeneralPreferences.php:53
+#: airtime_mvc/application/forms/AddShowStyle.php:64
+msgid "Remove"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
+msgid "Add"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
+msgid "Show Source"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
+msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
+msgid "Register Airtime"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
+#, php-format
+msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
+#, php-format
+msgid "Click the box below to promote your station on %s."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
+msgid "(Required)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
+msgid "(for verification purposes only, will not be published)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
+#: airtime_mvc/application/forms/GeneralPreferences.php:43
+msgid "Note: Anything larger than 600x600 will be resized."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
+msgid "Show me what I am sending "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
+msgid "Terms and Conditions"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
+msgid "Choose Days:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
+msgid "Search Criteria:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
+msgid "New Criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
+msgid "or"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
+msgid "and"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
+msgid "New Modifier"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
+msgid " to "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
+msgid "files meet the criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
+msgid "file meets the criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
+msgid "Filter History"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/login.phtml:41
+msgid "Forgot your password?"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
+msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
+msgid "Stream "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
+msgid "Additional Options"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
+msgid "The following info will be displayed to listeners in their media player:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
+msgid "(Your radio station website)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
+msgid "Stream URL: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
+msgid "Choose folder"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
+msgid "Set"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
+msgid "Current Import Folder:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
+#, php-format
+msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
+msgid "Remove watched directory"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
+msgid "You are not watching any media folders."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
+msgid "Live Broadcasting"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
+msgid "Master Source"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
+msgid "Use these settings in your broadcasting software to stream live at any time."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
+msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
+msgid "TuneIn Settings"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
+msgid "SoundCloud Settings"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
+msgid "Dangerous Options"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Add this show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Update show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
+msgid "What"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
+msgid "When"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
+msgid "Live Stream Input"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
+msgid "Who"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
+msgid "Style"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
+msgid "Disk Space"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:3
+msgid "File import in progress..."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:10
+#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
+msgid "Advanced Search Options"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
+#: airtime_mvc/application/forms/EditAudioMD.php:24
+#: airtime_mvc/application/forms/Player.php:15
+msgid "Title:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
+#: airtime_mvc/application/forms/EditAudioMD.php:34
+msgid "Creator:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
+#: airtime_mvc/application/forms/EditAudioMD.php:44
+msgid "Album:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
+msgid "Track:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
+msgid "Length:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
+msgid "Sample Rate:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
+msgid "Bit Rate:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
+#: airtime_mvc/application/forms/EditAudioMD.php:115
+msgid "Mood:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:45
+#: airtime_mvc/application/forms/EditAudioMD.php:62
+msgid "Genre:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
+#: airtime_mvc/application/forms/EditAudioMD.php:72
+msgid "Year:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
+#: airtime_mvc/application/forms/EditAudioMD.php:85
+msgid "Label:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
+#: airtime_mvc/application/forms/EditAudioMD.php:125
+msgid "BPM:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
+#: airtime_mvc/application/forms/EditAudioMD.php:95
+msgid "Composer:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
+#: airtime_mvc/application/forms/EditAudioMD.php:105
+msgid "Conductor:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
+#: airtime_mvc/application/forms/EditAudioMD.php:135
+msgid "Copyright:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
+msgid "Isrc Number:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
+#: airtime_mvc/application/forms/EditAudioMD.php:155
+msgid "Website:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
+#: airtime_mvc/application/forms/EditAudioMD.php:165
+#: airtime_mvc/application/forms/EditUser.php:119
+#: airtime_mvc/application/forms/Login.php:68
+msgid "Language:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
+msgid "File Path:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
+msgid "Web Stream"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
+msgid "Dynamic Smart Block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
+msgid "Static Smart Block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
+msgid "Audio Track"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
+msgid "Playlist Contents: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
+msgid "Static Smart Block Contents: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
+msgid "Dynamic Smart Block Criteria: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
+msgid "Limit to "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
+#: airtime_mvc/application/forms/AddShowWhat.php:36
+msgid "URL:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
+msgid "Viewing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
+msgid "Listeners"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
+msgid "Stream Data Collection Status"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
+msgid "Your trial expires in"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
+msgid "days"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
+msgid "Previous:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
+msgid "Next:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
+msgid "Source Streams"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
+msgid "ON AIR"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
+msgid "Listen"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
+msgid "Logout"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
+msgid "Playout History Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
+msgid "Log Sheet Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
+msgid "New Log Sheet Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
+msgid "No Log Sheet Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
+msgid "File Summary Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
+msgid "New File Summary Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
+msgid "No File Summary Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
+msgid "Creating File Summary Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
+msgid "Creating Log Sheet Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
+msgid "Name"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
+msgid "Add more elements"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
+msgid "Add New Field"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
+msgid "Set Default Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
+msgid "Description"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
+msgid "Stream URL:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
+msgid "Default Length:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
+msgid "No webstream"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
+#: airtime_mvc/application/views/scripts/error/error.phtml:6
+msgid "An error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
+msgid "Access Denied!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
+msgid "You do not have permission to access this page!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
+#: airtime_mvc/application/views/scripts/error/error.phtml:14
+#: airtime_mvc/application/configs/navigation.php:143
+msgid "Help"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
+msgid "Oops!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
+msgid "Something went wrong!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
+msgid "Bad Request!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
+msgid "The requested action is not supported!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
+msgid "Page not found!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
+msgid "We couldn't find the page you were looking for."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error.phtml:12
+msgid "Looks like the page you were looking for doesn't exist!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
+msgid "previous"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
+msgid "play"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
+msgid "pause"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
+msgid "next"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
+msgid "stop"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
+msgid "max volume"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
+msgid "Update Required"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
+#, php-format
+msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
+msgid "Plan type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
+msgid "Billing cycle:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
+msgid "Payment method:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
+msgid "PayPal"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
+msgid "Credit Card via 2Checkout"
+msgstr ""
+
+#: airtime_mvc/application/forms/DateRange.php:16
+#: airtime_mvc/application/forms/ShowBuilder.php:18
+msgid "Date Start:"
+msgstr ""
+
+#: airtime_mvc/application/forms/DateRange.php:35
+#: airtime_mvc/application/forms/DateRange.php:63
+#: airtime_mvc/application/forms/ShowBuilder.php:37
+#: airtime_mvc/application/forms/ShowBuilder.php:65
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
+msgid "Invalid character entered"
+msgstr ""
+
+#: airtime_mvc/application/forms/DateRange.php:44
+#: airtime_mvc/application/forms/ShowBuilder.php:46
+#: airtime_mvc/application/forms/AddShowRepeats.php:56
+msgid "Date End:"
+msgstr ""
+
+#: airtime_mvc/application/forms/ShowBuilder.php:72
+#: airtime_mvc/application/forms/ShowBuilder.php:88
+msgid "Filter by Show"
+msgstr ""
+
+#: airtime_mvc/application/forms/ShowBuilder.php:80
+msgid "All My Shows:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWho.php:10
+msgid "Search Users:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWho.php:24
+msgid "DJs:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:30
+#: airtime_mvc/application/forms/GeneralPreferences.php:25
+#: airtime_mvc/application/forms/SupportSettings.php:18
+msgid "Station Name"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:39
+#: airtime_mvc/application/forms/SupportSettings.php:31
+msgid "Phone:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:51
+#: airtime_mvc/application/forms/AddUser.php:67
+#: airtime_mvc/application/forms/EditUser.php:83
+#: airtime_mvc/application/forms/SupportSettings.php:43
+msgid "Email:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:62
+#: airtime_mvc/application/forms/SupportSettings.php:54
+msgid "Station Web Site:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:73
+#: airtime_mvc/application/forms/SupportSettings.php:65
+msgid "Country:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:84
+#: airtime_mvc/application/forms/SupportSettings.php:76
+msgid "City:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:96
+#: airtime_mvc/application/forms/SupportSettings.php:88
+msgid "Station Description:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:106
+#: airtime_mvc/application/forms/GeneralPreferences.php:42
+msgid "Station Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:126
+#: airtime_mvc/application/forms/SupportSettings.php:108
+#, php-format
+msgid "Promote my station on %s"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:151
+#: airtime_mvc/application/forms/SupportSettings.php:120
+#, php-format
+msgid "By checking this box, I agree to %s's %sprivacy policy%s."
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:169
+#: airtime_mvc/application/forms/SupportSettings.php:143
+msgid "You have to agree to privacy policy."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRR.php:10
+msgid "Record from Line In?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRR.php:16
+msgid "Rebroadcast?"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
+#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
+msgid "Value is required and can't be empty"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
+msgid "'%value%' is no valid email address in the basic format local-part@hostname"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
+msgid "'%value%' does not fit the date format '%format%'"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
+msgid "'%value%' is less than %min% characters long"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
+msgid "'%value%' is more than %max% characters long"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
+msgid "'%value%' is not between '%min%' and '%max%', inclusively"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
+msgid "Passwords do not match"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
+msgid "Day must be specified"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
+msgid "Time must be specified"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
+msgid "Must wait at least 1 hour to rebroadcast"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordRestore.php:14
+msgid "Email"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordRestore.php:36
+msgid "Reset password"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhat.php:30
+msgid "Untitled Show"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhat.php:69
+msgid "Instance Description:"
+msgstr ""
+
+#: airtime_mvc/application/forms/DangerousPreferences.php:12
+msgid "Delete All Tracks in Library"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditAudioMD.php:145
+msgid "ISRC Number:"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditAudioMD.php:176
+msgid "OK"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:33
+msgid "Station Description"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:62
+msgid "Default Crossfade Duration (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:68
+#: airtime_mvc/application/forms/GeneralPreferences.php:82
+#: airtime_mvc/application/forms/GeneralPreferences.php:96
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
+msgid "Please enter a time in seconds (eg. 0.5)"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:76
+msgid "Default Fade In (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:90
+msgid "Default Fade Out (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:102
+msgid "Public Airtime API"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:103
+msgid "Required for embeddable schedule widget."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:105
+msgid "Disabled"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:106
+msgid "Enabled"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:109
+msgid ""
+"Enabling this feature will allow Airtime to provide schedule data\n"
+" to external widgets that can be embedded in your website."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:120
+msgid "Default Language"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:127
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
+msgid "Station Timezone"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:134
+msgid "Week Starts On"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:150
+msgid "Display login button on your Radio Page?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:29
+#: airtime_mvc/application/forms/EditUser.php:37
+#: airtime_mvc/application/forms/Login.php:41
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
+msgid "Username:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:38
+#: airtime_mvc/application/forms/EditUser.php:48
+#: airtime_mvc/application/forms/Login.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
+msgid "Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:46
+#: airtime_mvc/application/forms/EditUser.php:57
+msgid "Verify Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:55
+#: airtime_mvc/application/forms/EditUser.php:67
+msgid "Firstname:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:61
+#: airtime_mvc/application/forms/EditUser.php:75
+msgid "Lastname:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:76
+#: airtime_mvc/application/forms/EditUser.php:94
+msgid "Mobile Phone:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:82
+#: airtime_mvc/application/forms/EditUser.php:102
+msgid "Skype:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:88
+#: airtime_mvc/application/forms/EditUser.php:110
+msgid "Jabber:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:95
+msgid "User Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:120
+#: airtime_mvc/application/forms/EditUser.php:155
+msgid "Login name is not unique."
+msgstr ""
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
+msgid "Import Folder:"
+msgstr ""
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
+msgid "Watched Folders:"
+msgstr ""
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
+msgid "Not a valid Directory"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:126
+msgid "What is the name of your favorite childhood friend?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:127
+msgid "What school did you attend for sixth grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:128
+msgid "In what city did you meet your spouse/significant other?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:129
+msgid "What street did you live on in third grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:130
+msgid "What is the first name of the boy or girl that you first kissed?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:131
+msgid "In what city or town was your first job?"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
+msgid "Default License:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
+msgid "All rights are reserved"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
+msgid "The work is in the public domain"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
+msgid "Creative Commons Attribution"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
+msgid "Creative Commons Attribution Noncommercial"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
+msgid "Creative Commons Attribution No Derivative Works"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
+msgid "Creative Commons Attribution Share Alike"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
+msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
+msgid "Creative Commons Attribution Noncommercial Share Alike"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
+msgid "Default Sharing Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
+msgid "Public"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
+msgid "Private"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditUser.php:129
+msgid "Interface Timezone:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:14
+msgid "Now Playing"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:25
+msgid "Select Stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:28
+msgid "Auto detect the most appropriate stream to use."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:29
+msgid "Select a stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:41
+msgid " - Mobile friendly"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:45
+msgid " - The player does not support Opus streams."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:71
+msgid "Embeddable code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:72
+msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
+#: airtime_mvc/application/models/Block.php:1351
+msgid "Select criteria"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
+#: airtime_mvc/application/models/Block.php:1353
+msgid "Bit Rate (Kbps)"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
+#: airtime_mvc/application/models/Block.php:1374
+msgid "Sample Rate (kHz)"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
+msgid "hours"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
+msgid "minutes"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
+#: airtime_mvc/application/models/Block.php:333
+msgid "items"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
+msgid "Randomly"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
+msgid "Newest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
+msgid "Oldest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
+msgid "Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
+msgid "Static"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
+msgid "Dynamic"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
+msgid "Allow Repeated Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
+msgid "Sort Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
+msgid "Limit to:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
+msgid "Generate playlist content and save criteria"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
+msgid "Generate"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
+msgid "Shuffle playlist content"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
+msgid "Limit cannot be empty or smaller than 0"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
+msgid "Limit cannot be more than 24 hrs"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
+msgid "The value should be an integer"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
+msgid "500 is the max item limit value you can set"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
+msgid "You must select Criteria and Modifier"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
+msgid "'Length' should be in '00:00:00' format"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
+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:594
+msgid "The value has to be numeric"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
+msgid "The value should be less then 2147483648"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
+#, php-format
+msgid "The value should be less than %s characters"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
+msgid "Value cannot be empty"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:26
+msgid "Icecast Vorbis Metadata"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:36
+msgid "Stream Label:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:37
+msgid "Artist - Title"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:38
+msgid "Show - Artist - Title"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:39
+msgid "Station name - Show name"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:45
+msgid "Off Air Metadata"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:51
+msgid "Enable Replay Gain"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:57
+msgid "Replay Gain Modifier"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:65
+msgid "Streaming Server:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Airtime Pro Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Custom / 3rd Party Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordChange.php:17
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
+msgid "Password"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordChange.php:28
+msgid "Confirm new password"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordChange.php:36
+msgid "Password confirmation does not match your password."
+msgstr ""
+
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
+msgid "Station Language"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
+msgid "Enabled:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
+msgid "Mobile:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
+msgid "Stream Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
+msgid "Service Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
+msgid "Channels:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "1 - Mono"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "2 - Stereo"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
+msgid "Server"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
+msgid "Port"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
+msgid "Only numbers are allowed."
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
+msgid "URL"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
+msgid "Mount Point"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
+msgid "Admin User"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
+msgid "Admin Password"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
+msgid "Server cannot be empty."
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
+msgid "Port cannot be empty."
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
+msgid "Mount cannot be empty with Icecast server."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:16
+msgid "'%value%' does not fit the time format 'HH:mm'"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:22
+msgid "Start Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:37
+msgid "In the Future:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:64
+msgid "End Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:98
+msgid "Timezone:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:107
+msgid "Repeats?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:139
+msgid "Cannot create show in the past"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:147
+msgid "Cannot modify start date/time of the show that is already started"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:156
+#: airtime_mvc/application/models/Show.php:282
+msgid "End date/time cannot be in the past"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:164
+msgid "Cannot have duration < 0m"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:168
+msgid "Cannot have duration 00h 00m"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:175
+msgid "Cannot have duration greater than 24h"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:19
+msgid "Push metadata to your station on TuneIn?"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:24
+msgid "Station ID:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:30
+msgid "Partner Key:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:36
+msgid "Partner Id:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:77
+#: airtime_mvc/application/forms/TuneInPreferences.php:86
+msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:10
+#, php-format
+msgid "Use %s Authentication:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:16
+msgid "Use Custom Authentication:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:25
+msgid "Custom Username"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:37
+msgid "Custom Password"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:48
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
+msgid "Host:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
+msgid "Port:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:60
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
+msgid "Mount:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:77
+msgid "Username field cannot be empty."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:82
+msgid "Password field cannot be empty."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:12
+msgid "Background Colour:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:31
+msgid "Text Colour:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:49
+msgid "Current Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:72
+msgid "Show Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:87
+msgid "Logo Preview:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Login.php:102
+msgid "Type the characters you see in the picture below."
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
+msgid "Auto Switch Off:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
+msgid "Auto Switch On:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
+msgid "Switch Transition Fade (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:10
+msgid "Link:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:16
+msgid "Repeat Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:19
+msgid "weekly"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:20
+msgid "every 2 weeks"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:21
+msgid "every 3 weeks"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:22
+msgid "every 4 weeks"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:23
+msgid "monthly"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:32
+msgid "Select Days:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:47
+msgid "Repeat By:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the month"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the week"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:69
+msgid "No End?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:106
+msgid "End date must be after start date"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:113
+msgid "Please select a repeat day"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:12
+msgid "Radio Page"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:19
+msgid "Calendar"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:26
+msgid "Widgets"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:48
+msgid "Settings"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:67
+msgid "Users"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:74
+msgid "Streams"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:82
+msgid "Analytics"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:90
+msgid "Listener Stats"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:104
+msgid "History Templates"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:113
+msgid "Billing"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:120
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:127
+msgid "Account Details"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:134
+msgid "View Invoices"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:150
+msgid "Getting Started"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:157
+msgid "FAQ"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:162
+msgid "User Manual"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:167
+msgid "File a Support Ticket"
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:833
+#: airtime_mvc/application/models/Playlist.php:812
+msgid "Cue in and cue out are null."
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:868
+#: airtime_mvc/application/models/Block.php:924
+#: airtime_mvc/application/models/Playlist.php:851
+#: airtime_mvc/application/models/Playlist.php:895
+msgid "Can't set cue out to be greater than file length."
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:879
+#: airtime_mvc/application/models/Block.php:900
+#: airtime_mvc/application/models/Playlist.php:843
+#: airtime_mvc/application/models/Playlist.php:868
+msgid "Can't set cue in to be larger than cue out."
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:935
+#: airtime_mvc/application/models/Playlist.php:887
+msgid "Can't set cue out to be smaller than cue in."
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:1366
+msgid "Upload Time"
+msgstr ""
+
+#: airtime_mvc/application/models/ShowBuilder.php:212
+#, php-format
+msgid "Rebroadcast of %s from %s"
+msgstr ""
+
+#: airtime_mvc/application/models/Preference.php:460
+#, php-format
+msgid "Powered by %s"
+msgstr ""
+
+#: airtime_mvc/application/models/Preference.php:588
+msgid "Select Country"
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:160
+#, php-format
+msgid "%s is already watched."
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:164
+#, php-format
+msgid "%s contains nested watched directory: %s"
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:168
+#, php-format
+msgid "%s is nested within existing watched directory: %s"
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:189
+#: airtime_mvc/application/models/MusicDir.php:370
+#, php-format
+msgid "%s is not a valid directory."
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:232
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list"
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:388
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list."
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:431
+#, php-format
+msgid "%s doesn't exist in the watched list."
+msgstr ""
+
+#: airtime_mvc/application/models/Auth.php:33
+#, php-format
+msgid ""
+"Hi %s, \n"
+"\n"
+"Please click this link to reset your password: "
+msgstr ""
+
+#: airtime_mvc/application/models/Auth.php:38
+#, php-format
+msgid "%s Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/models/Show.php:184
+msgid "Shows can have a max length of 24 hours."
+msgstr ""
+
+#: airtime_mvc/application/models/Show.php:293
+msgid ""
+"Cannot schedule overlapping shows.\n"
+"Note: Resizing a repeating show affects all of its repeats."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:73
+msgid "Cannot move items out of linked shows"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:119
+msgid "The schedule you're viewing is out of date! (sched mismatch)"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:124
+msgid "The schedule you're viewing is out of date! (instance mismatch)"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:132
+#: airtime_mvc/application/models/Scheduler.php:458
+#: airtime_mvc/application/models/Scheduler.php:490
+msgid "The schedule you're viewing is out of date!"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:142
+#, php-format
+msgid "You are not allowed to schedule show %s."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:146
+msgid "You cannot add files to recording shows."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:152
+#, php-format
+msgid "The show %s is over and cannot be scheduled."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:159
+#, php-format
+msgid "The show %s has been previously updated!"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:178
+msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:195
+msgid "Cannot schedule a playlist that contains missing files."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:216
+#: airtime_mvc/application/models/Scheduler.php:305
+msgid "A selected File does not exist!"
+msgstr ""
+
+#: airtime_mvc/application/models/Schedule.php:206
+msgid "livestream"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:166
+msgid "Length needs to be greater than 0 minutes"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:171
+msgid "Length should be of form \"00h 00m\""
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:184
+msgid "URL should be of form \"http://domain\""
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:187
+msgid "URL should be 512 characters or less"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:193
+msgid "No MIME type found for webstream."
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:209
+msgid "Webstream name cannot be empty"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:278
+msgid "Could not parse XSPF playlist"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:298
+msgid "Could not parse PLS playlist"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:318
+msgid "Could not parse M3U playlist"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:332
+msgid "Invalid webstream - This appears to be a file download."
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:336
+#, php-format
+msgid "Unrecognized stream type: %s"
+msgstr ""
+
+#: airtime_mvc/public/setup/rabbitmq-setup.php:78
+msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
+msgstr ""
diff --git a/airtime_mvc/locale/ru_RU/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/ru_RU/LC_MESSAGES/airtime.mo
index 6d4e7e0a5..7318a2572 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 b7ba429e7..d63ee2349 100644
--- a/airtime_mvc/locale/ru_RU/LC_MESSAGES/airtime.po
+++ b/airtime_mvc/locale/ru_RU/LC_MESSAGES/airtime.po
@@ -12,9 +12,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Airtime\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-09-03 10:24-0400\n"
-"PO-Revision-Date: 2015-06-23 12:48+0000\n"
-"Last-Translator: Andrey Podshivalov\n"
+"POT-Creation-Date: 2015-09-04 11:17-0400\n"
+"PO-Revision-Date: 2015-09-04 08:15+0000\n"
+"Last-Translator: Daniel James \n"
"Language-Team: Russian (Russia) (http://www.transifex.com/sourcefabric/airtime/language/ru_RU/)\n"
"Language: ru_RU\n"
"MIME-Version: 1.0\n"
@@ -22,132 +22,6 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
-#: airtime_mvc/public/setup/rabbitmq-setup.php:78
-msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1117
-#: airtime_mvc/application/services/HistoryService.php:1157
-#: airtime_mvc/application/services/HistoryService.php:1174
-#: airtime_mvc/application/models/Block.php:1375
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
-#: airtime_mvc/application/controllers/LocaleController.php:76
-msgid "Title"
-msgstr "Заголовок"
-
-#: airtime_mvc/application/services/HistoryService.php:1118
-#: airtime_mvc/application/services/HistoryService.php:1158
-#: airtime_mvc/application/services/HistoryService.php:1175
-#: airtime_mvc/application/models/Block.php:1360
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
-#: airtime_mvc/application/controllers/LocaleController.php:77
-msgid "Creator"
-msgstr "Создатель"
-
-#: airtime_mvc/application/services/HistoryService.php:1119
-#: airtime_mvc/application/models/Block.php:1352
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
-#: airtime_mvc/application/controllers/LocaleController.php:78
-msgid "Album"
-msgstr "Альбом"
-
-#: airtime_mvc/application/services/HistoryService.php:1120
-#: airtime_mvc/application/services/HistoryService.php:1177
-#: airtime_mvc/application/models/Block.php:1369
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
-#: airtime_mvc/application/controllers/LocaleController.php:91
-msgid "Length"
-msgstr "Длина"
-
-#: airtime_mvc/application/services/HistoryService.php:1121
-#: airtime_mvc/application/models/Block.php:1362
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
-#: airtime_mvc/application/controllers/LocaleController.php:85
-msgid "Genre"
-msgstr "Жанр"
-
-#: airtime_mvc/application/services/HistoryService.php:1122
-#: airtime_mvc/application/models/Block.php:1371
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
-#: airtime_mvc/application/controllers/LocaleController.php:93
-msgid "Mood"
-msgstr "Настроение"
-
-#: airtime_mvc/application/services/HistoryService.php:1123
-#: airtime_mvc/application/models/Block.php:1364
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
-#: airtime_mvc/application/controllers/LocaleController.php:87
-msgid "Label"
-msgstr "Ярлык "
-
-#: airtime_mvc/application/services/HistoryService.php:1124
-#: airtime_mvc/application/services/HistoryService.php:1178
-#: airtime_mvc/application/models/Block.php:1355
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
-#: airtime_mvc/application/controllers/LocaleController.php:81
-msgid "Composer"
-msgstr "Композитор"
-
-#: airtime_mvc/application/services/HistoryService.php:1125
-#: airtime_mvc/application/models/Block.php:1363
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
-#: airtime_mvc/application/controllers/LocaleController.php:86
-msgid "ISRC"
-msgstr "ISRC"
-
-#: airtime_mvc/application/services/HistoryService.php:1126
-#: airtime_mvc/application/services/HistoryService.php:1179
-#: airtime_mvc/application/models/Block.php:1357
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
-#: airtime_mvc/application/controllers/LocaleController.php:83
-msgid "Copyright"
-msgstr "Авторское право"
-
-#: airtime_mvc/application/services/HistoryService.php:1127
-#: airtime_mvc/application/models/Block.php:1379
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
-#: airtime_mvc/application/controllers/LocaleController.php:100
-msgid "Year"
-msgstr "Год"
-
-#: airtime_mvc/application/services/HistoryService.php:1128
-msgid "Track"
-msgstr "Трек"
-
-#: airtime_mvc/application/services/HistoryService.php:1129
-#: airtime_mvc/application/models/Block.php:1356
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
-#: airtime_mvc/application/controllers/LocaleController.php:82
-msgid "Conductor"
-msgstr "Исполнитель"
-
-#: airtime_mvc/application/services/HistoryService.php:1130
-#: airtime_mvc/application/models/Block.php:1365
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
-#: airtime_mvc/application/controllers/LocaleController.php:88
-msgid "Language"
-msgstr "Язык"
-
-#: airtime_mvc/application/services/HistoryService.php:1155
-#: airtime_mvc/application/forms/EditHistoryItem.php:32
-msgid "Start Time"
-msgstr "Время старта"
-
-#: airtime_mvc/application/services/HistoryService.php:1156
-#: airtime_mvc/application/forms/EditHistoryItem.php:44
-msgid "End Time"
-msgstr "Время окончания"
-
-#: airtime_mvc/application/services/HistoryService.php:1176
-msgid "Played"
-msgstr "Проиграно"
-
#: airtime_mvc/application/services/CalendarService.php:50
msgid "Record file doesn't exist"
msgstr "Записанный файл не найден"
@@ -243,2604 +117,381 @@ msgstr "Программа была удалена, потому что запи
msgid "Must wait 1 hour to rebroadcast."
msgstr "До ретрансляции необходимо ожидать 1 час."
-#: airtime_mvc/application/models/Schedule.php:206
-msgid "livestream"
+#: airtime_mvc/application/services/HistoryService.php:1117
+#: airtime_mvc/application/services/HistoryService.php:1157
+#: airtime_mvc/application/services/HistoryService.php:1174
+#: airtime_mvc/application/controllers/LocaleController.php:76
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
+#: airtime_mvc/application/models/Block.php:1375
+msgid "Title"
+msgstr "Заголовок"
+
+#: airtime_mvc/application/services/HistoryService.php:1118
+#: airtime_mvc/application/services/HistoryService.php:1158
+#: airtime_mvc/application/services/HistoryService.php:1175
+#: airtime_mvc/application/controllers/LocaleController.php:77
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
+#: airtime_mvc/application/models/Block.php:1360
+msgid "Creator"
+msgstr "Создатель"
+
+#: airtime_mvc/application/services/HistoryService.php:1119
+#: airtime_mvc/application/controllers/LocaleController.php:78
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
+#: airtime_mvc/application/models/Block.php:1352
+msgid "Album"
+msgstr "Альбом"
+
+#: airtime_mvc/application/services/HistoryService.php:1120
+#: airtime_mvc/application/services/HistoryService.php:1177
+#: airtime_mvc/application/controllers/LocaleController.php:91
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
+#: airtime_mvc/application/models/Block.php:1369
+msgid "Length"
+msgstr "Длина"
+
+#: airtime_mvc/application/services/HistoryService.php:1121
+#: airtime_mvc/application/controllers/LocaleController.php:85
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
+#: airtime_mvc/application/models/Block.php:1362
+msgid "Genre"
+msgstr "Жанр"
+
+#: airtime_mvc/application/services/HistoryService.php:1122
+#: airtime_mvc/application/controllers/LocaleController.php:93
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
+#: airtime_mvc/application/models/Block.php:1371
+msgid "Mood"
+msgstr "Настроение"
+
+#: airtime_mvc/application/services/HistoryService.php:1123
+#: airtime_mvc/application/controllers/LocaleController.php:87
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
+#: airtime_mvc/application/models/Block.php:1364
+msgid "Label"
+msgstr "Ярлык "
+
+#: airtime_mvc/application/services/HistoryService.php:1124
+#: airtime_mvc/application/services/HistoryService.php:1178
+#: airtime_mvc/application/controllers/LocaleController.php:81
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
+#: airtime_mvc/application/models/Block.php:1355
+msgid "Composer"
+msgstr "Композитор"
+
+#: airtime_mvc/application/services/HistoryService.php:1125
+#: airtime_mvc/application/controllers/LocaleController.php:86
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
+#: airtime_mvc/application/models/Block.php:1363
+msgid "ISRC"
+msgstr "ISRC"
+
+#: airtime_mvc/application/services/HistoryService.php:1126
+#: airtime_mvc/application/services/HistoryService.php:1179
+#: airtime_mvc/application/controllers/LocaleController.php:83
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
+#: airtime_mvc/application/models/Block.php:1357
+msgid "Copyright"
+msgstr "Авторское право"
+
+#: airtime_mvc/application/services/HistoryService.php:1127
+#: airtime_mvc/application/controllers/LocaleController.php:100
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
+#: airtime_mvc/application/models/Block.php:1379
+msgid "Year"
+msgstr "Год"
+
+#: airtime_mvc/application/services/HistoryService.php:1128
+msgid "Track"
+msgstr "Трек"
+
+#: airtime_mvc/application/services/HistoryService.php:1129
+#: airtime_mvc/application/controllers/LocaleController.php:82
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
+#: airtime_mvc/application/models/Block.php:1356
+msgid "Conductor"
+msgstr "Исполнитель"
+
+#: airtime_mvc/application/services/HistoryService.php:1130
+#: airtime_mvc/application/controllers/LocaleController.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
+#: airtime_mvc/application/models/Block.php:1365
+msgid "Language"
+msgstr "Язык"
+
+#: airtime_mvc/application/services/HistoryService.php:1155
+#: airtime_mvc/application/forms/EditHistoryItem.php:32
+msgid "Start Time"
+msgstr "Время старта"
+
+#: airtime_mvc/application/services/HistoryService.php:1156
+#: airtime_mvc/application/forms/EditHistoryItem.php:44
+msgid "End Time"
+msgstr "Время окончания"
+
+#: airtime_mvc/application/services/HistoryService.php:1176
+msgid "Played"
+msgstr "Проиграно"
+
+#: airtime_mvc/application/controllers/LibraryController.php:31
+#: airtime_mvc/application/controllers/PlaylistController.php:147
+#, php-format
+msgid "%s not found"
+msgstr "%s не найден"
+
+#: airtime_mvc/application/controllers/LibraryController.php:40
+#: airtime_mvc/application/controllers/PlaylistController.php:168
+msgid "Something went wrong."
+msgstr "Что-то пошло не так."
+
+#: airtime_mvc/application/controllers/LibraryController.php:95
+#: airtime_mvc/application/controllers/ShowbuilderController.php:136
+msgid "Preview"
+msgstr "Предварительный просмотр"
+
+#: airtime_mvc/application/controllers/LibraryController.php:115
+#: airtime_mvc/application/controllers/LibraryController.php:177
+#: airtime_mvc/application/controllers/LibraryController.php:200
+msgid "Add to Playlist"
+msgstr "Добавить в плейлист"
+
+#: airtime_mvc/application/controllers/LibraryController.php:117
+msgid "Add to Smart Block"
+msgstr "Добавить в умный блок"
+
+#: airtime_mvc/application/controllers/LibraryController.php:123
+#: airtime_mvc/application/controllers/LocaleController.php:66
+msgid "Edit Metadata"
+msgstr "Редактировать метаданные"
+
+#: airtime_mvc/application/controllers/LibraryController.php:131
+#: airtime_mvc/application/controllers/ScheduleController.php:712
+msgid "Download"
+msgstr "Загрузить"
+
+#: airtime_mvc/application/controllers/LibraryController.php:147
+msgid "View track"
msgstr ""
-#: airtime_mvc/application/models/ShowBuilder.php:212
-#, php-format
-msgid "Rebroadcast of %s from %s"
-msgstr "Ретрансляция %s из %s"
-
-#: airtime_mvc/application/models/Webstream.php:166
-msgid "Length needs to be greater than 0 minutes"
-msgstr "Длина должна быть более 0 минут"
-
-#: airtime_mvc/application/models/Webstream.php:171
-msgid "Length should be of form \"00h 00m\""
-msgstr "Длину указать в формате \"00ч 00мин \""
-
-#: airtime_mvc/application/models/Webstream.php:184
-msgid "URL should be of form \"http://domain\""
-msgstr "URL указать в формате \"http://домен\""
-
-#: airtime_mvc/application/models/Webstream.php:187
-msgid "URL should be 512 characters or less"
-msgstr "URL должен быть 512 символов или менее"
-
-#: airtime_mvc/application/models/Webstream.php:193
-msgid "No MIME type found for webstream."
-msgstr "Для веб-потока не найдено MIME type"
-
-#: airtime_mvc/application/models/Webstream.php:209
-msgid "Webstream name cannot be empty"
-msgstr "Название вебпотока должно быть заполнено"
-
-#: airtime_mvc/application/models/Webstream.php:278
-msgid "Could not parse XSPF playlist"
-msgstr "Не удалось анализировать XSPF плейлист"
-
-#: airtime_mvc/application/models/Webstream.php:298
-msgid "Could not parse PLS playlist"
-msgstr "Не удалось анализировать PLS плейлист"
-
-#: airtime_mvc/application/models/Webstream.php:318
-msgid "Could not parse M3U playlist"
-msgstr "Не удалось анализировать M3U плейлист"
-
-#: airtime_mvc/application/models/Webstream.php:332
-msgid "Invalid webstream - This appears to be a file download."
-msgstr "Неверный вебпоток - это загрузка файла."
-
-#: airtime_mvc/application/models/Webstream.php:336
-#, php-format
-msgid "Unrecognized stream type: %s"
-msgstr "Неизвестный тип потока: %s"
-
-#: airtime_mvc/application/models/Preference.php:460
-#, php-format
-msgid "Powered by %s"
+#: airtime_mvc/application/controllers/LibraryController.php:148
+msgid "Remove track"
msgstr ""
-#: airtime_mvc/application/models/Preference.php:588
-msgid "Select Country"
-msgstr "Выберите страну"
+#: airtime_mvc/application/controllers/LibraryController.php:154
+#: airtime_mvc/application/controllers/LibraryController.php:159
+msgid "Upload track"
+msgstr ""
-#: airtime_mvc/application/models/MusicDir.php:160
+#: airtime_mvc/application/controllers/LibraryController.php:169
+msgid "Duplicate Playlist"
+msgstr "Дублировать плейлист"
+
+#: airtime_mvc/application/controllers/LibraryController.php:213
+msgid "No action available"
+msgstr "Нет доступных действий"
+
+#: airtime_mvc/application/controllers/LibraryController.php:233
+msgid "You don't have permission to delete selected items."
+msgstr "У вас нет разрешения на удаление выбранных элементов."
+
+#: airtime_mvc/application/controllers/LibraryController.php:279
+msgid "Could not delete file because it is scheduled in the future."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:282
+msgid "Could not delete file(s)."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:322
#, php-format
-msgid "%s is already watched."
-msgstr "%s уже просматривают."
+msgid "Copy of %s"
+msgstr "Копия %s"
-#: airtime_mvc/application/models/MusicDir.php:164
-#, php-format
-msgid "%s contains nested watched directory: %s"
-msgstr "%s содержит вложенную просматриваемую папку: %s"
+#: airtime_mvc/application/controllers/WebstreamController.php:28
+#: airtime_mvc/application/controllers/WebstreamController.php:32
+msgid "Untitled Webstream"
+msgstr "Веб-поток без названия"
-#: airtime_mvc/application/models/MusicDir.php:168
-#, php-format
-msgid "%s is nested within existing watched directory: %s"
-msgstr "%s вложено в существующую просматриваемую папку: %s"
+#: airtime_mvc/application/controllers/WebstreamController.php:150
+msgid "Webstream saved."
+msgstr "Веб-поток сохранен."
-#: airtime_mvc/application/models/MusicDir.php:189
-#: airtime_mvc/application/models/MusicDir.php:370
-#, php-format
-msgid "%s is not a valid directory."
-msgstr "%s не является допустимой папкой."
+#: airtime_mvc/application/controllers/WebstreamController.php:158
+msgid "Invalid form values."
+msgstr "Недопустимые значения формы."
-#: airtime_mvc/application/models/MusicDir.php:232
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list"
-msgstr "%s уже установлена в качестве текущей папки хранения или в списке просматриваемых папок"
-
-#: airtime_mvc/application/models/MusicDir.php:388
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list."
-msgstr "%s уже установлен в качестве текущей папки хранения или в списке просматриваемых папок."
-
-#: airtime_mvc/application/models/MusicDir.php:431
-#, php-format
-msgid "%s doesn't exist in the watched list."
-msgstr "%s не существует в просматриваемом списке"
-
-#: airtime_mvc/application/models/Show.php:184
-msgid "Shows can have a max length of 24 hours."
-msgstr "Максимальная продолжительность программы 24 часа."
-
-#: airtime_mvc/application/models/Show.php:282
-#: airtime_mvc/application/forms/AddShowWhen.php:156
-msgid "End date/time cannot be in the past"
-msgstr "Дата/время окончания не могут быть прошедшими"
-
-#: airtime_mvc/application/models/Show.php:293
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
msgid ""
-"Cannot schedule overlapping shows.\n"
-"Note: Resizing a repeating show affects all of its repeats."
+"To configure and use the embeddable player you must:
\n"
+" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
+" 2. Enable the Public Airtime API under System -> Preferences"
msgstr ""
-"Нельзя планировать пересекающиеся программы.\n"
-"Примечание: изменение размера повторяющейся программы влияет на все ее повторы."
-#: airtime_mvc/application/models/Auth.php:33
-#, php-format
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
msgid ""
-"Hi %s, \n"
-"\n"
-"Please click this link to reset your password: "
+"To use the embeddable weekly schedule widget you must:
\n"
+" Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/models/Auth.php:38
+#: airtime_mvc/application/controllers/ListenerstatController.php:51
+msgid "Please make sure admin user/password is correct on System->Streams page."
+msgstr ""
+
+#: airtime_mvc/application/controllers/UserController.php:86
+msgid "User added successfully!"
+msgstr "Пользователь успешно добавлен!"
+
+#: airtime_mvc/application/controllers/UserController.php:88
+msgid "User updated successfully!"
+msgstr "Пользователь успешно обновлен!"
+
+#: airtime_mvc/application/controllers/UserController.php:187
+msgid "Settings updated successfully!"
+msgstr "Изменения в настройках сохранены!"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:53
#, php-format
-msgid "%s Password Reset"
-msgstr ""
+msgid "You are viewing an older version of %s"
+msgstr "Вы просматриваете старые версии %s"
-#: airtime_mvc/application/models/Block.php:333
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
-msgid "items"
-msgstr "элементы"
+#: airtime_mvc/application/controllers/PlaylistController.php:140
+msgid "You cannot add tracks to dynamic blocks."
+msgstr "Вы не можете добавить треки в динамические блоки."
-#: airtime_mvc/application/models/Block.php:833
-#: airtime_mvc/application/models/Playlist.php:812
-msgid "Cue in and cue out are null."
-msgstr "Время начала и окончания звучания трека не заполнены."
-
-#: airtime_mvc/application/models/Block.php:868
-#: airtime_mvc/application/models/Block.php:924
-#: airtime_mvc/application/models/Playlist.php:851
-#: airtime_mvc/application/models/Playlist.php:895
-msgid "Can't set cue out to be greater than file length."
-msgstr "Время окончания звучания не может превышать длину трека."
-
-#: airtime_mvc/application/models/Block.php:879
-#: airtime_mvc/application/models/Block.php:900
-#: airtime_mvc/application/models/Playlist.php:843
-#: airtime_mvc/application/models/Playlist.php:868
-msgid "Can't set cue in to be larger than cue out."
-msgstr "Время начала звучания не может быть больше времени окончания. "
-
-#: airtime_mvc/application/models/Block.php:935
-#: airtime_mvc/application/models/Playlist.php:887
-msgid "Can't set cue out to be smaller than cue in."
-msgstr "Время окончания звучания не может быть меньше времени начала."
-
-#: airtime_mvc/application/models/Block.php:1351
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
-msgid "Select criteria"
-msgstr "Выбрать критерии"
-
-#: airtime_mvc/application/models/Block.php:1353
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
-msgid "Bit Rate (Kbps)"
-msgstr "Битовая скорость (Kbps)"
-
-#: airtime_mvc/application/models/Block.php:1354
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
-#: airtime_mvc/application/controllers/LocaleController.php:80
-msgid "BPM"
-msgstr "BPM"
-
-#: airtime_mvc/application/models/Block.php:1358
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
-#: airtime_mvc/application/controllers/LocaleController.php:281
-#: airtime_mvc/application/layouts/scripts/layout.phtml:140
-msgid "Cue In"
-msgstr "Начало звучания"
-
-#: airtime_mvc/application/models/Block.php:1359
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:282
-#: airtime_mvc/application/layouts/scripts/layout.phtml:147
-msgid "Cue Out"
-msgstr "Окончание звучания"
-
-#: airtime_mvc/application/models/Block.php:1361
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
-#: airtime_mvc/application/controllers/LocaleController.php:84
-msgid "Encoded By"
-msgstr "Закодировано в"
-
-#: airtime_mvc/application/models/Block.php:1366
-msgid "Upload Time"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1367
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
-#: airtime_mvc/application/controllers/LocaleController.php:89
-msgid "Last Modified"
-msgstr "Последние изменения"
-
-#: airtime_mvc/application/models/Block.php:1368
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
-#: airtime_mvc/application/controllers/LocaleController.php:90
-msgid "Last Played"
-msgstr "Последнее проигрывание"
-
-#: airtime_mvc/application/models/Block.php:1370
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
-#: airtime_mvc/application/controllers/LocaleController.php:92
-msgid "Mime"
-msgstr "Mime"
-
-#: airtime_mvc/application/models/Block.php:1372
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
-#: airtime_mvc/application/controllers/LocaleController.php:94
-msgid "Owner"
-msgstr "Владелец"
-
-#: airtime_mvc/application/models/Block.php:1373
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
-#: airtime_mvc/application/controllers/LocaleController.php:95
-msgid "Replay Gain"
-msgstr "Выравнивание громкости"
-
-#: airtime_mvc/application/models/Block.php:1374
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
-msgid "Sample Rate (kHz)"
-msgstr "Частота дискретизации (кГц)"
-
-#: airtime_mvc/application/models/Block.php:1376
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
-#: airtime_mvc/application/controllers/LocaleController.php:97
-msgid "Track Number"
-msgstr "Номер дорожки"
-
-#: airtime_mvc/application/models/Block.php:1377
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
-#: airtime_mvc/application/controllers/LocaleController.php:98
-msgid "Uploaded"
-msgstr "Загружено"
-
-#: airtime_mvc/application/models/Block.php:1378
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
-#: airtime_mvc/application/controllers/LocaleController.php:99
-msgid "Website"
-msgstr "Вебсайт"
-
-#: airtime_mvc/application/models/Block.php:1383
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
-#: airtime_mvc/application/controllers/LocaleController.php:151
-msgid "Select modifier"
-msgstr "Выберите модификатор"
-
-#: airtime_mvc/application/models/Block.php:1384
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
-#: airtime_mvc/application/controllers/LocaleController.php:152
-msgid "contains"
-msgstr "содержит"
-
-#: airtime_mvc/application/models/Block.php:1385
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
-#: airtime_mvc/application/controllers/LocaleController.php:153
-msgid "does not contain"
-msgstr "не содержит:"
-
-#: airtime_mvc/application/models/Block.php:1386
-#: airtime_mvc/application/models/Block.php:1390
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
-#: airtime_mvc/application/controllers/LocaleController.php:154
-msgid "is"
-msgstr "является"
-
-#: airtime_mvc/application/models/Block.php:1387
-#: airtime_mvc/application/models/Block.php:1391
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
-#: airtime_mvc/application/controllers/LocaleController.php:155
-msgid "is not"
-msgstr "не является"
-
-#: airtime_mvc/application/models/Block.php:1388
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
-#: airtime_mvc/application/controllers/LocaleController.php:156
-msgid "starts with"
-msgstr "начинается с"
-
-#: airtime_mvc/application/models/Block.php:1389
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
-#: airtime_mvc/application/controllers/LocaleController.php:157
-msgid "ends with"
-msgstr "заканчивается"
-
-#: airtime_mvc/application/models/Block.php:1392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
-#: airtime_mvc/application/controllers/LocaleController.php:158
-msgid "is greater than"
-msgstr "больше, чем"
-
-#: airtime_mvc/application/models/Block.php:1393
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
-#: airtime_mvc/application/controllers/LocaleController.php:159
-msgid "is less than"
-msgstr "меньше, чем"
-
-#: airtime_mvc/application/models/Block.php:1394
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
-#: airtime_mvc/application/controllers/LocaleController.php:160
-msgid "is in the range"
-msgstr "находится в диапазоне"
-
-#: airtime_mvc/application/models/Scheduler.php:73
-msgid "Cannot move items out of linked shows"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:119
-msgid "The schedule you're viewing is out of date! (sched mismatch)"
-msgstr "Расписание, которое вы просматриваете, устарело! (несоответствие расписания)"
-
-#: airtime_mvc/application/models/Scheduler.php:124
-msgid "The schedule you're viewing is out of date! (instance mismatch)"
-msgstr "Расписание, которое вы просматриваете, устарело! (несоответствие выпусков)"
-
-#: airtime_mvc/application/models/Scheduler.php:132
-#: airtime_mvc/application/models/Scheduler.php:458
-#: airtime_mvc/application/models/Scheduler.php:490
-msgid "The schedule you're viewing is out of date!"
-msgstr "Расписание, которое вы просматриваете, устарело!"
-
-#: airtime_mvc/application/models/Scheduler.php:142
+#: airtime_mvc/application/controllers/PlaylistController.php:161
#, php-format
-msgid "You are not allowed to schedule show %s."
-msgstr "У вас нет прав планирования программы %s ."
+msgid "You don't have permission to delete selected %s(s)."
+msgstr "У вас нет разрешения на удаление выбранных %s(s)."
-#: airtime_mvc/application/models/Scheduler.php:146
-msgid "You cannot add files to recording shows."
-msgstr "Вы не можете добавлять файлы в записываемую программу"
+#: airtime_mvc/application/controllers/PlaylistController.php:174
+msgid "You can only add tracks to smart block."
+msgstr "Вы можете добавить треки только в умный блок."
-#: airtime_mvc/application/models/Scheduler.php:152
+#: airtime_mvc/application/controllers/PlaylistController.php:180
+#: airtime_mvc/application/controllers/LocaleController.php:50
+msgid "You can only add tracks, smart blocks, and webstreams to playlists."
+msgstr "Вы можете добавить только треки, умные блоки и веб-потоки к плейлистам."
+
+#: airtime_mvc/application/controllers/PlaylistController.php:192
+msgid "Untitled Playlist"
+msgstr "Плейлист без названия"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:194
+msgid "Untitled Smart Block"
+msgstr "Умный блок без названия"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:522
+msgid "Unknown Playlist"
+msgstr "Неизвестный плейлист"
+
+#: airtime_mvc/application/controllers/ErrorController.php:78
+msgid "Page not found."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:87
+msgid "The requested action is not supported."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:98
+msgid "You do not have permission to access this resource."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:109
+msgid "An internal application error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/controllers/Apiv2Controller.php:77
+#: airtime_mvc/application/controllers/ApiController.php:79
+msgid "You are not allowed to access this resource."
+msgstr "Вы не имеете доступа к этому ресурсу."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:72
+msgid "Preferences updated."
+msgstr "Установки пользователя обновлены."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:115
+msgid "Support setting updated."
+msgstr "Настройка поддержки обновлена."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:123
+msgid "Support Feedback"
+msgstr "Отзывы о поддержке"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:251
+msgid "Stream Setting Updated."
+msgstr "Настройки потока обновлены."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:342
+msgid "path should be specified"
+msgstr "Путь должен быть указан"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:437
+msgid "Problem with Liquidsoap..."
+msgstr "Проблема с Liquidsoap ..."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:493
+msgid "Request method not accepted"
+msgstr ""
+
+#: airtime_mvc/application/controllers/DashboardController.php:35
+#: airtime_mvc/application/controllers/DashboardController.php:84
+msgid "You don't have permission to disconnect source."
+msgstr "У вас нет разрешения отсоединить источник."
+
+#: airtime_mvc/application/controllers/DashboardController.php:37
+#: airtime_mvc/application/controllers/DashboardController.php:86
+msgid "There is no source connected to this input."
+msgstr "Нет источника, подключенного к этому входу."
+
+#: airtime_mvc/application/controllers/DashboardController.php:81
+msgid "You don't have permission to switch source."
+msgstr "У вас нет разрешения для переключения источника."
+
+#: airtime_mvc/application/controllers/LoginController.php:43
+msgid "Please enter your username and password."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:93
+msgid "Wrong username or password provided. Please try again."
+msgstr "Неверное имя пользователя или пароль. Пожалуйста, попробуйте еще раз."
+
+#: airtime_mvc/application/controllers/LoginController.php:167
+msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
+msgstr "E-mail не может быть отправлен. Проверьте настройки почтового сервера и убедитесь, что он был настроен должным образом."
+
+#: airtime_mvc/application/controllers/LoginController.php:173
+msgid "There was a problem with the username or email address you entered."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ApiController.php:244
+#: airtime_mvc/application/controllers/ApiController.php:317
+#: airtime_mvc/application/controllers/ApiController.php:392
+#: airtime_mvc/application/controllers/ApiController.php:435
+#: airtime_mvc/application/controllers/ApiController.php:474
+#: airtime_mvc/application/controllers/ApiController.php:507
+msgid "You are not allowed to access this resource. "
+msgstr "Вы не имеете доступа к этому ресурсу."
+
+#: airtime_mvc/application/controllers/ApiController.php:698
+#: airtime_mvc/application/controllers/ApiController.php:718
+#: airtime_mvc/application/controllers/ApiController.php:730
#, php-format
-msgid "The show %s is over and cannot be scheduled."
-msgstr "Программа %s окончилась и не может быть поставлена в расписание."
-
-#: airtime_mvc/application/models/Scheduler.php:159
-#, php-format
-msgid "The show %s has been previously updated!"
-msgstr "Программа %s была обновлена ранее!"
-
-#: airtime_mvc/application/models/Scheduler.php:178
-msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:195
-msgid "Cannot schedule a playlist that contains missing files."
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:216
-#: airtime_mvc/application/models/Scheduler.php:305
-msgid "A selected File does not exist!"
-msgstr "Выбранный файл не существует!"
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
-#: airtime_mvc/application/configs/navigation.php:40
-msgid "Weekly Schedule"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
-#: airtime_mvc/application/forms/Player.php:77
-msgid "Preview:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
-#: airtime_mvc/application/configs/navigation.php:34
-msgid "Player"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
-#: airtime_mvc/application/controllers/LocaleController.php:362
-#: airtime_mvc/application/controllers/LocaleController.php:390
-msgid "Close"
-msgstr "Закрыть"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Add this show"
-msgstr "Добавить эту программу"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Update show"
-msgstr "Обновить программу"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
-msgid "What"
-msgstr "Что"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
-msgid "When"
-msgstr "Когда"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
-msgid "Live Stream Input"
-msgstr "Потоковый ввод"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
-msgid "Who"
-msgstr "Кто"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
-msgid "Style"
-msgstr "Стиль"
-
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
-#: airtime_mvc/application/controllers/LocaleController.php:273
-msgid "Start"
-msgstr "Начало"
-
-#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
-msgid "Password Reset"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
-msgid "Email Sent!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
-msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
-msgid "Back"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
-msgid "New password"
-msgstr "Новый пароль"
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
-msgid "Please enter and confirm your new password in the fields below."
-msgstr "Пожалуйста, введите и подтвердите новый пароль ниже."
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:3
-#: airtime_mvc/application/forms/Login.php:83
-msgid "Login"
-msgstr "Войти"
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:7
-#, php-format
-msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:97
-msgid "Playout History"
-msgstr "История воспроизведения"
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
-msgid "Log Sheet"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
-msgid "File Summary"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
-msgid "Show Summary"
-msgstr "Данные по прграмме"
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
-msgid "Your trial expires in"
-msgstr "лизензия истекает через"
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
-msgid "days"
-msgstr "дней"
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-#, php-format
-msgid "Purchase an %s Pro plan!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-msgid "My Account"
-msgstr "Моя учетная запись"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
-msgid "Previous:"
-msgstr "Предыдущая:"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
-msgid "Next:"
-msgstr "Следующая:"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
-msgid "Source Streams"
-msgstr "Исходные потоки"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
-msgid "Master Source"
-msgstr "Источник Master "
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
-msgid "Show Source"
-msgstr "Источник Show"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
-msgid "ON AIR"
-msgstr "В эфире"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
-msgid "Listen"
-msgstr "Слушать"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
-msgid "Logout"
-msgstr "Выход"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
-msgid "Drop files here or click to browse your computer."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
-#: airtime_mvc/application/controllers/LocaleController.php:314
-msgid "in use"
-msgstr "используется"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
-#: airtime_mvc/application/controllers/LocaleController.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:401
-msgid "All"
-msgstr "Все"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
-msgid "Failed"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
-msgid "Pending"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
-msgid "Recent Uploads"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
-#: airtime_mvc/application/configs/navigation.php:120
-msgid "Account Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
-msgid "Upgrade today to get more listeners and storage space!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
-msgid "View Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
-msgid "About"
-msgstr "О программе"
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
-#, php-format
-msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
-#, php-format
-msgid "%1$s %2$s is distributed under the %3$s"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
-#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
-msgid "Live stream"
-msgstr "Потоковый режим"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
-msgid "Share"
-msgstr "Поделиться"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
-msgid "Select stream:"
-msgstr "Выбор потока:"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
-msgid "mute"
-msgstr "отключить звук"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
-msgid "unmute"
-msgstr "включить звук"
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
-#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
-#, php-format
-msgid "Welcome to %s!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
-#, php-format
-msgid "Here's how you can get started using %s to automate your broadcasts: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
-msgid "Upload audio tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
-msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
-msgid "Schedule a show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
-msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
-msgid "Add tracks to your show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
-msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
-msgid "Now you're good to go!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
-#, php-format
-msgid "For more detailed help, read the %suser manual%s."
-msgstr "Для более подробной справки читать %sруководство пользователя%s ."
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
-msgid "Listeners"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
-msgid "Stream Data Collection Status"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
-#: airtime_mvc/application/views/scripts/error/error.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
-msgid "An error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
-msgid "Access Denied!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
-msgid "You do not have permission to access this page!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
-#: airtime_mvc/application/views/scripts/error/error.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
-#: airtime_mvc/application/configs/navigation.php:143
-msgid "Help"
-msgstr "Справка"
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
-msgid "Page not found!"
-msgstr "Страница не найдена!"
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
-msgid "We couldn't find the page you were looking for."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error.phtml:12
-msgid "Looks like the page you were looking for doesn't exist!"
-msgstr "Похоже, что страница, которую вы ищете, не существует!"
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
-msgid "Oops!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
-msgid "Something went wrong!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
-msgid "Bad Request!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
-msgid "The requested action is not supported!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
-msgid "Viewing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
-msgid "Editing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:3
-msgid "File import in progress..."
-msgstr "Импорт файлов в процессе ..."
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:10
-#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
-msgid "Advanced Search Options"
-msgstr "Дополнительные параметры поиска"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
-#: airtime_mvc/application/forms/Player.php:15
-#: airtime_mvc/application/forms/EditAudioMD.php:24
-msgid "Title:"
-msgstr "Заголовок:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
-#: airtime_mvc/application/forms/EditAudioMD.php:34
-msgid "Creator:"
-msgstr "Создатель:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
-#: airtime_mvc/application/forms/EditAudioMD.php:44
-msgid "Album:"
-msgstr "Альбом:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
-msgid "Track:"
-msgstr "Дорожка"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
-msgid "Length:"
-msgstr "Длина:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
-msgid "Sample Rate:"
-msgstr "Частота дискретизации:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
-msgid "Bit Rate:"
-msgstr "Битовая скорость:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
-#: airtime_mvc/application/forms/EditAudioMD.php:115
-msgid "Mood:"
-msgstr "Настроение:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
-#: airtime_mvc/application/forms/EditAudioMD.php:62
-#: airtime_mvc/application/forms/AddShowWhat.php:45
-msgid "Genre:"
-msgstr "Жанр:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
-#: airtime_mvc/application/forms/EditAudioMD.php:72
-msgid "Year:"
-msgstr "Год:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
-#: airtime_mvc/application/forms/EditAudioMD.php:85
-msgid "Label:"
-msgstr "Метка:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
-#: airtime_mvc/application/forms/EditAudioMD.php:125
-msgid "BPM:"
-msgstr "BPM:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
-#: airtime_mvc/application/forms/EditAudioMD.php:95
-msgid "Composer:"
-msgstr "Композитор:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
-#: airtime_mvc/application/forms/EditAudioMD.php:105
-msgid "Conductor:"
-msgstr "Исполнитель:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
-#: airtime_mvc/application/forms/EditAudioMD.php:135
-msgid "Copyright:"
-msgstr "Авторское право:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
-msgid "Isrc Number:"
-msgstr "ISRC номер:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
-#: airtime_mvc/application/forms/EditAudioMD.php:155
-msgid "Website:"
-msgstr "Вебсайт:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
-#: airtime_mvc/application/forms/EditUser.php:119
-#: airtime_mvc/application/forms/EditAudioMD.php:165
-#: airtime_mvc/application/forms/Login.php:68
-msgid "Language:"
-msgstr "Язык: "
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
-msgid "File Path:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
-#: airtime_mvc/application/forms/AddShowWhat.php:26
-msgid "Name:"
-msgstr "Имя:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
-#: airtime_mvc/application/forms/AddShowWhat.php:54
-msgid "Description:"
-msgstr "Описание:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
-msgid "Web Stream"
-msgstr "Веб-поток"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
-msgid "Dynamic Smart Block"
-msgstr "Динамический умный блок"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
-msgid "Static Smart Block"
-msgstr "Статический умный блок"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
-msgid "Audio Track"
-msgstr "Аудио-дорожка"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
-msgid "Playlist Contents: "
-msgstr "Содержание плейлиста: "
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
-msgid "Static Smart Block Contents: "
-msgstr "Содержание статического умного блока: "
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
-msgid "Dynamic Smart Block Criteria: "
-msgstr "Критерии динамического умного блока: "
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
-msgid "Limit to "
-msgstr "Ограничение до "
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
-#: airtime_mvc/application/forms/AddShowWhat.php:36
-msgid "URL:"
-msgstr "URL:"
-
-#: airtime_mvc/application/views/scripts/form/login.phtml:41
-msgid "Forgot your password?"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
-#, php-format
-msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
-#, php-format
-msgid "Click the box below to promote your station on %s."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
-msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
-msgstr "(В целях продвижения вашей станции, опция 'Отправить отзывы о поддержке' должна быть включена)."
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
-msgid "(Required)"
-msgstr "(Обязательно)"
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
-msgid "(for verification purposes only, will not be published)"
-msgstr "(Только для проверки, не будет опубликовано)"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
-msgid "Choose folder"
-msgstr "Выбрать"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
-msgid "Set"
-msgstr "Установка"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
-msgid "Current Import Folder:"
-msgstr "Текущая папка импорта:"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
-msgid "Add"
-msgstr "Добавить"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
-#, php-format
-msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
-msgid "Remove watched directory"
-msgstr "Удалить просмотренную папку"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
-msgid "You are not watching any media folders."
-msgstr "Вы не просматриваете никакие папки медиа-файлов."
-
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
-msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
-msgid "Live Broadcasting"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
-msgid "Use these settings in your broadcasting software to stream live at any time."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
-msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
-msgid "Choose Show Instance"
-msgstr "Выберите программу"
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
-#: airtime_mvc/application/forms/EditHistoryItem.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:400
-msgid "No Show"
-msgstr "Нет Show"
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
-msgid "Find"
-msgstr "Найти"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
-msgid "Choose Days:"
-msgstr "Выберите дни:"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
-#: airtime_mvc/application/forms/AddShowStyle.php:64
-#: airtime_mvc/application/forms/GeneralPreferences.php:53
-msgid "Remove"
-msgstr "Удалить"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
-msgid "Stream "
-msgstr "Поток "
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
-msgid "Additional Options"
-msgstr "Дополнительные параметры"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
-msgid "The following info will be displayed to listeners in their media player:"
-msgstr "Следующая информация будет отображаться для слушателей в их медиа-плейере:"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
-msgid "(Your radio station website)"
-msgstr "(Веб-сайт вашей радиостанции)"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
-msgid "Stream URL: "
-msgstr "URL потока: "
-
-#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
-msgid "Find Shows"
-msgstr "Найти программы"
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
-msgid "TuneIn Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
-msgid "SoundCloud Settings"
-msgstr "Настройки SoundCloud "
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
-msgid "Dangerous Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
-msgid "Search Criteria:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
-msgid "New Criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
-msgid "or"
-msgstr "или"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
-msgid "and"
-msgstr "и"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
-msgid "New Modifier"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
-msgid " to "
-msgstr " к "
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
-msgid "files meet the criteria"
-msgstr "Файлы отвечают критериям"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
-msgid "file meets the criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
-msgid "Filter History"
-msgstr "Фильтровать историю"
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
-#: airtime_mvc/application/configs/navigation.php:61
-msgid "My Profile"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
-#, php-format
-msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
-#: airtime_mvc/application/forms/Preferences.php:40
-#: airtime_mvc/application/forms/PasswordChange.php:43
-#: airtime_mvc/application/forms/AddUser.php:110
-#: airtime_mvc/application/forms/BillingClient.php:193
-#: airtime_mvc/application/forms/SupportSettings.php:131
-#: airtime_mvc/application/forms/EditHistory.php:131
-#: airtime_mvc/application/controllers/LocaleController.php:294
-msgid "Save"
-msgstr "Сохранить"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
-msgid "Repeat Days:"
-msgstr "Повторить дні:"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
-msgid "Register Airtime"
-msgstr "Регистрация Airtime "
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
-#: airtime_mvc/application/forms/GeneralPreferences.php:43
-msgid "Note: Anything larger than 600x600 will be resized."
-msgstr "Примечание: все, что превысит размеры 600x600, будет изменено."
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
-msgid "Show me what I am sending "
-msgstr "Покажите мне, что я посылаю "
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
-msgid "Terms and Conditions"
-msgstr "Постановления и условия"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
-msgid "Creating File Summary Template"
-msgstr "Создание шаблона по файлам"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
-msgid "Creating Log Sheet Template"
-msgstr "Создание шаблона лога"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
-msgid "Name"
-msgstr "Имя"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
-msgid "Add more elements"
-msgstr "Добавить еще элементы"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
-msgid "Add New Field"
-msgstr "Добавить поле"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
-msgid "Set Default Template"
-msgstr "Установить шаблон по умолчанию"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
-msgid "Playout History Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
-msgid "Log Sheet Templates"
-msgstr "Шаблоны лога"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
-msgid "New Log Sheet Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
-msgid "No Log Sheet Templates"
-msgstr "Нет шаблона лога"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
-#: airtime_mvc/application/controllers/LocaleController.php:397
-msgid "Set Default"
-msgstr "Установить по умолчанию"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
-msgid "File Summary Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
-msgid "New File Summary Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
-msgid "No File Summary Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
-msgid "Disk Space"
-msgstr "Дисковое пространство"
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
-#: airtime_mvc/application/controllers/LocaleController.php:315
-msgid "Disk"
-msgstr "Диск"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
-#: airtime_mvc/application/forms/AddShowWhen.php:89
-msgid "Duration:"
-msgstr "Длительность:"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
-msgid "Toggle Details"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
-msgid "Playlist crossfade"
-msgstr "Перекрестное затухание композиций плейлиста"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-msgid "Remove all content from this smart block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Clear"
-msgstr "Очистить"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "Fade in: "
-msgstr "Усиление: "
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "(ss.t)"
-msgstr "(сс)"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-msgid "Fade out: "
-msgstr "Затухание: "
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
-#: airtime_mvc/application/forms/EditAudioMD.php:186
-#: airtime_mvc/application/forms/EditHistory.php:141
-#: airtime_mvc/application/controllers/LocaleController.php:295
-#: airtime_mvc/application/controllers/LocaleController.php:318
-msgid "Cancel"
-msgstr "Отменить"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
-msgid "No smart block currently open"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
-msgid "Show Waveform"
-msgstr "Показать трек"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-msgid "Cue In: "
-msgstr "Начало звучания: "
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "(hh:mm:ss.t)"
-msgstr "(чч: мм: сс)"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "Cue Out: "
-msgstr "Окончание звучания: "
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
-msgid "Original Length:"
-msgstr "Исходная длина:"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
-msgid "Expand Static Block"
-msgstr "Развернуть статический блок"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
-msgid "Expand Dynamic Block"
-msgstr "Развернуть динамический блок"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
-msgid "Choose some search criteria above and click Generate to create this playlist."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
-msgid "A track list will be generated when you schedule this smart block into a show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
-msgid "Drag tracks here from your library to add them to the playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-msgid "Shuffle playlist"
-msgstr "Перемешать плейлист"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
-msgid "Shuffle"
-msgstr "Перемешать"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Empty playlist content"
-msgstr "Очистить плейлист"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-msgid "Save playlist"
-msgstr "Сохранить плейлист"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
-msgid "No open playlist"
-msgstr "Нет открытых плейлистов"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
-msgid "previous"
-msgstr "предыдущая"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
-msgid "play"
-msgstr "играть"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
-msgid "pause"
-msgstr "пауза"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
-msgid "next"
-msgstr "следующая"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
-msgid "stop"
-msgstr "стоп"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
-msgid "max volume"
-msgstr "максимальная громкость"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
-msgid "Update Required"
-msgstr "Требуется обновление"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
-#, php-format
-msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
-msgstr "Для проигрывания медиа-файла необходимо либо обновить браузер до последней версии или обновить %sфлэш-плагина%s."
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
-msgid "Stream Settings"
-msgstr "Настройки потоковой передачи "
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
-msgid "Global"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
-msgid "dB"
-msgstr "дБ"
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
-msgid "Output Streams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
-#: airtime_mvc/application/controllers/LocaleController.php:166
-msgid "Manage Media Folders"
-msgstr "Управление папками медиа-файлов"
-
-#: airtime_mvc/application/views/scripts/preference/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:56
-msgid "General"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
-msgid "Description"
-msgstr "Описание"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
-msgid "Stream URL:"
-msgstr "URL потока:"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
-msgid "Default Length:"
-msgstr "Длина по умолчанию:"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
-msgid "No webstream"
-msgstr "Нет веб-потока"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
-msgid "Manage Users"
-msgstr "Управление пользователями"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
-msgid "New User"
-msgstr "Новый пользователь"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
-msgid "id"
-msgstr "id"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
-#: airtime_mvc/application/forms/PasswordRestore.php:25
-msgid "Username"
-msgstr "Имя пользователя"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
-msgid "First Name"
-msgstr "Имя"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
-msgid "Last Name"
-msgstr "Фамилия"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
-msgid "User Type"
-msgstr "Тип пользователя"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
-#, php-format
-msgid "Super Admin details can be changed in your Billing Settings."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
-#: airtime_mvc/application/controllers/LocaleController.php:74
-#: airtime_mvc/application/layouts/scripts/layout.phtml:78
-msgid "Tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
-#: airtime_mvc/application/controllers/LocaleController.php:104
-#: airtime_mvc/application/layouts/scripts/layout.phtml:80
-msgid "Playlists"
-msgstr "Плейлисты"
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
-#: airtime_mvc/application/controllers/LocaleController.php:105
-#: airtime_mvc/application/layouts/scripts/layout.phtml:82
-msgid "Smart Blocks"
-msgstr "Умные блоки"
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
-#: airtime_mvc/application/layouts/scripts/layout.phtml:84
-msgid "Webstreams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
-#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
-#: airtime_mvc/application/layouts/scripts/layout.phtml:76
-msgid "Dashboard"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:12
-msgid "Radio Page"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:19
-msgid "Calendar"
-msgstr "Календарь"
-
-#: airtime_mvc/application/configs/navigation.php:26
-msgid "Widgets"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:48
-msgid "Settings"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:67
-msgid "Users"
-msgstr "Пользователи"
-
-#: airtime_mvc/application/configs/navigation.php:74
-msgid "Streams"
-msgstr "Потоки"
-
-#: airtime_mvc/application/configs/navigation.php:82
-msgid "Analytics"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:90
-msgid "Listener Stats"
-msgstr "Статистика слушателей"
-
-#: airtime_mvc/application/configs/navigation.php:104
-msgid "History Templates"
-msgstr "Шаблоны истории"
-
-#: airtime_mvc/application/configs/navigation.php:113
-msgid "Billing"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:127
-msgid "Account Details"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:134
-msgid "View Invoices"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:150
-msgid "Getting Started"
-msgstr "С чего начать"
-
-#: airtime_mvc/application/configs/navigation.php:157
-msgid "FAQ"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:162
-msgid "User Manual"
-msgstr "Руководство пользователя"
-
-#: airtime_mvc/application/configs/navigation.php:167
-msgid "File a Support Ticket"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:12
-msgid "Background Colour:"
-msgstr "Цвет фона:"
-
-#: airtime_mvc/application/forms/AddShowStyle.php:31
-msgid "Text Colour:"
-msgstr "Цвет текста:"
-
-#: airtime_mvc/application/forms/AddShowStyle.php:49
-msgid "Current Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:72
-msgid "Show Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:87
-msgid "Logo Preview:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:19
-msgid "Push metadata to your station on TuneIn?"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:24
-msgid "Station ID:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:30
-msgid "Partner Key:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:36
-msgid "Partner Id:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:77
-#: airtime_mvc/application/forms/TuneInPreferences.php:86
-msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:14
-msgid "Now Playing"
-msgstr "Сейчас в эфире"
-
-#: airtime_mvc/application/forms/Player.php:25
-msgid "Select Stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:28
-msgid "Auto detect the most appropriate stream to use."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:29
-msgid "Select a stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:41
-msgid " - Mobile friendly"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:45
-msgid " - The player does not support Opus streams."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:71
-msgid "Embeddable code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:72
-msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:37
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
-#: airtime_mvc/application/forms/Login.php:41
-#: airtime_mvc/application/forms/AddUser.php:29
-msgid "Username:"
-msgstr "Логин:"
-
-#: airtime_mvc/application/forms/EditUser.php:48
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
-#: airtime_mvc/application/forms/Login.php:54
-#: airtime_mvc/application/forms/AddUser.php:38
-#: airtime_mvc/application/forms/BillingClient.php:172
-msgid "Password:"
-msgstr "Пароль:"
-
-#: airtime_mvc/application/forms/EditUser.php:57
-#: airtime_mvc/application/forms/AddUser.php:46
-#: airtime_mvc/application/forms/BillingClient.php:181
-msgid "Verify Password:"
-msgstr "Повторите пароль:"
-
-#: airtime_mvc/application/forms/EditUser.php:67
-#: airtime_mvc/application/forms/AddUser.php:55
-msgid "Firstname:"
-msgstr "Имя"
-
-#: airtime_mvc/application/forms/EditUser.php:75
-#: airtime_mvc/application/forms/AddUser.php:61
-msgid "Lastname:"
-msgstr "Фамилия"
-
-#: airtime_mvc/application/forms/EditUser.php:83
-#: airtime_mvc/application/forms/RegisterAirtime.php:51
-#: airtime_mvc/application/forms/AddUser.php:67
-#: airtime_mvc/application/forms/SupportSettings.php:43
-msgid "Email:"
-msgstr "Email:"
-
-#: airtime_mvc/application/forms/EditUser.php:94
-#: airtime_mvc/application/forms/AddUser.php:76
-msgid "Mobile Phone:"
-msgstr "Тел:"
-
-#: airtime_mvc/application/forms/EditUser.php:102
-#: airtime_mvc/application/forms/AddUser.php:82
-msgid "Skype:"
-msgstr "Skype:"
-
-#: airtime_mvc/application/forms/EditUser.php:110
-#: airtime_mvc/application/forms/AddUser.php:88
-msgid "Jabber:"
-msgstr "Jabber:"
-
-#: airtime_mvc/application/forms/EditUser.php:129
-msgid "Interface Timezone:"
-msgstr "Временная зона (броузер)"
-
-#: airtime_mvc/application/forms/EditUser.php:155
-#: airtime_mvc/application/forms/AddUser.php:120
-msgid "Login name is not unique."
-msgstr "Имя пользователя не является уникальным."
-
-#: airtime_mvc/application/forms/AddShowRR.php:10
-msgid "Record from Line In?"
-msgstr "Запись с линейного входа?"
-
-#: airtime_mvc/application/forms/AddShowRR.php:16
-msgid "Rebroadcast?"
-msgstr "Ретрансляция?"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:16
-msgid "'%value%' does not fit the time format 'HH:mm'"
-msgstr "'%значение%' не соответствует формату времени 'ЧЧ:мм'"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:22
-msgid "Start Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:37
-msgid "In the Future:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:64
-msgid "End Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:98
-msgid "Timezone:"
-msgstr "Временная зона:"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:107
-msgid "Repeats?"
-msgstr "Повторы?"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:139
-msgid "Cannot create show in the past"
-msgstr "Невозможно создать программу в прошедшем периоде"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:147
-msgid "Cannot modify start date/time of the show that is already started"
-msgstr "Невозможно изменить дату/время начала программы, которая уже началась"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:164
-msgid "Cannot have duration < 0m"
-msgstr "Не может иметь длительность <0м"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:168
-msgid "Cannot have duration 00h 00m"
-msgstr "Не может иметь длительность 00ч 00м"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:175
-msgid "Cannot have duration greater than 24h"
-msgstr "Не может иметь длительность более 24 часов"
-
-#: airtime_mvc/application/forms/AddShowWho.php:10
-msgid "Search Users:"
-msgstr "Поиск пользователей:"
-
-#: airtime_mvc/application/forms/AddShowWho.php:24
-msgid "DJs:"
-msgstr "Диджеи:"
-
-#: airtime_mvc/application/forms/PasswordChange.php:17
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
-msgid "Password"
-msgstr "Пароль"
-
-#: airtime_mvc/application/forms/PasswordChange.php:28
-msgid "Confirm new password"
-msgstr "Подтвердить новый пароль"
-
-#: airtime_mvc/application/forms/PasswordChange.php:36
-msgid "Password confirmation does not match your password."
-msgstr "Подтверждение пароля не совпадает с вашим паролем."
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
-msgid "Station Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
-#: airtime_mvc/application/forms/GeneralPreferences.php:127
-msgid "Station Timezone"
-msgstr "Временная зона станции"
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
-msgid "Auto Switch Off:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
-msgid "Auto Switch On:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
-msgid "Switch Transition Fade (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
-#: airtime_mvc/application/forms/GeneralPreferences.php:68
-#: airtime_mvc/application/forms/GeneralPreferences.php:82
-#: airtime_mvc/application/forms/GeneralPreferences.php:96
-msgid "Please enter a time in seconds (eg. 0.5)"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
-#: airtime_mvc/application/forms/AddShowLiveStream.php:48
-msgid "Host:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
-#: airtime_mvc/application/forms/AddShowLiveStream.php:54
-msgid "Port:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
-#: airtime_mvc/application/forms/AddShowLiveStream.php:60
-msgid "Mount:"
-msgstr ""
-
-#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
-msgid "Value is required and can't be empty"
-msgstr "Значение является обязательным и не может быть пустым"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:25
-#: airtime_mvc/application/forms/RegisterAirtime.php:30
-#: airtime_mvc/application/forms/SupportSettings.php:18
-msgid "Station Name"
-msgstr "Название станции"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:33
-msgid "Station Description"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:42
-#: airtime_mvc/application/forms/RegisterAirtime.php:106
-msgid "Station Logo:"
-msgstr "Логотип станции:"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:62
-msgid "Default Crossfade Duration (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:76
-msgid "Default Fade In (s):"
-msgstr "Возрастание по умолчанию:"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:90
-msgid "Default Fade Out (s):"
-msgstr "Затухание по умолчанию:"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:102
-msgid "Public Airtime API"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:103
-msgid "Required for embeddable schedule widget."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:105
-msgid "Disabled"
-msgstr "Отключено"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:106
-msgid "Enabled"
-msgstr "Активировано"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:109
-msgid ""
-"Enabling this feature will allow Airtime to provide schedule data\n"
-" to external widgets that can be embedded in your website."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:120
-msgid "Default Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:134
-msgid "Week Starts On"
-msgstr "Начало недели"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:150
-msgid "Display login button on your Radio Page?"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:158
-#: airtime_mvc/application/controllers/LocaleController.php:249
-msgid "Sunday"
-msgstr "Воскресенье"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:159
-#: airtime_mvc/application/controllers/LocaleController.php:250
-msgid "Monday"
-msgstr "Понедельник"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:160
-#: airtime_mvc/application/controllers/LocaleController.php:251
-msgid "Tuesday"
-msgstr "Вторник"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:161
-#: airtime_mvc/application/controllers/LocaleController.php:252
-msgid "Wednesday"
-msgstr "Среда"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:162
-#: airtime_mvc/application/controllers/LocaleController.php:253
-msgid "Thursday"
-msgstr "Четверг"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:163
-#: airtime_mvc/application/controllers/LocaleController.php:254
-msgid "Friday"
-msgstr "Пятница"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:164
-#: airtime_mvc/application/controllers/LocaleController.php:255
-msgid "Saturday"
-msgstr "Суббота"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
-msgid "Default License:"
-msgstr "Лицензия по умолчанию:"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
-msgid "All rights are reserved"
-msgstr "Все права защищены"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
-msgid "The work is in the public domain"
-msgstr "Работа находится в публичном домене"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
-msgid "Creative Commons Attribution"
-msgstr "Лицензия Creative Commons Attribution"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
-msgid "Creative Commons Attribution Noncommercial"
-msgstr "Некоммерческая Creative Commons Attribution"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
-msgid "Creative Commons Attribution No Derivative Works"
-msgstr "Creative Commons Attribution без производных продуктов"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
-msgid "Creative Commons Attribution Share Alike"
-msgstr "Creative Commons Attribution в равных долях"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
-msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
-msgstr "Creative Commons Attribution Non Некоммерческое производных работ"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
-msgid "Creative Commons Attribution Noncommercial Share Alike"
-msgstr "Creative Commons Attribution некоммерческая в равных долях"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
-msgid "Default Sharing Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
-msgid "Public"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
-msgid "Private"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:18
-#: airtime_mvc/application/forms/DateRange.php:16
-msgid "Date Start:"
-msgstr "Дата начала:"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:37
-#: airtime_mvc/application/forms/ShowBuilder.php:65
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
-#: airtime_mvc/application/forms/DateRange.php:35
-#: airtime_mvc/application/forms/DateRange.php:63
-msgid "Invalid character entered"
-msgstr "Неверно введенный символ"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:46
-#: airtime_mvc/application/forms/AddShowRepeats.php:56
-#: airtime_mvc/application/forms/DateRange.php:44
-msgid "Date End:"
-msgstr "Дата окончания:"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:72
-#: airtime_mvc/application/forms/ShowBuilder.php:88
-msgid "Filter by Show"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:80
-msgid "All My Shows:"
-msgstr "Все мои программы:"
-
-#: airtime_mvc/application/forms/EditAudioMD.php:145
-msgid "ISRC Number:"
-msgstr "ISRC номер:"
-
-#: airtime_mvc/application/forms/EditAudioMD.php:176
-msgid "OK"
-msgstr "OK"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
-msgid "Day must be specified"
-msgstr "День должен быть указан"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
-msgid "Time must be specified"
-msgstr "Время должно быть указано"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
-msgid "Must wait at least 1 hour to rebroadcast"
-msgstr "Должны ждать по крайней мере 1 час до ретрансляции"
-
-#: airtime_mvc/application/forms/AddShowWhat.php:30
-msgid "Untitled Show"
-msgstr "Программа без названия"
-
-#: airtime_mvc/application/forms/AddShowWhat.php:69
-msgid "Instance Description:"
-msgstr ""
-
-#: airtime_mvc/application/forms/DangerousPreferences.php:12
-msgid "Delete All Tracks in Library"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:39
-#: airtime_mvc/application/forms/SupportSettings.php:31
-msgid "Phone:"
-msgstr "Телефон:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:62
-#: airtime_mvc/application/forms/SupportSettings.php:54
-msgid "Station Web Site:"
-msgstr "Вебсайт станции:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:73
-#: airtime_mvc/application/forms/BillingClient.php:102
-#: airtime_mvc/application/forms/SupportSettings.php:65
-msgid "Country:"
-msgstr "Страна:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:84
-#: airtime_mvc/application/forms/BillingClient.php:70
-#: airtime_mvc/application/forms/SupportSettings.php:76
-msgid "City:"
-msgstr "Город"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:96
-#: airtime_mvc/application/forms/SupportSettings.php:88
-msgid "Station Description:"
-msgstr "Описание станции:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:116
-#: airtime_mvc/application/forms/SupportSettings.php:98
-#: airtime_mvc/application/controllers/LocaleController.php:341
-msgid "Send support feedback"
-msgstr "Отправить отзыв о поддержке"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:126
-#: airtime_mvc/application/forms/SupportSettings.php:108
-#, php-format
-msgid "Promote my station on %s"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:151
-#: airtime_mvc/application/forms/SupportSettings.php:120
-#, php-format
-msgid "By checking this box, I agree to %s's %sprivacy policy%s."
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:169
-#: airtime_mvc/application/forms/SupportSettings.php:143
-msgid "You have to agree to privacy policy."
-msgstr "Вы должны согласиться с политикой конфиденциальности."
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:10
-msgid "Link:"
-msgstr "Ссылка:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:16
-msgid "Repeat Type:"
-msgstr "Тип повтора:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:19
-msgid "weekly"
-msgstr "Еженедельно"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:20
-msgid "every 2 weeks"
-msgstr "каждые 2 недели"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:21
-msgid "every 3 weeks"
-msgstr "каждые 3 недели"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:22
-msgid "every 4 weeks"
-msgstr "каждые 4 недели"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:23
-msgid "monthly"
-msgstr "ежемесячно"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:32
-msgid "Select Days:"
-msgstr "Выберите дни:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:35
-#: airtime_mvc/application/controllers/LocaleController.php:256
-msgid "Sun"
-msgstr "Вс"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:36
-#: airtime_mvc/application/controllers/LocaleController.php:257
-msgid "Mon"
-msgstr "Пн"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:37
-#: airtime_mvc/application/controllers/LocaleController.php:258
-msgid "Tue"
-msgstr "Вт"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:38
-#: airtime_mvc/application/controllers/LocaleController.php:259
-msgid "Wed"
-msgstr "Ср"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:39
-#: airtime_mvc/application/controllers/LocaleController.php:260
-msgid "Thu"
-msgstr "Чт"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:40
-#: airtime_mvc/application/controllers/LocaleController.php:261
-msgid "Fri"
-msgstr "Пт"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:41
-#: airtime_mvc/application/controllers/LocaleController.php:262
-msgid "Sat"
-msgstr "Сб"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:47
-msgid "Repeat By:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the month"
-msgstr "день месяца"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the week"
-msgstr "день недели"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:69
-msgid "No End?"
-msgstr "Нет окончания?"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:106
-msgid "End date must be after start date"
-msgstr "Дата окончания должна быть после даты начала"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:113
-msgid "Please select a repeat day"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:10
-#, php-format
-msgid "Use %s Authentication:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:16
-msgid "Use Custom Authentication:"
-msgstr "Использование пользовательской идентификации:"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:25
-msgid "Custom Username"
-msgstr "Пользовательские имя пользователя"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:37
-msgid "Custom Password"
-msgstr "Пользовательский пароль"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:77
-msgid "Username field cannot be empty."
-msgstr "Имя пользователя не может быть пустым."
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:82
-msgid "Password field cannot be empty."
-msgstr "Пароль не может быть пустым."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
-msgid "Enabled:"
-msgstr "Активировано:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
-msgid "Mobile:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
-msgid "Stream Type:"
-msgstr "Тип потока:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
-msgid "Service Type:"
-msgstr "Тип услуги:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
-msgid "Channels:"
-msgstr "Каналы:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "1 - Mono"
-msgstr "1 - Моно"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "2 - Stereo"
-msgstr "2 - Стерео"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
-msgid "Server"
-msgstr "Сервер"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
-msgid "Port"
-msgstr "Порт"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
-msgid "Only numbers are allowed."
-msgstr "Разрешены только числа."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
-msgid "URL"
-msgstr "URL"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
-msgid "Mount Point"
-msgstr "Точка монтирования"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
-msgid "Admin User"
-msgstr "Администратор"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
-msgid "Admin Password"
-msgstr "Пароль администратора"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
-#: airtime_mvc/application/controllers/LocaleController.php:173
-msgid "Getting information from the server..."
-msgstr "Получение информации с сервера ..."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
-msgid "Server cannot be empty."
-msgstr "Сервер не может быть пустым"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
-msgid "Port cannot be empty."
-msgstr "Порт не может быть пустым."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
-msgid "Mount cannot be empty with Icecast server."
-msgstr "Монтирование не может быть пустым с Icecast сервер."
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
-msgid "'%value%' is no valid email address in the basic format local-part@hostname"
-msgstr "'% значение%' не является действительным адресом электронной почты в формате local-part@hostname"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
-msgid "'%value%' does not fit the date format '%format%'"
-msgstr "'%значение%' не соответствует формату даты '%формат%'"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
-msgid "'%value%' is less than %min% characters long"
-msgstr "'%значение%' имеет менее %min% символов"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
-msgid "'%value%' is more than %max% characters long"
-msgstr "'%значение%' имеет более %max% символов"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
-msgid "'%value%' is not between '%min%' and '%max%', inclusively"
-msgstr "'%значение%' не входит в промежуток '%min%' и '%maxс% включительно"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
-msgid "Passwords do not match"
-msgstr "Пароли не совпадают"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
-msgid "hours"
-msgstr "часов"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
-msgid "minutes"
-msgstr "минут"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
-msgid "Randomly"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
-msgid "Newest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
-msgid "Oldest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
-msgid "Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
-msgid "Static"
-msgstr "Статический"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
-msgid "Dynamic"
-msgstr "Динамический"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
-msgid "Allow Repeated Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
-msgid "Sort Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
-msgid "Limit to:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
-msgid "Generate playlist content and save criteria"
-msgstr "Создать содержание плейлиста и сохранить критерии"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
-msgid "Generate"
-msgstr "Создать"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
-msgid "Shuffle playlist content"
-msgstr "Перемешать содержание плейлиста"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
-msgid "Limit cannot be empty or smaller than 0"
-msgstr "Ограничение не может быть пустым или менее 0"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
-msgid "Limit cannot be more than 24 hrs"
-msgstr "Ограничение не может быть более 24 часов"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
-msgid "The value should be an integer"
-msgstr "Значение должно быть целым числом"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
-msgid "500 is the max item limit value you can set"
-msgstr "500 является максимально допустимым значением элемента"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
-msgid "You must select Criteria and Modifier"
-msgstr "Вы должны выбрать критерии и модификаторы"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
-msgid "'Length' should be in '00:00:00' format"
-msgstr "\"Длина\" должна быть в формате '00:00:00'"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
-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:594
-msgid "The value has to be numeric"
-msgstr "Значение должно быть числом"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
-msgid "The value should be less then 2147483648"
-msgstr "Значение должно быть меньше, чем 2147483648"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
-#, php-format
-msgid "The value should be less than %s characters"
-msgstr "Значение должно быть меньше, чем %s символов"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
-msgid "Value cannot be empty"
-msgstr "Значение не может быть пустым"
-
-#: airtime_mvc/application/forms/Login.php:102
-msgid "Type the characters you see in the picture below."
-msgstr "Введите символы, которые вы видите на картинке ниже."
-
-#: airtime_mvc/application/forms/StreamSetting.php:26
-msgid "Icecast Vorbis Metadata"
-msgstr "Метаданные Icecast Vorbis "
-
-#: airtime_mvc/application/forms/StreamSetting.php:36
-msgid "Stream Label:"
-msgstr "Метка потока:"
-
-#: airtime_mvc/application/forms/StreamSetting.php:37
-msgid "Artist - Title"
-msgstr "Исполнитель - Название"
-
-#: airtime_mvc/application/forms/StreamSetting.php:38
-msgid "Show - Artist - Title"
-msgstr "Программа - Исполнитель - Название"
-
-#: airtime_mvc/application/forms/StreamSetting.php:39
-msgid "Station name - Show name"
-msgstr "Название станции - Название программы"
-
-#: airtime_mvc/application/forms/StreamSetting.php:45
-msgid "Off Air Metadata"
-msgstr "Отключить мета-данные"
-
-#: airtime_mvc/application/forms/StreamSetting.php:51
-msgid "Enable Replay Gain"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:57
-msgid "Replay Gain Modifier"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:65
-msgid "Streaming Server:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Airtime Pro Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Custom / 3rd Party Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:95
-msgid "User Type:"
-msgstr "Тип пользователя:"
-
-#: airtime_mvc/application/forms/AddUser.php:99
-#: airtime_mvc/application/controllers/LocaleController.php:324
-msgid "Guest"
-msgstr "Гость"
-
-#: airtime_mvc/application/forms/AddUser.php:100
-#: airtime_mvc/application/controllers/LocaleController.php:322
-msgid "DJ"
-msgstr "Диджей"
-
-#: airtime_mvc/application/forms/AddUser.php:101
-#: airtime_mvc/application/controllers/LocaleController.php:323
-msgid "Program Manager"
-msgstr "Менеджер программы"
-
-#: airtime_mvc/application/forms/AddUser.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:321
-msgid "Admin"
-msgstr "Администратор"
-
-#: airtime_mvc/application/forms/BillingClient.php:17
-msgid "First Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:26
-msgid "Last Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:35
-msgid "Company Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:44
-msgid "Email Address:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:54
-msgid "Address 1:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:63
-msgid "Address 2:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:80
-msgid "State/Region:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:89
-msgid "Zip Code / Postal Code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:112
-msgid "Phone Number:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:121
-msgid "Please choose a security question:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:126
-msgid "What is the name of your favorite childhood friend?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:127
-msgid "What school did you attend for sixth grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:128
-msgid "In what city did you meet your spouse/significant other?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:129
-msgid "What street did you live on in third grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:130
-msgid "What is the first name of the boy or girl that you first kissed?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:131
-msgid "In what city or town was your first job?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:135
-msgid "Please enter an answer:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:152
-msgid "VAT/Tax ID (EU only)"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:162
-msgid "Subscribe to Sourcefabric newsletter"
-msgstr ""
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
-msgid "Import Folder:"
-msgstr "Импорт папки:"
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
-msgid "Watched Folders:"
-msgstr "Просматриваемые папки:"
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
-msgid "Not a valid Directory"
-msgstr "Не является допустимой папкой"
-
-#: airtime_mvc/application/forms/PasswordRestore.php:14
-msgid "Email"
+msgid "File does not exist in %s"
msgstr ""
-#: airtime_mvc/application/forms/PasswordRestore.php:36
-msgid "Reset password"
-msgstr "Сменить пароль"
+#: airtime_mvc/application/controllers/ApiController.php:781
+msgid "Bad request. no 'mode' parameter passed."
+msgstr "Неверный запрос. параметр 'режим' не прошел."
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
-msgid "Plan type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
-msgid "Billing cycle:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
-msgid "Payment method:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
-msgid "PayPal"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
-msgid "Credit Card via 2Checkout"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:213
-#, php-format
-msgid "The year %s must be within the range of 1753 - 9999"
-msgstr "Год %s должен быть в пределах 1753 - 9999"
-
-#: airtime_mvc/application/common/DateHelper.php:216
-#, php-format
-msgid "%s-%s-%s is not a valid date"
-msgstr "%s - %s - %s не является допустимой датой"
-
-#: airtime_mvc/application/common/DateHelper.php:240
-#, php-format
-msgid "%s:%s:%s is not a valid time"
-msgstr "%s : %s : %s не является допустимым временем"
-
-#: airtime_mvc/application/common/UsabilityHints.php:55
-msgid "Upload some tracks below to add them to your library!"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:57
-#, php-format
-msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:63
-msgid "Click the 'New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:65
-#, php-format
-msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:73
-msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:75
-#, php-format
-msgid ""
-"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
-" %sCreate an unlinked show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:80
-msgid "To start broadcasting, click on the current show and select 'Schedule Show'"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:82
-#, php-format
-msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:89
-msgid "Click on the show starting next and select 'Schedule Show'"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:91
-#, php-format
-msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
-msgstr ""
+#: airtime_mvc/application/controllers/ApiController.php:791
+msgid "Bad request. 'mode' parameter is invalid"
+msgstr "Неверный запрос. параметр 'режим' является недопустимым"
#: airtime_mvc/application/controllers/LocaleController.php:30
#: airtime_mvc/application/layouts/scripts/audio-player.phtml:5
@@ -2912,11 +563,6 @@ msgstr "Добавление %s элементов"
msgid "You can only add tracks to smart blocks."
msgstr "Вы можете добавить треки только в умные блоки."
-#: airtime_mvc/application/controllers/LocaleController.php:50
-#: airtime_mvc/application/controllers/PlaylistController.php:180
-msgid "You can only add tracks, smart blocks, and webstreams to playlists."
-msgstr "Вы можете добавить только треки, умные блоки и веб-потоки к плейлистам."
-
#: airtime_mvc/application/controllers/LocaleController.php:53
msgid "Please select a cursor position on timeline."
msgstr ""
@@ -2957,11 +603,6 @@ msgstr ""
msgid "Click 'New' to create one."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:66
-#: airtime_mvc/application/controllers/LibraryController.php:123
-msgid "Edit Metadata"
-msgstr "Редактировать метаданные"
-
#: airtime_mvc/application/controllers/LocaleController.php:67
msgid "Add to selected show"
msgstr "Добавить в избранную программу"
@@ -2990,6 +631,12 @@ msgstr "Вы действительно хотите удалить выделе
msgid "Scheduled"
msgstr "Запланировано"
+#: airtime_mvc/application/controllers/LocaleController.php:74
+#: airtime_mvc/application/layouts/scripts/layout.phtml:78
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
+msgid "Tracks"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:75
#: airtime_mvc/application/layouts/scripts/layout.phtml:60
msgid "Playlist"
@@ -2999,18 +646,96 @@ msgstr ""
msgid "Bit Rate"
msgstr "Скорость передачи данных"
+#: airtime_mvc/application/controllers/LocaleController.php:80
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
+#: airtime_mvc/application/models/Block.php:1354
+msgid "BPM"
+msgstr "BPM"
+
+#: airtime_mvc/application/controllers/LocaleController.php:84
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
+#: airtime_mvc/application/models/Block.php:1361
+msgid "Encoded By"
+msgstr "Закодировано в"
+
+#: airtime_mvc/application/controllers/LocaleController.php:89
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
+#: airtime_mvc/application/models/Block.php:1367
+msgid "Last Modified"
+msgstr "Последние изменения"
+
+#: airtime_mvc/application/controllers/LocaleController.php:90
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
+#: airtime_mvc/application/models/Block.php:1368
+msgid "Last Played"
+msgstr "Последнее проигрывание"
+
+#: airtime_mvc/application/controllers/LocaleController.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
+#: airtime_mvc/application/models/Block.php:1370
+msgid "Mime"
+msgstr "Mime"
+
+#: airtime_mvc/application/controllers/LocaleController.php:94
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
+#: airtime_mvc/application/models/Block.php:1372
+msgid "Owner"
+msgstr "Владелец"
+
+#: airtime_mvc/application/controllers/LocaleController.php:95
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
+#: airtime_mvc/application/models/Block.php:1373
+msgid "Replay Gain"
+msgstr "Выравнивание громкости"
+
#: airtime_mvc/application/controllers/LocaleController.php:96
msgid "Sample Rate"
msgstr "Частота дискретизации"
+#: airtime_mvc/application/controllers/LocaleController.php:97
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
+#: airtime_mvc/application/models/Block.php:1376
+msgid "Track Number"
+msgstr "Номер дорожки"
+
+#: airtime_mvc/application/controllers/LocaleController.php:98
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
+#: airtime_mvc/application/models/Block.php:1377
+msgid "Uploaded"
+msgstr "Загружено"
+
+#: airtime_mvc/application/controllers/LocaleController.php:99
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
+#: airtime_mvc/application/models/Block.php:1378
+msgid "Website"
+msgstr "Вебсайт"
+
#: airtime_mvc/application/controllers/LocaleController.php:101
msgid "Loading..."
msgstr "Загрузка..."
+#: airtime_mvc/application/controllers/LocaleController.php:102
+#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
+msgid "All"
+msgstr "Все"
+
#: airtime_mvc/application/controllers/LocaleController.php:103
msgid "Files"
msgstr "Файлы"
+#: airtime_mvc/application/controllers/LocaleController.php:104
+#: airtime_mvc/application/layouts/scripts/layout.phtml:80
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
+msgid "Playlists"
+msgstr "Плейлисты"
+
+#: airtime_mvc/application/controllers/LocaleController.php:105
+#: airtime_mvc/application/layouts/scripts/layout.phtml:82
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
+msgid "Smart Blocks"
+msgstr "Умные блоки"
+
#: airtime_mvc/application/controllers/LocaleController.php:106
msgid "Web Streams"
msgstr "Веб-потоки"
@@ -3155,6 +880,74 @@ msgstr "Умный блок сохранен"
msgid "Processing..."
msgstr "Обработка ..."
+#: airtime_mvc/application/controllers/LocaleController.php:151
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
+#: airtime_mvc/application/models/Block.php:1383
+msgid "Select modifier"
+msgstr "Выберите модификатор"
+
+#: airtime_mvc/application/controllers/LocaleController.php:152
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
+#: airtime_mvc/application/models/Block.php:1384
+msgid "contains"
+msgstr "содержит"
+
+#: airtime_mvc/application/controllers/LocaleController.php:153
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
+#: airtime_mvc/application/models/Block.php:1385
+msgid "does not contain"
+msgstr "не содержит:"
+
+#: airtime_mvc/application/controllers/LocaleController.php:154
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
+#: airtime_mvc/application/models/Block.php:1386
+#: airtime_mvc/application/models/Block.php:1390
+msgid "is"
+msgstr "является"
+
+#: airtime_mvc/application/controllers/LocaleController.php:155
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
+#: airtime_mvc/application/models/Block.php:1387
+#: airtime_mvc/application/models/Block.php:1391
+msgid "is not"
+msgstr "не является"
+
+#: airtime_mvc/application/controllers/LocaleController.php:156
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
+#: airtime_mvc/application/models/Block.php:1388
+msgid "starts with"
+msgstr "начинается с"
+
+#: airtime_mvc/application/controllers/LocaleController.php:157
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
+#: airtime_mvc/application/models/Block.php:1389
+msgid "ends with"
+msgstr "заканчивается"
+
+#: airtime_mvc/application/controllers/LocaleController.php:158
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
+#: airtime_mvc/application/models/Block.php:1392
+msgid "is greater than"
+msgstr "больше, чем"
+
+#: airtime_mvc/application/controllers/LocaleController.php:159
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
+#: airtime_mvc/application/models/Block.php:1393
+msgid "is less than"
+msgstr "меньше, чем"
+
+#: airtime_mvc/application/controllers/LocaleController.php:160
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
+#: airtime_mvc/application/models/Block.php:1394
+msgid "is in the range"
+msgstr "находится в диапазоне"
+
#: airtime_mvc/application/controllers/LocaleController.php:162
msgid "Choose Storage Folder"
msgstr "выберите папку для хранения"
@@ -3171,6 +964,11 @@ msgstr ""
"Вы уверены, что хотите изменить папку хранения? \n"
" Файлы из вашей библиотеки будут удалены!"
+#: airtime_mvc/application/controllers/LocaleController.php:166
+#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
+msgid "Manage Media Folders"
+msgstr "Управление папками медиа-файлов"
+
#: airtime_mvc/application/controllers/LocaleController.php:167
msgid "Are you sure you want to remove the watched folder?"
msgstr "Вы уверены, что хотите удалить просмотренную папку?"
@@ -3192,6 +990,11 @@ msgstr "Подключено к потоковому серверу"
msgid "The stream is disabled"
msgstr "Поток отключен"
+#: airtime_mvc/application/controllers/LocaleController.php:173
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
+msgid "Getting information from the server..."
+msgstr "Получение информации с сервера ..."
+
#: airtime_mvc/application/controllers/LocaleController.php:174
msgid "Can not connect to the streaming server"
msgstr "Не удается подключиться к потоковому серверу"
@@ -3419,6 +1222,76 @@ msgstr ""
msgid "Month"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:249
+#: airtime_mvc/application/forms/GeneralPreferences.php:158
+msgid "Sunday"
+msgstr "Воскресенье"
+
+#: airtime_mvc/application/controllers/LocaleController.php:250
+#: airtime_mvc/application/forms/GeneralPreferences.php:159
+msgid "Monday"
+msgstr "Понедельник"
+
+#: airtime_mvc/application/controllers/LocaleController.php:251
+#: airtime_mvc/application/forms/GeneralPreferences.php:160
+msgid "Tuesday"
+msgstr "Вторник"
+
+#: airtime_mvc/application/controllers/LocaleController.php:252
+#: airtime_mvc/application/forms/GeneralPreferences.php:161
+msgid "Wednesday"
+msgstr "Среда"
+
+#: airtime_mvc/application/controllers/LocaleController.php:253
+#: airtime_mvc/application/forms/GeneralPreferences.php:162
+msgid "Thursday"
+msgstr "Четверг"
+
+#: airtime_mvc/application/controllers/LocaleController.php:254
+#: airtime_mvc/application/forms/GeneralPreferences.php:163
+msgid "Friday"
+msgstr "Пятница"
+
+#: airtime_mvc/application/controllers/LocaleController.php:255
+#: airtime_mvc/application/forms/GeneralPreferences.php:164
+msgid "Saturday"
+msgstr "Суббота"
+
+#: airtime_mvc/application/controllers/LocaleController.php:256
+#: airtime_mvc/application/forms/AddShowRepeats.php:35
+msgid "Sun"
+msgstr "Вс"
+
+#: airtime_mvc/application/controllers/LocaleController.php:257
+#: airtime_mvc/application/forms/AddShowRepeats.php:36
+msgid "Mon"
+msgstr "Пн"
+
+#: airtime_mvc/application/controllers/LocaleController.php:258
+#: airtime_mvc/application/forms/AddShowRepeats.php:37
+msgid "Tue"
+msgstr "Вт"
+
+#: airtime_mvc/application/controllers/LocaleController.php:259
+#: airtime_mvc/application/forms/AddShowRepeats.php:38
+msgid "Wed"
+msgstr "Ср"
+
+#: airtime_mvc/application/controllers/LocaleController.php:260
+#: airtime_mvc/application/forms/AddShowRepeats.php:39
+msgid "Thu"
+msgstr "Чт"
+
+#: airtime_mvc/application/controllers/LocaleController.php:261
+#: airtime_mvc/application/forms/AddShowRepeats.php:40
+msgid "Fri"
+msgstr "Пт"
+
+#: airtime_mvc/application/controllers/LocaleController.php:262
+#: airtime_mvc/application/forms/AddShowRepeats.php:41
+msgid "Sat"
+msgstr "Сб"
+
#: airtime_mvc/application/controllers/LocaleController.php:263
msgid "Shows longer than their scheduled time will be cut off by a following show."
msgstr "Программы, превышающие время, запланированное в расписании, будут обрезаны следующей программой."
@@ -3428,7 +1301,7 @@ msgid "Cancel Current Show?"
msgstr "Отменить текущую программу?"
#: airtime_mvc/application/controllers/LocaleController.php:265
-#: airtime_mvc/application/controllers/LocaleController.php:309
+#: airtime_mvc/application/controllers/LocaleController.php:312
msgid "Stop recording current show?"
msgstr "Остановить запись текущей программы?"
@@ -3448,6 +1321,11 @@ msgstr "Удалить все содержание?"
msgid "Delete selected item(s)?"
msgstr "Удалить выбранный элемент(ы)?"
+#: airtime_mvc/application/controllers/LocaleController.php:273
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
+msgid "Start"
+msgstr "Начало"
+
#: airtime_mvc/application/controllers/LocaleController.php:274
msgid "End"
msgstr "Конец"
@@ -3456,580 +1334,467 @@ msgstr "Конец"
msgid "Duration"
msgstr "Продолжительность"
-#: airtime_mvc/application/controllers/LocaleController.php:283
+#: airtime_mvc/application/controllers/LocaleController.php:276
+msgid "Filtering out "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:277
+msgid " of "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:278
+msgid " records"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/layouts/scripts/layout.phtml:140
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
+#: airtime_mvc/application/models/Block.php:1358
+msgid "Cue In"
+msgstr "Начало звучания"
+
+#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/layouts/scripts/layout.phtml:147
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
+#: airtime_mvc/application/models/Block.php:1359
+msgid "Cue Out"
+msgstr "Окончание звучания"
+
+#: airtime_mvc/application/controllers/LocaleController.php:286
#: airtime_mvc/application/layouts/scripts/layout.phtml:167
msgid "Fade In"
msgstr "Усиление"
-#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/controllers/LocaleController.php:287
#: airtime_mvc/application/layouts/scripts/layout.phtml:168
msgid "Fade Out"
msgstr "Затухание"
-#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/controllers/LocaleController.php:288
msgid "Show Empty"
msgstr "Программа не заполнена"
-#: airtime_mvc/application/controllers/LocaleController.php:286
+#: airtime_mvc/application/controllers/LocaleController.php:289
msgid "Recording From Line In"
msgstr "Запись с линейного входа"
-#: airtime_mvc/application/controllers/LocaleController.php:287
+#: airtime_mvc/application/controllers/LocaleController.php:290
msgid "Track preview"
msgstr "Предпросмотр треков"
-#: airtime_mvc/application/controllers/LocaleController.php:291
+#: airtime_mvc/application/controllers/LocaleController.php:294
msgid "Cannot schedule outside a show."
msgstr "Нельзя планировать вне рамок программы."
-#: airtime_mvc/application/controllers/LocaleController.php:292
+#: airtime_mvc/application/controllers/LocaleController.php:295
msgid "Moving 1 Item"
msgstr "Перемещение 1 элемента"
-#: airtime_mvc/application/controllers/LocaleController.php:293
+#: airtime_mvc/application/controllers/LocaleController.php:296
#, php-format
msgid "Moving %s Items"
msgstr "Перемещение %s элементов"
-#: airtime_mvc/application/controllers/LocaleController.php:296
+#: airtime_mvc/application/controllers/LocaleController.php:297
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
+#: airtime_mvc/application/forms/Preferences.php:40
+#: airtime_mvc/application/forms/EditHistory.php:131
+#: airtime_mvc/application/forms/AddUser.php:110
+#: airtime_mvc/application/forms/PasswordChange.php:43
+#: airtime_mvc/application/forms/SupportSettings.php:131
+msgid "Save"
+msgstr "Сохранить"
+
+#: airtime_mvc/application/controllers/LocaleController.php:298
+#: airtime_mvc/application/controllers/LocaleController.php:321
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
+#: airtime_mvc/application/forms/EditHistory.php:141
+#: airtime_mvc/application/forms/EditAudioMD.php:186
+msgid "Cancel"
+msgstr "Отменить"
+
+#: airtime_mvc/application/controllers/LocaleController.php:299
msgid "Fade Editor"
msgstr "Редактор затухания"
-#: airtime_mvc/application/controllers/LocaleController.php:297
+#: airtime_mvc/application/controllers/LocaleController.php:300
msgid "Cue Editor"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:298
+#: airtime_mvc/application/controllers/LocaleController.php:301
msgid "Waveform features are available in a browser supporting the Web Audio API"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:301
+#: airtime_mvc/application/controllers/LocaleController.php:304
msgid "Select all"
msgstr "Выделить все"
-#: airtime_mvc/application/controllers/LocaleController.php:302
+#: airtime_mvc/application/controllers/LocaleController.php:305
msgid "Select none"
msgstr "Снять выделения"
-#: airtime_mvc/application/controllers/LocaleController.php:303
+#: airtime_mvc/application/controllers/LocaleController.php:306
msgid "Trim overbooked shows"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:304
+#: airtime_mvc/application/controllers/LocaleController.php:307
msgid "Remove selected scheduled items"
msgstr "Удалить выбранные запланированные элементы"
-#: airtime_mvc/application/controllers/LocaleController.php:305
+#: airtime_mvc/application/controllers/LocaleController.php:308
msgid "Jump to the current playing track"
msgstr "Перейти к текущей проигрываемой дорожке"
-#: airtime_mvc/application/controllers/LocaleController.php:306
+#: airtime_mvc/application/controllers/LocaleController.php:309
msgid "Cancel current show"
msgstr "Отмена текущей программы"
-#: airtime_mvc/application/controllers/LocaleController.php:311
+#: airtime_mvc/application/controllers/LocaleController.php:314
msgid "Open library to add or remove content"
msgstr "Открыть библиотеку, чтобы добавить или удалить содержимое"
-#: airtime_mvc/application/controllers/LocaleController.php:312
+#: airtime_mvc/application/controllers/LocaleController.php:315
msgid "Add / Remove Content"
msgstr "Добавить / удалить содержимое"
#: airtime_mvc/application/controllers/LocaleController.php:317
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
+msgid "in use"
+msgstr "используется"
+
+#: airtime_mvc/application/controllers/LocaleController.php:318
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
+msgid "Disk"
+msgstr "Диск"
+
+#: airtime_mvc/application/controllers/LocaleController.php:320
msgid "Look in"
msgstr "Заглянуть"
-#: airtime_mvc/application/controllers/LocaleController.php:319
+#: airtime_mvc/application/controllers/LocaleController.php:322
msgid "Open"
msgstr "Открыть"
+#: airtime_mvc/application/controllers/LocaleController.php:324
+#: airtime_mvc/application/forms/AddUser.php:102
+msgid "Admin"
+msgstr "Администратор"
+
#: airtime_mvc/application/controllers/LocaleController.php:325
+#: airtime_mvc/application/forms/AddUser.php:100
+msgid "DJ"
+msgstr "Диджей"
+
+#: airtime_mvc/application/controllers/LocaleController.php:326
+#: airtime_mvc/application/forms/AddUser.php:101
+msgid "Program Manager"
+msgstr "Менеджер программы"
+
+#: airtime_mvc/application/controllers/LocaleController.php:327
+#: airtime_mvc/application/forms/AddUser.php:99
+msgid "Guest"
+msgstr "Гость"
+
+#: airtime_mvc/application/controllers/LocaleController.php:328
msgid "Guests can do the following:"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:326
+#: airtime_mvc/application/controllers/LocaleController.php:329
msgid "View schedule"
msgstr "Показать календарь"
-#: airtime_mvc/application/controllers/LocaleController.php:327
+#: airtime_mvc/application/controllers/LocaleController.php:330
msgid "View show content"
msgstr "Показать программу"
-#: airtime_mvc/application/controllers/LocaleController.php:328
+#: airtime_mvc/application/controllers/LocaleController.php:331
msgid "DJs can do the following:"
msgstr "DJ-ю доступно:"
-#: airtime_mvc/application/controllers/LocaleController.php:329
+#: airtime_mvc/application/controllers/LocaleController.php:332
msgid "Manage assigned show content"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:330
+#: airtime_mvc/application/controllers/LocaleController.php:333
msgid "Import media files"
msgstr "Импорт медиа-файлов"
-#: airtime_mvc/application/controllers/LocaleController.php:331
+#: airtime_mvc/application/controllers/LocaleController.php:334
msgid "Create playlists, smart blocks, and webstreams"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:332
+#: airtime_mvc/application/controllers/LocaleController.php:335
msgid "Manage their own library content"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:333
+#: airtime_mvc/application/controllers/LocaleController.php:336
msgid "Progam Managers can do the following:"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:334
+#: airtime_mvc/application/controllers/LocaleController.php:337
msgid "View and manage show content"
msgstr "Редактировать программу"
-#: airtime_mvc/application/controllers/LocaleController.php:335
+#: airtime_mvc/application/controllers/LocaleController.php:338
msgid "Schedule shows"
msgstr "Планировать программу"
-#: airtime_mvc/application/controllers/LocaleController.php:336
+#: airtime_mvc/application/controllers/LocaleController.php:339
msgid "Manage all library content"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:337
+#: airtime_mvc/application/controllers/LocaleController.php:340
msgid "Admins can do the following:"
msgstr "Администраторы могут:"
-#: airtime_mvc/application/controllers/LocaleController.php:338
+#: airtime_mvc/application/controllers/LocaleController.php:341
msgid "Manage preferences"
msgstr "Настроить предпочтения"
-#: airtime_mvc/application/controllers/LocaleController.php:339
+#: airtime_mvc/application/controllers/LocaleController.php:342
msgid "Manage users"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:340
+#: airtime_mvc/application/controllers/LocaleController.php:343
msgid "Manage watched folders"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:342
+#: airtime_mvc/application/controllers/LocaleController.php:344
+#: airtime_mvc/application/forms/RegisterAirtime.php:116
+#: airtime_mvc/application/forms/SupportSettings.php:98
+msgid "Send support feedback"
+msgstr "Отправить отзыв о поддержке"
+
+#: airtime_mvc/application/controllers/LocaleController.php:345
msgid "View system status"
msgstr "Системный статус"
-#: airtime_mvc/application/controllers/LocaleController.php:343
+#: airtime_mvc/application/controllers/LocaleController.php:346
msgid "Access playout history"
msgstr "Доступ к истории плейлиста"
-#: airtime_mvc/application/controllers/LocaleController.php:344
+#: airtime_mvc/application/controllers/LocaleController.php:347
msgid "View listener stats"
msgstr "Статистика слушателей"
-#: airtime_mvc/application/controllers/LocaleController.php:346
+#: airtime_mvc/application/controllers/LocaleController.php:349
msgid "Show / hide columns"
msgstr "Показать / скрыть столбцы"
-#: airtime_mvc/application/controllers/LocaleController.php:348
+#: airtime_mvc/application/controllers/LocaleController.php:351
msgid "From {from} to {to}"
msgstr "С {с} до {до}"
-#: airtime_mvc/application/controllers/LocaleController.php:349
+#: airtime_mvc/application/controllers/LocaleController.php:352
msgid "kbps"
msgstr "кбит"
-#: airtime_mvc/application/controllers/LocaleController.php:350
+#: airtime_mvc/application/controllers/LocaleController.php:353
msgid "yyyy-mm-dd"
msgstr "гггг-мм-дд"
-#: airtime_mvc/application/controllers/LocaleController.php:351
+#: airtime_mvc/application/controllers/LocaleController.php:354
msgid "hh:mm:ss.t"
msgstr "чч: мм: сс"
-#: airtime_mvc/application/controllers/LocaleController.php:352
+#: airtime_mvc/application/controllers/LocaleController.php:355
msgid "kHz"
msgstr "кГц"
-#: airtime_mvc/application/controllers/LocaleController.php:355
+#: airtime_mvc/application/controllers/LocaleController.php:358
msgid "Su"
msgstr "Вс"
-#: airtime_mvc/application/controllers/LocaleController.php:356
+#: airtime_mvc/application/controllers/LocaleController.php:359
msgid "Mo"
msgstr "Пн"
-#: airtime_mvc/application/controllers/LocaleController.php:357
+#: airtime_mvc/application/controllers/LocaleController.php:360
msgid "Tu"
msgstr "Вт"
-#: airtime_mvc/application/controllers/LocaleController.php:358
+#: airtime_mvc/application/controllers/LocaleController.php:361
msgid "We"
msgstr "Ср"
-#: airtime_mvc/application/controllers/LocaleController.php:359
+#: airtime_mvc/application/controllers/LocaleController.php:362
msgid "Th"
msgstr "Чт"
-#: airtime_mvc/application/controllers/LocaleController.php:360
+#: airtime_mvc/application/controllers/LocaleController.php:363
msgid "Fr"
msgstr "Пт"
-#: airtime_mvc/application/controllers/LocaleController.php:361
+#: airtime_mvc/application/controllers/LocaleController.php:364
msgid "Sa"
msgstr "Сб"
-#: airtime_mvc/application/controllers/LocaleController.php:364
+#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
+msgid "Close"
+msgstr "Закрыть"
+
+#: airtime_mvc/application/controllers/LocaleController.php:367
msgid "Hour"
msgstr "Часов"
-#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:368
msgid "Minute"
msgstr "Минут"
-#: airtime_mvc/application/controllers/LocaleController.php:366
+#: airtime_mvc/application/controllers/LocaleController.php:369
msgid "Done"
msgstr "Сделано"
-#: airtime_mvc/application/controllers/LocaleController.php:369
+#: airtime_mvc/application/controllers/LocaleController.php:372
msgid "Select files"
msgstr "Выбрать файлы"
-#: airtime_mvc/application/controllers/LocaleController.php:370
-#: airtime_mvc/application/controllers/LocaleController.php:371
+#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:374
msgid "Add files to the upload queue and click the start button."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:372
-#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:376
msgid "Status"
msgstr "Статус"
-#: airtime_mvc/application/controllers/LocaleController.php:374
+#: airtime_mvc/application/controllers/LocaleController.php:377
msgid "Add Files"
msgstr "Добавить файлы"
-#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:378
msgid "Stop Upload"
msgstr "Остановить загрузку"
-#: airtime_mvc/application/controllers/LocaleController.php:376
+#: airtime_mvc/application/controllers/LocaleController.php:379
msgid "Start upload"
msgstr "Начать загрузку"
-#: airtime_mvc/application/controllers/LocaleController.php:377
+#: airtime_mvc/application/controllers/LocaleController.php:380
msgid "Add files"
msgstr "Добавить файлы"
-#: airtime_mvc/application/controllers/LocaleController.php:378
+#: airtime_mvc/application/controllers/LocaleController.php:381
#, php-format
msgid "Uploaded %d/%d files"
msgstr "Загружено файлов: %d/%d "
-#: airtime_mvc/application/controllers/LocaleController.php:379
+#: airtime_mvc/application/controllers/LocaleController.php:382
msgid "N/A"
msgstr "н/о"
-#: airtime_mvc/application/controllers/LocaleController.php:380
+#: airtime_mvc/application/controllers/LocaleController.php:383
msgid "Drag files here."
msgstr "Перетащите сюда файлы."
-#: airtime_mvc/application/controllers/LocaleController.php:381
+#: airtime_mvc/application/controllers/LocaleController.php:384
msgid "File extension error."
msgstr "Неверное расширение файла."
-#: airtime_mvc/application/controllers/LocaleController.php:382
+#: airtime_mvc/application/controllers/LocaleController.php:385
msgid "File size error."
msgstr "Невереный размер файла."
-#: airtime_mvc/application/controllers/LocaleController.php:383
+#: airtime_mvc/application/controllers/LocaleController.php:386
msgid "File count error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:384
+#: airtime_mvc/application/controllers/LocaleController.php:387
msgid "Init error."
msgstr "Ошибка инициализации."
-#: airtime_mvc/application/controllers/LocaleController.php:385
+#: airtime_mvc/application/controllers/LocaleController.php:388
msgid "HTTP Error."
msgstr "Ошибка HTTP."
-#: airtime_mvc/application/controllers/LocaleController.php:386
+#: airtime_mvc/application/controllers/LocaleController.php:389
msgid "Security error."
msgstr "Ошибка безопасности."
-#: airtime_mvc/application/controllers/LocaleController.php:387
+#: airtime_mvc/application/controllers/LocaleController.php:390
msgid "Generic error."
msgstr "Общая ошибка."
-#: airtime_mvc/application/controllers/LocaleController.php:388
+#: airtime_mvc/application/controllers/LocaleController.php:391
msgid "IO error."
msgstr "Ошибка записи/чтения."
-#: airtime_mvc/application/controllers/LocaleController.php:389
+#: airtime_mvc/application/controllers/LocaleController.php:392
#, php-format
msgid "File: %s"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:391
+#: airtime_mvc/application/controllers/LocaleController.php:394
#, php-format
msgid "%d files queued"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:392
+#: airtime_mvc/application/controllers/LocaleController.php:395
msgid "File: %f, size: %s, max file size: %m"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/controllers/LocaleController.php:396
msgid "Upload URL might be wrong or doesn't exist"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:394
+#: airtime_mvc/application/controllers/LocaleController.php:397
msgid "Error: File too large: "
msgstr "Ошибка: Файл слишком большой:"
-#: airtime_mvc/application/controllers/LocaleController.php:395
+#: airtime_mvc/application/controllers/LocaleController.php:398
msgid "Error: Invalid file extension: "
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:398
+#: airtime_mvc/application/controllers/LocaleController.php:400
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
+msgid "Set Default"
+msgstr "Установить по умолчанию"
+
+#: airtime_mvc/application/controllers/LocaleController.php:401
msgid "Create Entry"
msgstr "Создать"
-#: airtime_mvc/application/controllers/LocaleController.php:399
+#: airtime_mvc/application/controllers/LocaleController.php:402
msgid "Edit History Record"
msgstr "Редактировать историю"
-#: airtime_mvc/application/controllers/LocaleController.php:402
+#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
+#: airtime_mvc/application/forms/EditHistoryItem.php:57
+msgid "No Show"
+msgstr "Нет Show"
+
+#: airtime_mvc/application/controllers/LocaleController.php:405
#, php-format
msgid "Copied %s row%s to the clipboard"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/controllers/LocaleController.php:406
#, php-format
msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/controllers/LocaleController.php:407
msgid "New Show"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:405
+#: airtime_mvc/application/controllers/LocaleController.php:408
msgid "New Log Entry"
msgstr ""
-#: airtime_mvc/application/controllers/ScheduleController.php:389
-#, php-format
-msgid "Rebroadcast of show %s from %s at %s"
-msgstr "Ретрансляция программы %s от %s в %s"
-
-#: airtime_mvc/application/controllers/ScheduleController.php:712
-#: airtime_mvc/application/controllers/LibraryController.php:131
-msgid "Download"
-msgstr "Загрузить"
-
-#: airtime_mvc/application/controllers/ErrorController.php:78
-msgid "Page not found."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:87
-msgid "The requested action is not supported."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:98
-msgid "You do not have permission to access this resource."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:109
-msgid "An internal application error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ListenerstatController.php:51
-msgid "Please make sure admin user/password is correct on System->Streams page."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:53
-#, php-format
-msgid "You are viewing an older version of %s"
-msgstr "Вы просматриваете старые версии %s"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:140
-msgid "You cannot add tracks to dynamic blocks."
-msgstr "Вы не можете добавить треки в динамические блоки."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:147
-#: airtime_mvc/application/controllers/LibraryController.php:31
-#, php-format
-msgid "%s not found"
-msgstr "%s не найден"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:161
-#, php-format
-msgid "You don't have permission to delete selected %s(s)."
-msgstr "У вас нет разрешения на удаление выбранных %s(s)."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:168
-#: airtime_mvc/application/controllers/LibraryController.php:40
-msgid "Something went wrong."
-msgstr "Что-то пошло не так."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:174
-msgid "You can only add tracks to smart block."
-msgstr "Вы можете добавить треки только в умный блок."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:192
-msgid "Untitled Playlist"
-msgstr "Плейлист без названия"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:194
-msgid "Untitled Smart Block"
-msgstr "Умный блок без названия"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:522
-msgid "Unknown Playlist"
-msgstr "Неизвестный плейлист"
-
-#: airtime_mvc/application/controllers/LoginController.php:43
-msgid "Please enter your username and password."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:93
-msgid "Wrong username or password provided. Please try again."
-msgstr "Неверное имя пользователя или пароль. Пожалуйста, попробуйте еще раз."
-
-#: airtime_mvc/application/controllers/LoginController.php:167
-msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
-msgstr "E-mail не может быть отправлен. Проверьте настройки почтового сервера и убедитесь, что он был настроен должным образом."
-
-#: airtime_mvc/application/controllers/LoginController.php:173
-msgid "There was a problem with the username or email address you entered."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:35
-#: airtime_mvc/application/controllers/DashboardController.php:84
-msgid "You don't have permission to disconnect source."
-msgstr "У вас нет разрешения отсоединить источник."
-
-#: airtime_mvc/application/controllers/DashboardController.php:37
-#: airtime_mvc/application/controllers/DashboardController.php:86
-msgid "There is no source connected to this input."
-msgstr "Нет источника, подключенного к этому входу."
-
-#: airtime_mvc/application/controllers/DashboardController.php:81
-msgid "You don't have permission to switch source."
-msgstr "У вас нет разрешения для переключения источника."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:72
-msgid "Preferences updated."
-msgstr "Установки пользователя обновлены."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:115
-msgid "Support setting updated."
-msgstr "Настройка поддержки обновлена."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:123
-msgid "Support Feedback"
-msgstr "Отзывы о поддержке"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:251
-msgid "Stream Setting Updated."
-msgstr "Настройки потока обновлены."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:342
-msgid "path should be specified"
-msgstr "Путь должен быть указан"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:437
-msgid "Problem with Liquidsoap..."
-msgstr "Проблема с Liquidsoap ..."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:493
-msgid "Request method not accepted"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:86
-msgid "User added successfully!"
-msgstr "Пользователь успешно добавлен!"
-
-#: airtime_mvc/application/controllers/UserController.php:88
-msgid "User updated successfully!"
-msgstr "Пользователь успешно обновлен!"
-
-#: airtime_mvc/application/controllers/UserController.php:187
-msgid "Settings updated successfully!"
-msgstr "Изменения в настройках сохранены!"
-
-#: airtime_mvc/application/controllers/WebstreamController.php:28
-#: airtime_mvc/application/controllers/WebstreamController.php:32
-msgid "Untitled Webstream"
-msgstr "Веб-поток без названия"
-
-#: airtime_mvc/application/controllers/WebstreamController.php:150
-msgid "Webstream saved."
-msgstr "Веб-поток сохранен."
-
-#: airtime_mvc/application/controllers/WebstreamController.php:158
-msgid "Invalid form values."
-msgstr "Недопустимые значения формы."
-
-#: airtime_mvc/application/controllers/LibraryController.php:95
-#: airtime_mvc/application/controllers/ShowbuilderController.php:136
-msgid "Preview"
-msgstr "Предварительный просмотр"
-
-#: airtime_mvc/application/controllers/LibraryController.php:115
-#: airtime_mvc/application/controllers/LibraryController.php:177
-#: airtime_mvc/application/controllers/LibraryController.php:200
-msgid "Add to Playlist"
-msgstr "Добавить в плейлист"
-
-#: airtime_mvc/application/controllers/LibraryController.php:117
-msgid "Add to Smart Block"
-msgstr "Добавить в умный блок"
-
-#: airtime_mvc/application/controllers/LibraryController.php:147
-msgid "View track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:148
-msgid "Remove track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:154
-#: airtime_mvc/application/controllers/LibraryController.php:159
-msgid "Upload track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:169
-msgid "Duplicate Playlist"
-msgstr "Дублировать плейлист"
-
-#: airtime_mvc/application/controllers/LibraryController.php:213
-msgid "No action available"
-msgstr "Нет доступных действий"
-
-#: airtime_mvc/application/controllers/LibraryController.php:233
-msgid "You don't have permission to delete selected items."
-msgstr "У вас нет разрешения на удаление выбранных элементов."
-
-#: airtime_mvc/application/controllers/LibraryController.php:279
-msgid "Could not delete file because it is scheduled in the future."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:282
-msgid "Could not delete file(s)."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:322
-#, php-format
-msgid "Copy of %s"
-msgstr "Копия %s"
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
-msgid ""
-"To configure and use the embeddable player you must:
\n"
-" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
-" 2. Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
-msgid ""
-"To use the embeddable weekly schedule widget you must:
\n"
-" Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
#: airtime_mvc/application/controllers/ShowbuilderController.php:138
msgid "Select cursor"
msgstr "Выбрать курсор"
@@ -4042,39 +1807,78 @@ msgstr "Удалить курсор"
msgid "show does not exist"
msgstr "Программа не существует"
-#: airtime_mvc/application/controllers/ApiController.php:79
-msgid "You are not allowed to access this resource."
-msgstr "Вы не имеете доступа к этому ресурсу."
-
-#: airtime_mvc/application/controllers/ApiController.php:244
-#: airtime_mvc/application/controllers/ApiController.php:317
-#: airtime_mvc/application/controllers/ApiController.php:392
-#: airtime_mvc/application/controllers/ApiController.php:435
-#: airtime_mvc/application/controllers/ApiController.php:474
-#: airtime_mvc/application/controllers/ApiController.php:507
-msgid "You are not allowed to access this resource. "
-msgstr "Вы не имеете доступа к этому ресурсу."
-
-#: airtime_mvc/application/controllers/ApiController.php:698
-#: airtime_mvc/application/controllers/ApiController.php:718
-#: airtime_mvc/application/controllers/ApiController.php:730
+#: airtime_mvc/application/controllers/ScheduleController.php:389
#, php-format
-msgid "File does not exist in %s"
+msgid "Rebroadcast of show %s from %s at %s"
+msgstr "Ретрансляция программы %s от %s в %s"
+
+#: airtime_mvc/application/common/UsabilityHints.php:55
+msgid "Upload some tracks below to add them to your library!"
msgstr ""
-#: airtime_mvc/application/controllers/ApiController.php:781
-msgid "Bad request. no 'mode' parameter passed."
-msgstr "Неверный запрос. параметр 'режим' не прошел."
-
-#: airtime_mvc/application/controllers/ApiController.php:791
-msgid "Bad request. 'mode' parameter is invalid"
-msgstr "Неверный запрос. параметр 'режим' является недопустимым"
-
-#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#: airtime_mvc/application/common/UsabilityHints.php:57
#, php-format
-msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
msgstr ""
+#: airtime_mvc/application/common/UsabilityHints.php:63
+msgid "Click the 'New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:65
+#, php-format
+msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:73
+msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:75
+#, php-format
+msgid ""
+"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
+" %sCreate an unlinked show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:80
+msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:82
+#, php-format
+msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:89
+msgid "Click on the show starting next and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:91
+#, php-format
+msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/DateHelper.php:213
+#, php-format
+msgid "The year %s must be within the range of 1753 - 9999"
+msgstr "Год %s должен быть в пределах 1753 - 9999"
+
+#: airtime_mvc/application/common/DateHelper.php:216
+#, php-format
+msgid "%s-%s-%s is not a valid date"
+msgstr "%s - %s - %s не является допустимой датой"
+
+#: airtime_mvc/application/common/DateHelper.php:240
+#, php-format
+msgid "%s:%s:%s is not a valid time"
+msgstr "%s : %s : %s не является допустимым временем"
+
+#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
+msgid "Live stream"
+msgstr "Потоковый режим"
+
#: airtime_mvc/application/layouts/scripts/layout.phtml:63
msgid "Smart Block"
msgstr ""
@@ -4087,6 +1891,17 @@ msgstr ""
msgid "Upload"
msgstr ""
+#: airtime_mvc/application/layouts/scripts/layout.phtml:76
+#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
+msgid "Dashboard"
+msgstr ""
+
+#: airtime_mvc/application/layouts/scripts/layout.phtml:84
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
+msgid "Webstreams"
+msgstr ""
+
#: airtime_mvc/application/layouts/scripts/layout.phtml:135
#: airtime_mvc/application/layouts/scripts/layout.phtml:161
msgid "Play"
@@ -4109,401 +1924,2128 @@ msgstr "Установить окончание звучания"
msgid "Cursor"
msgstr "Курсор"
-#~ msgid "Show:"
-#~ msgstr "Программа:"
+#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#, php-format
+msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
+msgid "Drop files here or click to browse your computer."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
+msgid "Failed"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
+msgid "Pending"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
+msgid "Recent Uploads"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
+msgid "Share"
+msgstr "Поделиться"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
+msgid "Select stream:"
+msgstr "Выбор потока:"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
+msgid "mute"
+msgstr "отключить звук"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
+msgid "unmute"
+msgstr "включить звук"
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
+msgid "About"
+msgstr "О программе"
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
+#, php-format
+msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
+#, php-format
+msgid "%1$s %2$s is distributed under the %3$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
+#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
+#, php-format
+msgid "Welcome to %s!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
+#, php-format
+msgid "Here's how you can get started using %s to automate your broadcasts: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
+msgid "Upload audio tracks"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
+msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
+msgid "Schedule a show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
+msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
+msgid "Add tracks to your show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
+msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
+msgid "Now you're good to go!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
+#, php-format
+msgid "For more detailed help, read the %suser manual%s."
+msgstr "Для более подробной справки читать %sруководство пользователя%s ."
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
+#: airtime_mvc/application/configs/navigation.php:40
+msgid "Weekly Schedule"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
+#: airtime_mvc/application/forms/Player.php:77
+msgid "Preview:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
+#: airtime_mvc/application/configs/navigation.php:34
+msgid "Player"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:97
+msgid "Playout History"
+msgstr "История воспроизведения"
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
+msgid "Log Sheet"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
+msgid "File Summary"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
+msgid "Show Summary"
+msgstr "Данные по прграмме"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
+msgid "Expand Static Block"
+msgstr "Развернуть статический блок"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
+msgid "Expand Dynamic Block"
+msgstr "Развернуть динамический блок"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
+msgid "Choose some search criteria above and click Generate to create this playlist."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
+msgid "A track list will be generated when you schedule this smart block into a show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
+msgid "Drag tracks here from your library to add them to the playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
+msgid "Editing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:26
+msgid "Name:"
+msgstr "Имя:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
+#: airtime_mvc/application/forms/AddShowWhat.php:54
+msgid "Description:"
+msgstr "Описание:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
+#: airtime_mvc/application/forms/AddShowWhen.php:89
+msgid "Duration:"
+msgstr "Длительность:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
+msgid "Toggle Details"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+msgid "Shuffle playlist"
+msgstr "Перемешать плейлист"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
+msgid "Shuffle"
+msgstr "Перемешать"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
+msgid "Playlist crossfade"
+msgstr "Перекрестное затухание композиций плейлиста"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+msgid "Empty playlist content"
+msgstr "Очистить плейлист"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Clear"
+msgstr "Очистить"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+msgid "Fade in: "
+msgstr "Усиление: "
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "Fade out: "
+msgstr "Затухание: "
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+msgid "Save playlist"
+msgstr "Сохранить плейлист"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
+msgid "No open playlist"
+msgstr "Нет открытых плейлистов"
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
+msgid "Show Waveform"
+msgstr "Показать трек"
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "(ss.t)"
+msgstr "(сс)"
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Remove all content from this smart block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
+msgid "No smart block currently open"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+msgid "Cue In: "
+msgstr "Начало звучания: "
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "(hh:mm:ss.t)"
+msgstr "(чч: мм: сс)"
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "Cue Out: "
+msgstr "Окончание звучания: "
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
+msgid "Original Length:"
+msgstr "Исходная длина:"
+
+#: airtime_mvc/application/views/scripts/preference/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:56
+msgid "General"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
+msgid "Stream Settings"
+msgstr "Настройки потоковой передачи "
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
+msgid "Global"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
+msgid "dB"
+msgstr "дБ"
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
+msgid "Output Streams"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:3
+#: airtime_mvc/application/forms/Login.php:83
+msgid "Login"
+msgstr "Войти"
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:7
+#, php-format
+msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
+msgid "Email Sent!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
+msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
+msgid "Back"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
+msgid "Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
+msgid "New password"
+msgstr "Новый пароль"
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
+msgid "Please enter and confirm your new password in the fields below."
+msgstr "Пожалуйста, введите и подтвердите новый пароль ниже."
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
+msgid "Manage Users"
+msgstr "Управление пользователями"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
+msgid "New User"
+msgstr "Новый пользователь"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
+msgid "id"
+msgstr "id"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
+#: airtime_mvc/application/forms/PasswordRestore.php:25
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
+msgid "Username"
+msgstr "Имя пользователя"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
+msgid "First Name"
+msgstr "Имя"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
+msgid "Last Name"
+msgstr "Фамилия"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
+msgid "User Type"
+msgstr "Тип пользователя"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
+#, php-format
+msgid "Super Admin details can be changed in your Billing Settings."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
+msgid "Find Shows"
+msgstr "Найти программы"
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
+msgid "Choose Show Instance"
+msgstr "Выберите программу"
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
+msgid "Find"
+msgstr "Найти"
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
+#: airtime_mvc/application/configs/navigation.php:61
+msgid "My Profile"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
+#, php-format
+msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
+msgid "Repeat Days:"
+msgstr "Повторить дні:"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
+#: airtime_mvc/application/forms/GeneralPreferences.php:53
+#: airtime_mvc/application/forms/AddShowStyle.php:64
+msgid "Remove"
+msgstr "Удалить"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
+msgid "Add"
+msgstr "Добавить"
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
+msgid "Show Source"
+msgstr "Источник Show"
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
+msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
+msgid "Register Airtime"
+msgstr "Регистрация Airtime "
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
+#, php-format
+msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
+#, php-format
+msgid "Click the box below to promote your station on %s."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
+msgid "(Required)"
+msgstr "(Обязательно)"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
+msgid "(for verification purposes only, will not be published)"
+msgstr "(Только для проверки, не будет опубликовано)"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
+#: airtime_mvc/application/forms/GeneralPreferences.php:43
+msgid "Note: Anything larger than 600x600 will be resized."
+msgstr "Примечание: все, что превысит размеры 600x600, будет изменено."
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
+msgid "Show me what I am sending "
+msgstr "Покажите мне, что я посылаю "
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
+msgid "Terms and Conditions"
+msgstr "Постановления и условия"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
+msgid "Choose Days:"
+msgstr "Выберите дни:"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
+msgid "Search Criteria:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
+msgid "New Criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
+msgid "or"
+msgstr "или"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
+msgid "and"
+msgstr "и"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
+msgid "New Modifier"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
+msgid " to "
+msgstr " к "
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
+msgid "files meet the criteria"
+msgstr "Файлы отвечают критериям"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
+msgid "file meets the criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
+msgid "Filter History"
+msgstr "Фильтровать историю"
+
+#: airtime_mvc/application/views/scripts/form/login.phtml:41
+msgid "Forgot your password?"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
+msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
+msgstr "(В целях продвижения вашей станции, опция 'Отправить отзывы о поддержке' должна быть включена)."
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
+msgid "Stream "
+msgstr "Поток "
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
+msgid "Additional Options"
+msgstr "Дополнительные параметры"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
+msgid "The following info will be displayed to listeners in their media player:"
+msgstr "Следующая информация будет отображаться для слушателей в их медиа-плейере:"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
+msgid "(Your radio station website)"
+msgstr "(Веб-сайт вашей радиостанции)"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
+msgid "Stream URL: "
+msgstr "URL потока: "
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
+msgid "Choose folder"
+msgstr "Выбрать"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
+msgid "Set"
+msgstr "Установка"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
+msgid "Current Import Folder:"
+msgstr "Текущая папка импорта:"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
+#, php-format
+msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
+msgid "Remove watched directory"
+msgstr "Удалить просмотренную папку"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
+msgid "You are not watching any media folders."
+msgstr "Вы не просматриваете никакие папки медиа-файлов."
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
+msgid "Live Broadcasting"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
+msgid "Master Source"
+msgstr "Источник Master "
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
+msgid "Use these settings in your broadcasting software to stream live at any time."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
+msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
+msgid "TuneIn Settings"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
+msgid "SoundCloud Settings"
+msgstr "Настройки SoundCloud "
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
+msgid "Dangerous Options"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Add this show"
+msgstr "Добавить эту программу"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Update show"
+msgstr "Обновить программу"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
+msgid "What"
+msgstr "Что"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
+msgid "When"
+msgstr "Когда"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
+msgid "Live Stream Input"
+msgstr "Потоковый ввод"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
+msgid "Who"
+msgstr "Кто"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
+msgid "Style"
+msgstr "Стиль"
+
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
+msgid "Disk Space"
+msgstr "Дисковое пространство"
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:3
+msgid "File import in progress..."
+msgstr "Импорт файлов в процессе ..."
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:10
+#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
+msgid "Advanced Search Options"
+msgstr "Дополнительные параметры поиска"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
+#: airtime_mvc/application/forms/EditAudioMD.php:24
+#: airtime_mvc/application/forms/Player.php:15
+msgid "Title:"
+msgstr "Заголовок:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
+#: airtime_mvc/application/forms/EditAudioMD.php:34
+msgid "Creator:"
+msgstr "Создатель:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
+#: airtime_mvc/application/forms/EditAudioMD.php:44
+msgid "Album:"
+msgstr "Альбом:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
+msgid "Track:"
+msgstr "Дорожка"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
+msgid "Length:"
+msgstr "Длина:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
+msgid "Sample Rate:"
+msgstr "Частота дискретизации:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
+msgid "Bit Rate:"
+msgstr "Битовая скорость:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
+#: airtime_mvc/application/forms/EditAudioMD.php:115
+msgid "Mood:"
+msgstr "Настроение:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:45
+#: airtime_mvc/application/forms/EditAudioMD.php:62
+msgid "Genre:"
+msgstr "Жанр:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
+#: airtime_mvc/application/forms/EditAudioMD.php:72
+msgid "Year:"
+msgstr "Год:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
+#: airtime_mvc/application/forms/EditAudioMD.php:85
+msgid "Label:"
+msgstr "Метка:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
+#: airtime_mvc/application/forms/EditAudioMD.php:125
+msgid "BPM:"
+msgstr "BPM:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
+#: airtime_mvc/application/forms/EditAudioMD.php:95
+msgid "Composer:"
+msgstr "Композитор:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
+#: airtime_mvc/application/forms/EditAudioMD.php:105
+msgid "Conductor:"
+msgstr "Исполнитель:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
+#: airtime_mvc/application/forms/EditAudioMD.php:135
+msgid "Copyright:"
+msgstr "Авторское право:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
+msgid "Isrc Number:"
+msgstr "ISRC номер:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
+#: airtime_mvc/application/forms/EditAudioMD.php:155
+msgid "Website:"
+msgstr "Вебсайт:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
+#: airtime_mvc/application/forms/EditAudioMD.php:165
+#: airtime_mvc/application/forms/EditUser.php:119
+#: airtime_mvc/application/forms/Login.php:68
+msgid "Language:"
+msgstr "Язык: "
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
+msgid "File Path:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
+msgid "Web Stream"
+msgstr "Веб-поток"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
+msgid "Dynamic Smart Block"
+msgstr "Динамический умный блок"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
+msgid "Static Smart Block"
+msgstr "Статический умный блок"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
+msgid "Audio Track"
+msgstr "Аудио-дорожка"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
+msgid "Playlist Contents: "
+msgstr "Содержание плейлиста: "
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
+msgid "Static Smart Block Contents: "
+msgstr "Содержание статического умного блока: "
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
+msgid "Dynamic Smart Block Criteria: "
+msgstr "Критерии динамического умного блока: "
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
+msgid "Limit to "
+msgstr "Ограничение до "
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
+#: airtime_mvc/application/forms/AddShowWhat.php:36
+msgid "URL:"
+msgstr "URL:"
+
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
+msgid "Viewing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
+msgid "Listeners"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
+msgid "Stream Data Collection Status"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
+msgid "Your trial expires in"
+msgstr "лизензия истекает через"
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
+msgid "days"
+msgstr "дней"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
+msgid "Previous:"
+msgstr "Предыдущая:"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
+msgid "Next:"
+msgstr "Следующая:"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
+msgid "Source Streams"
+msgstr "Исходные потоки"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
+msgid "ON AIR"
+msgstr "В эфире"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
+msgid "Listen"
+msgstr "Слушать"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
+msgid "Logout"
+msgstr "Выход"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
+msgid "Playout History Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
+msgid "Log Sheet Templates"
+msgstr "Шаблоны лога"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
+msgid "New Log Sheet Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
+msgid "No Log Sheet Templates"
+msgstr "Нет шаблона лога"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
+msgid "File Summary Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
+msgid "New File Summary Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
+msgid "No File Summary Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
+msgid "Creating File Summary Template"
+msgstr "Создание шаблона по файлам"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
+msgid "Creating Log Sheet Template"
+msgstr "Создание шаблона лога"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
+msgid "Name"
+msgstr "Имя"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
+msgid "Add more elements"
+msgstr "Добавить еще элементы"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
+msgid "Add New Field"
+msgstr "Добавить поле"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
+msgid "Set Default Template"
+msgstr "Установить шаблон по умолчанию"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
+msgid "Description"
+msgstr "Описание"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
+msgid "Stream URL:"
+msgstr "URL потока:"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
+msgid "Default Length:"
+msgstr "Длина по умолчанию:"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
+msgid "No webstream"
+msgstr "Нет веб-потока"
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
+#: airtime_mvc/application/views/scripts/error/error.phtml:6
+msgid "An error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
+msgid "Access Denied!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
+msgid "You do not have permission to access this page!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
+#: airtime_mvc/application/views/scripts/error/error.phtml:14
+#: airtime_mvc/application/configs/navigation.php:143
+msgid "Help"
+msgstr "Справка"
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
+msgid "Oops!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
+msgid "Something went wrong!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
+msgid "Bad Request!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
+msgid "The requested action is not supported!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
+msgid "Page not found!"
+msgstr "Страница не найдена!"
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
+msgid "We couldn't find the page you were looking for."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error.phtml:12
+msgid "Looks like the page you were looking for doesn't exist!"
+msgstr "Похоже, что страница, которую вы ищете, не существует!"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
+msgid "previous"
+msgstr "предыдущая"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
+msgid "play"
+msgstr "играть"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
+msgid "pause"
+msgstr "пауза"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
+msgid "next"
+msgstr "следующая"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
+msgid "stop"
+msgstr "стоп"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
+msgid "max volume"
+msgstr "максимальная громкость"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
+msgid "Update Required"
+msgstr "Требуется обновление"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
+#, php-format
+msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
+msgstr "Для проигрывания медиа-файла необходимо либо обновить браузер до последней версии или обновить %sфлэш-плагина%s."
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
+msgid "Plan type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
+msgid "Billing cycle:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
+msgid "Payment method:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
+msgid "PayPal"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
+msgid "Credit Card via 2Checkout"
+msgstr ""
+
+#: airtime_mvc/application/forms/DateRange.php:16
+#: airtime_mvc/application/forms/ShowBuilder.php:18
+msgid "Date Start:"
+msgstr "Дата начала:"
+
+#: airtime_mvc/application/forms/DateRange.php:35
+#: airtime_mvc/application/forms/DateRange.php:63
+#: airtime_mvc/application/forms/ShowBuilder.php:37
+#: airtime_mvc/application/forms/ShowBuilder.php:65
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
+msgid "Invalid character entered"
+msgstr "Неверно введенный символ"
+
+#: airtime_mvc/application/forms/DateRange.php:44
+#: airtime_mvc/application/forms/ShowBuilder.php:46
+#: airtime_mvc/application/forms/AddShowRepeats.php:56
+msgid "Date End:"
+msgstr "Дата окончания:"
+
+#: airtime_mvc/application/forms/ShowBuilder.php:72
+#: airtime_mvc/application/forms/ShowBuilder.php:88
+msgid "Filter by Show"
+msgstr ""
+
+#: airtime_mvc/application/forms/ShowBuilder.php:80
+msgid "All My Shows:"
+msgstr "Все мои программы:"
+
+#: airtime_mvc/application/forms/AddShowWho.php:10
+msgid "Search Users:"
+msgstr "Поиск пользователей:"
+
+#: airtime_mvc/application/forms/AddShowWho.php:24
+msgid "DJs:"
+msgstr "Диджеи:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:30
+#: airtime_mvc/application/forms/GeneralPreferences.php:25
+#: airtime_mvc/application/forms/SupportSettings.php:18
+msgid "Station Name"
+msgstr "Название станции"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:39
+#: airtime_mvc/application/forms/SupportSettings.php:31
+msgid "Phone:"
+msgstr "Телефон:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:51
+#: airtime_mvc/application/forms/AddUser.php:67
+#: airtime_mvc/application/forms/EditUser.php:83
+#: airtime_mvc/application/forms/SupportSettings.php:43
+msgid "Email:"
+msgstr "Email:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:62
+#: airtime_mvc/application/forms/SupportSettings.php:54
+msgid "Station Web Site:"
+msgstr "Вебсайт станции:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:73
+#: airtime_mvc/application/forms/SupportSettings.php:65
+msgid "Country:"
+msgstr "Страна:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:84
+#: airtime_mvc/application/forms/SupportSettings.php:76
+msgid "City:"
+msgstr "Город"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:96
+#: airtime_mvc/application/forms/SupportSettings.php:88
+msgid "Station Description:"
+msgstr "Описание станции:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:106
+#: airtime_mvc/application/forms/GeneralPreferences.php:42
+msgid "Station Logo:"
+msgstr "Логотип станции:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:126
+#: airtime_mvc/application/forms/SupportSettings.php:108
+#, php-format
+msgid "Promote my station on %s"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:151
+#: airtime_mvc/application/forms/SupportSettings.php:120
+#, php-format
+msgid "By checking this box, I agree to %s's %sprivacy policy%s."
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:169
+#: airtime_mvc/application/forms/SupportSettings.php:143
+msgid "You have to agree to privacy policy."
+msgstr "Вы должны согласиться с политикой конфиденциальности."
+
+#: airtime_mvc/application/forms/AddShowRR.php:10
+msgid "Record from Line In?"
+msgstr "Запись с линейного входа?"
+
+#: airtime_mvc/application/forms/AddShowRR.php:16
+msgid "Rebroadcast?"
+msgstr "Ретрансляция?"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
+#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
+msgid "Value is required and can't be empty"
+msgstr "Значение является обязательным и не может быть пустым"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
+msgid "'%value%' is no valid email address in the basic format local-part@hostname"
+msgstr "'% значение%' не является действительным адресом электронной почты в формате local-part@hostname"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
+msgid "'%value%' does not fit the date format '%format%'"
+msgstr "'%значение%' не соответствует формату даты '%формат%'"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
+msgid "'%value%' is less than %min% characters long"
+msgstr "'%значение%' имеет менее %min% символов"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
+msgid "'%value%' is more than %max% characters long"
+msgstr "'%значение%' имеет более %max% символов"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
+msgid "'%value%' is not between '%min%' and '%max%', inclusively"
+msgstr "'%значение%' не входит в промежуток '%min%' и '%maxс% включительно"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
+msgid "Passwords do not match"
+msgstr "Пароли не совпадают"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
+msgid "Day must be specified"
+msgstr "День должен быть указан"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
+msgid "Time must be specified"
+msgstr "Время должно быть указано"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
+msgid "Must wait at least 1 hour to rebroadcast"
+msgstr "Должны ждать по крайней мере 1 час до ретрансляции"
+
+#: airtime_mvc/application/forms/PasswordRestore.php:14
+msgid "Email"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordRestore.php:36
+msgid "Reset password"
+msgstr "Сменить пароль"
+
+#: airtime_mvc/application/forms/AddShowWhat.php:30
+msgid "Untitled Show"
+msgstr "Программа без названия"
+
+#: airtime_mvc/application/forms/AddShowWhat.php:69
+msgid "Instance Description:"
+msgstr ""
+
+#: airtime_mvc/application/forms/DangerousPreferences.php:12
+msgid "Delete All Tracks in Library"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditAudioMD.php:145
+msgid "ISRC Number:"
+msgstr "ISRC номер:"
+
+#: airtime_mvc/application/forms/EditAudioMD.php:176
+msgid "OK"
+msgstr "OK"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:33
+msgid "Station Description"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:62
+msgid "Default Crossfade Duration (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:68
+#: airtime_mvc/application/forms/GeneralPreferences.php:82
+#: airtime_mvc/application/forms/GeneralPreferences.php:96
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
+msgid "Please enter a time in seconds (eg. 0.5)"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:76
+msgid "Default Fade In (s):"
+msgstr "Возрастание по умолчанию:"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:90
+msgid "Default Fade Out (s):"
+msgstr "Затухание по умолчанию:"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:102
+msgid "Public Airtime API"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:103
+msgid "Required for embeddable schedule widget."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:105
+msgid "Disabled"
+msgstr "Отключено"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:106
+msgid "Enabled"
+msgstr "Активировано"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:109
+msgid ""
+"Enabling this feature will allow Airtime to provide schedule data\n"
+" to external widgets that can be embedded in your website."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:120
+msgid "Default Language"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:127
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
+msgid "Station Timezone"
+msgstr "Временная зона станции"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:134
+msgid "Week Starts On"
+msgstr "Начало недели"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:150
+msgid "Display login button on your Radio Page?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:29
+#: airtime_mvc/application/forms/EditUser.php:37
+#: airtime_mvc/application/forms/Login.php:41
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
+msgid "Username:"
+msgstr "Логин:"
+
+#: airtime_mvc/application/forms/AddUser.php:38
+#: airtime_mvc/application/forms/EditUser.php:48
+#: airtime_mvc/application/forms/Login.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
+msgid "Password:"
+msgstr "Пароль:"
+
+#: airtime_mvc/application/forms/AddUser.php:46
+#: airtime_mvc/application/forms/EditUser.php:57
+msgid "Verify Password:"
+msgstr "Повторите пароль:"
+
+#: airtime_mvc/application/forms/AddUser.php:55
+#: airtime_mvc/application/forms/EditUser.php:67
+msgid "Firstname:"
+msgstr "Имя"
+
+#: airtime_mvc/application/forms/AddUser.php:61
+#: airtime_mvc/application/forms/EditUser.php:75
+msgid "Lastname:"
+msgstr "Фамилия"
+
+#: airtime_mvc/application/forms/AddUser.php:76
+#: airtime_mvc/application/forms/EditUser.php:94
+msgid "Mobile Phone:"
+msgstr "Тел:"
+
+#: airtime_mvc/application/forms/AddUser.php:82
+#: airtime_mvc/application/forms/EditUser.php:102
+msgid "Skype:"
+msgstr "Skype:"
+
+#: airtime_mvc/application/forms/AddUser.php:88
+#: airtime_mvc/application/forms/EditUser.php:110
+msgid "Jabber:"
+msgstr "Jabber:"
+
+#: airtime_mvc/application/forms/AddUser.php:95
+msgid "User Type:"
+msgstr "Тип пользователя:"
+
+#: airtime_mvc/application/forms/AddUser.php:120
+#: airtime_mvc/application/forms/EditUser.php:155
+msgid "Login name is not unique."
+msgstr "Имя пользователя не является уникальным."
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
+msgid "Import Folder:"
+msgstr "Импорт папки:"
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
+msgid "Watched Folders:"
+msgstr "Просматриваемые папки:"
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
+msgid "Not a valid Directory"
+msgstr "Не является допустимой папкой"
+
+#: airtime_mvc/application/forms/BillingClient.php:126
+msgid "What is the name of your favorite childhood friend?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:127
+msgid "What school did you attend for sixth grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:128
+msgid "In what city did you meet your spouse/significant other?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:129
+msgid "What street did you live on in third grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:130
+msgid "What is the first name of the boy or girl that you first kissed?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:131
+msgid "In what city or town was your first job?"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
+msgid "Default License:"
+msgstr "Лицензия по умолчанию:"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
+msgid "All rights are reserved"
+msgstr "Все права защищены"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
+msgid "The work is in the public domain"
+msgstr "Работа находится в публичном домене"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
+msgid "Creative Commons Attribution"
+msgstr "Лицензия Creative Commons Attribution"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
+msgid "Creative Commons Attribution Noncommercial"
+msgstr "Некоммерческая Creative Commons Attribution"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
+msgid "Creative Commons Attribution No Derivative Works"
+msgstr "Creative Commons Attribution без производных продуктов"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
+msgid "Creative Commons Attribution Share Alike"
+msgstr "Creative Commons Attribution в равных долях"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
+msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
+msgstr "Creative Commons Attribution Non Некоммерческое производных работ"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
+msgid "Creative Commons Attribution Noncommercial Share Alike"
+msgstr "Creative Commons Attribution некоммерческая в равных долях"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
+msgid "Default Sharing Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
+msgid "Public"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
+msgid "Private"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditUser.php:129
+msgid "Interface Timezone:"
+msgstr "Временная зона (броузер)"
+
+#: airtime_mvc/application/forms/Player.php:14
+msgid "Now Playing"
+msgstr "Сейчас в эфире"
+
+#: airtime_mvc/application/forms/Player.php:25
+msgid "Select Stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:28
+msgid "Auto detect the most appropriate stream to use."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:29
+msgid "Select a stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:41
+msgid " - Mobile friendly"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:45
+msgid " - The player does not support Opus streams."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:71
+msgid "Embeddable code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:72
+msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
+#: airtime_mvc/application/models/Block.php:1351
+msgid "Select criteria"
+msgstr "Выбрать критерии"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
+#: airtime_mvc/application/models/Block.php:1353
+msgid "Bit Rate (Kbps)"
+msgstr "Битовая скорость (Kbps)"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
+#: airtime_mvc/application/models/Block.php:1374
+msgid "Sample Rate (kHz)"
+msgstr "Частота дискретизации (кГц)"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
+msgid "hours"
+msgstr "часов"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
+msgid "minutes"
+msgstr "минут"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
+#: airtime_mvc/application/models/Block.php:333
+msgid "items"
+msgstr "элементы"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
+msgid "Randomly"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
+msgid "Newest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
+msgid "Oldest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
+msgid "Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
+msgid "Static"
+msgstr "Статический"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
+msgid "Dynamic"
+msgstr "Динамический"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
+msgid "Allow Repeated Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
+msgid "Sort Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
+msgid "Limit to:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
+msgid "Generate playlist content and save criteria"
+msgstr "Создать содержание плейлиста и сохранить критерии"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
+msgid "Generate"
+msgstr "Создать"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
+msgid "Shuffle playlist content"
+msgstr "Перемешать содержание плейлиста"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
+msgid "Limit cannot be empty or smaller than 0"
+msgstr "Ограничение не может быть пустым или менее 0"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
+msgid "Limit cannot be more than 24 hrs"
+msgstr "Ограничение не может быть более 24 часов"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
+msgid "The value should be an integer"
+msgstr "Значение должно быть целым числом"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
+msgid "500 is the max item limit value you can set"
+msgstr "500 является максимально допустимым значением элемента"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
+msgid "You must select Criteria and Modifier"
+msgstr "Вы должны выбрать критерии и модификаторы"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
+msgid "'Length' should be in '00:00:00' format"
+msgstr "\"Длина\" должна быть в формате '00:00:00'"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
+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:594
+msgid "The value has to be numeric"
+msgstr "Значение должно быть числом"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
+msgid "The value should be less then 2147483648"
+msgstr "Значение должно быть меньше, чем 2147483648"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
+#, php-format
+msgid "The value should be less than %s characters"
+msgstr "Значение должно быть меньше, чем %s символов"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
+msgid "Value cannot be empty"
+msgstr "Значение не может быть пустым"
+
+#: airtime_mvc/application/forms/StreamSetting.php:26
+msgid "Icecast Vorbis Metadata"
+msgstr "Метаданные Icecast Vorbis "
+
+#: airtime_mvc/application/forms/StreamSetting.php:36
+msgid "Stream Label:"
+msgstr "Метка потока:"
+
+#: airtime_mvc/application/forms/StreamSetting.php:37
+msgid "Artist - Title"
+msgstr "Исполнитель - Название"
+
+#: airtime_mvc/application/forms/StreamSetting.php:38
+msgid "Show - Artist - Title"
+msgstr "Программа - Исполнитель - Название"
+
+#: airtime_mvc/application/forms/StreamSetting.php:39
+msgid "Station name - Show name"
+msgstr "Название станции - Название программы"
+
+#: airtime_mvc/application/forms/StreamSetting.php:45
+msgid "Off Air Metadata"
+msgstr "Отключить мета-данные"
+
+#: airtime_mvc/application/forms/StreamSetting.php:51
+msgid "Enable Replay Gain"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:57
+msgid "Replay Gain Modifier"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:65
+msgid "Streaming Server:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Airtime Pro Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Custom / 3rd Party Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordChange.php:17
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
+msgid "Password"
+msgstr "Пароль"
-#~ msgid "enter a time in seconds 0{.0}"
-#~ msgstr "Введите время в секундах 0 {0,0}"
+#: airtime_mvc/application/forms/PasswordChange.php:28
+msgid "Confirm new password"
+msgstr "Подтвердить новый пароль"
-#~ msgid "Allow Remote Websites To Access \"Schedule\" Info?%s (Enable this to make front-end widgets work.)"
-#~ msgstr "Разрешить удаленным вебсайтам доступ к \"Расписание \" информация? %s (Активировать для работы виджетов интерфейса)."
+#: airtime_mvc/application/forms/PasswordChange.php:36
+msgid "Password confirmation does not match your password."
+msgstr "Подтверждение пароля не совпадает с вашим паролем."
-#~ msgid "Default Interface Language"
-#~ msgstr "Язык по умолчанию"
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
+msgid "Station Language"
+msgstr ""
-#~ msgid "Get new password"
-#~ msgstr "Получить новый пароль"
-
-#~ msgid "Set smart block type:"
-#~ msgstr "Установка типа умного блока:"
-
-#~ msgid "Allow Repeat Tracks:"
-#~ msgstr "Разрешить повтор треков:"
-
-#~ msgid "Limit to"
-#~ msgstr "Ограничить до"
-
-#~ msgid "Auto Switch Off"
-#~ msgstr "Автоматическое выключение"
-
-#~ msgid "Auto Switch On"
-#~ msgstr "Автоматическое включение"
-
-#~ msgid "Switch Transition Fade (s)"
-#~ msgstr "Переключение переходов затухания (s)"
-
-#~ msgid "enter a time in seconds 00{.000000}"
-#~ msgstr "Введите время в секундах, 00{0,000000}"
-
-#~ msgid "Master Username"
-#~ msgstr "Имя пользователя Master "
-
-#~ msgid "Master Password"
-#~ msgstr "Пароль Master"
-
-#~ msgid "Master Source Connection URL"
-#~ msgstr "URL подключения к источнику Master"
-
-#~ msgid "Show Source Connection URL"
-#~ msgstr "URL подключения к источнику Show"
-
-#~ msgid "Master Source Port"
-#~ msgstr "Порт источника Master "
-
-#~ msgid "Master Source Mount Point"
-#~ msgstr "Точка монтирования источника Master"
-
-#~ msgid "Show Source Port"
-#~ msgstr "Порт источника Show"
-
-#~ msgid "Show Source Mount Point"
-#~ msgstr "Точка монтирования источника Show"
-
-#~ msgid "You cannot use same port as Master DJ port."
-#~ msgstr "Вы не можете использовать порт, используемый Master DJ."
-
-#~ msgid "Port %s is not available"
-#~ msgstr "Порт %s не доступен."
-
-#~ msgid "E-mail"
-#~ msgstr "E-mail"
-
-#~ msgid "Restore password"
-#~ msgstr "Восстановить пароль"
-
-#~ msgid "Hardware Audio Output"
-#~ msgstr "Средства аудиовыхода"
-
-#~ msgid "Output Type"
-#~ msgstr "Тип выхода"
-
-#~ msgid "Date/Time Start:"
-#~ msgstr "Дата /время начала:"
-
-#~ msgid "Date/Time End:"
-#~ msgstr "Дата / время окончания:"
-
-#~ msgid "Automatically Upload Recorded Shows"
-#~ msgstr "Автоматически загружать записанные программы"
-
-#~ msgid "Enable SoundCloud Upload"
-#~ msgstr "Включить загрузку SoundCloud"
-
-#~ msgid "Automatically Mark Files \"Downloadable\" on SoundCloud"
-#~ msgstr "Автоматически отмечать файлы \"Загружаемые\" на SoundCloud"
-
-#~ msgid "SoundCloud Email"
-#~ msgstr "SoundCloud e-mail"
-
-#~ msgid "SoundCloud Password"
-#~ msgstr "SoundCloud пароль"
-
-#~ msgid "SoundCloud Tags: (separate tags with spaces)"
-#~ msgstr "SoundCloud теги: (отдельные метки с пробелами)"
-
-#~ msgid "Default Genre:"
-#~ msgstr "Жанр по умолчанию:"
-
-#~ msgid "Default Track Type:"
-#~ msgstr "Тип трека по умолчанию:"
-
-#~ msgid "Original"
-#~ msgstr "Оригинал"
-
-#~ msgid "Remix"
-#~ msgstr "Ремикс"
-
-#~ msgid "Live"
-#~ msgstr "Прямой эфир"
-
-#~ msgid "Recording"
-#~ msgstr "Запись"
-
-#~ msgid "Spoken"
-#~ msgstr "Разговорный"
-
-#~ msgid "Podcast"
-#~ msgstr "Подкаст"
-
-#~ msgid "Demo"
-#~ msgstr "Демо"
-
-#~ msgid "Work in progress"
-#~ msgstr "Незавершенная работа"
-
-#~ msgid "Stem"
-#~ msgstr "Основа"
-
-#~ msgid "Loop"
-#~ msgstr "Цикл"
-
-#~ msgid "Sound Effect"
-#~ msgstr "Звуковой эффект"
-
-#~ msgid "One Shot Sample"
-#~ msgstr "Единичный сэмпл"
-
-#~ msgid "Other"
-#~ msgstr "Другое"
-
-#~ msgid "Enable System Emails (Password Reset)"
-#~ msgstr "Включение системы электронной почты (смена пароля)"
-
-#~ msgid "Reset Password 'From' Email"
-#~ msgstr "Сброс пароля 'От' E-mail"
-
-#~ msgid "Configure Mail Server"
-#~ msgstr "Настройка почтового сервера"
-
-#~ msgid "Requires Authentication"
-#~ msgstr "Требуется проверка подлинности"
-
-#~ msgid "Mail Server"
-#~ msgstr "Почтовый сервер"
-
-#~ msgid "Email Address"
-#~ msgstr "Адрес электронной почты"
-
-#~ msgid "Please enter your user name and password"
-#~ msgstr "Пожалуйста, введите ваше имя пользователя и пароль"
-
-#~ msgid "Given email not found."
-#~ msgstr "Данный email не найден."
-
-#~ msgid "Page not found"
-#~ msgstr "Страница не найдена"
-
-#~ msgid "Application error"
-#~ msgstr "Ошибка приложения"
-
-#~ msgid "Playlist / Block"
-#~ msgstr "Плейлист / Блок"
-
-#~ msgid "If you change the username or password values for an enabled stream the playout engine will be rebooted and your listeners will hear silence for 5-10 seconds. Changing the following fields will NOT cause a reboot: Stream Label (Global Settings), and Switch Transition Fade(s), Master Username, and Master Password (Input Stream Settings). If Airtime is recording, and if the change causes a playout engine restart, the recording will be interrupted."
-#~ msgstr "Если вы измените имя пользователя или пароль для активного потока, механизм воспроизведения будет перезагружен, а в эфире в течение 5-10 секунд будет звучать тишина. Изменение следующих полей НЕ вызовет перезагрузки: Метка потока (Общие настройки), Переключение переходов затухания, Пользовательское имя Master, Пароль Master (Настройки входящих потоков). Если Airtime ведет запись, и если изменения вызовут перезапуск механизма воспроизведения, запись будет остановлена."
-
-#~ msgid "today"
-#~ msgstr "сегодня"
-
-#~ msgid "day"
-#~ msgstr "день"
-
-#~ msgid "week"
-#~ msgstr "неделя"
-
-#~ msgid "month"
-#~ msgstr "месяц"
-
-#~ msgid "Remove overbooked tracks"
-#~ msgstr "Удалить лишние треки"
-
-#~ msgid "Soundcloud"
-#~ msgstr "Soundcloud"
-
-#~ msgid "View on Soundcloud"
-#~ msgstr "Взгляд на Soundcloud"
-
-#~ msgid "Re-upload to SoundCloud"
-#~ msgstr "Повторно загрузить на SoundCloud"
-
-#~ msgid "Upload to SoundCloud"
-#~ msgstr "Загрузить на SoundCloud"
-
-#~ msgid "Could not delete some scheduled files."
-#~ msgstr "Не удается удалить некоторые запланированные файлы."
-
-#~ msgid "Add Media"
-#~ msgstr "Добавить медиа-файлы"
-
-#~ msgid "Library"
-#~ msgstr "Библиотека"
-
-#~ msgid "System"
-#~ msgstr "Система"
-
-#~ msgid "Preferences"
-#~ msgstr "Установки пользователя"
-
-#~ msgid "Media Folders"
-#~ msgstr "Папки медиа-файлов"
-
-#~ msgid "History"
-#~ msgstr "История"
-
-#~ msgid "Service"
-#~ msgstr "Услуги"
-
-#~ msgid "Uptime"
-#~ msgstr "Время работы"
-
-#~ msgid "CPU"
-#~ msgstr "ЦП"
-
-#~ msgid "Memory"
-#~ msgstr "Память"
-
-#~ msgid "Email / Mail Server Settings"
-#~ msgstr "Настройки Email / почтового сервера"
-
-#~ msgid "Connection URL: "
-#~ msgstr "URL подключенія:"
-
-#~ msgid "Input Stream Settings"
-#~ msgstr "Настройки входного потока"
-
-#~ msgid "Master Source Connection URL:"
-#~ msgstr "URL подключения к Master:"
-
-#~ msgid "Override"
-#~ msgstr "Заменить"
-
-#~ msgid "RESET"
-#~ msgstr "ВОССТАНОВИТЬ"
-
-#~ msgid "Show Source Connection URL:"
-#~ msgstr "URL подключения к программе:"
-
-#~ msgid "Filter By Show:"
-#~ msgstr "Фильтр по программе:"
-
-#~ msgid "%s's Settings"
-#~ msgstr "%s's Настройки"
-
-#~ msgid "Sourcefabric Privacy Policy"
-#~ msgstr "Политика конфиденциальности Sourcefabric "
-
-#~ msgid "Smart Block Options"
-#~ msgstr "Параметры умного блока"
-
-#~ msgid "file meet the criteria"
-#~ msgstr "файл отвечает критериям"
-
-#~ msgid "New"
-#~ msgstr "Новый"
-
-#~ msgid "New Playlist"
-#~ msgstr "Новый плейлист"
-
-#~ msgid "New Smart Block"
-#~ msgstr "Новый умный блок"
-
-#~ msgid "New Webstream"
-#~ msgstr "Новый веб-поток"
-
-#~ msgid "View / edit description"
-#~ msgstr "Просмотр / редактирование описания"
-
-#~ msgid "Global Settings"
-#~ msgstr "Общие настройки"
-
-#~ msgid "Output Stream Settings"
-#~ msgstr "Настройки выходного потока"
-
-#~ msgid "Listener Count Over Time"
-#~ msgstr "Слушатель граф с течением времени"
-
-#~ msgid "Begin by adding your files to the library using the 'Add Media' menu button. You can drag and drop your files to this window too."
-#~ msgstr "Начните с добавления файлов в библиотеку с помощью кнопки \"Добавить медиа-файлы\". Вы также можете перетащить файлы в это окно."
-
-#~ msgid "Create a show by going to 'Calendar' in the menu bar, and then clicking the '+ Show' icon. This can be either a one-time or repeating show. Only admins and program managers can add shows."
-#~ msgstr "Создайте программу в разделе 'Календарь' и кликните \"+ Show '. Это может быть разовая или повторяющаяся программа. Только администраторы и менеджеры могут добавить программу."
-
-#~ msgid "Add media to the show by going to your show in the Schedule calendar, left-clicking on it and selecting 'Add / Remove Content'"
-#~ msgstr "Добавить медиа-файлы программы в Календаре, кликнув левой кнопкой и выбрав \"Добавить/Удалить контент\" в выпадающем меню"
-
-#~ msgid "Select your media from the left pane and drag them to your show in the right pane."
-#~ msgstr "Выберите медиа-файлы на левой панели и перетащите их в вашу программу на правой панели."
-
-#~ msgid "Then you're good to go!"
-#~ msgstr "Вы готовы!"
-
-#~ msgid "Please enter your account e-mail address. You will receive a link to create a new password via e-mail."
-#~ msgstr "Пожалуйста, введите email своей учетной записи. Вы получите ссылку, чтобы создать новый пароль."
-
-#~ msgid "Email sent"
-#~ msgstr "E-mail отправлен"
-
-#~ msgid "An email has been sent"
-#~ msgstr "Сообщение было отправлено"
-
-#~ msgid "Back to login screen"
-#~ msgstr "Вернуться на страницу входа"
-
-#~ msgid "Scheduled Play"
-#~ msgstr "Из календаря"
-
-#~ msgid "Station time"
-#~ msgstr "Время станции"
-
-#~ msgid "Zend Framework Default Application"
-#~ msgstr "Приложение по умолчанию Zend Framework "
-
-#~ msgid "Empty smart block"
-#~ msgstr "Очистить умный блок"
-
-#~ msgid "Empty playlist"
-#~ msgstr "Очистить плейлист"
-
-#~ msgid "Empty smart block content"
-#~ msgstr "Очистить умный блок"
-
-#~ msgid "No open smart block"
-#~ msgstr "Нет открытых умных блоков"
-
-#~ msgid "Record & Rebroadcast"
-#~ msgstr "Запись и Ретрансляция"
-
-#~ msgid "Failed to create 'organize' directory."
-#~ msgstr "Не удалось создать папку organize."
-
-#~ msgid "The file was not uploaded, there is %s MB of disk space left and the file you are uploading has a size of %s MB."
-#~ msgstr "Файл не был загружен, размер свободного дискового пространства %s МБ, а размер загружаемого файла %s МБ."
-
-#~ msgid "This file appears to be corrupted and will not be added to media library."
-#~ msgstr "Этот файл по-видимому поврежден и не будет добавлен к медиа-библиотеке."
-
-#~ msgid "The file was not uploaded, this error can occur if the computer hard drive does not have enough disk space or the stor directory does not have correct write permissions."
-#~ msgstr "Загрузка не удалась. Эта ошибка возможна, если на жестком диске компьютера не хватает места или папка не имеет необходимых разрешений записи."
-
-#~ msgid ""
-#~ "Hi %s, \n"
-#~ "\n"
-#~ "Click this link to reset your password: "
-#~ msgstr ""
-#~ "Привет %s, \n"
-#~ "\n"
-#~ " Нажмите ссылку для сброса пароля: "
-
-#~ msgid "Show Content"
-#~ msgstr "Показать содержимое"
-
-#~ msgid "Remove All Content"
-#~ msgstr "Удалить все содержимое"
-
-#~ msgid "Cancel Current Show"
-#~ msgstr "Отмена текущей программы"
-
-#~ msgid "Edit This Instance"
-#~ msgstr "Редактировать"
-
-#~ msgid "Delete This Instance"
-#~ msgstr "Удалить этот выпуск"
-
-#~ msgid "Delete This Instance and All Following"
-#~ msgstr "Удалить этот выпуск и все последующие"
-
-#~ msgid "Please selection an option"
-#~ msgstr "Пожалуйста, выбор опции"
-
-#~ msgid "No Records"
-#~ msgstr "Нет записей"
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
+msgid "Enabled:"
+msgstr "Активировано:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
+msgid "Mobile:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
+msgid "Stream Type:"
+msgstr "Тип потока:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
+msgid "Service Type:"
+msgstr "Тип услуги:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
+msgid "Channels:"
+msgstr "Каналы:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "1 - Mono"
+msgstr "1 - Моно"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "2 - Stereo"
+msgstr "2 - Стерео"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
+msgid "Server"
+msgstr "Сервер"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
+msgid "Port"
+msgstr "Порт"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
+msgid "Only numbers are allowed."
+msgstr "Разрешены только числа."
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
+msgid "URL"
+msgstr "URL"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
+msgid "Mount Point"
+msgstr "Точка монтирования"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
+msgid "Admin User"
+msgstr "Администратор"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
+msgid "Admin Password"
+msgstr "Пароль администратора"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
+msgid "Server cannot be empty."
+msgstr "Сервер не может быть пустым"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
+msgid "Port cannot be empty."
+msgstr "Порт не может быть пустым."
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
+msgid "Mount cannot be empty with Icecast server."
+msgstr "Монтирование не может быть пустым с Icecast сервер."
+
+#: airtime_mvc/application/forms/AddShowWhen.php:16
+msgid "'%value%' does not fit the time format 'HH:mm'"
+msgstr "'%значение%' не соответствует формату времени 'ЧЧ:мм'"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:22
+msgid "Start Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:37
+msgid "In the Future:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:64
+msgid "End Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:98
+msgid "Timezone:"
+msgstr "Временная зона:"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:107
+msgid "Repeats?"
+msgstr "Повторы?"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:139
+msgid "Cannot create show in the past"
+msgstr "Невозможно создать программу в прошедшем периоде"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:147
+msgid "Cannot modify start date/time of the show that is already started"
+msgstr "Невозможно изменить дату/время начала программы, которая уже началась"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:156
+#: airtime_mvc/application/models/Show.php:282
+msgid "End date/time cannot be in the past"
+msgstr "Дата/время окончания не могут быть прошедшими"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:164
+msgid "Cannot have duration < 0m"
+msgstr "Не может иметь длительность <0м"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:168
+msgid "Cannot have duration 00h 00m"
+msgstr "Не может иметь длительность 00ч 00м"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:175
+msgid "Cannot have duration greater than 24h"
+msgstr "Не может иметь длительность более 24 часов"
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:19
+msgid "Push metadata to your station on TuneIn?"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:24
+msgid "Station ID:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:30
+msgid "Partner Key:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:36
+msgid "Partner Id:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:77
+#: airtime_mvc/application/forms/TuneInPreferences.php:86
+msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:10
+#, php-format
+msgid "Use %s Authentication:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:16
+msgid "Use Custom Authentication:"
+msgstr "Использование пользовательской идентификации:"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:25
+msgid "Custom Username"
+msgstr "Пользовательские имя пользователя"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:37
+msgid "Custom Password"
+msgstr "Пользовательский пароль"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:48
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
+msgid "Host:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
+msgid "Port:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:60
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
+msgid "Mount:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:77
+msgid "Username field cannot be empty."
+msgstr "Имя пользователя не может быть пустым."
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:82
+msgid "Password field cannot be empty."
+msgstr "Пароль не может быть пустым."
+
+#: airtime_mvc/application/forms/AddShowStyle.php:12
+msgid "Background Colour:"
+msgstr "Цвет фона:"
+
+#: airtime_mvc/application/forms/AddShowStyle.php:31
+msgid "Text Colour:"
+msgstr "Цвет текста:"
+
+#: airtime_mvc/application/forms/AddShowStyle.php:49
+msgid "Current Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:72
+msgid "Show Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:87
+msgid "Logo Preview:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Login.php:102
+msgid "Type the characters you see in the picture below."
+msgstr "Введите символы, которые вы видите на картинке ниже."
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
+msgid "Auto Switch Off:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
+msgid "Auto Switch On:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
+msgid "Switch Transition Fade (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:10
+msgid "Link:"
+msgstr "Ссылка:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:16
+msgid "Repeat Type:"
+msgstr "Тип повтора:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:19
+msgid "weekly"
+msgstr "Еженедельно"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:20
+msgid "every 2 weeks"
+msgstr "каждые 2 недели"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:21
+msgid "every 3 weeks"
+msgstr "каждые 3 недели"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:22
+msgid "every 4 weeks"
+msgstr "каждые 4 недели"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:23
+msgid "monthly"
+msgstr "ежемесячно"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:32
+msgid "Select Days:"
+msgstr "Выберите дни:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:47
+msgid "Repeat By:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the month"
+msgstr "день месяца"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the week"
+msgstr "день недели"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:69
+msgid "No End?"
+msgstr "Нет окончания?"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:106
+msgid "End date must be after start date"
+msgstr "Дата окончания должна быть после даты начала"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:113
+msgid "Please select a repeat day"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:12
+msgid "Radio Page"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:19
+msgid "Calendar"
+msgstr "Календарь"
+
+#: airtime_mvc/application/configs/navigation.php:26
+msgid "Widgets"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:48
+msgid "Settings"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:67
+msgid "Users"
+msgstr "Пользователи"
+
+#: airtime_mvc/application/configs/navigation.php:74
+msgid "Streams"
+msgstr "Потоки"
+
+#: airtime_mvc/application/configs/navigation.php:82
+msgid "Analytics"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:90
+msgid "Listener Stats"
+msgstr "Статистика слушателей"
+
+#: airtime_mvc/application/configs/navigation.php:104
+msgid "History Templates"
+msgstr "Шаблоны истории"
+
+#: airtime_mvc/application/configs/navigation.php:113
+msgid "Billing"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:120
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:127
+msgid "Account Details"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:134
+msgid "View Invoices"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:150
+msgid "Getting Started"
+msgstr "С чего начать"
+
+#: airtime_mvc/application/configs/navigation.php:157
+msgid "FAQ"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:162
+msgid "User Manual"
+msgstr "Руководство пользователя"
+
+#: airtime_mvc/application/configs/navigation.php:167
+msgid "File a Support Ticket"
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:833
+#: airtime_mvc/application/models/Playlist.php:812
+msgid "Cue in and cue out are null."
+msgstr "Время начала и окончания звучания трека не заполнены."
+
+#: airtime_mvc/application/models/Block.php:868
+#: airtime_mvc/application/models/Block.php:924
+#: airtime_mvc/application/models/Playlist.php:851
+#: airtime_mvc/application/models/Playlist.php:895
+msgid "Can't set cue out to be greater than file length."
+msgstr "Время окончания звучания не может превышать длину трека."
+
+#: airtime_mvc/application/models/Block.php:879
+#: airtime_mvc/application/models/Block.php:900
+#: airtime_mvc/application/models/Playlist.php:843
+#: airtime_mvc/application/models/Playlist.php:868
+msgid "Can't set cue in to be larger than cue out."
+msgstr "Время начала звучания не может быть больше времени окончания. "
+
+#: airtime_mvc/application/models/Block.php:935
+#: airtime_mvc/application/models/Playlist.php:887
+msgid "Can't set cue out to be smaller than cue in."
+msgstr "Время окончания звучания не может быть меньше времени начала."
+
+#: airtime_mvc/application/models/Block.php:1366
+msgid "Upload Time"
+msgstr ""
+
+#: airtime_mvc/application/models/ShowBuilder.php:212
+#, php-format
+msgid "Rebroadcast of %s from %s"
+msgstr "Ретрансляция %s из %s"
+
+#: airtime_mvc/application/models/Preference.php:460
+#, php-format
+msgid "Powered by %s"
+msgstr ""
+
+#: airtime_mvc/application/models/Preference.php:588
+msgid "Select Country"
+msgstr "Выберите страну"
+
+#: airtime_mvc/application/models/MusicDir.php:160
+#, php-format
+msgid "%s is already watched."
+msgstr "%s уже просматривают."
+
+#: airtime_mvc/application/models/MusicDir.php:164
+#, php-format
+msgid "%s contains nested watched directory: %s"
+msgstr "%s содержит вложенную просматриваемую папку: %s"
+
+#: airtime_mvc/application/models/MusicDir.php:168
+#, php-format
+msgid "%s is nested within existing watched directory: %s"
+msgstr "%s вложено в существующую просматриваемую папку: %s"
+
+#: airtime_mvc/application/models/MusicDir.php:189
+#: airtime_mvc/application/models/MusicDir.php:370
+#, php-format
+msgid "%s is not a valid directory."
+msgstr "%s не является допустимой папкой."
+
+#: airtime_mvc/application/models/MusicDir.php:232
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list"
+msgstr "%s уже установлена в качестве текущей папки хранения или в списке просматриваемых папок"
+
+#: airtime_mvc/application/models/MusicDir.php:388
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list."
+msgstr "%s уже установлен в качестве текущей папки хранения или в списке просматриваемых папок."
+
+#: airtime_mvc/application/models/MusicDir.php:431
+#, php-format
+msgid "%s doesn't exist in the watched list."
+msgstr "%s не существует в просматриваемом списке"
+
+#: airtime_mvc/application/models/Auth.php:33
+#, php-format
+msgid ""
+"Hi %s, \n"
+"\n"
+"Please click this link to reset your password: "
+msgstr ""
+
+#: airtime_mvc/application/models/Auth.php:38
+#, php-format
+msgid "%s Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/models/Show.php:184
+msgid "Shows can have a max length of 24 hours."
+msgstr "Максимальная продолжительность программы 24 часа."
+
+#: airtime_mvc/application/models/Show.php:293
+msgid ""
+"Cannot schedule overlapping shows.\n"
+"Note: Resizing a repeating show affects all of its repeats."
+msgstr ""
+"Нельзя планировать пересекающиеся программы.\n"
+"Примечание: изменение размера повторяющейся программы влияет на все ее повторы."
+
+#: airtime_mvc/application/models/Scheduler.php:73
+msgid "Cannot move items out of linked shows"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:119
+msgid "The schedule you're viewing is out of date! (sched mismatch)"
+msgstr "Расписание, которое вы просматриваете, устарело! (несоответствие расписания)"
+
+#: airtime_mvc/application/models/Scheduler.php:124
+msgid "The schedule you're viewing is out of date! (instance mismatch)"
+msgstr "Расписание, которое вы просматриваете, устарело! (несоответствие выпусков)"
+
+#: airtime_mvc/application/models/Scheduler.php:132
+#: airtime_mvc/application/models/Scheduler.php:458
+#: airtime_mvc/application/models/Scheduler.php:490
+msgid "The schedule you're viewing is out of date!"
+msgstr "Расписание, которое вы просматриваете, устарело!"
+
+#: airtime_mvc/application/models/Scheduler.php:142
+#, php-format
+msgid "You are not allowed to schedule show %s."
+msgstr "У вас нет прав планирования программы %s ."
+
+#: airtime_mvc/application/models/Scheduler.php:146
+msgid "You cannot add files to recording shows."
+msgstr "Вы не можете добавлять файлы в записываемую программу"
+
+#: airtime_mvc/application/models/Scheduler.php:152
+#, php-format
+msgid "The show %s is over and cannot be scheduled."
+msgstr "Программа %s окончилась и не может быть поставлена в расписание."
+
+#: airtime_mvc/application/models/Scheduler.php:159
+#, php-format
+msgid "The show %s has been previously updated!"
+msgstr "Программа %s была обновлена ранее!"
+
+#: airtime_mvc/application/models/Scheduler.php:178
+msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:195
+msgid "Cannot schedule a playlist that contains missing files."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:216
+#: airtime_mvc/application/models/Scheduler.php:305
+msgid "A selected File does not exist!"
+msgstr "Выбранный файл не существует!"
+
+#: airtime_mvc/application/models/Schedule.php:206
+msgid "livestream"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:166
+msgid "Length needs to be greater than 0 minutes"
+msgstr "Длина должна быть более 0 минут"
+
+#: airtime_mvc/application/models/Webstream.php:171
+msgid "Length should be of form \"00h 00m\""
+msgstr "Длину указать в формате \"00ч 00мин \""
+
+#: airtime_mvc/application/models/Webstream.php:184
+msgid "URL should be of form \"http://domain\""
+msgstr "URL указать в формате \"http://домен\""
+
+#: airtime_mvc/application/models/Webstream.php:187
+msgid "URL should be 512 characters or less"
+msgstr "URL должен быть 512 символов или менее"
+
+#: airtime_mvc/application/models/Webstream.php:193
+msgid "No MIME type found for webstream."
+msgstr "Для веб-потока не найдено MIME type"
+
+#: airtime_mvc/application/models/Webstream.php:209
+msgid "Webstream name cannot be empty"
+msgstr "Название вебпотока должно быть заполнено"
+
+#: airtime_mvc/application/models/Webstream.php:278
+msgid "Could not parse XSPF playlist"
+msgstr "Не удалось анализировать XSPF плейлист"
+
+#: airtime_mvc/application/models/Webstream.php:298
+msgid "Could not parse PLS playlist"
+msgstr "Не удалось анализировать PLS плейлист"
+
+#: airtime_mvc/application/models/Webstream.php:318
+msgid "Could not parse M3U playlist"
+msgstr "Не удалось анализировать M3U плейлист"
+
+#: airtime_mvc/application/models/Webstream.php:332
+msgid "Invalid webstream - This appears to be a file download."
+msgstr "Неверный вебпоток - это загрузка файла."
+
+#: airtime_mvc/application/models/Webstream.php:336
+#, php-format
+msgid "Unrecognized stream type: %s"
+msgstr "Неизвестный тип потока: %s"
+
+#: airtime_mvc/public/setup/rabbitmq-setup.php:78
+msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
+msgstr ""
+
+#~ msgid "My Account"
+#~ msgstr "Моя учетная запись"
diff --git a/airtime_mvc/locale/ru_RU/LC_MESSAGES/pro.po b/airtime_mvc/locale/ru_RU/LC_MESSAGES/pro.po
index 866ee0acb..f59b52c3d 100644
--- a/airtime_mvc/locale/ru_RU/LC_MESSAGES/pro.po
+++ b/airtime_mvc/locale/ru_RU/LC_MESSAGES/pro.po
@@ -1,3 +1,139 @@
+#: airtime_mvc/application/controllers/LoginController.php:170
+#, php-format
+msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
+#, php-format
+msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
+#, php-format
+msgid "If you are the primary owner of this station, please reset your password here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
+msgid "Thank you!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
+msgid "Your station has been upgraded successfully."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
+msgid "Return to Airtime"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+#, php-format
+msgid "Purchase an %s plan!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+msgid "My Account"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
+msgid "Upgrade today to get more listeners and storage space!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
+msgid "View Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:257
+msgid "Your Current Plan:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:291
+msgid "Please enter your payment details:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
+msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
+msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:17
+msgid "First Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:26
+msgid "Last Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:35
+msgid "Company Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:44
+msgid "Email Address:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:54
+msgid "Address 1:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:63
+msgid "Address 2:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:70
+msgid "City:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:80
+msgid "State/Region:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:89
+msgid "Zip Code / Postal Code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:102
+msgid "Country:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:112
+msgid "Phone Number:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:121
+msgid "Please choose a security question:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:135
+msgid "Please enter an answer:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:152
+msgid "VAT/Tax ID (EU only)"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:162
+msgid "Subscribe to Sourcefabric newsletter"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:172
+msgid "Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:181
+msgid "Verify Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:193
+msgid "Save"
+msgstr ""
+
#: airtime_mvc/application/models/Auth.php:35
#, php-format
msgid ""
@@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
-msgid "Thank you!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
-msgid "Your station has been upgraded successfully."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
-msgid "Return to Airtime"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
-#, php-format
-msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
-msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
-msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
-#, php-format
-msgid "If you are the primary owner of this station, please reset your password here."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:170
-#, php-format
-msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
-msgstr ""
diff --git a/airtime_mvc/locale/si/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/si/LC_MESSAGES/airtime.mo
index 2ec7e4920..fd7e659de 100644
Binary files a/airtime_mvc/locale/si/LC_MESSAGES/airtime.mo and b/airtime_mvc/locale/si/LC_MESSAGES/airtime.mo differ
diff --git a/airtime_mvc/locale/si/LC_MESSAGES/airtime.po b/airtime_mvc/locale/si/LC_MESSAGES/airtime.po
index 0ea007c2e..bc6d74b17 100644
--- a/airtime_mvc/locale/si/LC_MESSAGES/airtime.po
+++ b/airtime_mvc/locale/si/LC_MESSAGES/airtime.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Airtime\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-09-03 10:24-0400\n"
-"PO-Revision-Date: 2014-11-14 09:58+0000\n"
+"POT-Creation-Date: 2015-09-04 11:17-0400\n"
+"PO-Revision-Date: 2015-09-04 08:15+0000\n"
"Last-Translator: Daniel James \n"
"Language-Team: Sinhala (http://www.transifex.com/sourcefabric/airtime/language/si/)\n"
"Language: si\n"
@@ -17,132 +17,6 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: airtime_mvc/public/setup/rabbitmq-setup.php:78
-msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1117
-#: airtime_mvc/application/services/HistoryService.php:1157
-#: airtime_mvc/application/services/HistoryService.php:1174
-#: airtime_mvc/application/models/Block.php:1375
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
-#: airtime_mvc/application/controllers/LocaleController.php:76
-msgid "Title"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1118
-#: airtime_mvc/application/services/HistoryService.php:1158
-#: airtime_mvc/application/services/HistoryService.php:1175
-#: airtime_mvc/application/models/Block.php:1360
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
-#: airtime_mvc/application/controllers/LocaleController.php:77
-msgid "Creator"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1119
-#: airtime_mvc/application/models/Block.php:1352
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
-#: airtime_mvc/application/controllers/LocaleController.php:78
-msgid "Album"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1120
-#: airtime_mvc/application/services/HistoryService.php:1177
-#: airtime_mvc/application/models/Block.php:1369
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
-#: airtime_mvc/application/controllers/LocaleController.php:91
-msgid "Length"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1121
-#: airtime_mvc/application/models/Block.php:1362
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
-#: airtime_mvc/application/controllers/LocaleController.php:85
-msgid "Genre"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1122
-#: airtime_mvc/application/models/Block.php:1371
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
-#: airtime_mvc/application/controllers/LocaleController.php:93
-msgid "Mood"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1123
-#: airtime_mvc/application/models/Block.php:1364
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
-#: airtime_mvc/application/controllers/LocaleController.php:87
-msgid "Label"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1124
-#: airtime_mvc/application/services/HistoryService.php:1178
-#: airtime_mvc/application/models/Block.php:1355
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
-#: airtime_mvc/application/controllers/LocaleController.php:81
-msgid "Composer"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1125
-#: airtime_mvc/application/models/Block.php:1363
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
-#: airtime_mvc/application/controllers/LocaleController.php:86
-msgid "ISRC"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1126
-#: airtime_mvc/application/services/HistoryService.php:1179
-#: airtime_mvc/application/models/Block.php:1357
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
-#: airtime_mvc/application/controllers/LocaleController.php:83
-msgid "Copyright"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1127
-#: airtime_mvc/application/models/Block.php:1379
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
-#: airtime_mvc/application/controllers/LocaleController.php:100
-msgid "Year"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1128
-msgid "Track"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1129
-#: airtime_mvc/application/models/Block.php:1356
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
-#: airtime_mvc/application/controllers/LocaleController.php:82
-msgid "Conductor"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1130
-#: airtime_mvc/application/models/Block.php:1365
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
-#: airtime_mvc/application/controllers/LocaleController.php:88
-msgid "Language"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1155
-#: airtime_mvc/application/forms/EditHistoryItem.php:32
-msgid "Start Time"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1156
-#: airtime_mvc/application/forms/EditHistoryItem.php:44
-msgid "End Time"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1176
-msgid "Played"
-msgstr ""
-
#: airtime_mvc/application/services/CalendarService.php:50
msgid "Record file doesn't exist"
msgstr ""
@@ -238,2601 +112,380 @@ msgstr ""
msgid "Must wait 1 hour to rebroadcast."
msgstr ""
-#: airtime_mvc/application/models/Schedule.php:206
-msgid "livestream"
+#: airtime_mvc/application/services/HistoryService.php:1117
+#: airtime_mvc/application/services/HistoryService.php:1157
+#: airtime_mvc/application/services/HistoryService.php:1174
+#: airtime_mvc/application/controllers/LocaleController.php:76
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
+#: airtime_mvc/application/models/Block.php:1375
+msgid "Title"
msgstr ""
-#: airtime_mvc/application/models/ShowBuilder.php:212
+#: airtime_mvc/application/services/HistoryService.php:1118
+#: airtime_mvc/application/services/HistoryService.php:1158
+#: airtime_mvc/application/services/HistoryService.php:1175
+#: airtime_mvc/application/controllers/LocaleController.php:77
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
+#: airtime_mvc/application/models/Block.php:1360
+msgid "Creator"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1119
+#: airtime_mvc/application/controllers/LocaleController.php:78
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
+#: airtime_mvc/application/models/Block.php:1352
+msgid "Album"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1120
+#: airtime_mvc/application/services/HistoryService.php:1177
+#: airtime_mvc/application/controllers/LocaleController.php:91
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
+#: airtime_mvc/application/models/Block.php:1369
+msgid "Length"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1121
+#: airtime_mvc/application/controllers/LocaleController.php:85
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
+#: airtime_mvc/application/models/Block.php:1362
+msgid "Genre"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1122
+#: airtime_mvc/application/controllers/LocaleController.php:93
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
+#: airtime_mvc/application/models/Block.php:1371
+msgid "Mood"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1123
+#: airtime_mvc/application/controllers/LocaleController.php:87
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
+#: airtime_mvc/application/models/Block.php:1364
+msgid "Label"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1124
+#: airtime_mvc/application/services/HistoryService.php:1178
+#: airtime_mvc/application/controllers/LocaleController.php:81
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
+#: airtime_mvc/application/models/Block.php:1355
+msgid "Composer"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1125
+#: airtime_mvc/application/controllers/LocaleController.php:86
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
+#: airtime_mvc/application/models/Block.php:1363
+msgid "ISRC"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1126
+#: airtime_mvc/application/services/HistoryService.php:1179
+#: airtime_mvc/application/controllers/LocaleController.php:83
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
+#: airtime_mvc/application/models/Block.php:1357
+msgid "Copyright"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1127
+#: airtime_mvc/application/controllers/LocaleController.php:100
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
+#: airtime_mvc/application/models/Block.php:1379
+msgid "Year"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1128
+msgid "Track"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1129
+#: airtime_mvc/application/controllers/LocaleController.php:82
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
+#: airtime_mvc/application/models/Block.php:1356
+msgid "Conductor"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1130
+#: airtime_mvc/application/controllers/LocaleController.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
+#: airtime_mvc/application/models/Block.php:1365
+msgid "Language"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1155
+#: airtime_mvc/application/forms/EditHistoryItem.php:32
+msgid "Start Time"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1156
+#: airtime_mvc/application/forms/EditHistoryItem.php:44
+msgid "End Time"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1176
+msgid "Played"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:31
+#: airtime_mvc/application/controllers/PlaylistController.php:147
#, php-format
-msgid "Rebroadcast of %s from %s"
+msgid "%s not found"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:166
-msgid "Length needs to be greater than 0 minutes"
+#: airtime_mvc/application/controllers/LibraryController.php:40
+#: airtime_mvc/application/controllers/PlaylistController.php:168
+msgid "Something went wrong."
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:171
-msgid "Length should be of form \"00h 00m\""
+#: airtime_mvc/application/controllers/LibraryController.php:95
+#: airtime_mvc/application/controllers/ShowbuilderController.php:136
+msgid "Preview"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:184
-msgid "URL should be of form \"http://domain\""
+#: airtime_mvc/application/controllers/LibraryController.php:115
+#: airtime_mvc/application/controllers/LibraryController.php:177
+#: airtime_mvc/application/controllers/LibraryController.php:200
+msgid "Add to Playlist"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:187
-msgid "URL should be 512 characters or less"
+#: airtime_mvc/application/controllers/LibraryController.php:117
+msgid "Add to Smart Block"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:193
-msgid "No MIME type found for webstream."
+#: airtime_mvc/application/controllers/LibraryController.php:123
+#: airtime_mvc/application/controllers/LocaleController.php:66
+msgid "Edit Metadata"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:209
-msgid "Webstream name cannot be empty"
+#: airtime_mvc/application/controllers/LibraryController.php:131
+#: airtime_mvc/application/controllers/ScheduleController.php:712
+msgid "Download"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:278
-msgid "Could not parse XSPF playlist"
+#: airtime_mvc/application/controllers/LibraryController.php:147
+msgid "View track"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:298
-msgid "Could not parse PLS playlist"
+#: airtime_mvc/application/controllers/LibraryController.php:148
+msgid "Remove track"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:318
-msgid "Could not parse M3U playlist"
+#: airtime_mvc/application/controllers/LibraryController.php:154
+#: airtime_mvc/application/controllers/LibraryController.php:159
+msgid "Upload track"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:332
-msgid "Invalid webstream - This appears to be a file download."
+#: airtime_mvc/application/controllers/LibraryController.php:169
+msgid "Duplicate Playlist"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:336
+#: airtime_mvc/application/controllers/LibraryController.php:213
+msgid "No action available"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:233
+msgid "You don't have permission to delete selected items."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:279
+msgid "Could not delete file because it is scheduled in the future."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:282
+msgid "Could not delete file(s)."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:322
#, php-format
-msgid "Unrecognized stream type: %s"
+msgid "Copy of %s"
msgstr ""
-#: airtime_mvc/application/models/Preference.php:460
-#, php-format
-msgid "Powered by %s"
+#: airtime_mvc/application/controllers/WebstreamController.php:28
+#: airtime_mvc/application/controllers/WebstreamController.php:32
+msgid "Untitled Webstream"
msgstr ""
-#: airtime_mvc/application/models/Preference.php:588
-msgid "Select Country"
+#: airtime_mvc/application/controllers/WebstreamController.php:150
+msgid "Webstream saved."
msgstr ""
-#: airtime_mvc/application/models/MusicDir.php:160
-#, php-format
-msgid "%s is already watched."
+#: airtime_mvc/application/controllers/WebstreamController.php:158
+msgid "Invalid form values."
msgstr ""
-#: airtime_mvc/application/models/MusicDir.php:164
-#, php-format
-msgid "%s contains nested watched directory: %s"
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:168
-#, php-format
-msgid "%s is nested within existing watched directory: %s"
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:189
-#: airtime_mvc/application/models/MusicDir.php:370
-#, php-format
-msgid "%s is not a valid directory."
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:232
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list"
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:388
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list."
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:431
-#, php-format
-msgid "%s doesn't exist in the watched list."
-msgstr ""
-
-#: airtime_mvc/application/models/Show.php:184
-msgid "Shows can have a max length of 24 hours."
-msgstr ""
-
-#: airtime_mvc/application/models/Show.php:282
-#: airtime_mvc/application/forms/AddShowWhen.php:156
-msgid "End date/time cannot be in the past"
-msgstr ""
-
-#: airtime_mvc/application/models/Show.php:293
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
msgid ""
-"Cannot schedule overlapping shows.\n"
-"Note: Resizing a repeating show affects all of its repeats."
+"To configure and use the embeddable player you must:
\n"
+" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
+" 2. Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/models/Auth.php:33
-#, php-format
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
msgid ""
-"Hi %s, \n"
-"\n"
-"Please click this link to reset your password: "
+"To use the embeddable weekly schedule widget you must:
\n"
+" Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/models/Auth.php:38
+#: airtime_mvc/application/controllers/ListenerstatController.php:51
+msgid "Please make sure admin user/password is correct on System->Streams page."
+msgstr ""
+
+#: airtime_mvc/application/controllers/UserController.php:86
+msgid "User added successfully!"
+msgstr ""
+
+#: airtime_mvc/application/controllers/UserController.php:88
+msgid "User updated successfully!"
+msgstr ""
+
+#: airtime_mvc/application/controllers/UserController.php:187
+msgid "Settings updated successfully!"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PlaylistController.php:53
#, php-format
-msgid "%s Password Reset"
+msgid "You are viewing an older version of %s"
msgstr ""
-#: airtime_mvc/application/models/Block.php:333
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
-msgid "items"
+#: airtime_mvc/application/controllers/PlaylistController.php:140
+msgid "You cannot add tracks to dynamic blocks."
msgstr ""
-#: airtime_mvc/application/models/Block.php:833
-#: airtime_mvc/application/models/Playlist.php:812
-msgid "Cue in and cue out are null."
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:868
-#: airtime_mvc/application/models/Block.php:924
-#: airtime_mvc/application/models/Playlist.php:851
-#: airtime_mvc/application/models/Playlist.php:895
-msgid "Can't set cue out to be greater than file length."
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:879
-#: airtime_mvc/application/models/Block.php:900
-#: airtime_mvc/application/models/Playlist.php:843
-#: airtime_mvc/application/models/Playlist.php:868
-msgid "Can't set cue in to be larger than cue out."
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:935
-#: airtime_mvc/application/models/Playlist.php:887
-msgid "Can't set cue out to be smaller than cue in."
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1351
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
-msgid "Select criteria"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1353
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
-msgid "Bit Rate (Kbps)"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1354
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
-#: airtime_mvc/application/controllers/LocaleController.php:80
-msgid "BPM"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1358
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
-#: airtime_mvc/application/controllers/LocaleController.php:281
-#: airtime_mvc/application/layouts/scripts/layout.phtml:140
-msgid "Cue In"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1359
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:282
-#: airtime_mvc/application/layouts/scripts/layout.phtml:147
-msgid "Cue Out"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1361
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
-#: airtime_mvc/application/controllers/LocaleController.php:84
-msgid "Encoded By"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1366
-msgid "Upload Time"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1367
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
-#: airtime_mvc/application/controllers/LocaleController.php:89
-msgid "Last Modified"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1368
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
-#: airtime_mvc/application/controllers/LocaleController.php:90
-msgid "Last Played"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1370
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
-#: airtime_mvc/application/controllers/LocaleController.php:92
-msgid "Mime"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1372
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
-#: airtime_mvc/application/controllers/LocaleController.php:94
-msgid "Owner"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1373
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
-#: airtime_mvc/application/controllers/LocaleController.php:95
-msgid "Replay Gain"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1374
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
-msgid "Sample Rate (kHz)"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1376
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
-#: airtime_mvc/application/controllers/LocaleController.php:97
-msgid "Track Number"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1377
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
-#: airtime_mvc/application/controllers/LocaleController.php:98
-msgid "Uploaded"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1378
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
-#: airtime_mvc/application/controllers/LocaleController.php:99
-msgid "Website"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1383
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
-#: airtime_mvc/application/controllers/LocaleController.php:151
-msgid "Select modifier"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1384
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
-#: airtime_mvc/application/controllers/LocaleController.php:152
-msgid "contains"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1385
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
-#: airtime_mvc/application/controllers/LocaleController.php:153
-msgid "does not contain"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1386
-#: airtime_mvc/application/models/Block.php:1390
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
-#: airtime_mvc/application/controllers/LocaleController.php:154
-msgid "is"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1387
-#: airtime_mvc/application/models/Block.php:1391
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
-#: airtime_mvc/application/controllers/LocaleController.php:155
-msgid "is not"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1388
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
-#: airtime_mvc/application/controllers/LocaleController.php:156
-msgid "starts with"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1389
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
-#: airtime_mvc/application/controllers/LocaleController.php:157
-msgid "ends with"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
-#: airtime_mvc/application/controllers/LocaleController.php:158
-msgid "is greater than"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1393
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
-#: airtime_mvc/application/controllers/LocaleController.php:159
-msgid "is less than"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1394
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
-#: airtime_mvc/application/controllers/LocaleController.php:160
-msgid "is in the range"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:73
-msgid "Cannot move items out of linked shows"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:119
-msgid "The schedule you're viewing is out of date! (sched mismatch)"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:124
-msgid "The schedule you're viewing is out of date! (instance mismatch)"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:132
-#: airtime_mvc/application/models/Scheduler.php:458
-#: airtime_mvc/application/models/Scheduler.php:490
-msgid "The schedule you're viewing is out of date!"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:142
+#: airtime_mvc/application/controllers/PlaylistController.php:161
#, php-format
-msgid "You are not allowed to schedule show %s."
+msgid "You don't have permission to delete selected %s(s)."
msgstr ""
-#: airtime_mvc/application/models/Scheduler.php:146
-msgid "You cannot add files to recording shows."
+#: airtime_mvc/application/controllers/PlaylistController.php:174
+msgid "You can only add tracks to smart block."
msgstr ""
-#: airtime_mvc/application/models/Scheduler.php:152
+#: airtime_mvc/application/controllers/PlaylistController.php:180
+#: airtime_mvc/application/controllers/LocaleController.php:50
+msgid "You can only add tracks, smart blocks, and webstreams to playlists."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PlaylistController.php:192
+msgid "Untitled Playlist"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PlaylistController.php:194
+msgid "Untitled Smart Block"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PlaylistController.php:522
+msgid "Unknown Playlist"
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:78
+msgid "Page not found."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:87
+msgid "The requested action is not supported."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:98
+msgid "You do not have permission to access this resource."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:109
+msgid "An internal application error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/controllers/Apiv2Controller.php:77
+#: airtime_mvc/application/controllers/ApiController.php:79
+msgid "You are not allowed to access this resource."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:72
+msgid "Preferences updated."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:115
+msgid "Support setting updated."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:123
+msgid "Support Feedback"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:251
+msgid "Stream Setting Updated."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:342
+msgid "path should be specified"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:437
+msgid "Problem with Liquidsoap..."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:493
+msgid "Request method not accepted"
+msgstr ""
+
+#: airtime_mvc/application/controllers/DashboardController.php:35
+#: airtime_mvc/application/controllers/DashboardController.php:84
+msgid "You don't have permission to disconnect source."
+msgstr ""
+
+#: airtime_mvc/application/controllers/DashboardController.php:37
+#: airtime_mvc/application/controllers/DashboardController.php:86
+msgid "There is no source connected to this input."
+msgstr ""
+
+#: airtime_mvc/application/controllers/DashboardController.php:81
+msgid "You don't have permission to switch source."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:43
+msgid "Please enter your username and password."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:93
+msgid "Wrong username or password provided. Please try again."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:167
+msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:173
+msgid "There was a problem with the username or email address you entered."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ApiController.php:244
+#: airtime_mvc/application/controllers/ApiController.php:317
+#: airtime_mvc/application/controllers/ApiController.php:392
+#: airtime_mvc/application/controllers/ApiController.php:435
+#: airtime_mvc/application/controllers/ApiController.php:474
+#: airtime_mvc/application/controllers/ApiController.php:507
+msgid "You are not allowed to access this resource. "
+msgstr ""
+
+#: airtime_mvc/application/controllers/ApiController.php:698
+#: airtime_mvc/application/controllers/ApiController.php:718
+#: airtime_mvc/application/controllers/ApiController.php:730
#, php-format
-msgid "The show %s is over and cannot be scheduled."
+msgid "File does not exist in %s"
msgstr ""
-#: airtime_mvc/application/models/Scheduler.php:159
-#, php-format
-msgid "The show %s has been previously updated!"
+#: airtime_mvc/application/controllers/ApiController.php:781
+msgid "Bad request. no 'mode' parameter passed."
msgstr ""
-#: airtime_mvc/application/models/Scheduler.php:178
-msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:195
-msgid "Cannot schedule a playlist that contains missing files."
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:216
-#: airtime_mvc/application/models/Scheduler.php:305
-msgid "A selected File does not exist!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
-#: airtime_mvc/application/configs/navigation.php:40
-msgid "Weekly Schedule"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
-#: airtime_mvc/application/forms/Player.php:77
-msgid "Preview:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
-#: airtime_mvc/application/configs/navigation.php:34
-msgid "Player"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
-#: airtime_mvc/application/controllers/LocaleController.php:362
-#: airtime_mvc/application/controllers/LocaleController.php:390
-msgid "Close"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Add this show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Update show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
-msgid "What"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
-msgid "When"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
-msgid "Live Stream Input"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
-msgid "Who"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
-msgid "Style"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
-#: airtime_mvc/application/controllers/LocaleController.php:273
-msgid "Start"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
-msgid "Password Reset"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
-msgid "Email Sent!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
-msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
-msgid "Back"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
-msgid "New password"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
-msgid "Please enter and confirm your new password in the fields below."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:3
-#: airtime_mvc/application/forms/Login.php:83
-msgid "Login"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:7
-#, php-format
-msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:97
-msgid "Playout History"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
-msgid "Log Sheet"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
-msgid "File Summary"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
-msgid "Show Summary"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
-msgid "Your trial expires in"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
-msgid "days"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-#, php-format
-msgid "Purchase an %s Pro plan!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-msgid "My Account"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
-msgid "Previous:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
-msgid "Next:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
-msgid "Source Streams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
-msgid "Master Source"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
-msgid "Show Source"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
-msgid "ON AIR"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
-msgid "Listen"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
-msgid "Logout"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
-msgid "Drop files here or click to browse your computer."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
-#: airtime_mvc/application/controllers/LocaleController.php:314
-msgid "in use"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
-#: airtime_mvc/application/controllers/LocaleController.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:401
-msgid "All"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
-msgid "Failed"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
-msgid "Pending"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
-msgid "Recent Uploads"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
-#: airtime_mvc/application/configs/navigation.php:120
-msgid "Account Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
-msgid "Upgrade today to get more listeners and storage space!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
-msgid "View Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
-msgid "About"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
-#, php-format
-msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
-#, php-format
-msgid "%1$s %2$s is distributed under the %3$s"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
-#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
-msgid "Live stream"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
-msgid "Share"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
-msgid "Select stream:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
-msgid "mute"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
-msgid "unmute"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
-#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
-#, php-format
-msgid "Welcome to %s!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
-#, php-format
-msgid "Here's how you can get started using %s to automate your broadcasts: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
-msgid "Upload audio tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
-msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
-msgid "Schedule a show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
-msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
-msgid "Add tracks to your show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
-msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
-msgid "Now you're good to go!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
-#, php-format
-msgid "For more detailed help, read the %suser manual%s."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
-msgid "Listeners"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
-msgid "Stream Data Collection Status"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
-#: airtime_mvc/application/views/scripts/error/error.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
-msgid "An error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
-msgid "Access Denied!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
-msgid "You do not have permission to access this page!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
-#: airtime_mvc/application/views/scripts/error/error.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
-#: airtime_mvc/application/configs/navigation.php:143
-msgid "Help"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
-msgid "Page not found!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
-msgid "We couldn't find the page you were looking for."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error.phtml:12
-msgid "Looks like the page you were looking for doesn't exist!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
-msgid "Oops!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
-msgid "Something went wrong!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
-msgid "Bad Request!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
-msgid "The requested action is not supported!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
-msgid "Viewing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
-msgid "Editing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:3
-msgid "File import in progress..."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:10
-#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
-msgid "Advanced Search Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
-#: airtime_mvc/application/forms/Player.php:15
-#: airtime_mvc/application/forms/EditAudioMD.php:24
-msgid "Title:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
-#: airtime_mvc/application/forms/EditAudioMD.php:34
-msgid "Creator:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
-#: airtime_mvc/application/forms/EditAudioMD.php:44
-msgid "Album:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
-msgid "Track:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
-msgid "Length:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
-msgid "Sample Rate:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
-msgid "Bit Rate:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
-#: airtime_mvc/application/forms/EditAudioMD.php:115
-msgid "Mood:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
-#: airtime_mvc/application/forms/EditAudioMD.php:62
-#: airtime_mvc/application/forms/AddShowWhat.php:45
-msgid "Genre:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
-#: airtime_mvc/application/forms/EditAudioMD.php:72
-msgid "Year:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
-#: airtime_mvc/application/forms/EditAudioMD.php:85
-msgid "Label:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
-#: airtime_mvc/application/forms/EditAudioMD.php:125
-msgid "BPM:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
-#: airtime_mvc/application/forms/EditAudioMD.php:95
-msgid "Composer:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
-#: airtime_mvc/application/forms/EditAudioMD.php:105
-msgid "Conductor:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
-#: airtime_mvc/application/forms/EditAudioMD.php:135
-msgid "Copyright:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
-msgid "Isrc Number:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
-#: airtime_mvc/application/forms/EditAudioMD.php:155
-msgid "Website:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
-#: airtime_mvc/application/forms/EditUser.php:119
-#: airtime_mvc/application/forms/EditAudioMD.php:165
-#: airtime_mvc/application/forms/Login.php:68
-msgid "Language:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
-msgid "File Path:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
-#: airtime_mvc/application/forms/AddShowWhat.php:26
-msgid "Name:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
-#: airtime_mvc/application/forms/AddShowWhat.php:54
-msgid "Description:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
-msgid "Web Stream"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
-msgid "Dynamic Smart Block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
-msgid "Static Smart Block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
-msgid "Audio Track"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
-msgid "Playlist Contents: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
-msgid "Static Smart Block Contents: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
-msgid "Dynamic Smart Block Criteria: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
-msgid "Limit to "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
-#: airtime_mvc/application/forms/AddShowWhat.php:36
-msgid "URL:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/login.phtml:41
-msgid "Forgot your password?"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
-#, php-format
-msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
-#, php-format
-msgid "Click the box below to promote your station on %s."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
-msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
-msgid "(Required)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
-msgid "(for verification purposes only, will not be published)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
-msgid "Choose folder"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
-msgid "Set"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
-msgid "Current Import Folder:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
-msgid "Add"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
-#, php-format
-msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
-msgid "Remove watched directory"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
-msgid "You are not watching any media folders."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
-msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
-msgid "Live Broadcasting"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
-msgid "Use these settings in your broadcasting software to stream live at any time."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
-msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
-msgid "Choose Show Instance"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
-#: airtime_mvc/application/forms/EditHistoryItem.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:400
-msgid "No Show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
-msgid "Find"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
-msgid "Choose Days:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
-#: airtime_mvc/application/forms/AddShowStyle.php:64
-#: airtime_mvc/application/forms/GeneralPreferences.php:53
-msgid "Remove"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
-msgid "Stream "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
-msgid "Additional Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
-msgid "The following info will be displayed to listeners in their media player:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
-msgid "(Your radio station website)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
-msgid "Stream URL: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
-msgid "Find Shows"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
-msgid "TuneIn Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
-msgid "SoundCloud Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
-msgid "Dangerous Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
-msgid "Search Criteria:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
-msgid "New Criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
-msgid "or"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
-msgid "and"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
-msgid "New Modifier"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
-msgid " to "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
-msgid "files meet the criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
-msgid "file meets the criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
-msgid "Filter History"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
-#: airtime_mvc/application/configs/navigation.php:61
-msgid "My Profile"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
-#, php-format
-msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
-#: airtime_mvc/application/forms/Preferences.php:40
-#: airtime_mvc/application/forms/PasswordChange.php:43
-#: airtime_mvc/application/forms/AddUser.php:110
-#: airtime_mvc/application/forms/BillingClient.php:193
-#: airtime_mvc/application/forms/SupportSettings.php:131
-#: airtime_mvc/application/forms/EditHistory.php:131
-#: airtime_mvc/application/controllers/LocaleController.php:294
-msgid "Save"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
-msgid "Repeat Days:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
-msgid "Register Airtime"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
-#: airtime_mvc/application/forms/GeneralPreferences.php:43
-msgid "Note: Anything larger than 600x600 will be resized."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
-msgid "Show me what I am sending "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
-msgid "Terms and Conditions"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
-msgid "Creating File Summary Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
-msgid "Creating Log Sheet Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
-msgid "Name"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
-msgid "Add more elements"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
-msgid "Add New Field"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
-msgid "Set Default Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
-msgid "Playout History Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
-msgid "Log Sheet Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
-msgid "New Log Sheet Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
-msgid "No Log Sheet Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
-#: airtime_mvc/application/controllers/LocaleController.php:397
-msgid "Set Default"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
-msgid "File Summary Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
-msgid "New File Summary Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
-msgid "No File Summary Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
-msgid "Disk Space"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
-#: airtime_mvc/application/controllers/LocaleController.php:315
-msgid "Disk"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
-#: airtime_mvc/application/forms/AddShowWhen.php:89
-msgid "Duration:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
-msgid "Toggle Details"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
-msgid "Playlist crossfade"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-msgid "Remove all content from this smart block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Clear"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "Fade in: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "(ss.t)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-msgid "Fade out: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
-#: airtime_mvc/application/forms/EditAudioMD.php:186
-#: airtime_mvc/application/forms/EditHistory.php:141
-#: airtime_mvc/application/controllers/LocaleController.php:295
-#: airtime_mvc/application/controllers/LocaleController.php:318
-msgid "Cancel"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
-msgid "No smart block currently open"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
-msgid "Show Waveform"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-msgid "Cue In: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "(hh:mm:ss.t)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "Cue Out: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
-msgid "Original Length:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
-msgid "Expand Static Block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
-msgid "Expand Dynamic Block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
-msgid "Choose some search criteria above and click Generate to create this playlist."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
-msgid "A track list will be generated when you schedule this smart block into a show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
-msgid "Drag tracks here from your library to add them to the playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-msgid "Shuffle playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
-msgid "Shuffle"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Empty playlist content"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-msgid "Save playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
-msgid "No open playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
-msgid "previous"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
-msgid "play"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
-msgid "pause"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
-msgid "next"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
-msgid "stop"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
-msgid "max volume"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
-msgid "Update Required"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
-#, php-format
-msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
-msgid "Stream Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
-msgid "Global"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
-msgid "dB"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
-msgid "Output Streams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
-#: airtime_mvc/application/controllers/LocaleController.php:166
-msgid "Manage Media Folders"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:56
-msgid "General"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
-msgid "Description"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
-msgid "Stream URL:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
-msgid "Default Length:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
-msgid "No webstream"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
-msgid "Manage Users"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
-msgid "New User"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
-msgid "id"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
-#: airtime_mvc/application/forms/PasswordRestore.php:25
-msgid "Username"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
-msgid "First Name"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
-msgid "Last Name"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
-msgid "User Type"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
-#, php-format
-msgid "Super Admin details can be changed in your Billing Settings."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
-#: airtime_mvc/application/controllers/LocaleController.php:74
-#: airtime_mvc/application/layouts/scripts/layout.phtml:78
-msgid "Tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
-#: airtime_mvc/application/controllers/LocaleController.php:104
-#: airtime_mvc/application/layouts/scripts/layout.phtml:80
-msgid "Playlists"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
-#: airtime_mvc/application/controllers/LocaleController.php:105
-#: airtime_mvc/application/layouts/scripts/layout.phtml:82
-msgid "Smart Blocks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
-#: airtime_mvc/application/layouts/scripts/layout.phtml:84
-msgid "Webstreams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
-#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
-#: airtime_mvc/application/layouts/scripts/layout.phtml:76
-msgid "Dashboard"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:12
-msgid "Radio Page"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:19
-msgid "Calendar"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:26
-msgid "Widgets"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:48
-msgid "Settings"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:67
-msgid "Users"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:74
-msgid "Streams"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:82
-msgid "Analytics"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:90
-msgid "Listener Stats"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:104
-msgid "History Templates"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:113
-msgid "Billing"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:127
-msgid "Account Details"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:134
-msgid "View Invoices"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:150
-msgid "Getting Started"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:157
-msgid "FAQ"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:162
-msgid "User Manual"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:167
-msgid "File a Support Ticket"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:12
-msgid "Background Colour:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:31
-msgid "Text Colour:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:49
-msgid "Current Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:72
-msgid "Show Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:87
-msgid "Logo Preview:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:19
-msgid "Push metadata to your station on TuneIn?"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:24
-msgid "Station ID:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:30
-msgid "Partner Key:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:36
-msgid "Partner Id:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:77
-#: airtime_mvc/application/forms/TuneInPreferences.php:86
-msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:14
-msgid "Now Playing"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:25
-msgid "Select Stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:28
-msgid "Auto detect the most appropriate stream to use."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:29
-msgid "Select a stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:41
-msgid " - Mobile friendly"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:45
-msgid " - The player does not support Opus streams."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:71
-msgid "Embeddable code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:72
-msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:37
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
-#: airtime_mvc/application/forms/Login.php:41
-#: airtime_mvc/application/forms/AddUser.php:29
-msgid "Username:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:48
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
-#: airtime_mvc/application/forms/Login.php:54
-#: airtime_mvc/application/forms/AddUser.php:38
-#: airtime_mvc/application/forms/BillingClient.php:172
-msgid "Password:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:57
-#: airtime_mvc/application/forms/AddUser.php:46
-#: airtime_mvc/application/forms/BillingClient.php:181
-msgid "Verify Password:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:67
-#: airtime_mvc/application/forms/AddUser.php:55
-msgid "Firstname:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:75
-#: airtime_mvc/application/forms/AddUser.php:61
-msgid "Lastname:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:83
-#: airtime_mvc/application/forms/RegisterAirtime.php:51
-#: airtime_mvc/application/forms/AddUser.php:67
-#: airtime_mvc/application/forms/SupportSettings.php:43
-msgid "Email:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:94
-#: airtime_mvc/application/forms/AddUser.php:76
-msgid "Mobile Phone:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:102
-#: airtime_mvc/application/forms/AddUser.php:82
-msgid "Skype:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:110
-#: airtime_mvc/application/forms/AddUser.php:88
-msgid "Jabber:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:129
-msgid "Interface Timezone:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:155
-#: airtime_mvc/application/forms/AddUser.php:120
-msgid "Login name is not unique."
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRR.php:10
-msgid "Record from Line In?"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRR.php:16
-msgid "Rebroadcast?"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:16
-msgid "'%value%' does not fit the time format 'HH:mm'"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:22
-msgid "Start Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:37
-msgid "In the Future:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:64
-msgid "End Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:98
-msgid "Timezone:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:107
-msgid "Repeats?"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:139
-msgid "Cannot create show in the past"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:147
-msgid "Cannot modify start date/time of the show that is already started"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:164
-msgid "Cannot have duration < 0m"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:168
-msgid "Cannot have duration 00h 00m"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:175
-msgid "Cannot have duration greater than 24h"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWho.php:10
-msgid "Search Users:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWho.php:24
-msgid "DJs:"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordChange.php:17
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
-msgid "Password"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordChange.php:28
-msgid "Confirm new password"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordChange.php:36
-msgid "Password confirmation does not match your password."
-msgstr ""
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
-msgid "Station Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
-#: airtime_mvc/application/forms/GeneralPreferences.php:127
-msgid "Station Timezone"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
-msgid "Auto Switch Off:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
-msgid "Auto Switch On:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
-msgid "Switch Transition Fade (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
-#: airtime_mvc/application/forms/GeneralPreferences.php:68
-#: airtime_mvc/application/forms/GeneralPreferences.php:82
-#: airtime_mvc/application/forms/GeneralPreferences.php:96
-msgid "Please enter a time in seconds (eg. 0.5)"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
-#: airtime_mvc/application/forms/AddShowLiveStream.php:48
-msgid "Host:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
-#: airtime_mvc/application/forms/AddShowLiveStream.php:54
-msgid "Port:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
-#: airtime_mvc/application/forms/AddShowLiveStream.php:60
-msgid "Mount:"
-msgstr ""
-
-#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
-msgid "Value is required and can't be empty"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:25
-#: airtime_mvc/application/forms/RegisterAirtime.php:30
-#: airtime_mvc/application/forms/SupportSettings.php:18
-msgid "Station Name"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:33
-msgid "Station Description"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:42
-#: airtime_mvc/application/forms/RegisterAirtime.php:106
-msgid "Station Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:62
-msgid "Default Crossfade Duration (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:76
-msgid "Default Fade In (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:90
-msgid "Default Fade Out (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:102
-msgid "Public Airtime API"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:103
-msgid "Required for embeddable schedule widget."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:105
-msgid "Disabled"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:106
-msgid "Enabled"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:109
-msgid ""
-"Enabling this feature will allow Airtime to provide schedule data\n"
-" to external widgets that can be embedded in your website."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:120
-msgid "Default Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:134
-msgid "Week Starts On"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:150
-msgid "Display login button on your Radio Page?"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:158
-#: airtime_mvc/application/controllers/LocaleController.php:249
-msgid "Sunday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:159
-#: airtime_mvc/application/controllers/LocaleController.php:250
-msgid "Monday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:160
-#: airtime_mvc/application/controllers/LocaleController.php:251
-msgid "Tuesday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:161
-#: airtime_mvc/application/controllers/LocaleController.php:252
-msgid "Wednesday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:162
-#: airtime_mvc/application/controllers/LocaleController.php:253
-msgid "Thursday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:163
-#: airtime_mvc/application/controllers/LocaleController.php:254
-msgid "Friday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:164
-#: airtime_mvc/application/controllers/LocaleController.php:255
-msgid "Saturday"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
-msgid "Default License:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
-msgid "All rights are reserved"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
-msgid "The work is in the public domain"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
-msgid "Creative Commons Attribution"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
-msgid "Creative Commons Attribution Noncommercial"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
-msgid "Creative Commons Attribution No Derivative Works"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
-msgid "Creative Commons Attribution Share Alike"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
-msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
-msgid "Creative Commons Attribution Noncommercial Share Alike"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
-msgid "Default Sharing Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
-msgid "Public"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
-msgid "Private"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:18
-#: airtime_mvc/application/forms/DateRange.php:16
-msgid "Date Start:"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:37
-#: airtime_mvc/application/forms/ShowBuilder.php:65
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
-#: airtime_mvc/application/forms/DateRange.php:35
-#: airtime_mvc/application/forms/DateRange.php:63
-msgid "Invalid character entered"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:46
-#: airtime_mvc/application/forms/AddShowRepeats.php:56
-#: airtime_mvc/application/forms/DateRange.php:44
-msgid "Date End:"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:72
-#: airtime_mvc/application/forms/ShowBuilder.php:88
-msgid "Filter by Show"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:80
-msgid "All My Shows:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditAudioMD.php:145
-msgid "ISRC Number:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditAudioMD.php:176
-msgid "OK"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
-msgid "Day must be specified"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
-msgid "Time must be specified"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
-msgid "Must wait at least 1 hour to rebroadcast"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhat.php:30
-msgid "Untitled Show"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhat.php:69
-msgid "Instance Description:"
-msgstr ""
-
-#: airtime_mvc/application/forms/DangerousPreferences.php:12
-msgid "Delete All Tracks in Library"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:39
-#: airtime_mvc/application/forms/SupportSettings.php:31
-msgid "Phone:"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:62
-#: airtime_mvc/application/forms/SupportSettings.php:54
-msgid "Station Web Site:"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:73
-#: airtime_mvc/application/forms/BillingClient.php:102
-#: airtime_mvc/application/forms/SupportSettings.php:65
-msgid "Country:"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:84
-#: airtime_mvc/application/forms/BillingClient.php:70
-#: airtime_mvc/application/forms/SupportSettings.php:76
-msgid "City:"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:96
-#: airtime_mvc/application/forms/SupportSettings.php:88
-msgid "Station Description:"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:116
-#: airtime_mvc/application/forms/SupportSettings.php:98
-#: airtime_mvc/application/controllers/LocaleController.php:341
-msgid "Send support feedback"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:126
-#: airtime_mvc/application/forms/SupportSettings.php:108
-#, php-format
-msgid "Promote my station on %s"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:151
-#: airtime_mvc/application/forms/SupportSettings.php:120
-#, php-format
-msgid "By checking this box, I agree to %s's %sprivacy policy%s."
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:169
-#: airtime_mvc/application/forms/SupportSettings.php:143
-msgid "You have to agree to privacy policy."
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:10
-msgid "Link:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:16
-msgid "Repeat Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:19
-msgid "weekly"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:20
-msgid "every 2 weeks"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:21
-msgid "every 3 weeks"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:22
-msgid "every 4 weeks"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:23
-msgid "monthly"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:32
-msgid "Select Days:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:35
-#: airtime_mvc/application/controllers/LocaleController.php:256
-msgid "Sun"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:36
-#: airtime_mvc/application/controllers/LocaleController.php:257
-msgid "Mon"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:37
-#: airtime_mvc/application/controllers/LocaleController.php:258
-msgid "Tue"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:38
-#: airtime_mvc/application/controllers/LocaleController.php:259
-msgid "Wed"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:39
-#: airtime_mvc/application/controllers/LocaleController.php:260
-msgid "Thu"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:40
-#: airtime_mvc/application/controllers/LocaleController.php:261
-msgid "Fri"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:41
-#: airtime_mvc/application/controllers/LocaleController.php:262
-msgid "Sat"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:47
-msgid "Repeat By:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the month"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the week"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:69
-msgid "No End?"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:106
-msgid "End date must be after start date"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:113
-msgid "Please select a repeat day"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:10
-#, php-format
-msgid "Use %s Authentication:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:16
-msgid "Use Custom Authentication:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:25
-msgid "Custom Username"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:37
-msgid "Custom Password"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:77
-msgid "Username field cannot be empty."
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:82
-msgid "Password field cannot be empty."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
-msgid "Enabled:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
-msgid "Mobile:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
-msgid "Stream Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
-msgid "Service Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
-msgid "Channels:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "1 - Mono"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "2 - Stereo"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
-msgid "Server"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
-msgid "Port"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
-msgid "Only numbers are allowed."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
-msgid "URL"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
-msgid "Mount Point"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
-msgid "Admin User"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
-msgid "Admin Password"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
-#: airtime_mvc/application/controllers/LocaleController.php:173
-msgid "Getting information from the server..."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
-msgid "Server cannot be empty."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
-msgid "Port cannot be empty."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
-msgid "Mount cannot be empty with Icecast server."
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
-msgid "'%value%' is no valid email address in the basic format local-part@hostname"
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
-msgid "'%value%' does not fit the date format '%format%'"
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
-msgid "'%value%' is less than %min% characters long"
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
-msgid "'%value%' is more than %max% characters long"
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
-msgid "'%value%' is not between '%min%' and '%max%', inclusively"
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
-msgid "Passwords do not match"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
-msgid "hours"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
-msgid "minutes"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
-msgid "Randomly"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
-msgid "Newest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
-msgid "Oldest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
-msgid "Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
-msgid "Static"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
-msgid "Dynamic"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
-msgid "Allow Repeated Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
-msgid "Sort Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
-msgid "Limit to:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
-msgid "Generate playlist content and save criteria"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
-msgid "Generate"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
-msgid "Shuffle playlist content"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
-msgid "Limit cannot be empty or smaller than 0"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
-msgid "Limit cannot be more than 24 hrs"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
-msgid "The value should be an integer"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
-msgid "500 is the max item limit value you can set"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
-msgid "You must select Criteria and Modifier"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
-msgid "'Length' should be in '00:00:00' format"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
-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:594
-msgid "The value has to be numeric"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
-msgid "The value should be less then 2147483648"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
-#, php-format
-msgid "The value should be less than %s characters"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
-msgid "Value cannot be empty"
-msgstr ""
-
-#: airtime_mvc/application/forms/Login.php:102
-msgid "Type the characters you see in the picture below."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:26
-msgid "Icecast Vorbis Metadata"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:36
-msgid "Stream Label:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:37
-msgid "Artist - Title"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:38
-msgid "Show - Artist - Title"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:39
-msgid "Station name - Show name"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:45
-msgid "Off Air Metadata"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:51
-msgid "Enable Replay Gain"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:57
-msgid "Replay Gain Modifier"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:65
-msgid "Streaming Server:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Airtime Pro Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Custom / 3rd Party Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:95
-msgid "User Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:99
-#: airtime_mvc/application/controllers/LocaleController.php:324
-msgid "Guest"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:100
-#: airtime_mvc/application/controllers/LocaleController.php:322
-msgid "DJ"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:101
-#: airtime_mvc/application/controllers/LocaleController.php:323
-msgid "Program Manager"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:321
-msgid "Admin"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:17
-msgid "First Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:26
-msgid "Last Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:35
-msgid "Company Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:44
-msgid "Email Address:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:54
-msgid "Address 1:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:63
-msgid "Address 2:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:80
-msgid "State/Region:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:89
-msgid "Zip Code / Postal Code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:112
-msgid "Phone Number:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:121
-msgid "Please choose a security question:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:126
-msgid "What is the name of your favorite childhood friend?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:127
-msgid "What school did you attend for sixth grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:128
-msgid "In what city did you meet your spouse/significant other?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:129
-msgid "What street did you live on in third grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:130
-msgid "What is the first name of the boy or girl that you first kissed?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:131
-msgid "In what city or town was your first job?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:135
-msgid "Please enter an answer:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:152
-msgid "VAT/Tax ID (EU only)"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:162
-msgid "Subscribe to Sourcefabric newsletter"
-msgstr ""
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
-msgid "Import Folder:"
-msgstr ""
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
-msgid "Watched Folders:"
-msgstr ""
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
-msgid "Not a valid Directory"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordRestore.php:14
-msgid "Email"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordRestore.php:36
-msgid "Reset password"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
-msgid "Plan type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
-msgid "Billing cycle:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
-msgid "Payment method:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
-msgid "PayPal"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
-msgid "Credit Card via 2Checkout"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:213
-#, php-format
-msgid "The year %s must be within the range of 1753 - 9999"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:216
-#, php-format
-msgid "%s-%s-%s is not a valid date"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:240
-#, php-format
-msgid "%s:%s:%s is not a valid time"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:55
-msgid "Upload some tracks below to add them to your library!"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:57
-#, php-format
-msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:63
-msgid "Click the 'New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:65
-#, php-format
-msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:73
-msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:75
-#, php-format
-msgid ""
-"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
-" %sCreate an unlinked show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:80
-msgid "To start broadcasting, click on the current show and select 'Schedule Show'"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:82
-#, php-format
-msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:89
-msgid "Click on the show starting next and select 'Schedule Show'"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:91
-#, php-format
-msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+#: airtime_mvc/application/controllers/ApiController.php:791
+msgid "Bad request. 'mode' parameter is invalid"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:30
@@ -2905,11 +558,6 @@ msgstr ""
msgid "You can only add tracks to smart blocks."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:50
-#: airtime_mvc/application/controllers/PlaylistController.php:180
-msgid "You can only add tracks, smart blocks, and webstreams to playlists."
-msgstr ""
-
#: airtime_mvc/application/controllers/LocaleController.php:53
msgid "Please select a cursor position on timeline."
msgstr ""
@@ -2950,11 +598,6 @@ msgstr ""
msgid "Click 'New' to create one."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:66
-#: airtime_mvc/application/controllers/LibraryController.php:123
-msgid "Edit Metadata"
-msgstr ""
-
#: airtime_mvc/application/controllers/LocaleController.php:67
msgid "Add to selected show"
msgstr ""
@@ -2983,6 +626,12 @@ msgstr ""
msgid "Scheduled"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:74
+#: airtime_mvc/application/layouts/scripts/layout.phtml:78
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
+msgid "Tracks"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:75
#: airtime_mvc/application/layouts/scripts/layout.phtml:60
msgid "Playlist"
@@ -2992,18 +641,96 @@ msgstr ""
msgid "Bit Rate"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:80
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
+#: airtime_mvc/application/models/Block.php:1354
+msgid "BPM"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:84
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
+#: airtime_mvc/application/models/Block.php:1361
+msgid "Encoded By"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:89
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
+#: airtime_mvc/application/models/Block.php:1367
+msgid "Last Modified"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:90
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
+#: airtime_mvc/application/models/Block.php:1368
+msgid "Last Played"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
+#: airtime_mvc/application/models/Block.php:1370
+msgid "Mime"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:94
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
+#: airtime_mvc/application/models/Block.php:1372
+msgid "Owner"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:95
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
+#: airtime_mvc/application/models/Block.php:1373
+msgid "Replay Gain"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:96
msgid "Sample Rate"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:97
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
+#: airtime_mvc/application/models/Block.php:1376
+msgid "Track Number"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:98
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
+#: airtime_mvc/application/models/Block.php:1377
+msgid "Uploaded"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:99
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
+#: airtime_mvc/application/models/Block.php:1378
+msgid "Website"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:101
msgid "Loading..."
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:102
+#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
+msgid "All"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:103
msgid "Files"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:104
+#: airtime_mvc/application/layouts/scripts/layout.phtml:80
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
+msgid "Playlists"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:105
+#: airtime_mvc/application/layouts/scripts/layout.phtml:82
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
+msgid "Smart Blocks"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:106
msgid "Web Streams"
msgstr ""
@@ -3148,6 +875,74 @@ msgstr ""
msgid "Processing..."
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:151
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
+#: airtime_mvc/application/models/Block.php:1383
+msgid "Select modifier"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:152
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
+#: airtime_mvc/application/models/Block.php:1384
+msgid "contains"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:153
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
+#: airtime_mvc/application/models/Block.php:1385
+msgid "does not contain"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:154
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
+#: airtime_mvc/application/models/Block.php:1386
+#: airtime_mvc/application/models/Block.php:1390
+msgid "is"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:155
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
+#: airtime_mvc/application/models/Block.php:1387
+#: airtime_mvc/application/models/Block.php:1391
+msgid "is not"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:156
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
+#: airtime_mvc/application/models/Block.php:1388
+msgid "starts with"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:157
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
+#: airtime_mvc/application/models/Block.php:1389
+msgid "ends with"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:158
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
+#: airtime_mvc/application/models/Block.php:1392
+msgid "is greater than"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:159
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
+#: airtime_mvc/application/models/Block.php:1393
+msgid "is less than"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:160
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
+#: airtime_mvc/application/models/Block.php:1394
+msgid "is in the range"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:162
msgid "Choose Storage Folder"
msgstr ""
@@ -3162,6 +957,11 @@ msgid ""
"This will remove the files from your Airtime library!"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:166
+#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
+msgid "Manage Media Folders"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:167
msgid "Are you sure you want to remove the watched folder?"
msgstr ""
@@ -3183,6 +983,11 @@ msgstr ""
msgid "The stream is disabled"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:173
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
+msgid "Getting information from the server..."
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:174
msgid "Can not connect to the streaming server"
msgstr ""
@@ -3410,6 +1215,76 @@ msgstr ""
msgid "Month"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:249
+#: airtime_mvc/application/forms/GeneralPreferences.php:158
+msgid "Sunday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:250
+#: airtime_mvc/application/forms/GeneralPreferences.php:159
+msgid "Monday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:251
+#: airtime_mvc/application/forms/GeneralPreferences.php:160
+msgid "Tuesday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:252
+#: airtime_mvc/application/forms/GeneralPreferences.php:161
+msgid "Wednesday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:253
+#: airtime_mvc/application/forms/GeneralPreferences.php:162
+msgid "Thursday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:254
+#: airtime_mvc/application/forms/GeneralPreferences.php:163
+msgid "Friday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:255
+#: airtime_mvc/application/forms/GeneralPreferences.php:164
+msgid "Saturday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:256
+#: airtime_mvc/application/forms/AddShowRepeats.php:35
+msgid "Sun"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:257
+#: airtime_mvc/application/forms/AddShowRepeats.php:36
+msgid "Mon"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:258
+#: airtime_mvc/application/forms/AddShowRepeats.php:37
+msgid "Tue"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:259
+#: airtime_mvc/application/forms/AddShowRepeats.php:38
+msgid "Wed"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:260
+#: airtime_mvc/application/forms/AddShowRepeats.php:39
+msgid "Thu"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:261
+#: airtime_mvc/application/forms/AddShowRepeats.php:40
+msgid "Fri"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:262
+#: airtime_mvc/application/forms/AddShowRepeats.php:41
+msgid "Sat"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:263
msgid "Shows longer than their scheduled time will be cut off by a following show."
msgstr ""
@@ -3419,7 +1294,7 @@ msgid "Cancel Current Show?"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:265
-#: airtime_mvc/application/controllers/LocaleController.php:309
+#: airtime_mvc/application/controllers/LocaleController.php:312
msgid "Stop recording current show?"
msgstr ""
@@ -3439,6 +1314,11 @@ msgstr ""
msgid "Delete selected item(s)?"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:273
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
+msgid "Start"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:274
msgid "End"
msgstr ""
@@ -3447,580 +1327,467 @@ msgstr ""
msgid "Duration"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:283
+#: airtime_mvc/application/controllers/LocaleController.php:276
+msgid "Filtering out "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:277
+msgid " of "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:278
+msgid " records"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/layouts/scripts/layout.phtml:140
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
+#: airtime_mvc/application/models/Block.php:1358
+msgid "Cue In"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/layouts/scripts/layout.phtml:147
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
+#: airtime_mvc/application/models/Block.php:1359
+msgid "Cue Out"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:286
#: airtime_mvc/application/layouts/scripts/layout.phtml:167
msgid "Fade In"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/controllers/LocaleController.php:287
#: airtime_mvc/application/layouts/scripts/layout.phtml:168
msgid "Fade Out"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/controllers/LocaleController.php:288
msgid "Show Empty"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:286
+#: airtime_mvc/application/controllers/LocaleController.php:289
msgid "Recording From Line In"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:287
+#: airtime_mvc/application/controllers/LocaleController.php:290
msgid "Track preview"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:291
+#: airtime_mvc/application/controllers/LocaleController.php:294
msgid "Cannot schedule outside a show."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:292
+#: airtime_mvc/application/controllers/LocaleController.php:295
msgid "Moving 1 Item"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:293
+#: airtime_mvc/application/controllers/LocaleController.php:296
#, php-format
msgid "Moving %s Items"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:296
-msgid "Fade Editor"
-msgstr ""
-
#: airtime_mvc/application/controllers/LocaleController.php:297
-msgid "Cue Editor"
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
+#: airtime_mvc/application/forms/Preferences.php:40
+#: airtime_mvc/application/forms/EditHistory.php:131
+#: airtime_mvc/application/forms/AddUser.php:110
+#: airtime_mvc/application/forms/PasswordChange.php:43
+#: airtime_mvc/application/forms/SupportSettings.php:131
+msgid "Save"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:298
-msgid "Waveform features are available in a browser supporting the Web Audio API"
+#: airtime_mvc/application/controllers/LocaleController.php:321
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
+#: airtime_mvc/application/forms/EditHistory.php:141
+#: airtime_mvc/application/forms/EditAudioMD.php:186
+msgid "Cancel"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:299
+msgid "Fade Editor"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:300
+msgid "Cue Editor"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:301
-msgid "Select all"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LocaleController.php:302
-msgid "Select none"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LocaleController.php:303
-msgid "Trim overbooked shows"
+msgid "Waveform features are available in a browser supporting the Web Audio API"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:304
-msgid "Remove selected scheduled items"
+msgid "Select all"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:305
-msgid "Jump to the current playing track"
+msgid "Select none"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:306
+msgid "Trim overbooked shows"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:307
+msgid "Remove selected scheduled items"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:308
+msgid "Jump to the current playing track"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:309
msgid "Cancel current show"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:311
+#: airtime_mvc/application/controllers/LocaleController.php:314
msgid "Open library to add or remove content"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:312
+#: airtime_mvc/application/controllers/LocaleController.php:315
msgid "Add / Remove Content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:317
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
+msgid "in use"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:318
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
+msgid "Disk"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:320
msgid "Look in"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:319
+#: airtime_mvc/application/controllers/LocaleController.php:322
msgid "Open"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:324
+#: airtime_mvc/application/forms/AddUser.php:102
+msgid "Admin"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:325
-msgid "Guests can do the following:"
+#: airtime_mvc/application/forms/AddUser.php:100
+msgid "DJ"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:326
-msgid "View schedule"
+#: airtime_mvc/application/forms/AddUser.php:101
+msgid "Program Manager"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:327
-msgid "View show content"
+#: airtime_mvc/application/forms/AddUser.php:99
+msgid "Guest"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:328
-msgid "DJs can do the following:"
+msgid "Guests can do the following:"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:329
-msgid "Manage assigned show content"
+msgid "View schedule"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:330
-msgid "Import media files"
+msgid "View show content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:331
-msgid "Create playlists, smart blocks, and webstreams"
+msgid "DJs can do the following:"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:332
-msgid "Manage their own library content"
+msgid "Manage assigned show content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:333
-msgid "Progam Managers can do the following:"
+msgid "Import media files"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:334
-msgid "View and manage show content"
+msgid "Create playlists, smart blocks, and webstreams"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:335
-msgid "Schedule shows"
+msgid "Manage their own library content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:336
-msgid "Manage all library content"
+msgid "Progam Managers can do the following:"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:337
-msgid "Admins can do the following:"
+msgid "View and manage show content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:338
-msgid "Manage preferences"
+msgid "Schedule shows"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:339
-msgid "Manage users"
+msgid "Manage all library content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:340
-msgid "Manage watched folders"
+msgid "Admins can do the following:"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:341
+msgid "Manage preferences"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:342
-msgid "View system status"
+msgid "Manage users"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:343
-msgid "Access playout history"
+msgid "Manage watched folders"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:344
-msgid "View listener stats"
+#: airtime_mvc/application/forms/RegisterAirtime.php:116
+#: airtime_mvc/application/forms/SupportSettings.php:98
+msgid "Send support feedback"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:345
+msgid "View system status"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:346
-msgid "Show / hide columns"
+msgid "Access playout history"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:348
-msgid "From {from} to {to}"
+#: airtime_mvc/application/controllers/LocaleController.php:347
+msgid "View listener stats"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:349
-msgid "kbps"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LocaleController.php:350
-msgid "yyyy-mm-dd"
+msgid "Show / hide columns"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:351
-msgid "hh:mm:ss.t"
+msgid "From {from} to {to}"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:352
-msgid "kHz"
+msgid "kbps"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:353
+msgid "yyyy-mm-dd"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:354
+msgid "hh:mm:ss.t"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:355
-msgid "Su"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LocaleController.php:356
-msgid "Mo"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LocaleController.php:357
-msgid "Tu"
+msgid "kHz"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:358
-msgid "We"
+msgid "Su"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:359
-msgid "Th"
+msgid "Mo"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:360
-msgid "Fr"
+msgid "Tu"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:361
-msgid "Sa"
+msgid "We"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:362
+msgid "Th"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:363
+msgid "Fr"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:364
-msgid "Hour"
+msgid "Sa"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
+msgid "Close"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:367
+msgid "Hour"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:368
msgid "Minute"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:366
+#: airtime_mvc/application/controllers/LocaleController.php:369
msgid "Done"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:369
+#: airtime_mvc/application/controllers/LocaleController.php:372
msgid "Select files"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:370
-#: airtime_mvc/application/controllers/LocaleController.php:371
+#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:374
msgid "Add files to the upload queue and click the start button."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:372
-#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:376
msgid "Status"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:374
+#: airtime_mvc/application/controllers/LocaleController.php:377
msgid "Add Files"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:378
msgid "Stop Upload"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:376
+#: airtime_mvc/application/controllers/LocaleController.php:379
msgid "Start upload"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:377
+#: airtime_mvc/application/controllers/LocaleController.php:380
msgid "Add files"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:378
+#: airtime_mvc/application/controllers/LocaleController.php:381
#, php-format
msgid "Uploaded %d/%d files"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:379
+#: airtime_mvc/application/controllers/LocaleController.php:382
msgid "N/A"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:380
+#: airtime_mvc/application/controllers/LocaleController.php:383
msgid "Drag files here."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:381
+#: airtime_mvc/application/controllers/LocaleController.php:384
msgid "File extension error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:382
+#: airtime_mvc/application/controllers/LocaleController.php:385
msgid "File size error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:383
+#: airtime_mvc/application/controllers/LocaleController.php:386
msgid "File count error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:384
+#: airtime_mvc/application/controllers/LocaleController.php:387
msgid "Init error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:385
+#: airtime_mvc/application/controllers/LocaleController.php:388
msgid "HTTP Error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:386
+#: airtime_mvc/application/controllers/LocaleController.php:389
msgid "Security error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:387
+#: airtime_mvc/application/controllers/LocaleController.php:390
msgid "Generic error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:388
+#: airtime_mvc/application/controllers/LocaleController.php:391
msgid "IO error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:389
+#: airtime_mvc/application/controllers/LocaleController.php:392
#, php-format
msgid "File: %s"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:391
+#: airtime_mvc/application/controllers/LocaleController.php:394
#, php-format
msgid "%d files queued"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:392
+#: airtime_mvc/application/controllers/LocaleController.php:395
msgid "File: %f, size: %s, max file size: %m"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/controllers/LocaleController.php:396
msgid "Upload URL might be wrong or doesn't exist"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:394
+#: airtime_mvc/application/controllers/LocaleController.php:397
msgid "Error: File too large: "
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:395
+#: airtime_mvc/application/controllers/LocaleController.php:398
msgid "Error: Invalid file extension: "
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:398
+#: airtime_mvc/application/controllers/LocaleController.php:400
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
+msgid "Set Default"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:401
msgid "Create Entry"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:399
+#: airtime_mvc/application/controllers/LocaleController.php:402
msgid "Edit History Record"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:402
+#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
+#: airtime_mvc/application/forms/EditHistoryItem.php:57
+msgid "No Show"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:405
#, php-format
msgid "Copied %s row%s to the clipboard"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/controllers/LocaleController.php:406
#, php-format
msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/controllers/LocaleController.php:407
msgid "New Show"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:405
+#: airtime_mvc/application/controllers/LocaleController.php:408
msgid "New Log Entry"
msgstr ""
-#: airtime_mvc/application/controllers/ScheduleController.php:389
-#, php-format
-msgid "Rebroadcast of show %s from %s at %s"
-msgstr ""
-
-#: airtime_mvc/application/controllers/ScheduleController.php:712
-#: airtime_mvc/application/controllers/LibraryController.php:131
-msgid "Download"
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:78
-msgid "Page not found."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:87
-msgid "The requested action is not supported."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:98
-msgid "You do not have permission to access this resource."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:109
-msgid "An internal application error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ListenerstatController.php:51
-msgid "Please make sure admin user/password is correct on System->Streams page."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:53
-#, php-format
-msgid "You are viewing an older version of %s"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:140
-msgid "You cannot add tracks to dynamic blocks."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:147
-#: airtime_mvc/application/controllers/LibraryController.php:31
-#, php-format
-msgid "%s not found"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:161
-#, php-format
-msgid "You don't have permission to delete selected %s(s)."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:168
-#: airtime_mvc/application/controllers/LibraryController.php:40
-msgid "Something went wrong."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:174
-msgid "You can only add tracks to smart block."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:192
-msgid "Untitled Playlist"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:194
-msgid "Untitled Smart Block"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:522
-msgid "Unknown Playlist"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:43
-msgid "Please enter your username and password."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:93
-msgid "Wrong username or password provided. Please try again."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:167
-msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:173
-msgid "There was a problem with the username or email address you entered."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:35
-#: airtime_mvc/application/controllers/DashboardController.php:84
-msgid "You don't have permission to disconnect source."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:37
-#: airtime_mvc/application/controllers/DashboardController.php:86
-msgid "There is no source connected to this input."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:81
-msgid "You don't have permission to switch source."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:72
-msgid "Preferences updated."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:115
-msgid "Support setting updated."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:123
-msgid "Support Feedback"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:251
-msgid "Stream Setting Updated."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:342
-msgid "path should be specified"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:437
-msgid "Problem with Liquidsoap..."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:493
-msgid "Request method not accepted"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:86
-msgid "User added successfully!"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:88
-msgid "User updated successfully!"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:187
-msgid "Settings updated successfully!"
-msgstr ""
-
-#: airtime_mvc/application/controllers/WebstreamController.php:28
-#: airtime_mvc/application/controllers/WebstreamController.php:32
-msgid "Untitled Webstream"
-msgstr ""
-
-#: airtime_mvc/application/controllers/WebstreamController.php:150
-msgid "Webstream saved."
-msgstr ""
-
-#: airtime_mvc/application/controllers/WebstreamController.php:158
-msgid "Invalid form values."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:95
-#: airtime_mvc/application/controllers/ShowbuilderController.php:136
-msgid "Preview"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:115
-#: airtime_mvc/application/controllers/LibraryController.php:177
-#: airtime_mvc/application/controllers/LibraryController.php:200
-msgid "Add to Playlist"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:117
-msgid "Add to Smart Block"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:147
-msgid "View track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:148
-msgid "Remove track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:154
-#: airtime_mvc/application/controllers/LibraryController.php:159
-msgid "Upload track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:169
-msgid "Duplicate Playlist"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:213
-msgid "No action available"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:233
-msgid "You don't have permission to delete selected items."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:279
-msgid "Could not delete file because it is scheduled in the future."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:282
-msgid "Could not delete file(s)."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:322
-#, php-format
-msgid "Copy of %s"
-msgstr ""
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
-msgid ""
-"To configure and use the embeddable player you must:
\n"
-" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
-" 2. Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
-msgid ""
-"To use the embeddable weekly schedule widget you must:
\n"
-" Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
#: airtime_mvc/application/controllers/ShowbuilderController.php:138
msgid "Select cursor"
msgstr ""
@@ -4033,37 +1800,76 @@ msgstr ""
msgid "show does not exist"
msgstr ""
-#: airtime_mvc/application/controllers/ApiController.php:79
-msgid "You are not allowed to access this resource."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ApiController.php:244
-#: airtime_mvc/application/controllers/ApiController.php:317
-#: airtime_mvc/application/controllers/ApiController.php:392
-#: airtime_mvc/application/controllers/ApiController.php:435
-#: airtime_mvc/application/controllers/ApiController.php:474
-#: airtime_mvc/application/controllers/ApiController.php:507
-msgid "You are not allowed to access this resource. "
-msgstr ""
-
-#: airtime_mvc/application/controllers/ApiController.php:698
-#: airtime_mvc/application/controllers/ApiController.php:718
-#: airtime_mvc/application/controllers/ApiController.php:730
+#: airtime_mvc/application/controllers/ScheduleController.php:389
#, php-format
-msgid "File does not exist in %s"
+msgid "Rebroadcast of show %s from %s at %s"
msgstr ""
-#: airtime_mvc/application/controllers/ApiController.php:781
-msgid "Bad request. no 'mode' parameter passed."
+#: airtime_mvc/application/common/UsabilityHints.php:55
+msgid "Upload some tracks below to add them to your library!"
msgstr ""
-#: airtime_mvc/application/controllers/ApiController.php:791
-msgid "Bad request. 'mode' parameter is invalid"
-msgstr ""
-
-#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#: airtime_mvc/application/common/UsabilityHints.php:57
#, php-format
-msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:63
+msgid "Click the 'New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:65
+#, php-format
+msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:73
+msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:75
+#, php-format
+msgid ""
+"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
+" %sCreate an unlinked show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:80
+msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:82
+#, php-format
+msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:89
+msgid "Click on the show starting next and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:91
+#, php-format
+msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/DateHelper.php:213
+#, php-format
+msgid "The year %s must be within the range of 1753 - 9999"
+msgstr ""
+
+#: airtime_mvc/application/common/DateHelper.php:216
+#, php-format
+msgid "%s-%s-%s is not a valid date"
+msgstr ""
+
+#: airtime_mvc/application/common/DateHelper.php:240
+#, php-format
+msgid "%s:%s:%s is not a valid time"
+msgstr ""
+
+#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
+msgid "Live stream"
msgstr ""
#: airtime_mvc/application/layouts/scripts/layout.phtml:63
@@ -4078,6 +1884,17 @@ msgstr ""
msgid "Upload"
msgstr ""
+#: airtime_mvc/application/layouts/scripts/layout.phtml:76
+#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
+msgid "Dashboard"
+msgstr ""
+
+#: airtime_mvc/application/layouts/scripts/layout.phtml:84
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
+msgid "Webstreams"
+msgstr ""
+
#: airtime_mvc/application/layouts/scripts/layout.phtml:135
#: airtime_mvc/application/layouts/scripts/layout.phtml:161
msgid "Play"
@@ -4099,3 +1916,2124 @@ msgstr ""
#: airtime_mvc/application/layouts/scripts/layout.phtml:166
msgid "Cursor"
msgstr ""
+
+#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#, php-format
+msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
+msgid "Drop files here or click to browse your computer."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
+msgid "Failed"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
+msgid "Pending"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
+msgid "Recent Uploads"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
+msgid "Share"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
+msgid "Select stream:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
+msgid "mute"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
+msgid "unmute"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
+msgid "About"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
+#, php-format
+msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
+#, php-format
+msgid "%1$s %2$s is distributed under the %3$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
+#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
+#, php-format
+msgid "Welcome to %s!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
+#, php-format
+msgid "Here's how you can get started using %s to automate your broadcasts: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
+msgid "Upload audio tracks"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
+msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
+msgid "Schedule a show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
+msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
+msgid "Add tracks to your show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
+msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
+msgid "Now you're good to go!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
+#, php-format
+msgid "For more detailed help, read the %suser manual%s."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
+#: airtime_mvc/application/configs/navigation.php:40
+msgid "Weekly Schedule"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
+#: airtime_mvc/application/forms/Player.php:77
+msgid "Preview:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
+#: airtime_mvc/application/configs/navigation.php:34
+msgid "Player"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:97
+msgid "Playout History"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
+msgid "Log Sheet"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
+msgid "File Summary"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
+msgid "Show Summary"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
+msgid "Expand Static Block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
+msgid "Expand Dynamic Block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
+msgid "Choose some search criteria above and click Generate to create this playlist."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
+msgid "A track list will be generated when you schedule this smart block into a show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
+msgid "Drag tracks here from your library to add them to the playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
+msgid "Editing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:26
+msgid "Name:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
+#: airtime_mvc/application/forms/AddShowWhat.php:54
+msgid "Description:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
+#: airtime_mvc/application/forms/AddShowWhen.php:89
+msgid "Duration:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
+msgid "Toggle Details"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+msgid "Shuffle playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
+msgid "Shuffle"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
+msgid "Playlist crossfade"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+msgid "Empty playlist content"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Clear"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+msgid "Fade in: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "Fade out: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+msgid "Save playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
+msgid "No open playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
+msgid "Show Waveform"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "(ss.t)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Remove all content from this smart block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
+msgid "No smart block currently open"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+msgid "Cue In: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "(hh:mm:ss.t)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "Cue Out: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
+msgid "Original Length:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:56
+msgid "General"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
+msgid "Stream Settings"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
+msgid "Global"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
+msgid "dB"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
+msgid "Output Streams"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:3
+#: airtime_mvc/application/forms/Login.php:83
+msgid "Login"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:7
+#, php-format
+msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
+msgid "Email Sent!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
+msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
+msgid "Back"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
+msgid "Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
+msgid "New password"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
+msgid "Please enter and confirm your new password in the fields below."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
+msgid "Manage Users"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
+msgid "New User"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
+msgid "id"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
+#: airtime_mvc/application/forms/PasswordRestore.php:25
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
+msgid "Username"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
+msgid "First Name"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
+msgid "Last Name"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
+msgid "User Type"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
+#, php-format
+msgid "Super Admin details can be changed in your Billing Settings."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
+msgid "Find Shows"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
+msgid "Choose Show Instance"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
+msgid "Find"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
+#: airtime_mvc/application/configs/navigation.php:61
+msgid "My Profile"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
+#, php-format
+msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
+msgid "Repeat Days:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
+#: airtime_mvc/application/forms/GeneralPreferences.php:53
+#: airtime_mvc/application/forms/AddShowStyle.php:64
+msgid "Remove"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
+msgid "Add"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
+msgid "Show Source"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
+msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
+msgid "Register Airtime"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
+#, php-format
+msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
+#, php-format
+msgid "Click the box below to promote your station on %s."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
+msgid "(Required)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
+msgid "(for verification purposes only, will not be published)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
+#: airtime_mvc/application/forms/GeneralPreferences.php:43
+msgid "Note: Anything larger than 600x600 will be resized."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
+msgid "Show me what I am sending "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
+msgid "Terms and Conditions"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
+msgid "Choose Days:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
+msgid "Search Criteria:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
+msgid "New Criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
+msgid "or"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
+msgid "and"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
+msgid "New Modifier"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
+msgid " to "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
+msgid "files meet the criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
+msgid "file meets the criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
+msgid "Filter History"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/login.phtml:41
+msgid "Forgot your password?"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
+msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
+msgid "Stream "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
+msgid "Additional Options"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
+msgid "The following info will be displayed to listeners in their media player:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
+msgid "(Your radio station website)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
+msgid "Stream URL: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
+msgid "Choose folder"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
+msgid "Set"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
+msgid "Current Import Folder:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
+#, php-format
+msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
+msgid "Remove watched directory"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
+msgid "You are not watching any media folders."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
+msgid "Live Broadcasting"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
+msgid "Master Source"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
+msgid "Use these settings in your broadcasting software to stream live at any time."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
+msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
+msgid "TuneIn Settings"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
+msgid "SoundCloud Settings"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
+msgid "Dangerous Options"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Add this show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Update show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
+msgid "What"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
+msgid "When"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
+msgid "Live Stream Input"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
+msgid "Who"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
+msgid "Style"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
+msgid "Disk Space"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:3
+msgid "File import in progress..."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:10
+#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
+msgid "Advanced Search Options"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
+#: airtime_mvc/application/forms/EditAudioMD.php:24
+#: airtime_mvc/application/forms/Player.php:15
+msgid "Title:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
+#: airtime_mvc/application/forms/EditAudioMD.php:34
+msgid "Creator:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
+#: airtime_mvc/application/forms/EditAudioMD.php:44
+msgid "Album:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
+msgid "Track:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
+msgid "Length:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
+msgid "Sample Rate:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
+msgid "Bit Rate:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
+#: airtime_mvc/application/forms/EditAudioMD.php:115
+msgid "Mood:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:45
+#: airtime_mvc/application/forms/EditAudioMD.php:62
+msgid "Genre:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
+#: airtime_mvc/application/forms/EditAudioMD.php:72
+msgid "Year:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
+#: airtime_mvc/application/forms/EditAudioMD.php:85
+msgid "Label:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
+#: airtime_mvc/application/forms/EditAudioMD.php:125
+msgid "BPM:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
+#: airtime_mvc/application/forms/EditAudioMD.php:95
+msgid "Composer:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
+#: airtime_mvc/application/forms/EditAudioMD.php:105
+msgid "Conductor:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
+#: airtime_mvc/application/forms/EditAudioMD.php:135
+msgid "Copyright:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
+msgid "Isrc Number:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
+#: airtime_mvc/application/forms/EditAudioMD.php:155
+msgid "Website:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
+#: airtime_mvc/application/forms/EditAudioMD.php:165
+#: airtime_mvc/application/forms/EditUser.php:119
+#: airtime_mvc/application/forms/Login.php:68
+msgid "Language:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
+msgid "File Path:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
+msgid "Web Stream"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
+msgid "Dynamic Smart Block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
+msgid "Static Smart Block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
+msgid "Audio Track"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
+msgid "Playlist Contents: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
+msgid "Static Smart Block Contents: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
+msgid "Dynamic Smart Block Criteria: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
+msgid "Limit to "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
+#: airtime_mvc/application/forms/AddShowWhat.php:36
+msgid "URL:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
+msgid "Viewing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
+msgid "Listeners"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
+msgid "Stream Data Collection Status"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
+msgid "Your trial expires in"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
+msgid "days"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
+msgid "Previous:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
+msgid "Next:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
+msgid "Source Streams"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
+msgid "ON AIR"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
+msgid "Listen"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
+msgid "Logout"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
+msgid "Playout History Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
+msgid "Log Sheet Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
+msgid "New Log Sheet Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
+msgid "No Log Sheet Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
+msgid "File Summary Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
+msgid "New File Summary Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
+msgid "No File Summary Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
+msgid "Creating File Summary Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
+msgid "Creating Log Sheet Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
+msgid "Name"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
+msgid "Add more elements"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
+msgid "Add New Field"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
+msgid "Set Default Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
+msgid "Description"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
+msgid "Stream URL:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
+msgid "Default Length:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
+msgid "No webstream"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
+#: airtime_mvc/application/views/scripts/error/error.phtml:6
+msgid "An error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
+msgid "Access Denied!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
+msgid "You do not have permission to access this page!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
+#: airtime_mvc/application/views/scripts/error/error.phtml:14
+#: airtime_mvc/application/configs/navigation.php:143
+msgid "Help"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
+msgid "Oops!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
+msgid "Something went wrong!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
+msgid "Bad Request!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
+msgid "The requested action is not supported!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
+msgid "Page not found!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
+msgid "We couldn't find the page you were looking for."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error.phtml:12
+msgid "Looks like the page you were looking for doesn't exist!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
+msgid "previous"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
+msgid "play"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
+msgid "pause"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
+msgid "next"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
+msgid "stop"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
+msgid "max volume"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
+msgid "Update Required"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
+#, php-format
+msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
+msgid "Plan type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
+msgid "Billing cycle:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
+msgid "Payment method:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
+msgid "PayPal"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
+msgid "Credit Card via 2Checkout"
+msgstr ""
+
+#: airtime_mvc/application/forms/DateRange.php:16
+#: airtime_mvc/application/forms/ShowBuilder.php:18
+msgid "Date Start:"
+msgstr ""
+
+#: airtime_mvc/application/forms/DateRange.php:35
+#: airtime_mvc/application/forms/DateRange.php:63
+#: airtime_mvc/application/forms/ShowBuilder.php:37
+#: airtime_mvc/application/forms/ShowBuilder.php:65
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
+msgid "Invalid character entered"
+msgstr ""
+
+#: airtime_mvc/application/forms/DateRange.php:44
+#: airtime_mvc/application/forms/ShowBuilder.php:46
+#: airtime_mvc/application/forms/AddShowRepeats.php:56
+msgid "Date End:"
+msgstr ""
+
+#: airtime_mvc/application/forms/ShowBuilder.php:72
+#: airtime_mvc/application/forms/ShowBuilder.php:88
+msgid "Filter by Show"
+msgstr ""
+
+#: airtime_mvc/application/forms/ShowBuilder.php:80
+msgid "All My Shows:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWho.php:10
+msgid "Search Users:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWho.php:24
+msgid "DJs:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:30
+#: airtime_mvc/application/forms/GeneralPreferences.php:25
+#: airtime_mvc/application/forms/SupportSettings.php:18
+msgid "Station Name"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:39
+#: airtime_mvc/application/forms/SupportSettings.php:31
+msgid "Phone:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:51
+#: airtime_mvc/application/forms/AddUser.php:67
+#: airtime_mvc/application/forms/EditUser.php:83
+#: airtime_mvc/application/forms/SupportSettings.php:43
+msgid "Email:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:62
+#: airtime_mvc/application/forms/SupportSettings.php:54
+msgid "Station Web Site:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:73
+#: airtime_mvc/application/forms/SupportSettings.php:65
+msgid "Country:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:84
+#: airtime_mvc/application/forms/SupportSettings.php:76
+msgid "City:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:96
+#: airtime_mvc/application/forms/SupportSettings.php:88
+msgid "Station Description:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:106
+#: airtime_mvc/application/forms/GeneralPreferences.php:42
+msgid "Station Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:126
+#: airtime_mvc/application/forms/SupportSettings.php:108
+#, php-format
+msgid "Promote my station on %s"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:151
+#: airtime_mvc/application/forms/SupportSettings.php:120
+#, php-format
+msgid "By checking this box, I agree to %s's %sprivacy policy%s."
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:169
+#: airtime_mvc/application/forms/SupportSettings.php:143
+msgid "You have to agree to privacy policy."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRR.php:10
+msgid "Record from Line In?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRR.php:16
+msgid "Rebroadcast?"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
+#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
+msgid "Value is required and can't be empty"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
+msgid "'%value%' is no valid email address in the basic format local-part@hostname"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
+msgid "'%value%' does not fit the date format '%format%'"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
+msgid "'%value%' is less than %min% characters long"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
+msgid "'%value%' is more than %max% characters long"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
+msgid "'%value%' is not between '%min%' and '%max%', inclusively"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
+msgid "Passwords do not match"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
+msgid "Day must be specified"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
+msgid "Time must be specified"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
+msgid "Must wait at least 1 hour to rebroadcast"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordRestore.php:14
+msgid "Email"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordRestore.php:36
+msgid "Reset password"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhat.php:30
+msgid "Untitled Show"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhat.php:69
+msgid "Instance Description:"
+msgstr ""
+
+#: airtime_mvc/application/forms/DangerousPreferences.php:12
+msgid "Delete All Tracks in Library"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditAudioMD.php:145
+msgid "ISRC Number:"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditAudioMD.php:176
+msgid "OK"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:33
+msgid "Station Description"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:62
+msgid "Default Crossfade Duration (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:68
+#: airtime_mvc/application/forms/GeneralPreferences.php:82
+#: airtime_mvc/application/forms/GeneralPreferences.php:96
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
+msgid "Please enter a time in seconds (eg. 0.5)"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:76
+msgid "Default Fade In (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:90
+msgid "Default Fade Out (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:102
+msgid "Public Airtime API"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:103
+msgid "Required for embeddable schedule widget."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:105
+msgid "Disabled"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:106
+msgid "Enabled"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:109
+msgid ""
+"Enabling this feature will allow Airtime to provide schedule data\n"
+" to external widgets that can be embedded in your website."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:120
+msgid "Default Language"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:127
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
+msgid "Station Timezone"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:134
+msgid "Week Starts On"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:150
+msgid "Display login button on your Radio Page?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:29
+#: airtime_mvc/application/forms/EditUser.php:37
+#: airtime_mvc/application/forms/Login.php:41
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
+msgid "Username:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:38
+#: airtime_mvc/application/forms/EditUser.php:48
+#: airtime_mvc/application/forms/Login.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
+msgid "Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:46
+#: airtime_mvc/application/forms/EditUser.php:57
+msgid "Verify Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:55
+#: airtime_mvc/application/forms/EditUser.php:67
+msgid "Firstname:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:61
+#: airtime_mvc/application/forms/EditUser.php:75
+msgid "Lastname:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:76
+#: airtime_mvc/application/forms/EditUser.php:94
+msgid "Mobile Phone:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:82
+#: airtime_mvc/application/forms/EditUser.php:102
+msgid "Skype:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:88
+#: airtime_mvc/application/forms/EditUser.php:110
+msgid "Jabber:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:95
+msgid "User Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:120
+#: airtime_mvc/application/forms/EditUser.php:155
+msgid "Login name is not unique."
+msgstr ""
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
+msgid "Import Folder:"
+msgstr ""
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
+msgid "Watched Folders:"
+msgstr ""
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
+msgid "Not a valid Directory"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:126
+msgid "What is the name of your favorite childhood friend?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:127
+msgid "What school did you attend for sixth grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:128
+msgid "In what city did you meet your spouse/significant other?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:129
+msgid "What street did you live on in third grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:130
+msgid "What is the first name of the boy or girl that you first kissed?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:131
+msgid "In what city or town was your first job?"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
+msgid "Default License:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
+msgid "All rights are reserved"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
+msgid "The work is in the public domain"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
+msgid "Creative Commons Attribution"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
+msgid "Creative Commons Attribution Noncommercial"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
+msgid "Creative Commons Attribution No Derivative Works"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
+msgid "Creative Commons Attribution Share Alike"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
+msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
+msgid "Creative Commons Attribution Noncommercial Share Alike"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
+msgid "Default Sharing Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
+msgid "Public"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
+msgid "Private"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditUser.php:129
+msgid "Interface Timezone:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:14
+msgid "Now Playing"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:25
+msgid "Select Stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:28
+msgid "Auto detect the most appropriate stream to use."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:29
+msgid "Select a stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:41
+msgid " - Mobile friendly"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:45
+msgid " - The player does not support Opus streams."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:71
+msgid "Embeddable code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:72
+msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
+#: airtime_mvc/application/models/Block.php:1351
+msgid "Select criteria"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
+#: airtime_mvc/application/models/Block.php:1353
+msgid "Bit Rate (Kbps)"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
+#: airtime_mvc/application/models/Block.php:1374
+msgid "Sample Rate (kHz)"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
+msgid "hours"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
+msgid "minutes"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
+#: airtime_mvc/application/models/Block.php:333
+msgid "items"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
+msgid "Randomly"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
+msgid "Newest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
+msgid "Oldest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
+msgid "Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
+msgid "Static"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
+msgid "Dynamic"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
+msgid "Allow Repeated Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
+msgid "Sort Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
+msgid "Limit to:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
+msgid "Generate playlist content and save criteria"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
+msgid "Generate"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
+msgid "Shuffle playlist content"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
+msgid "Limit cannot be empty or smaller than 0"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
+msgid "Limit cannot be more than 24 hrs"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
+msgid "The value should be an integer"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
+msgid "500 is the max item limit value you can set"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
+msgid "You must select Criteria and Modifier"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
+msgid "'Length' should be in '00:00:00' format"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
+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:594
+msgid "The value has to be numeric"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
+msgid "The value should be less then 2147483648"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
+#, php-format
+msgid "The value should be less than %s characters"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
+msgid "Value cannot be empty"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:26
+msgid "Icecast Vorbis Metadata"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:36
+msgid "Stream Label:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:37
+msgid "Artist - Title"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:38
+msgid "Show - Artist - Title"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:39
+msgid "Station name - Show name"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:45
+msgid "Off Air Metadata"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:51
+msgid "Enable Replay Gain"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:57
+msgid "Replay Gain Modifier"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:65
+msgid "Streaming Server:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Airtime Pro Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Custom / 3rd Party Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordChange.php:17
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
+msgid "Password"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordChange.php:28
+msgid "Confirm new password"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordChange.php:36
+msgid "Password confirmation does not match your password."
+msgstr ""
+
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
+msgid "Station Language"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
+msgid "Enabled:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
+msgid "Mobile:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
+msgid "Stream Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
+msgid "Service Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
+msgid "Channels:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "1 - Mono"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "2 - Stereo"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
+msgid "Server"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
+msgid "Port"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
+msgid "Only numbers are allowed."
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
+msgid "URL"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
+msgid "Mount Point"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
+msgid "Admin User"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
+msgid "Admin Password"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
+msgid "Server cannot be empty."
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
+msgid "Port cannot be empty."
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
+msgid "Mount cannot be empty with Icecast server."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:16
+msgid "'%value%' does not fit the time format 'HH:mm'"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:22
+msgid "Start Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:37
+msgid "In the Future:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:64
+msgid "End Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:98
+msgid "Timezone:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:107
+msgid "Repeats?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:139
+msgid "Cannot create show in the past"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:147
+msgid "Cannot modify start date/time of the show that is already started"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:156
+#: airtime_mvc/application/models/Show.php:282
+msgid "End date/time cannot be in the past"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:164
+msgid "Cannot have duration < 0m"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:168
+msgid "Cannot have duration 00h 00m"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:175
+msgid "Cannot have duration greater than 24h"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:19
+msgid "Push metadata to your station on TuneIn?"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:24
+msgid "Station ID:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:30
+msgid "Partner Key:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:36
+msgid "Partner Id:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:77
+#: airtime_mvc/application/forms/TuneInPreferences.php:86
+msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:10
+#, php-format
+msgid "Use %s Authentication:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:16
+msgid "Use Custom Authentication:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:25
+msgid "Custom Username"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:37
+msgid "Custom Password"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:48
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
+msgid "Host:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
+msgid "Port:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:60
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
+msgid "Mount:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:77
+msgid "Username field cannot be empty."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:82
+msgid "Password field cannot be empty."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:12
+msgid "Background Colour:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:31
+msgid "Text Colour:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:49
+msgid "Current Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:72
+msgid "Show Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:87
+msgid "Logo Preview:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Login.php:102
+msgid "Type the characters you see in the picture below."
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
+msgid "Auto Switch Off:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
+msgid "Auto Switch On:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
+msgid "Switch Transition Fade (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:10
+msgid "Link:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:16
+msgid "Repeat Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:19
+msgid "weekly"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:20
+msgid "every 2 weeks"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:21
+msgid "every 3 weeks"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:22
+msgid "every 4 weeks"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:23
+msgid "monthly"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:32
+msgid "Select Days:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:47
+msgid "Repeat By:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the month"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the week"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:69
+msgid "No End?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:106
+msgid "End date must be after start date"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:113
+msgid "Please select a repeat day"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:12
+msgid "Radio Page"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:19
+msgid "Calendar"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:26
+msgid "Widgets"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:48
+msgid "Settings"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:67
+msgid "Users"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:74
+msgid "Streams"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:82
+msgid "Analytics"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:90
+msgid "Listener Stats"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:104
+msgid "History Templates"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:113
+msgid "Billing"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:120
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:127
+msgid "Account Details"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:134
+msgid "View Invoices"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:150
+msgid "Getting Started"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:157
+msgid "FAQ"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:162
+msgid "User Manual"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:167
+msgid "File a Support Ticket"
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:833
+#: airtime_mvc/application/models/Playlist.php:812
+msgid "Cue in and cue out are null."
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:868
+#: airtime_mvc/application/models/Block.php:924
+#: airtime_mvc/application/models/Playlist.php:851
+#: airtime_mvc/application/models/Playlist.php:895
+msgid "Can't set cue out to be greater than file length."
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:879
+#: airtime_mvc/application/models/Block.php:900
+#: airtime_mvc/application/models/Playlist.php:843
+#: airtime_mvc/application/models/Playlist.php:868
+msgid "Can't set cue in to be larger than cue out."
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:935
+#: airtime_mvc/application/models/Playlist.php:887
+msgid "Can't set cue out to be smaller than cue in."
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:1366
+msgid "Upload Time"
+msgstr ""
+
+#: airtime_mvc/application/models/ShowBuilder.php:212
+#, php-format
+msgid "Rebroadcast of %s from %s"
+msgstr ""
+
+#: airtime_mvc/application/models/Preference.php:460
+#, php-format
+msgid "Powered by %s"
+msgstr ""
+
+#: airtime_mvc/application/models/Preference.php:588
+msgid "Select Country"
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:160
+#, php-format
+msgid "%s is already watched."
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:164
+#, php-format
+msgid "%s contains nested watched directory: %s"
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:168
+#, php-format
+msgid "%s is nested within existing watched directory: %s"
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:189
+#: airtime_mvc/application/models/MusicDir.php:370
+#, php-format
+msgid "%s is not a valid directory."
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:232
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list"
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:388
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list."
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:431
+#, php-format
+msgid "%s doesn't exist in the watched list."
+msgstr ""
+
+#: airtime_mvc/application/models/Auth.php:33
+#, php-format
+msgid ""
+"Hi %s, \n"
+"\n"
+"Please click this link to reset your password: "
+msgstr ""
+
+#: airtime_mvc/application/models/Auth.php:38
+#, php-format
+msgid "%s Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/models/Show.php:184
+msgid "Shows can have a max length of 24 hours."
+msgstr ""
+
+#: airtime_mvc/application/models/Show.php:293
+msgid ""
+"Cannot schedule overlapping shows.\n"
+"Note: Resizing a repeating show affects all of its repeats."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:73
+msgid "Cannot move items out of linked shows"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:119
+msgid "The schedule you're viewing is out of date! (sched mismatch)"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:124
+msgid "The schedule you're viewing is out of date! (instance mismatch)"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:132
+#: airtime_mvc/application/models/Scheduler.php:458
+#: airtime_mvc/application/models/Scheduler.php:490
+msgid "The schedule you're viewing is out of date!"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:142
+#, php-format
+msgid "You are not allowed to schedule show %s."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:146
+msgid "You cannot add files to recording shows."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:152
+#, php-format
+msgid "The show %s is over and cannot be scheduled."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:159
+#, php-format
+msgid "The show %s has been previously updated!"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:178
+msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:195
+msgid "Cannot schedule a playlist that contains missing files."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:216
+#: airtime_mvc/application/models/Scheduler.php:305
+msgid "A selected File does not exist!"
+msgstr ""
+
+#: airtime_mvc/application/models/Schedule.php:206
+msgid "livestream"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:166
+msgid "Length needs to be greater than 0 minutes"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:171
+msgid "Length should be of form \"00h 00m\""
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:184
+msgid "URL should be of form \"http://domain\""
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:187
+msgid "URL should be 512 characters or less"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:193
+msgid "No MIME type found for webstream."
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:209
+msgid "Webstream name cannot be empty"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:278
+msgid "Could not parse XSPF playlist"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:298
+msgid "Could not parse PLS playlist"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:318
+msgid "Could not parse M3U playlist"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:332
+msgid "Invalid webstream - This appears to be a file download."
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:336
+#, php-format
+msgid "Unrecognized stream type: %s"
+msgstr ""
+
+#: airtime_mvc/public/setup/rabbitmq-setup.php:78
+msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
+msgstr ""
diff --git a/airtime_mvc/locale/si/LC_MESSAGES/pro.po b/airtime_mvc/locale/si/LC_MESSAGES/pro.po
index 866ee0acb..f59b52c3d 100644
--- a/airtime_mvc/locale/si/LC_MESSAGES/pro.po
+++ b/airtime_mvc/locale/si/LC_MESSAGES/pro.po
@@ -1,3 +1,139 @@
+#: airtime_mvc/application/controllers/LoginController.php:170
+#, php-format
+msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
+#, php-format
+msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
+#, php-format
+msgid "If you are the primary owner of this station, please reset your password here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
+msgid "Thank you!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
+msgid "Your station has been upgraded successfully."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
+msgid "Return to Airtime"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+#, php-format
+msgid "Purchase an %s plan!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+msgid "My Account"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
+msgid "Upgrade today to get more listeners and storage space!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
+msgid "View Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:257
+msgid "Your Current Plan:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:291
+msgid "Please enter your payment details:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
+msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
+msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:17
+msgid "First Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:26
+msgid "Last Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:35
+msgid "Company Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:44
+msgid "Email Address:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:54
+msgid "Address 1:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:63
+msgid "Address 2:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:70
+msgid "City:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:80
+msgid "State/Region:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:89
+msgid "Zip Code / Postal Code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:102
+msgid "Country:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:112
+msgid "Phone Number:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:121
+msgid "Please choose a security question:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:135
+msgid "Please enter an answer:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:152
+msgid "VAT/Tax ID (EU only)"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:162
+msgid "Subscribe to Sourcefabric newsletter"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:172
+msgid "Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:181
+msgid "Verify Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:193
+msgid "Save"
+msgstr ""
+
#: airtime_mvc/application/models/Auth.php:35
#, php-format
msgid ""
@@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
-msgid "Thank you!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
-msgid "Your station has been upgraded successfully."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
-msgid "Return to Airtime"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
-#, php-format
-msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
-msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
-msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
-#, php-format
-msgid "If you are the primary owner of this station, please reset your password here."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:170
-#, php-format
-msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
-msgstr ""
diff --git a/airtime_mvc/locale/sr_RS/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/sr_RS/LC_MESSAGES/airtime.mo
index 38d361d02..ce4be4b62 100644
Binary files a/airtime_mvc/locale/sr_RS/LC_MESSAGES/airtime.mo and b/airtime_mvc/locale/sr_RS/LC_MESSAGES/airtime.mo differ
diff --git a/airtime_mvc/locale/sr_RS/LC_MESSAGES/airtime.po b/airtime_mvc/locale/sr_RS/LC_MESSAGES/airtime.po
index 80b1197da..b3817e07d 100644
--- a/airtime_mvc/locale/sr_RS/LC_MESSAGES/airtime.po
+++ b/airtime_mvc/locale/sr_RS/LC_MESSAGES/airtime.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Airtime\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-09-03 10:24-0400\n"
-"PO-Revision-Date: 2014-11-14 09:58+0000\n"
+"POT-Creation-Date: 2015-09-04 11:17-0400\n"
+"PO-Revision-Date: 2015-09-04 08:15+0000\n"
"Last-Translator: Daniel James \n"
"Language-Team: Serbian (Serbia) (http://www.transifex.com/sourcefabric/airtime/language/sr_RS/)\n"
"Language: sr_RS\n"
@@ -18,132 +18,6 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-#: airtime_mvc/public/setup/rabbitmq-setup.php:78
-msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1117
-#: airtime_mvc/application/services/HistoryService.php:1157
-#: airtime_mvc/application/services/HistoryService.php:1174
-#: airtime_mvc/application/models/Block.php:1375
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
-#: airtime_mvc/application/controllers/LocaleController.php:76
-msgid "Title"
-msgstr "Назив"
-
-#: airtime_mvc/application/services/HistoryService.php:1118
-#: airtime_mvc/application/services/HistoryService.php:1158
-#: airtime_mvc/application/services/HistoryService.php:1175
-#: airtime_mvc/application/models/Block.php:1360
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
-#: airtime_mvc/application/controllers/LocaleController.php:77
-msgid "Creator"
-msgstr "Творац"
-
-#: airtime_mvc/application/services/HistoryService.php:1119
-#: airtime_mvc/application/models/Block.php:1352
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
-#: airtime_mvc/application/controllers/LocaleController.php:78
-msgid "Album"
-msgstr "Албум"
-
-#: airtime_mvc/application/services/HistoryService.php:1120
-#: airtime_mvc/application/services/HistoryService.php:1177
-#: airtime_mvc/application/models/Block.php:1369
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
-#: airtime_mvc/application/controllers/LocaleController.php:91
-msgid "Length"
-msgstr "Дужина"
-
-#: airtime_mvc/application/services/HistoryService.php:1121
-#: airtime_mvc/application/models/Block.php:1362
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
-#: airtime_mvc/application/controllers/LocaleController.php:85
-msgid "Genre"
-msgstr "Жанр"
-
-#: airtime_mvc/application/services/HistoryService.php:1122
-#: airtime_mvc/application/models/Block.php:1371
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
-#: airtime_mvc/application/controllers/LocaleController.php:93
-msgid "Mood"
-msgstr "Расположење"
-
-#: airtime_mvc/application/services/HistoryService.php:1123
-#: airtime_mvc/application/models/Block.php:1364
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
-#: airtime_mvc/application/controllers/LocaleController.php:87
-msgid "Label"
-msgstr "Налепница"
-
-#: airtime_mvc/application/services/HistoryService.php:1124
-#: airtime_mvc/application/services/HistoryService.php:1178
-#: airtime_mvc/application/models/Block.php:1355
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
-#: airtime_mvc/application/controllers/LocaleController.php:81
-msgid "Composer"
-msgstr "Композитор"
-
-#: airtime_mvc/application/services/HistoryService.php:1125
-#: airtime_mvc/application/models/Block.php:1363
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
-#: airtime_mvc/application/controllers/LocaleController.php:86
-msgid "ISRC"
-msgstr "ISRC"
-
-#: airtime_mvc/application/services/HistoryService.php:1126
-#: airtime_mvc/application/services/HistoryService.php:1179
-#: airtime_mvc/application/models/Block.php:1357
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
-#: airtime_mvc/application/controllers/LocaleController.php:83
-msgid "Copyright"
-msgstr "Ауторско право"
-
-#: airtime_mvc/application/services/HistoryService.php:1127
-#: airtime_mvc/application/models/Block.php:1379
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
-#: airtime_mvc/application/controllers/LocaleController.php:100
-msgid "Year"
-msgstr "Година"
-
-#: airtime_mvc/application/services/HistoryService.php:1128
-msgid "Track"
-msgstr "Песма"
-
-#: airtime_mvc/application/services/HistoryService.php:1129
-#: airtime_mvc/application/models/Block.php:1356
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
-#: airtime_mvc/application/controllers/LocaleController.php:82
-msgid "Conductor"
-msgstr "Диригент"
-
-#: airtime_mvc/application/services/HistoryService.php:1130
-#: airtime_mvc/application/models/Block.php:1365
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
-#: airtime_mvc/application/controllers/LocaleController.php:88
-msgid "Language"
-msgstr "Језик"
-
-#: airtime_mvc/application/services/HistoryService.php:1155
-#: airtime_mvc/application/forms/EditHistoryItem.php:32
-msgid "Start Time"
-msgstr "Време Почетка"
-
-#: airtime_mvc/application/services/HistoryService.php:1156
-#: airtime_mvc/application/forms/EditHistoryItem.php:44
-msgid "End Time"
-msgstr "Време Завршетка"
-
-#: airtime_mvc/application/services/HistoryService.php:1176
-msgid "Played"
-msgstr "Пуштена"
-
#: airtime_mvc/application/services/CalendarService.php:50
msgid "Record file doesn't exist"
msgstr "Снимљена датотека не постоји"
@@ -239,2605 +113,382 @@ msgstr "Емисија је избрисана јер је снимљена ем
msgid "Must wait 1 hour to rebroadcast."
msgstr "Мораш причекати 1 сат за ре-емитовање."
-#: airtime_mvc/application/models/Schedule.php:206
-msgid "livestream"
-msgstr ""
-
-#: airtime_mvc/application/models/ShowBuilder.php:212
-#, php-format
-msgid "Rebroadcast of %s from %s"
-msgstr "Реемитовање од %s од %s"
-
-#: airtime_mvc/application/models/Webstream.php:166
-msgid "Length needs to be greater than 0 minutes"
-msgstr "Дужина мора да буде већа од 0 минута"
-
-#: airtime_mvc/application/models/Webstream.php:171
-msgid "Length should be of form \"00h 00m\""
-msgstr "Дужина мора да буде у облику \"00h 00m\""
-
-#: airtime_mvc/application/models/Webstream.php:184
-msgid "URL should be of form \"http://domain\""
-msgstr "URL мора да буде у облику \"http://domain\""
-
-#: airtime_mvc/application/models/Webstream.php:187
-msgid "URL should be 512 characters or less"
-msgstr "URL мора да буде 512 знакова или мање"
-
-#: airtime_mvc/application/models/Webstream.php:193
-msgid "No MIME type found for webstream."
-msgstr "Не постоји MIME тип за пренос."
-
-#: airtime_mvc/application/models/Webstream.php:209
-msgid "Webstream name cannot be empty"
-msgstr "Име преноса не може да да буде празно"
-
-#: airtime_mvc/application/models/Webstream.php:278
-msgid "Could not parse XSPF playlist"
-msgstr "Нисмо могли анализирати XSPF списак песама"
-
-#: airtime_mvc/application/models/Webstream.php:298
-msgid "Could not parse PLS playlist"
-msgstr "Нисмо могли анализирати PLS списак песама"
-
-#: airtime_mvc/application/models/Webstream.php:318
-msgid "Could not parse M3U playlist"
-msgstr "Нисмо могли анализирати M3U списак песама"
-
-#: airtime_mvc/application/models/Webstream.php:332
-msgid "Invalid webstream - This appears to be a file download."
-msgstr "Неважећи пренос - Чини се да је ово преузимање."
-
-#: airtime_mvc/application/models/Webstream.php:336
-#, php-format
-msgid "Unrecognized stream type: %s"
-msgstr "Непознати преносни тип: %s"
-
-#: airtime_mvc/application/models/Preference.php:460
-#, php-format
-msgid "Powered by %s"
-msgstr ""
-
-#: airtime_mvc/application/models/Preference.php:588
-msgid "Select Country"
-msgstr "Одабери Државу"
-
-#: airtime_mvc/application/models/MusicDir.php:160
-#, php-format
-msgid "%s is already watched."
-msgstr "%s је већ надзиран."
-
-#: airtime_mvc/application/models/MusicDir.php:164
-#, php-format
-msgid "%s contains nested watched directory: %s"
-msgstr "%s садржава угнежђене надзиране директоријуме: %s"
-
-#: airtime_mvc/application/models/MusicDir.php:168
-#, php-format
-msgid "%s is nested within existing watched directory: %s"
-msgstr "%s се налази унутар у постојећи надзирани директоријуми: %s"
-
-#: airtime_mvc/application/models/MusicDir.php:189
-#: airtime_mvc/application/models/MusicDir.php:370
-#, php-format
-msgid "%s is not a valid directory."
-msgstr "%s није ваљан директоријум."
-
-#: airtime_mvc/application/models/MusicDir.php:232
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list"
-msgstr "%s је већ постављена као мапа за складиштење или је између пописа праћених фолдера"
-
-#: airtime_mvc/application/models/MusicDir.php:388
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list."
-msgstr "%s је већ постављена као мапа за складиштење или је између пописа праћених фолдера."
-
-#: airtime_mvc/application/models/MusicDir.php:431
-#, php-format
-msgid "%s doesn't exist in the watched list."
-msgstr "%s не постоји у листи надзираних локације."
-
-#: airtime_mvc/application/models/Show.php:184
-msgid "Shows can have a max length of 24 hours."
-msgstr "Емисије могу да имају највећу дужину 24 сата."
-
-#: airtime_mvc/application/models/Show.php:282
-#: airtime_mvc/application/forms/AddShowWhen.php:156
-msgid "End date/time cannot be in the past"
-msgstr "Датум завршетка и време не може да буде у прошлости"
-
-#: airtime_mvc/application/models/Show.php:293
-msgid ""
-"Cannot schedule overlapping shows.\n"
-"Note: Resizing a repeating show affects all of its repeats."
-msgstr ""
-"Не може да се закаже преклапајуће емисије.\n"
-"Напомена: Промена величине понављане емисије утиче на све њене понављање."
-
-#: airtime_mvc/application/models/Auth.php:33
-#, php-format
-msgid ""
-"Hi %s, \n"
-"\n"
-"Please click this link to reset your password: "
-msgstr ""
-
-#: airtime_mvc/application/models/Auth.php:38
-#, php-format
-msgid "%s Password Reset"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:333
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
-msgid "items"
-msgstr "елементи"
-
-#: airtime_mvc/application/models/Block.php:833
-#: airtime_mvc/application/models/Playlist.php:812
-msgid "Cue in and cue out are null."
-msgstr "'Cue in' и 'cue out' су нуле."
-
-#: airtime_mvc/application/models/Block.php:868
-#: airtime_mvc/application/models/Block.php:924
-#: airtime_mvc/application/models/Playlist.php:851
-#: airtime_mvc/application/models/Playlist.php:895
-msgid "Can't set cue out to be greater than file length."
-msgstr "Не можеш да подесиш да 'cue out' буде веће од дужине фајла."
-
-#: airtime_mvc/application/models/Block.php:879
-#: airtime_mvc/application/models/Block.php:900
-#: airtime_mvc/application/models/Playlist.php:843
-#: airtime_mvc/application/models/Playlist.php:868
-msgid "Can't set cue in to be larger than cue out."
-msgstr "Не можеш да подесиш да 'cue in' буде веће него 'cue out'."
-
-#: airtime_mvc/application/models/Block.php:935
-#: airtime_mvc/application/models/Playlist.php:887
-msgid "Can't set cue out to be smaller than cue in."
-msgstr "Не можеш да подесиш да 'cue out' буде мање него 'cue in'."
-
-#: airtime_mvc/application/models/Block.php:1351
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
-msgid "Select criteria"
-msgstr "Одабери критеријуме"
-
-#: airtime_mvc/application/models/Block.php:1353
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
-msgid "Bit Rate (Kbps)"
-msgstr "Брзина у Битовима (Kbps)"
-
-#: airtime_mvc/application/models/Block.php:1354
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
-#: airtime_mvc/application/controllers/LocaleController.php:80
-msgid "BPM"
-msgstr "BPM"
-
-#: airtime_mvc/application/models/Block.php:1358
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
-#: airtime_mvc/application/controllers/LocaleController.php:281
-#: airtime_mvc/application/layouts/scripts/layout.phtml:140
-msgid "Cue In"
-msgstr "Cue In"
-
-#: airtime_mvc/application/models/Block.php:1359
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:282
-#: airtime_mvc/application/layouts/scripts/layout.phtml:147
-msgid "Cue Out"
-msgstr "Cue Out"
-
-#: airtime_mvc/application/models/Block.php:1361
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
-#: airtime_mvc/application/controllers/LocaleController.php:84
-msgid "Encoded By"
-msgstr "Кодирано је по"
-
-#: airtime_mvc/application/models/Block.php:1366
-msgid "Upload Time"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1367
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
-#: airtime_mvc/application/controllers/LocaleController.php:89
-msgid "Last Modified"
-msgstr "Последња Измена"
-
-#: airtime_mvc/application/models/Block.php:1368
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
-#: airtime_mvc/application/controllers/LocaleController.php:90
-msgid "Last Played"
-msgstr "Задњи Пут Одиграна"
-
-#: airtime_mvc/application/models/Block.php:1370
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
-#: airtime_mvc/application/controllers/LocaleController.php:92
-msgid "Mime"
-msgstr "Mime"
-
-#: airtime_mvc/application/models/Block.php:1372
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
-#: airtime_mvc/application/controllers/LocaleController.php:94
-msgid "Owner"
-msgstr "Власник"
-
-#: airtime_mvc/application/models/Block.php:1373
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
-#: airtime_mvc/application/controllers/LocaleController.php:95
-msgid "Replay Gain"
-msgstr "Replay Gain"
-
-#: airtime_mvc/application/models/Block.php:1374
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
-msgid "Sample Rate (kHz)"
-msgstr "Узорак Стопа (kHz)"
-
-#: airtime_mvc/application/models/Block.php:1376
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
-#: airtime_mvc/application/controllers/LocaleController.php:97
-msgid "Track Number"
-msgstr "Број Песма"
-
-#: airtime_mvc/application/models/Block.php:1377
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
-#: airtime_mvc/application/controllers/LocaleController.php:98
-msgid "Uploaded"
-msgstr "Додата"
-
-#: airtime_mvc/application/models/Block.php:1378
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
-#: airtime_mvc/application/controllers/LocaleController.php:99
-msgid "Website"
-msgstr "Веб страница"
-
-#: airtime_mvc/application/models/Block.php:1383
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
-#: airtime_mvc/application/controllers/LocaleController.php:151
-msgid "Select modifier"
-msgstr "Одабери модификатор"
-
-#: airtime_mvc/application/models/Block.php:1384
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
-#: airtime_mvc/application/controllers/LocaleController.php:152
-msgid "contains"
-msgstr "садржи"
-
-#: airtime_mvc/application/models/Block.php:1385
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
-#: airtime_mvc/application/controllers/LocaleController.php:153
-msgid "does not contain"
-msgstr "не садржи"
-
-#: airtime_mvc/application/models/Block.php:1386
-#: airtime_mvc/application/models/Block.php:1390
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
-#: airtime_mvc/application/controllers/LocaleController.php:154
-msgid "is"
-msgstr "је"
-
-#: airtime_mvc/application/models/Block.php:1387
-#: airtime_mvc/application/models/Block.php:1391
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
-#: airtime_mvc/application/controllers/LocaleController.php:155
-msgid "is not"
-msgstr "није"
-
-#: airtime_mvc/application/models/Block.php:1388
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
-#: airtime_mvc/application/controllers/LocaleController.php:156
-msgid "starts with"
-msgstr "почиње се са"
-
-#: airtime_mvc/application/models/Block.php:1389
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
-#: airtime_mvc/application/controllers/LocaleController.php:157
-msgid "ends with"
-msgstr "завршава се са"
-
-#: airtime_mvc/application/models/Block.php:1392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
-#: airtime_mvc/application/controllers/LocaleController.php:158
-msgid "is greater than"
-msgstr "је већи од"
-
-#: airtime_mvc/application/models/Block.php:1393
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
-#: airtime_mvc/application/controllers/LocaleController.php:159
-msgid "is less than"
-msgstr "је мањи од"
-
-#: airtime_mvc/application/models/Block.php:1394
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
-#: airtime_mvc/application/controllers/LocaleController.php:160
-msgid "is in the range"
-msgstr "је у опсегу"
-
-#: airtime_mvc/application/models/Scheduler.php:73
-msgid "Cannot move items out of linked shows"
-msgstr "Не можеш да преместиш ставке из повезаних емисија"
-
-#: airtime_mvc/application/models/Scheduler.php:119
-msgid "The schedule you're viewing is out of date! (sched mismatch)"
-msgstr "Застарео се прегледан распоред! (неважећи распоред)"
-
-#: airtime_mvc/application/models/Scheduler.php:124
-msgid "The schedule you're viewing is out of date! (instance mismatch)"
-msgstr "Застарео се прегледан распоред! (пример неусклађеност)"
-
-#: airtime_mvc/application/models/Scheduler.php:132
-#: airtime_mvc/application/models/Scheduler.php:458
-#: airtime_mvc/application/models/Scheduler.php:490
-msgid "The schedule you're viewing is out of date!"
-msgstr "Застарео се прегледан распоред!"
-
-#: airtime_mvc/application/models/Scheduler.php:142
-#, php-format
-msgid "You are not allowed to schedule show %s."
-msgstr "Не смеш да закажеш распоредну емисију %s."
-
-#: airtime_mvc/application/models/Scheduler.php:146
-msgid "You cannot add files to recording shows."
-msgstr "Не можеш да додаш датотеке за снимљене емисије."
-
-#: airtime_mvc/application/models/Scheduler.php:152
-#, php-format
-msgid "The show %s is over and cannot be scheduled."
-msgstr "Емисија %s је готова и не могу да буде заказана."
-
-#: airtime_mvc/application/models/Scheduler.php:159
-#, php-format
-msgid "The show %s has been previously updated!"
-msgstr "Раније је %s емисија већ била ажурирана!"
-
-#: airtime_mvc/application/models/Scheduler.php:178
-msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
-msgstr "Садржај у повезаним емисијама мора да буде заказан пре или после било које емисије"
-
-#: airtime_mvc/application/models/Scheduler.php:195
-msgid "Cannot schedule a playlist that contains missing files."
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:216
-#: airtime_mvc/application/models/Scheduler.php:305
-msgid "A selected File does not exist!"
-msgstr "Изабрани Фајл не постоји!"
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
-#: airtime_mvc/application/configs/navigation.php:40
-msgid "Weekly Schedule"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
-#: airtime_mvc/application/forms/Player.php:77
-msgid "Preview:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
-#: airtime_mvc/application/configs/navigation.php:34
-msgid "Player"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
-#: airtime_mvc/application/controllers/LocaleController.php:362
-#: airtime_mvc/application/controllers/LocaleController.php:390
-msgid "Close"
-msgstr "Затвори"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Add this show"
-msgstr "Додај ову емисију"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Update show"
-msgstr "Ажурирање емисије"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
-msgid "What"
-msgstr "Шта"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
-msgid "When"
-msgstr "Када"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
-msgid "Live Stream Input"
-msgstr "Улаз Уживног Преноса"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
-msgid "Who"
-msgstr "Ко"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
-msgid "Style"
-msgstr "Стил"
-
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
-#: airtime_mvc/application/controllers/LocaleController.php:273
-msgid "Start"
-msgstr "Почетак"
-
-#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
-msgid "Password Reset"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
-msgid "Email Sent!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
-msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
-msgid "Back"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
-msgid "New password"
-msgstr "Нова лозинка"
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
-msgid "Please enter and confirm your new password in the fields below."
-msgstr "Унеси и потврди своју нову лозинку у поља доле."
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:3
-#: airtime_mvc/application/forms/Login.php:83
-msgid "Login"
-msgstr "Пријава"
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:7
-#, php-format
-msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:97
-msgid "Playout History"
-msgstr "Историја Пуштених Песама"
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
-msgid "Log Sheet"
-msgstr "Списак Пријава"
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
-msgid "File Summary"
-msgstr "Датотечни Извештај"
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
-msgid "Show Summary"
-msgstr "Програмски Извештај"
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
-msgid "Your trial expires in"
-msgstr "Ваш налог истиче у"
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
-msgid "days"
-msgstr "дани"
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-#, php-format
-msgid "Purchase an %s Pro plan!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-msgid "My Account"
-msgstr "Мој Налог"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
-msgid "Previous:"
-msgstr "Претходна:"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
-msgid "Next:"
-msgstr "Следећа:"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
-msgid "Source Streams"
-msgstr "Преносни Извори"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
-msgid "Master Source"
-msgstr "Мајсторски Извор"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
-msgid "Show Source"
-msgstr "Emisijski Izvor"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
-msgid "ON AIR"
-msgstr "ПРЕНОС"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
-msgid "Listen"
-msgstr "Слушај"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
-msgid "Logout"
-msgstr "Одјава"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
-msgid "Drop files here or click to browse your computer."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
-#: airtime_mvc/application/controllers/LocaleController.php:314
-msgid "in use"
-msgstr "у употреби"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
-#: airtime_mvc/application/controllers/LocaleController.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:401
-msgid "All"
-msgstr "Све"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
-msgid "Failed"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
-msgid "Pending"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
-msgid "Recent Uploads"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
-#: airtime_mvc/application/configs/navigation.php:120
-msgid "Account Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
-msgid "Upgrade today to get more listeners and storage space!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
-msgid "View Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
-msgid "About"
-msgstr "О пројекту"
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
-#, php-format
-msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
-#, php-format
-msgid "%1$s %2$s is distributed under the %3$s"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
-#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
-msgid "Live stream"
-msgstr "Пренос уживо"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
-msgid "Share"
-msgstr "Подели"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
-msgid "Select stream:"
-msgstr "Преноси:"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
-msgid "mute"
-msgstr "mute"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
-msgid "unmute"
-msgstr "укључи"
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
-#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
-#, php-format
-msgid "Welcome to %s!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
-#, php-format
-msgid "Here's how you can get started using %s to automate your broadcasts: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
-msgid "Upload audio tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
-msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
-msgid "Schedule a show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
-msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
-msgid "Add tracks to your show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
-msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
-msgid "Now you're good to go!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
-#, php-format
-msgid "For more detailed help, read the %suser manual%s."
-msgstr "За детаљну помоћ, прочитај %sупутство за коришћење%s."
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
-msgid "Listeners"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
-msgid "Stream Data Collection Status"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
-#: airtime_mvc/application/views/scripts/error/error.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
-msgid "An error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
-msgid "Access Denied!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
-msgid "You do not have permission to access this page!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
-#: airtime_mvc/application/views/scripts/error/error.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
-#: airtime_mvc/application/configs/navigation.php:143
-msgid "Help"
-msgstr "Помоћ"
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
-msgid "Page not found!"
-msgstr "Страница није пронађена!"
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
-msgid "We couldn't find the page you were looking for."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error.phtml:12
-msgid "Looks like the page you were looking for doesn't exist!"
-msgstr "Изгледа страница коју си тражио не постоји!"
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
-msgid "Oops!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
-msgid "Something went wrong!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
-msgid "Bad Request!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
-msgid "The requested action is not supported!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
-msgid "Viewing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
-msgid "Editing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:3
-msgid "File import in progress..."
-msgstr "Увоз датотеке је у току..."
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:10
-#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
-msgid "Advanced Search Options"
-msgstr "Напредне Опције Претраживања"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
-#: airtime_mvc/application/forms/Player.php:15
-#: airtime_mvc/application/forms/EditAudioMD.php:24
-msgid "Title:"
-msgstr "Назив:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
-#: airtime_mvc/application/forms/EditAudioMD.php:34
-msgid "Creator:"
-msgstr "Творац:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
-#: airtime_mvc/application/forms/EditAudioMD.php:44
-msgid "Album:"
-msgstr "Aлбум:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
-msgid "Track:"
-msgstr "Песма:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
-msgid "Length:"
-msgstr "Дужина:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
-msgid "Sample Rate:"
-msgstr "Узорак Стопа:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
-msgid "Bit Rate:"
-msgstr "Брзина у Битовима:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
-#: airtime_mvc/application/forms/EditAudioMD.php:115
-msgid "Mood:"
-msgstr "Расположење:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
-#: airtime_mvc/application/forms/EditAudioMD.php:62
-#: airtime_mvc/application/forms/AddShowWhat.php:45
-msgid "Genre:"
-msgstr "Жанр:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
-#: airtime_mvc/application/forms/EditAudioMD.php:72
-msgid "Year:"
-msgstr "Година:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
-#: airtime_mvc/application/forms/EditAudioMD.php:85
-msgid "Label:"
-msgstr "Налепница:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
-#: airtime_mvc/application/forms/EditAudioMD.php:125
-msgid "BPM:"
-msgstr "BPM:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
-#: airtime_mvc/application/forms/EditAudioMD.php:95
-msgid "Composer:"
-msgstr "Композитор:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
-#: airtime_mvc/application/forms/EditAudioMD.php:105
-msgid "Conductor:"
-msgstr "Диригент:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
-#: airtime_mvc/application/forms/EditAudioMD.php:135
-msgid "Copyright:"
-msgstr "Ауторско право:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
-msgid "Isrc Number:"
-msgstr "Isrc Број:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
-#: airtime_mvc/application/forms/EditAudioMD.php:155
-msgid "Website:"
-msgstr "Веб страница:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
-#: airtime_mvc/application/forms/EditUser.php:119
-#: airtime_mvc/application/forms/EditAudioMD.php:165
-#: airtime_mvc/application/forms/Login.php:68
-msgid "Language:"
-msgstr "Језик:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
-msgid "File Path:"
-msgstr "Стажа Датотека:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
-#: airtime_mvc/application/forms/AddShowWhat.php:26
-msgid "Name:"
-msgstr "Назив:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
-#: airtime_mvc/application/forms/AddShowWhat.php:54
-msgid "Description:"
-msgstr "Опис:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
-msgid "Web Stream"
-msgstr "Пренос"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
-msgid "Dynamic Smart Block"
-msgstr "Динамички Паметан Блок"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
-msgid "Static Smart Block"
-msgstr "Статички Паметан Блок"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
-msgid "Audio Track"
-msgstr "Звучни Запис"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
-msgid "Playlist Contents: "
-msgstr "Садржаји Списак Песама:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
-msgid "Static Smart Block Contents: "
-msgstr "Статички Паметан Блок Садржаји:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
-msgid "Dynamic Smart Block Criteria: "
-msgstr "Динамички Паметан Блок Критеријуми:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
-msgid "Limit to "
-msgstr "Ограничено за"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
-#: airtime_mvc/application/forms/AddShowWhat.php:36
-msgid "URL:"
-msgstr "URL:"
-
-#: airtime_mvc/application/views/scripts/form/login.phtml:41
-msgid "Forgot your password?"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
-#, php-format
-msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
-#, php-format
-msgid "Click the box below to promote your station on %s."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
-msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
-msgstr "(Како би се промовисао своју станицу, 'Пошаљи повратне информације' мора да буде омогућена)."
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
-msgid "(Required)"
-msgstr "(Обавезно)"
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
-msgid "(for verification purposes only, will not be published)"
-msgstr "(служи само за проверу, неће да буде објављена)"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
-msgid "Choose folder"
-msgstr "Одабери фолдер"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
-msgid "Set"
-msgstr "Подеси"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
-msgid "Current Import Folder:"
-msgstr "Актуална Увозна Мапа:"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
-msgid "Add"
-msgstr "Додај"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
-#, php-format
-msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
-msgid "Remove watched directory"
-msgstr "Уклони надзорану директоријуму"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
-msgid "You are not watching any media folders."
-msgstr "Не пратиш ниједне медијске мапе."
-
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
-msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
-msgid "Live Broadcasting"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
-msgid "Use these settings in your broadcasting software to stream live at any time."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
-msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
-msgid "Choose Show Instance"
-msgstr "Одабери Емисијску Степену"
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
-#: airtime_mvc/application/forms/EditHistoryItem.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:400
-msgid "No Show"
-msgstr "Нема Програма"
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
-msgid "Find"
-msgstr "Пронађи"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
-msgid "Choose Days:"
-msgstr "Одабери Дане:"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
-#: airtime_mvc/application/forms/AddShowStyle.php:64
-#: airtime_mvc/application/forms/GeneralPreferences.php:53
-msgid "Remove"
-msgstr "Уклони"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
-msgid "Stream "
-msgstr "Пренос"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
-msgid "Additional Options"
-msgstr "Додатне Опције"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
-msgid "The following info will be displayed to listeners in their media player:"
-msgstr "Следеће информације ће да буде приказане слушаоцима у медијском плејерима:"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
-msgid "(Your radio station website)"
-msgstr "(Твоја радијска станица веб странице)"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
-msgid "Stream URL: "
-msgstr "URL Преноса:"
-
-#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
-msgid "Find Shows"
-msgstr "Пронађи Емисије"
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
-msgid "TuneIn Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
-msgid "SoundCloud Settings"
-msgstr "SoundCloud Подешавање"
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
-msgid "Dangerous Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
-msgid "Search Criteria:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
-msgid "New Criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
-msgid "or"
-msgstr "или"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
-msgid "and"
-msgstr "и"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
-msgid "New Modifier"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
-msgid " to "
-msgstr "до"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
-msgid "files meet the criteria"
-msgstr "датотеке задовољавају критеријуме"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
-msgid "file meets the criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
-msgid "Filter History"
-msgstr "Филтрирај Историје"
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
-#: airtime_mvc/application/configs/navigation.php:61
-msgid "My Profile"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
-#, php-format
-msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
-#: airtime_mvc/application/forms/Preferences.php:40
-#: airtime_mvc/application/forms/PasswordChange.php:43
-#: airtime_mvc/application/forms/AddUser.php:110
-#: airtime_mvc/application/forms/BillingClient.php:193
-#: airtime_mvc/application/forms/SupportSettings.php:131
-#: airtime_mvc/application/forms/EditHistory.php:131
-#: airtime_mvc/application/controllers/LocaleController.php:294
-msgid "Save"
-msgstr "Сачувај"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
-msgid "Repeat Days:"
-msgstr "Поновљени Дани:"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
-msgid "Register Airtime"
-msgstr "Airtime Регистар"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
-#: airtime_mvc/application/forms/GeneralPreferences.php:43
-msgid "Note: Anything larger than 600x600 will be resized."
-msgstr "Напомена: Све већа од 600к600 ће да се мењају."
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
-msgid "Show me what I am sending "
-msgstr "Покажи ми шта шаљем"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
-msgid "Terms and Conditions"
-msgstr "Услови и Одредбе"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
-msgid "Creating File Summary Template"
-msgstr "Стварање Шаблона за Датотечни Сажеци"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
-msgid "Creating Log Sheet Template"
-msgstr "Стварање Листу Шаблона"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
-msgid "Name"
+#: airtime_mvc/application/services/HistoryService.php:1117
+#: airtime_mvc/application/services/HistoryService.php:1157
+#: airtime_mvc/application/services/HistoryService.php:1174
+#: airtime_mvc/application/controllers/LocaleController.php:76
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
+#: airtime_mvc/application/models/Block.php:1375
+msgid "Title"
msgstr "Назив"
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
-msgid "Add more elements"
-msgstr "Додај више елемената"
+#: airtime_mvc/application/services/HistoryService.php:1118
+#: airtime_mvc/application/services/HistoryService.php:1158
+#: airtime_mvc/application/services/HistoryService.php:1175
+#: airtime_mvc/application/controllers/LocaleController.php:77
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
+#: airtime_mvc/application/models/Block.php:1360
+msgid "Creator"
+msgstr "Творац"
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
-msgid "Add New Field"
-msgstr "Додај Ново Поље"
+#: airtime_mvc/application/services/HistoryService.php:1119
+#: airtime_mvc/application/controllers/LocaleController.php:78
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
+#: airtime_mvc/application/models/Block.php:1352
+msgid "Album"
+msgstr "Албум"
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
-msgid "Set Default Template"
-msgstr "Подеси Подразумевано Шаблону"
+#: airtime_mvc/application/services/HistoryService.php:1120
+#: airtime_mvc/application/services/HistoryService.php:1177
+#: airtime_mvc/application/controllers/LocaleController.php:91
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
+#: airtime_mvc/application/models/Block.php:1369
+msgid "Length"
+msgstr "Дужина"
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
-msgid "Playout History Templates"
-msgstr ""
+#: airtime_mvc/application/services/HistoryService.php:1121
+#: airtime_mvc/application/controllers/LocaleController.php:85
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
+#: airtime_mvc/application/models/Block.php:1362
+msgid "Genre"
+msgstr "Жанр"
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
-msgid "Log Sheet Templates"
-msgstr "Шаблони Списак Пријаве"
+#: airtime_mvc/application/services/HistoryService.php:1122
+#: airtime_mvc/application/controllers/LocaleController.php:93
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
+#: airtime_mvc/application/models/Block.php:1371
+msgid "Mood"
+msgstr "Расположење"
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
-msgid "New Log Sheet Template"
-msgstr "Нови Листу шаблона"
+#: airtime_mvc/application/services/HistoryService.php:1123
+#: airtime_mvc/application/controllers/LocaleController.php:87
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
+#: airtime_mvc/application/models/Block.php:1364
+msgid "Label"
+msgstr "Налепница"
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
-msgid "No Log Sheet Templates"
-msgstr "Нема Листу Шаблона"
+#: airtime_mvc/application/services/HistoryService.php:1124
+#: airtime_mvc/application/services/HistoryService.php:1178
+#: airtime_mvc/application/controllers/LocaleController.php:81
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
+#: airtime_mvc/application/models/Block.php:1355
+msgid "Composer"
+msgstr "Композитор"
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
-#: airtime_mvc/application/controllers/LocaleController.php:397
-msgid "Set Default"
-msgstr "Постави Подразумевано"
+#: airtime_mvc/application/services/HistoryService.php:1125
+#: airtime_mvc/application/controllers/LocaleController.php:86
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
+#: airtime_mvc/application/models/Block.php:1363
+msgid "ISRC"
+msgstr "ISRC"
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
-msgid "File Summary Templates"
-msgstr "Шаблони за Датотечни Сажеци"
+#: airtime_mvc/application/services/HistoryService.php:1126
+#: airtime_mvc/application/services/HistoryService.php:1179
+#: airtime_mvc/application/controllers/LocaleController.php:83
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
+#: airtime_mvc/application/models/Block.php:1357
+msgid "Copyright"
+msgstr "Ауторско право"
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
-msgid "New File Summary Template"
-msgstr "Нови Шаблон за Датотечни Сажеци"
+#: airtime_mvc/application/services/HistoryService.php:1127
+#: airtime_mvc/application/controllers/LocaleController.php:100
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
+#: airtime_mvc/application/models/Block.php:1379
+msgid "Year"
+msgstr "Година"
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
-msgid "No File Summary Templates"
-msgstr "Нема Шаблона за Датотечни Сажеци"
+#: airtime_mvc/application/services/HistoryService.php:1128
+msgid "Track"
+msgstr "Песма"
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
-msgid "Disk Space"
-msgstr "Дисковни Простор"
+#: airtime_mvc/application/services/HistoryService.php:1129
+#: airtime_mvc/application/controllers/LocaleController.php:82
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
+#: airtime_mvc/application/models/Block.php:1356
+msgid "Conductor"
+msgstr "Диригент"
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
-#: airtime_mvc/application/controllers/LocaleController.php:315
-msgid "Disk"
-msgstr "Диск"
+#: airtime_mvc/application/services/HistoryService.php:1130
+#: airtime_mvc/application/controllers/LocaleController.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
+#: airtime_mvc/application/models/Block.php:1365
+msgid "Language"
+msgstr "Језик"
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
-#: airtime_mvc/application/forms/AddShowWhen.php:89
-msgid "Duration:"
-msgstr "Трајање:"
+#: airtime_mvc/application/services/HistoryService.php:1155
+#: airtime_mvc/application/forms/EditHistoryItem.php:32
+msgid "Start Time"
+msgstr "Време Почетка"
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
-msgid "Toggle Details"
-msgstr ""
+#: airtime_mvc/application/services/HistoryService.php:1156
+#: airtime_mvc/application/forms/EditHistoryItem.php:44
+msgid "End Time"
+msgstr "Време Завршетка"
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
-msgid "Playlist crossfade"
-msgstr "Крижно утишавање списак песама"
+#: airtime_mvc/application/services/HistoryService.php:1176
+msgid "Played"
+msgstr "Пуштена"
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-msgid "Remove all content from this smart block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Clear"
-msgstr "Очисти"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "Fade in: "
-msgstr "Одтамњење:"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "(ss.t)"
-msgstr "(ss.t)"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-msgid "Fade out: "
-msgstr "Затамњење:"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
-#: airtime_mvc/application/forms/EditAudioMD.php:186
-#: airtime_mvc/application/forms/EditHistory.php:141
-#: airtime_mvc/application/controllers/LocaleController.php:295
-#: airtime_mvc/application/controllers/LocaleController.php:318
-msgid "Cancel"
-msgstr "Одустани"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
-msgid "No smart block currently open"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
-msgid "Show Waveform"
-msgstr "Емисијски звучни таласни облик"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-msgid "Cue In: "
-msgstr "Cue In: "
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "(hh:mm:ss.t)"
-msgstr "(hh:mm:ss.t)"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "Cue Out: "
-msgstr "Cue Out: "
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
-msgid "Original Length:"
-msgstr "Оригинална Дужина:"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
-msgid "Expand Static Block"
-msgstr "Проширење Статичког Bloка"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
-msgid "Expand Dynamic Block"
-msgstr "Проширење Динамичког Блока"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
-msgid "Choose some search criteria above and click Generate to create this playlist."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
-msgid "A track list will be generated when you schedule this smart block into a show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
-msgid "Drag tracks here from your library to add them to the playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-msgid "Shuffle playlist"
-msgstr "Случајни избор списак песама"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
-msgid "Shuffle"
-msgstr "Мешање"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Empty playlist content"
-msgstr "Празан садржај списак песама"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-msgid "Save playlist"
-msgstr "Сачувај списак песама"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
-msgid "No open playlist"
-msgstr "Нема отворених списак песама"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
-msgid "previous"
-msgstr "претходна"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
-msgid "play"
-msgstr "покрени"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
-msgid "pause"
-msgstr "пауза"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
-msgid "next"
-msgstr "следећа"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
-msgid "stop"
-msgstr "заустави"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
-msgid "max volume"
-msgstr "макс гласноћа"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
-msgid "Update Required"
-msgstr "Потребно Ажурирање"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
+#: airtime_mvc/application/controllers/LibraryController.php:31
+#: airtime_mvc/application/controllers/PlaylistController.php:147
#, php-format
-msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
-msgstr "Медија је потребна за репродукцију, и мораш да ажурираш свој претраживач на новију верзију, или да ажурираш свој %sFlash plugin%s."
+msgid "%s not found"
+msgstr "%s није пронађен"
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
-msgid "Stream Settings"
-msgstr "Преносна Подешавања"
+#: airtime_mvc/application/controllers/LibraryController.php:40
+#: airtime_mvc/application/controllers/PlaylistController.php:168
+msgid "Something went wrong."
+msgstr "Нешто је пошло по криву."
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
-msgid "Global"
+#: airtime_mvc/application/controllers/LibraryController.php:95
+#: airtime_mvc/application/controllers/ShowbuilderController.php:136
+msgid "Preview"
+msgstr "Преглед"
+
+#: airtime_mvc/application/controllers/LibraryController.php:115
+#: airtime_mvc/application/controllers/LibraryController.php:177
+#: airtime_mvc/application/controllers/LibraryController.php:200
+msgid "Add to Playlist"
+msgstr "Додај на Списак Песама"
+
+#: airtime_mvc/application/controllers/LibraryController.php:117
+msgid "Add to Smart Block"
+msgstr "Додај у Smart Block"
+
+#: airtime_mvc/application/controllers/LibraryController.php:123
+#: airtime_mvc/application/controllers/LocaleController.php:66
+msgid "Edit Metadata"
+msgstr "Уреди Метаподатке"
+
+#: airtime_mvc/application/controllers/LibraryController.php:131
+#: airtime_mvc/application/controllers/ScheduleController.php:712
+msgid "Download"
+msgstr "Преузимање"
+
+#: airtime_mvc/application/controllers/LibraryController.php:147
+msgid "View track"
msgstr ""
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
-msgid "dB"
-msgstr "dB"
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
-msgid "Output Streams"
+#: airtime_mvc/application/controllers/LibraryController.php:148
+msgid "Remove track"
msgstr ""
-#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
-#: airtime_mvc/application/controllers/LocaleController.php:166
-msgid "Manage Media Folders"
-msgstr "Управљање Медијске Мапе"
-
-#: airtime_mvc/application/views/scripts/preference/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:56
-msgid "General"
+#: airtime_mvc/application/controllers/LibraryController.php:154
+#: airtime_mvc/application/controllers/LibraryController.php:159
+msgid "Upload track"
msgstr ""
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
-msgid "Description"
-msgstr "Опис"
+#: airtime_mvc/application/controllers/LibraryController.php:169
+msgid "Duplicate Playlist"
+msgstr "Удвостручавање"
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
-msgid "Stream URL:"
-msgstr "URL Преноса:"
+#: airtime_mvc/application/controllers/LibraryController.php:213
+msgid "No action available"
+msgstr "Нема доступних акција"
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
-msgid "Default Length:"
-msgstr "Задата Дужина:"
+#: airtime_mvc/application/controllers/LibraryController.php:233
+msgid "You don't have permission to delete selected items."
+msgstr "Немаш допуштење за брисање одабране ставке."
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
-msgid "No webstream"
-msgstr "Нема преноса"
+#: airtime_mvc/application/controllers/LibraryController.php:279
+msgid "Could not delete file because it is scheduled in the future."
+msgstr ""
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
-msgid "Manage Users"
-msgstr "Управљање Кориснике"
+#: airtime_mvc/application/controllers/LibraryController.php:282
+msgid "Could not delete file(s)."
+msgstr ""
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
-msgid "New User"
-msgstr "Нови Корисник"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
-msgid "id"
-msgstr "id"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
-#: airtime_mvc/application/forms/PasswordRestore.php:25
-msgid "Username"
-msgstr "Корисничко име"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
-msgid "First Name"
-msgstr "Име"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
-msgid "Last Name"
-msgstr "Презиме"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
-msgid "User Type"
-msgstr "Врста Корисника"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
+#: airtime_mvc/application/controllers/LibraryController.php:322
#, php-format
-msgid "Super Admin details can be changed in your Billing Settings."
-msgstr ""
+msgid "Copy of %s"
+msgstr "Копирање од %s"
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
-#: airtime_mvc/application/controllers/LocaleController.php:74
-#: airtime_mvc/application/layouts/scripts/layout.phtml:78
-msgid "Tracks"
-msgstr ""
+#: airtime_mvc/application/controllers/WebstreamController.php:28
+#: airtime_mvc/application/controllers/WebstreamController.php:32
+msgid "Untitled Webstream"
+msgstr "Неименовани Пренос"
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
-#: airtime_mvc/application/controllers/LocaleController.php:104
-#: airtime_mvc/application/layouts/scripts/layout.phtml:80
-msgid "Playlists"
-msgstr "Листе песама"
+#: airtime_mvc/application/controllers/WebstreamController.php:150
+msgid "Webstream saved."
+msgstr "Пренос је сачуван."
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
-#: airtime_mvc/application/controllers/LocaleController.php:105
-#: airtime_mvc/application/layouts/scripts/layout.phtml:82
-msgid "Smart Blocks"
-msgstr "Smart Block-ови"
+#: airtime_mvc/application/controllers/WebstreamController.php:158
+msgid "Invalid form values."
+msgstr "Неважећи вредности обрасца."
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
-#: airtime_mvc/application/layouts/scripts/layout.phtml:84
-msgid "Webstreams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
-#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
-#: airtime_mvc/application/layouts/scripts/layout.phtml:76
-msgid "Dashboard"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:12
-msgid "Radio Page"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:19
-msgid "Calendar"
-msgstr "Календар"
-
-#: airtime_mvc/application/configs/navigation.php:26
-msgid "Widgets"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:48
-msgid "Settings"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:67
-msgid "Users"
-msgstr "Корисници"
-
-#: airtime_mvc/application/configs/navigation.php:74
-msgid "Streams"
-msgstr "Преноси"
-
-#: airtime_mvc/application/configs/navigation.php:82
-msgid "Analytics"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:90
-msgid "Listener Stats"
-msgstr "Слушатељска Статистика"
-
-#: airtime_mvc/application/configs/navigation.php:104
-msgid "History Templates"
-msgstr "Историјски Шаблони"
-
-#: airtime_mvc/application/configs/navigation.php:113
-msgid "Billing"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:127
-msgid "Account Details"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:134
-msgid "View Invoices"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:150
-msgid "Getting Started"
-msgstr "Почетак Коришћења"
-
-#: airtime_mvc/application/configs/navigation.php:157
-msgid "FAQ"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:162
-msgid "User Manual"
-msgstr "Упутство"
-
-#: airtime_mvc/application/configs/navigation.php:167
-msgid "File a Support Ticket"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:12
-msgid "Background Colour:"
-msgstr "Боја Позадине:"
-
-#: airtime_mvc/application/forms/AddShowStyle.php:31
-msgid "Text Colour:"
-msgstr "Боја Текста:"
-
-#: airtime_mvc/application/forms/AddShowStyle.php:49
-msgid "Current Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:72
-msgid "Show Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:87
-msgid "Logo Preview:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:19
-msgid "Push metadata to your station on TuneIn?"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:24
-msgid "Station ID:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:30
-msgid "Partner Key:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:36
-msgid "Partner Id:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:77
-#: airtime_mvc/application/forms/TuneInPreferences.php:86
-msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:14
-msgid "Now Playing"
-msgstr "Тренутно Извођена"
-
-#: airtime_mvc/application/forms/Player.php:25
-msgid "Select Stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:28
-msgid "Auto detect the most appropriate stream to use."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:29
-msgid "Select a stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:41
-msgid " - Mobile friendly"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:45
-msgid " - The player does not support Opus streams."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:71
-msgid "Embeddable code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:72
-msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:37
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
-#: airtime_mvc/application/forms/Login.php:41
-#: airtime_mvc/application/forms/AddUser.php:29
-msgid "Username:"
-msgstr "Корисничко име:"
-
-#: airtime_mvc/application/forms/EditUser.php:48
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
-#: airtime_mvc/application/forms/Login.php:54
-#: airtime_mvc/application/forms/AddUser.php:38
-#: airtime_mvc/application/forms/BillingClient.php:172
-msgid "Password:"
-msgstr "Лозинка:"
-
-#: airtime_mvc/application/forms/EditUser.php:57
-#: airtime_mvc/application/forms/AddUser.php:46
-#: airtime_mvc/application/forms/BillingClient.php:181
-msgid "Verify Password:"
-msgstr "Потврди Лозинку:"
-
-#: airtime_mvc/application/forms/EditUser.php:67
-#: airtime_mvc/application/forms/AddUser.php:55
-msgid "Firstname:"
-msgstr "Име:"
-
-#: airtime_mvc/application/forms/EditUser.php:75
-#: airtime_mvc/application/forms/AddUser.php:61
-msgid "Lastname:"
-msgstr "Презиме:"
-
-#: airtime_mvc/application/forms/EditUser.php:83
-#: airtime_mvc/application/forms/RegisterAirtime.php:51
-#: airtime_mvc/application/forms/AddUser.php:67
-#: airtime_mvc/application/forms/SupportSettings.php:43
-msgid "Email:"
-msgstr "Е-маил:"
-
-#: airtime_mvc/application/forms/EditUser.php:94
-#: airtime_mvc/application/forms/AddUser.php:76
-msgid "Mobile Phone:"
-msgstr "Мобилни Телефон:"
-
-#: airtime_mvc/application/forms/EditUser.php:102
-#: airtime_mvc/application/forms/AddUser.php:82
-msgid "Skype:"
-msgstr "Skype:"
-
-#: airtime_mvc/application/forms/EditUser.php:110
-#: airtime_mvc/application/forms/AddUser.php:88
-msgid "Jabber:"
-msgstr "Jabber:"
-
-#: airtime_mvc/application/forms/EditUser.php:129
-msgid "Interface Timezone:"
-msgstr "Временска Зона Интерфејси:"
-
-#: airtime_mvc/application/forms/EditUser.php:155
-#: airtime_mvc/application/forms/AddUser.php:120
-msgid "Login name is not unique."
-msgstr "Име пријаве није јединствено."
-
-#: airtime_mvc/application/forms/AddShowRR.php:10
-msgid "Record from Line In?"
-msgstr "Снимање са Line In?"
-
-#: airtime_mvc/application/forms/AddShowRR.php:16
-msgid "Rebroadcast?"
-msgstr "Поново да емитује?"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:16
-msgid "'%value%' does not fit the time format 'HH:mm'"
-msgstr "'%value%' се не уклапа у временском формату 'HH:mm'"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:22
-msgid "Start Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:37
-msgid "In the Future:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:64
-msgid "End Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:98
-msgid "Timezone:"
-msgstr "Временска Зона:"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:107
-msgid "Repeats?"
-msgstr "Понављање?"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:139
-msgid "Cannot create show in the past"
-msgstr "Не може да се створи емисију у прошлости"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:147
-msgid "Cannot modify start date/time of the show that is already started"
-msgstr "Не можеш да мењаш датум/време почетак емисије, ако је већ почела"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:164
-msgid "Cannot have duration < 0m"
-msgstr "Не може да траје < 0m"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:168
-msgid "Cannot have duration 00h 00m"
-msgstr "Не може да траје 00h 00m"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:175
-msgid "Cannot have duration greater than 24h"
-msgstr "Не може да траје више од 24h"
-
-#: airtime_mvc/application/forms/AddShowWho.php:10
-msgid "Search Users:"
-msgstr "Тражи Кориснике:"
-
-#: airtime_mvc/application/forms/AddShowWho.php:24
-msgid "DJs:"
-msgstr "Диск-џокеји:"
-
-#: airtime_mvc/application/forms/PasswordChange.php:17
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
-msgid "Password"
-msgstr "Лозинка"
-
-#: airtime_mvc/application/forms/PasswordChange.php:28
-msgid "Confirm new password"
-msgstr "Потврди нову лозинку"
-
-#: airtime_mvc/application/forms/PasswordChange.php:36
-msgid "Password confirmation does not match your password."
-msgstr "Лозинке које сте унели не подударају се."
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
-msgid "Station Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
-#: airtime_mvc/application/forms/GeneralPreferences.php:127
-msgid "Station Timezone"
-msgstr "Станична Временска Зона"
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
-msgid "Auto Switch Off:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
-msgid "Auto Switch On:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
-msgid "Switch Transition Fade (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
-#: airtime_mvc/application/forms/GeneralPreferences.php:68
-#: airtime_mvc/application/forms/GeneralPreferences.php:82
-#: airtime_mvc/application/forms/GeneralPreferences.php:96
-msgid "Please enter a time in seconds (eg. 0.5)"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
-#: airtime_mvc/application/forms/AddShowLiveStream.php:48
-msgid "Host:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
-#: airtime_mvc/application/forms/AddShowLiveStream.php:54
-msgid "Port:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
-#: airtime_mvc/application/forms/AddShowLiveStream.php:60
-msgid "Mount:"
-msgstr ""
-
-#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
-msgid "Value is required and can't be empty"
-msgstr "Вредност је потребна и не може да буде празан"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:25
-#: airtime_mvc/application/forms/RegisterAirtime.php:30
-#: airtime_mvc/application/forms/SupportSettings.php:18
-msgid "Station Name"
-msgstr "Назив Станице"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:33
-msgid "Station Description"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:42
-#: airtime_mvc/application/forms/RegisterAirtime.php:106
-msgid "Station Logo:"
-msgstr "Лого:"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:62
-msgid "Default Crossfade Duration (s):"
-msgstr "Подразумевано Трајање Укрштено Стишавање (s):"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:76
-msgid "Default Fade In (s):"
-msgstr "Подразумевано Одтамњење (s):"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:90
-msgid "Default Fade Out (s):"
-msgstr "Подразумевано Затамњење (s):"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:102
-msgid "Public Airtime API"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:103
-msgid "Required for embeddable schedule widget."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:105
-msgid "Disabled"
-msgstr "Онемогућено"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:106
-msgid "Enabled"
-msgstr "Омогућено"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:109
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
msgid ""
-"Enabling this feature will allow Airtime to provide schedule data\n"
-" to external widgets that can be embedded in your website."
+"To configure and use the embeddable player you must:
\n"
+" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
+" 2. Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/forms/GeneralPreferences.php:120
-msgid "Default Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:134
-msgid "Week Starts On"
-msgstr "Први Дан у Недељи"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:150
-msgid "Display login button on your Radio Page?"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:158
-#: airtime_mvc/application/controllers/LocaleController.php:249
-msgid "Sunday"
-msgstr "Недеља"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:159
-#: airtime_mvc/application/controllers/LocaleController.php:250
-msgid "Monday"
-msgstr "Понедељак"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:160
-#: airtime_mvc/application/controllers/LocaleController.php:251
-msgid "Tuesday"
-msgstr "Уторак"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:161
-#: airtime_mvc/application/controllers/LocaleController.php:252
-msgid "Wednesday"
-msgstr "Среда"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:162
-#: airtime_mvc/application/controllers/LocaleController.php:253
-msgid "Thursday"
-msgstr "Четвртак"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:163
-#: airtime_mvc/application/controllers/LocaleController.php:254
-msgid "Friday"
-msgstr "Петак"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:164
-#: airtime_mvc/application/controllers/LocaleController.php:255
-msgid "Saturday"
-msgstr "Субота"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
-msgid "Default License:"
-msgstr "Задата Дозвола:"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
-msgid "All rights are reserved"
-msgstr "Сва права задржана"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
-msgid "The work is in the public domain"
-msgstr "Рад је у јавном домену"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
-msgid "Creative Commons Attribution"
-msgstr "Creative Commons Именовање"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
-msgid "Creative Commons Attribution Noncommercial"
-msgstr "Creative Commons Именовање Некомерцијално"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
-msgid "Creative Commons Attribution No Derivative Works"
-msgstr "Creative Commons Именовање Без Изведених Дела"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
-msgid "Creative Commons Attribution Share Alike"
-msgstr "Creative Commons Дели Под Истим Условима"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
-msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
-msgstr "Creative Commons Именовање Некомерцијално Без Изведених Дела"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
-msgid "Creative Commons Attribution Noncommercial Share Alike"
-msgstr "Creative Commons Именовање Некомерцијално Дијели Под Истим Условима"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
-msgid "Default Sharing Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
-msgid "Public"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
-msgid "Private"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:18
-#: airtime_mvc/application/forms/DateRange.php:16
-msgid "Date Start:"
-msgstr "Датум Почетка:"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:37
-#: airtime_mvc/application/forms/ShowBuilder.php:65
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
-#: airtime_mvc/application/forms/DateRange.php:35
-#: airtime_mvc/application/forms/DateRange.php:63
-msgid "Invalid character entered"
-msgstr "Унесени су неважећи знакови"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:46
-#: airtime_mvc/application/forms/AddShowRepeats.php:56
-#: airtime_mvc/application/forms/DateRange.php:44
-msgid "Date End:"
-msgstr "Датум Завршетка:"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:72
-#: airtime_mvc/application/forms/ShowBuilder.php:88
-msgid "Filter by Show"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:80
-msgid "All My Shows:"
-msgstr "Све Моје Емисије:"
-
-#: airtime_mvc/application/forms/EditAudioMD.php:145
-msgid "ISRC Number:"
-msgstr "ISRC Број:"
-
-#: airtime_mvc/application/forms/EditAudioMD.php:176
-msgid "OK"
-msgstr "ОК"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
-msgid "Day must be specified"
-msgstr "Дан мора да буде наведен"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
-msgid "Time must be specified"
-msgstr "Време мора да буде наведено"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
-msgid "Must wait at least 1 hour to rebroadcast"
-msgstr "Мораш да чекаш најмање 1 сат за ре-емитовање"
-
-#: airtime_mvc/application/forms/AddShowWhat.php:30
-msgid "Untitled Show"
-msgstr "Неименована Емисија"
-
-#: airtime_mvc/application/forms/AddShowWhat.php:69
-msgid "Instance Description:"
-msgstr ""
-
-#: airtime_mvc/application/forms/DangerousPreferences.php:12
-msgid "Delete All Tracks in Library"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:39
-#: airtime_mvc/application/forms/SupportSettings.php:31
-msgid "Phone:"
-msgstr "Телефон:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:62
-#: airtime_mvc/application/forms/SupportSettings.php:54
-msgid "Station Web Site:"
-msgstr "Веб Страница:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:73
-#: airtime_mvc/application/forms/BillingClient.php:102
-#: airtime_mvc/application/forms/SupportSettings.php:65
-msgid "Country:"
-msgstr "Држава:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:84
-#: airtime_mvc/application/forms/BillingClient.php:70
-#: airtime_mvc/application/forms/SupportSettings.php:76
-msgid "City:"
-msgstr "Град:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:96
-#: airtime_mvc/application/forms/SupportSettings.php:88
-msgid "Station Description:"
-msgstr "Опис:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:116
-#: airtime_mvc/application/forms/SupportSettings.php:98
-#: airtime_mvc/application/controllers/LocaleController.php:341
-msgid "Send support feedback"
-msgstr "Пошаљи повратне информације"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:126
-#: airtime_mvc/application/forms/SupportSettings.php:108
-#, php-format
-msgid "Promote my station on %s"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:151
-#: airtime_mvc/application/forms/SupportSettings.php:120
-#, php-format
-msgid "By checking this box, I agree to %s's %sprivacy policy%s."
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:169
-#: airtime_mvc/application/forms/SupportSettings.php:143
-msgid "You have to agree to privacy policy."
-msgstr "Мораш да пристанеш на правила о приватности."
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:10
-msgid "Link:"
-msgstr "Link:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:16
-msgid "Repeat Type:"
-msgstr "Тип Понављање:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:19
-msgid "weekly"
-msgstr "недељно"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:20
-msgid "every 2 weeks"
-msgstr "сваке 2 недеље"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:21
-msgid "every 3 weeks"
-msgstr "свака 3 недеље"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:22
-msgid "every 4 weeks"
-msgstr "свака 4 недеље"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:23
-msgid "monthly"
-msgstr "месечно"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:32
-msgid "Select Days:"
-msgstr "Одабери Дане:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:35
-#: airtime_mvc/application/controllers/LocaleController.php:256
-msgid "Sun"
-msgstr "Нед"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:36
-#: airtime_mvc/application/controllers/LocaleController.php:257
-msgid "Mon"
-msgstr "Пон"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:37
-#: airtime_mvc/application/controllers/LocaleController.php:258
-msgid "Tue"
-msgstr "Уто"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:38
-#: airtime_mvc/application/controllers/LocaleController.php:259
-msgid "Wed"
-msgstr "Сре"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:39
-#: airtime_mvc/application/controllers/LocaleController.php:260
-msgid "Thu"
-msgstr "Чет"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:40
-#: airtime_mvc/application/controllers/LocaleController.php:261
-msgid "Fri"
-msgstr "Пет"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:41
-#: airtime_mvc/application/controllers/LocaleController.php:262
-msgid "Sat"
-msgstr "Суб"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:47
-msgid "Repeat By:"
-msgstr "Понављање По:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the month"
-msgstr "дан у месецу"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the week"
-msgstr "дан у недељи"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:69
-msgid "No End?"
-msgstr "Нема Краја?"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:106
-msgid "End date must be after start date"
-msgstr "Датум завршетка мора да буде после датума почетка"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:113
-msgid "Please select a repeat day"
-msgstr "Молимо, одабери којег дана"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:10
-#, php-format
-msgid "Use %s Authentication:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:16
-msgid "Use Custom Authentication:"
-msgstr "Користи Прилагођено потврду идентитета:"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:25
-msgid "Custom Username"
-msgstr "Прилагођено Корисничко Име"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:37
-msgid "Custom Password"
-msgstr "Прилагођена Лозинка"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:77
-msgid "Username field cannot be empty."
-msgstr "'Корисничко Име' поља не сме да остане празно."
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:82
-msgid "Password field cannot be empty."
-msgstr "'Лозинка' поља не сме да остане празно."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
-msgid "Enabled:"
-msgstr "Омогућено:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
-msgid "Mobile:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
-msgid "Stream Type:"
-msgstr "Пренос Типа:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
-msgid "Service Type:"
-msgstr "Тип Услуге:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
-msgid "Channels:"
-msgstr "Канали:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "1 - Mono"
-msgstr "1 - Mono"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "2 - Stereo"
-msgstr "2 - Stereo"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
-msgid "Server"
-msgstr "Сервер"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
-msgid "Port"
-msgstr "Порт"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
-msgid "Only numbers are allowed."
-msgstr "Допуштени су само бројеви."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
-msgid "URL"
-msgstr "URL"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
-msgid "Mount Point"
-msgstr "Тачка Монтирања"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
-msgid "Admin User"
-msgstr "Админ Корисник"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
-msgid "Admin Password"
-msgstr "Aдминска Лозинка"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
-#: airtime_mvc/application/controllers/LocaleController.php:173
-msgid "Getting information from the server..."
-msgstr "Добијање информација са сервера..."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
-msgid "Server cannot be empty."
-msgstr "Сервер не може да буде празан."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
-msgid "Port cannot be empty."
-msgstr "Port не може да буде празан."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
-msgid "Mount cannot be empty with Icecast server."
-msgstr "Монтирање не може да буде празна са Icecast сервером."
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
-msgid "'%value%' is no valid email address in the basic format local-part@hostname"
-msgstr "'%value%' није ваљана е-маил адреса у основном облику local-part@hostname"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
-msgid "'%value%' does not fit the date format '%format%'"
-msgstr "'%value%' не одговара по облику датума '%format%'"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
-msgid "'%value%' is less than %min% characters long"
-msgstr "'%value%' је мањи од %min% дугачко знакова"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
-msgid "'%value%' is more than %max% characters long"
-msgstr "'%value%' је више од %max% дугачко знакова"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
-msgid "'%value%' is not between '%min%' and '%max%', inclusively"
-msgstr "'%value%' није између '%min%' и '%max%', укључиво"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
-msgid "Passwords do not match"
-msgstr "Лозинке се не подударају"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
-msgid "hours"
-msgstr "сати"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
-msgid "minutes"
-msgstr "минути"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
-msgid "Randomly"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
-msgid "Newest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
-msgid "Oldest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
-msgid "Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
-msgid "Static"
-msgstr "Статички"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
-msgid "Dynamic"
-msgstr "Динамички"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
-msgid "Allow Repeated Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
-msgid "Sort Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
-msgid "Limit to:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
-msgid "Generate playlist content and save criteria"
-msgstr "Генерисање листе песама и чување садржаја критеријуме"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
-msgid "Generate"
-msgstr "Генериши"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
-msgid "Shuffle playlist content"
-msgstr "Садржај случајни избор списак песама"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
-msgid "Limit cannot be empty or smaller than 0"
-msgstr "Ограничење не може да буде празан или мањи од 0"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
-msgid "Limit cannot be more than 24 hrs"
-msgstr "Ограничење не може да буде више од 24 сати"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
-msgid "The value should be an integer"
-msgstr "Вредност мора да буде цео број"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
-msgid "500 is the max item limit value you can set"
-msgstr "500 је макс ставу граничну вредност могуће је да подесиш"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
-msgid "You must select Criteria and Modifier"
-msgstr "Мораш да изабереш Критерију и Модификацију"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
-msgid "'Length' should be in '00:00:00' format"
-msgstr "'Дужина' требала да буде у '00:00:00' облику"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
-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:594
-msgid "The value has to be numeric"
-msgstr "Вредност мора да буде нумеричка"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
-msgid "The value should be less then 2147483648"
-msgstr "Вредност би требала да буде мања од 2147483648"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
-#, php-format
-msgid "The value should be less than %s characters"
-msgstr "Вредност мора да буде мања од %s знакова"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
-msgid "Value cannot be empty"
-msgstr "Вредност не може да буде празна"
-
-#: airtime_mvc/application/forms/Login.php:102
-msgid "Type the characters you see in the picture below."
-msgstr "Упиши знаке које видиш на слици у наставку."
-
-#: airtime_mvc/application/forms/StreamSetting.php:26
-msgid "Icecast Vorbis Metadata"
-msgstr "Icecast Vorbis Метаподаци"
-
-#: airtime_mvc/application/forms/StreamSetting.php:36
-msgid "Stream Label:"
-msgstr "Видљиви Подаци:"
-
-#: airtime_mvc/application/forms/StreamSetting.php:37
-msgid "Artist - Title"
-msgstr "Аутор - Назив"
-
-#: airtime_mvc/application/forms/StreamSetting.php:38
-msgid "Show - Artist - Title"
-msgstr "Емисија - Аутор - Назив"
-
-#: airtime_mvc/application/forms/StreamSetting.php:39
-msgid "Station name - Show name"
-msgstr "Назив станице - Назив емисије"
-
-#: airtime_mvc/application/forms/StreamSetting.php:45
-msgid "Off Air Metadata"
-msgstr "Off Air Метаподаци"
-
-#: airtime_mvc/application/forms/StreamSetting.php:51
-msgid "Enable Replay Gain"
-msgstr "Укључи Replay Gain"
-
-#: airtime_mvc/application/forms/StreamSetting.php:57
-msgid "Replay Gain Modifier"
-msgstr "Replay Gain Модификатор"
-
-#: airtime_mvc/application/forms/StreamSetting.php:65
-msgid "Streaming Server:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Airtime Pro Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Custom / 3rd Party Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:95
-msgid "User Type:"
-msgstr "Типова Корисника:"
-
-#: airtime_mvc/application/forms/AddUser.php:99
-#: airtime_mvc/application/controllers/LocaleController.php:324
-msgid "Guest"
-msgstr "Гост"
-
-#: airtime_mvc/application/forms/AddUser.php:100
-#: airtime_mvc/application/controllers/LocaleController.php:322
-msgid "DJ"
-msgstr "Диск-џокеј"
-
-#: airtime_mvc/application/forms/AddUser.php:101
-#: airtime_mvc/application/controllers/LocaleController.php:323
-msgid "Program Manager"
-msgstr "Водитељ Програма"
-
-#: airtime_mvc/application/forms/AddUser.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:321
-msgid "Admin"
-msgstr "Администратор"
-
-#: airtime_mvc/application/forms/BillingClient.php:17
-msgid "First Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:26
-msgid "Last Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:35
-msgid "Company Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:44
-msgid "Email Address:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:54
-msgid "Address 1:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:63
-msgid "Address 2:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:80
-msgid "State/Region:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:89
-msgid "Zip Code / Postal Code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:112
-msgid "Phone Number:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:121
-msgid "Please choose a security question:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:126
-msgid "What is the name of your favorite childhood friend?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:127
-msgid "What school did you attend for sixth grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:128
-msgid "In what city did you meet your spouse/significant other?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:129
-msgid "What street did you live on in third grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:130
-msgid "What is the first name of the boy or girl that you first kissed?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:131
-msgid "In what city or town was your first job?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:135
-msgid "Please enter an answer:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:152
-msgid "VAT/Tax ID (EU only)"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:162
-msgid "Subscribe to Sourcefabric newsletter"
-msgstr ""
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
-msgid "Import Folder:"
-msgstr "Увозна Мапа:"
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
-msgid "Watched Folders:"
-msgstr "Мапе Под Надзором:"
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
-msgid "Not a valid Directory"
-msgstr "Не важећи Директоријум"
-
-#: airtime_mvc/application/forms/PasswordRestore.php:14
-msgid "Email"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordRestore.php:36
-msgid "Reset password"
-msgstr "Ресетуј лозинку"
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
-msgid "Plan type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
-msgid "Billing cycle:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
-msgid "Payment method:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
-msgid "PayPal"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
-msgid "Credit Card via 2Checkout"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:213
-#, php-format
-msgid "The year %s must be within the range of 1753 - 9999"
-msgstr "Година %s мора да буде у распону између 1753 - 9999"
-
-#: airtime_mvc/application/common/DateHelper.php:216
-#, php-format
-msgid "%s-%s-%s is not a valid date"
-msgstr "%s-%s-%s није исправан датум"
-
-#: airtime_mvc/application/common/DateHelper.php:240
-#, php-format
-msgid "%s:%s:%s is not a valid time"
-msgstr "%s:%s:%s није исправан датум"
-
-#: airtime_mvc/application/common/UsabilityHints.php:55
-msgid "Upload some tracks below to add them to your library!"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:57
-#, php-format
-msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:63
-msgid "Click the 'New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:65
-#, php-format
-msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:73
-msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:75
-#, php-format
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
msgid ""
-"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
-" %sCreate an unlinked show now%s."
+"To use the embeddable weekly schedule widget you must:
\n"
+" Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/common/UsabilityHints.php:80
-msgid "To start broadcasting, click on the current show and select 'Schedule Show'"
-msgstr ""
+#: airtime_mvc/application/controllers/ListenerstatController.php:51
+msgid "Please make sure admin user/password is correct on System->Streams page."
+msgstr "Молимо, провери да ли је исправан/на админ корисник/лозинка на страници Систем->Преноси."
-#: airtime_mvc/application/common/UsabilityHints.php:82
+#: airtime_mvc/application/controllers/UserController.php:86
+msgid "User added successfully!"
+msgstr "Корисник је успешно додат!"
+
+#: airtime_mvc/application/controllers/UserController.php:88
+msgid "User updated successfully!"
+msgstr "Корисник је успешно ажуриран!"
+
+#: airtime_mvc/application/controllers/UserController.php:187
+msgid "Settings updated successfully!"
+msgstr "Подешавања су успешно ажуриране!"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:53
#, php-format
-msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
-msgstr ""
+msgid "You are viewing an older version of %s"
+msgstr "Гледаш старију верзију %s"
-#: airtime_mvc/application/common/UsabilityHints.php:89
-msgid "Click on the show starting next and select 'Schedule Show'"
-msgstr ""
+#: airtime_mvc/application/controllers/PlaylistController.php:140
+msgid "You cannot add tracks to dynamic blocks."
+msgstr "Не можеш да додаш песме за динамичне блокове."
-#: airtime_mvc/application/common/UsabilityHints.php:91
+#: airtime_mvc/application/controllers/PlaylistController.php:161
#, php-format
-msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+msgid "You don't have permission to delete selected %s(s)."
+msgstr "Немаш допуштење за брисање одабраног (е) %s."
+
+#: airtime_mvc/application/controllers/PlaylistController.php:174
+msgid "You can only add tracks to smart block."
+msgstr "Можеш само песме да додаш за паметног блока."
+
+#: airtime_mvc/application/controllers/PlaylistController.php:180
+#: airtime_mvc/application/controllers/LocaleController.php:50
+msgid "You can only add tracks, smart blocks, and webstreams to playlists."
+msgstr "Можеш само да додаш песме, паметне блокова, и преносе код листе нумера."
+
+#: airtime_mvc/application/controllers/PlaylistController.php:192
+msgid "Untitled Playlist"
+msgstr "Неименовани Списак Песама"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:194
+msgid "Untitled Smart Block"
+msgstr "Неименовани Smart Block"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:522
+msgid "Unknown Playlist"
+msgstr "Непознати Списак Песама"
+
+#: airtime_mvc/application/controllers/ErrorController.php:78
+msgid "Page not found."
msgstr ""
+#: airtime_mvc/application/controllers/ErrorController.php:87
+msgid "The requested action is not supported."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:98
+msgid "You do not have permission to access this resource."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:109
+msgid "An internal application error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/controllers/Apiv2Controller.php:77
+#: airtime_mvc/application/controllers/ApiController.php:79
+msgid "You are not allowed to access this resource."
+msgstr "Не смеш да приступиш овог извора."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:72
+msgid "Preferences updated."
+msgstr "Подешавања су ажуриране."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:115
+msgid "Support setting updated."
+msgstr "Подршка подешавања је ажурирана."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:123
+msgid "Support Feedback"
+msgstr "Повратне Информације"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:251
+msgid "Stream Setting Updated."
+msgstr "Пренос Подешавање је Ажурирано."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:342
+msgid "path should be specified"
+msgstr "пут би требао да буде специфициран"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:437
+msgid "Problem with Liquidsoap..."
+msgstr "Проблем са Liquidsoap..."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:493
+msgid "Request method not accepted"
+msgstr ""
+
+#: airtime_mvc/application/controllers/DashboardController.php:35
+#: airtime_mvc/application/controllers/DashboardController.php:84
+msgid "You don't have permission to disconnect source."
+msgstr "Немаш допуштење да искључиш извор."
+
+#: airtime_mvc/application/controllers/DashboardController.php:37
+#: airtime_mvc/application/controllers/DashboardController.php:86
+msgid "There is no source connected to this input."
+msgstr "Нема спојеног извора на овај улаз."
+
+#: airtime_mvc/application/controllers/DashboardController.php:81
+msgid "You don't have permission to switch source."
+msgstr "Немаш дозволу за промену извора."
+
+#: airtime_mvc/application/controllers/LoginController.php:43
+msgid "Please enter your username and password."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:93
+msgid "Wrong username or password provided. Please try again."
+msgstr "Погрешно корисничко име или лозинка. Молимо покушај поново."
+
+#: airtime_mvc/application/controllers/LoginController.php:167
+msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
+msgstr "Е-маил није могао да буде послат. Провери своје поставке сервера поште и провери се да је исправно подешен."
+
+#: airtime_mvc/application/controllers/LoginController.php:173
+msgid "There was a problem with the username or email address you entered."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ApiController.php:244
+#: airtime_mvc/application/controllers/ApiController.php:317
+#: airtime_mvc/application/controllers/ApiController.php:392
+#: airtime_mvc/application/controllers/ApiController.php:435
+#: airtime_mvc/application/controllers/ApiController.php:474
+#: airtime_mvc/application/controllers/ApiController.php:507
+msgid "You are not allowed to access this resource. "
+msgstr "Не смеш да приступите овог извора."
+
+#: airtime_mvc/application/controllers/ApiController.php:698
+#: airtime_mvc/application/controllers/ApiController.php:718
+#: airtime_mvc/application/controllers/ApiController.php:730
+#, php-format
+msgid "File does not exist in %s"
+msgstr ""
+
+#: airtime_mvc/application/controllers/ApiController.php:781
+msgid "Bad request. no 'mode' parameter passed."
+msgstr "Неисправан захтев."
+
+#: airtime_mvc/application/controllers/ApiController.php:791
+msgid "Bad request. 'mode' parameter is invalid"
+msgstr "Неисправан захтев"
+
#: airtime_mvc/application/controllers/LocaleController.php:30
#: airtime_mvc/application/layouts/scripts/audio-player.phtml:5
msgid "Audio Player"
@@ -2908,11 +559,6 @@ msgstr "Додавање %s Ставке"
msgid "You can only add tracks to smart blocks."
msgstr "Можеш да додаш само песме код паметних блокова."
-#: airtime_mvc/application/controllers/LocaleController.php:50
-#: airtime_mvc/application/controllers/PlaylistController.php:180
-msgid "You can only add tracks, smart blocks, and webstreams to playlists."
-msgstr "Можеш само да додаш песме, паметне блокова, и преносе код листе нумера."
-
#: airtime_mvc/application/controllers/LocaleController.php:53
msgid "Please select a cursor position on timeline."
msgstr "Молимо одабери место показивача на временској црти."
@@ -2953,11 +599,6 @@ msgstr ""
msgid "Click 'New' to create one."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:66
-#: airtime_mvc/application/controllers/LibraryController.php:123
-msgid "Edit Metadata"
-msgstr "Уреди Метаподатке"
-
#: airtime_mvc/application/controllers/LocaleController.php:67
msgid "Add to selected show"
msgstr "Додај у одабраној емисији"
@@ -2986,6 +627,12 @@ msgstr "Јеси ли сигуран да желиш да избришеш од
msgid "Scheduled"
msgstr "Заказана"
+#: airtime_mvc/application/controllers/LocaleController.php:74
+#: airtime_mvc/application/layouts/scripts/layout.phtml:78
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
+msgid "Tracks"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:75
#: airtime_mvc/application/layouts/scripts/layout.phtml:60
msgid "Playlist"
@@ -2995,18 +642,96 @@ msgstr ""
msgid "Bit Rate"
msgstr "Пренос Бита"
+#: airtime_mvc/application/controllers/LocaleController.php:80
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
+#: airtime_mvc/application/models/Block.php:1354
+msgid "BPM"
+msgstr "BPM"
+
+#: airtime_mvc/application/controllers/LocaleController.php:84
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
+#: airtime_mvc/application/models/Block.php:1361
+msgid "Encoded By"
+msgstr "Кодирано је по"
+
+#: airtime_mvc/application/controllers/LocaleController.php:89
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
+#: airtime_mvc/application/models/Block.php:1367
+msgid "Last Modified"
+msgstr "Последња Измена"
+
+#: airtime_mvc/application/controllers/LocaleController.php:90
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
+#: airtime_mvc/application/models/Block.php:1368
+msgid "Last Played"
+msgstr "Задњи Пут Одиграна"
+
+#: airtime_mvc/application/controllers/LocaleController.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
+#: airtime_mvc/application/models/Block.php:1370
+msgid "Mime"
+msgstr "Mime"
+
+#: airtime_mvc/application/controllers/LocaleController.php:94
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
+#: airtime_mvc/application/models/Block.php:1372
+msgid "Owner"
+msgstr "Власник"
+
+#: airtime_mvc/application/controllers/LocaleController.php:95
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
+#: airtime_mvc/application/models/Block.php:1373
+msgid "Replay Gain"
+msgstr "Replay Gain"
+
#: airtime_mvc/application/controllers/LocaleController.php:96
msgid "Sample Rate"
msgstr "Узорак Стопа"
+#: airtime_mvc/application/controllers/LocaleController.php:97
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
+#: airtime_mvc/application/models/Block.php:1376
+msgid "Track Number"
+msgstr "Број Песма"
+
+#: airtime_mvc/application/controllers/LocaleController.php:98
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
+#: airtime_mvc/application/models/Block.php:1377
+msgid "Uploaded"
+msgstr "Додата"
+
+#: airtime_mvc/application/controllers/LocaleController.php:99
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
+#: airtime_mvc/application/models/Block.php:1378
+msgid "Website"
+msgstr "Веб страница"
+
#: airtime_mvc/application/controllers/LocaleController.php:101
msgid "Loading..."
msgstr "Учитавање..."
+#: airtime_mvc/application/controllers/LocaleController.php:102
+#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
+msgid "All"
+msgstr "Све"
+
#: airtime_mvc/application/controllers/LocaleController.php:103
msgid "Files"
msgstr "Датотеке"
+#: airtime_mvc/application/controllers/LocaleController.php:104
+#: airtime_mvc/application/layouts/scripts/layout.phtml:80
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
+msgid "Playlists"
+msgstr "Листе песама"
+
+#: airtime_mvc/application/controllers/LocaleController.php:105
+#: airtime_mvc/application/layouts/scripts/layout.phtml:82
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
+msgid "Smart Blocks"
+msgstr "Smart Block-ови"
+
#: airtime_mvc/application/controllers/LocaleController.php:106
msgid "Web Streams"
msgstr "Преноси"
@@ -3151,6 +876,74 @@ msgstr "Smart block је сачуван"
msgid "Processing..."
msgstr "Обрада..."
+#: airtime_mvc/application/controllers/LocaleController.php:151
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
+#: airtime_mvc/application/models/Block.php:1383
+msgid "Select modifier"
+msgstr "Одабери модификатор"
+
+#: airtime_mvc/application/controllers/LocaleController.php:152
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
+#: airtime_mvc/application/models/Block.php:1384
+msgid "contains"
+msgstr "садржи"
+
+#: airtime_mvc/application/controllers/LocaleController.php:153
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
+#: airtime_mvc/application/models/Block.php:1385
+msgid "does not contain"
+msgstr "не садржи"
+
+#: airtime_mvc/application/controllers/LocaleController.php:154
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
+#: airtime_mvc/application/models/Block.php:1386
+#: airtime_mvc/application/models/Block.php:1390
+msgid "is"
+msgstr "је"
+
+#: airtime_mvc/application/controllers/LocaleController.php:155
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
+#: airtime_mvc/application/models/Block.php:1387
+#: airtime_mvc/application/models/Block.php:1391
+msgid "is not"
+msgstr "није"
+
+#: airtime_mvc/application/controllers/LocaleController.php:156
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
+#: airtime_mvc/application/models/Block.php:1388
+msgid "starts with"
+msgstr "почиње се са"
+
+#: airtime_mvc/application/controllers/LocaleController.php:157
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
+#: airtime_mvc/application/models/Block.php:1389
+msgid "ends with"
+msgstr "завршава се са"
+
+#: airtime_mvc/application/controllers/LocaleController.php:158
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
+#: airtime_mvc/application/models/Block.php:1392
+msgid "is greater than"
+msgstr "је већи од"
+
+#: airtime_mvc/application/controllers/LocaleController.php:159
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
+#: airtime_mvc/application/models/Block.php:1393
+msgid "is less than"
+msgstr "је мањи од"
+
+#: airtime_mvc/application/controllers/LocaleController.php:160
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
+#: airtime_mvc/application/models/Block.php:1394
+msgid "is in the range"
+msgstr "је у опсегу"
+
#: airtime_mvc/application/controllers/LocaleController.php:162
msgid "Choose Storage Folder"
msgstr "Одабери Мапу за Складиштење"
@@ -3167,6 +960,11 @@ msgstr ""
"Јеси ли сигуран да желиш да промениш мапу за складиштење?\n"
"То ће да уклони датотеке из твоје библиотеке!"
+#: airtime_mvc/application/controllers/LocaleController.php:166
+#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
+msgid "Manage Media Folders"
+msgstr "Управљање Медијске Мапе"
+
#: airtime_mvc/application/controllers/LocaleController.php:167
msgid "Are you sure you want to remove the watched folder?"
msgstr "Јеси ли сигуран да желиш да уклониш надзорску мапу?"
@@ -3188,6 +986,11 @@ msgstr "Прикључен је на серверу"
msgid "The stream is disabled"
msgstr "Пренос је онемогућен"
+#: airtime_mvc/application/controllers/LocaleController.php:173
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
+msgid "Getting information from the server..."
+msgstr "Добијање информација са сервера..."
+
#: airtime_mvc/application/controllers/LocaleController.php:174
msgid "Can not connect to the streaming server"
msgstr "Не може да се повеже на серверу"
@@ -3415,6 +1218,76 @@ msgstr ""
msgid "Month"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:249
+#: airtime_mvc/application/forms/GeneralPreferences.php:158
+msgid "Sunday"
+msgstr "Недеља"
+
+#: airtime_mvc/application/controllers/LocaleController.php:250
+#: airtime_mvc/application/forms/GeneralPreferences.php:159
+msgid "Monday"
+msgstr "Понедељак"
+
+#: airtime_mvc/application/controllers/LocaleController.php:251
+#: airtime_mvc/application/forms/GeneralPreferences.php:160
+msgid "Tuesday"
+msgstr "Уторак"
+
+#: airtime_mvc/application/controllers/LocaleController.php:252
+#: airtime_mvc/application/forms/GeneralPreferences.php:161
+msgid "Wednesday"
+msgstr "Среда"
+
+#: airtime_mvc/application/controllers/LocaleController.php:253
+#: airtime_mvc/application/forms/GeneralPreferences.php:162
+msgid "Thursday"
+msgstr "Четвртак"
+
+#: airtime_mvc/application/controllers/LocaleController.php:254
+#: airtime_mvc/application/forms/GeneralPreferences.php:163
+msgid "Friday"
+msgstr "Петак"
+
+#: airtime_mvc/application/controllers/LocaleController.php:255
+#: airtime_mvc/application/forms/GeneralPreferences.php:164
+msgid "Saturday"
+msgstr "Субота"
+
+#: airtime_mvc/application/controllers/LocaleController.php:256
+#: airtime_mvc/application/forms/AddShowRepeats.php:35
+msgid "Sun"
+msgstr "Нед"
+
+#: airtime_mvc/application/controllers/LocaleController.php:257
+#: airtime_mvc/application/forms/AddShowRepeats.php:36
+msgid "Mon"
+msgstr "Пон"
+
+#: airtime_mvc/application/controllers/LocaleController.php:258
+#: airtime_mvc/application/forms/AddShowRepeats.php:37
+msgid "Tue"
+msgstr "Уто"
+
+#: airtime_mvc/application/controllers/LocaleController.php:259
+#: airtime_mvc/application/forms/AddShowRepeats.php:38
+msgid "Wed"
+msgstr "Сре"
+
+#: airtime_mvc/application/controllers/LocaleController.php:260
+#: airtime_mvc/application/forms/AddShowRepeats.php:39
+msgid "Thu"
+msgstr "Чет"
+
+#: airtime_mvc/application/controllers/LocaleController.php:261
+#: airtime_mvc/application/forms/AddShowRepeats.php:40
+msgid "Fri"
+msgstr "Пет"
+
+#: airtime_mvc/application/controllers/LocaleController.php:262
+#: airtime_mvc/application/forms/AddShowRepeats.php:41
+msgid "Sat"
+msgstr "Суб"
+
#: airtime_mvc/application/controllers/LocaleController.php:263
msgid "Shows longer than their scheduled time will be cut off by a following show."
msgstr "Емисија дуже од предвиђеног времена ће да буде одсечен."
@@ -3424,7 +1297,7 @@ msgid "Cancel Current Show?"
msgstr "Откажи Тренутног Програма?"
#: airtime_mvc/application/controllers/LocaleController.php:265
-#: airtime_mvc/application/controllers/LocaleController.php:309
+#: airtime_mvc/application/controllers/LocaleController.php:312
msgid "Stop recording current show?"
msgstr "Заустављање снимање емисије?"
@@ -3444,6 +1317,11 @@ msgstr "Уклониш све садржаје?"
msgid "Delete selected item(s)?"
msgstr "Обришеш ли одабрану (е) ставу (е)?"
+#: airtime_mvc/application/controllers/LocaleController.php:273
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
+msgid "Start"
+msgstr "Почетак"
+
#: airtime_mvc/application/controllers/LocaleController.php:274
msgid "End"
msgstr "Завршетак"
@@ -3452,580 +1330,467 @@ msgstr "Завршетак"
msgid "Duration"
msgstr "Трајање"
-#: airtime_mvc/application/controllers/LocaleController.php:283
+#: airtime_mvc/application/controllers/LocaleController.php:276
+msgid "Filtering out "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:277
+msgid " of "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:278
+msgid " records"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/layouts/scripts/layout.phtml:140
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
+#: airtime_mvc/application/models/Block.php:1358
+msgid "Cue In"
+msgstr "Cue In"
+
+#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/layouts/scripts/layout.phtml:147
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
+#: airtime_mvc/application/models/Block.php:1359
+msgid "Cue Out"
+msgstr "Cue Out"
+
+#: airtime_mvc/application/controllers/LocaleController.php:286
#: airtime_mvc/application/layouts/scripts/layout.phtml:167
msgid "Fade In"
msgstr "Одтамњење"
-#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/controllers/LocaleController.php:287
#: airtime_mvc/application/layouts/scripts/layout.phtml:168
msgid "Fade Out"
msgstr "Затамњење"
-#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/controllers/LocaleController.php:288
msgid "Show Empty"
msgstr "Празна Емисија"
-#: airtime_mvc/application/controllers/LocaleController.php:286
+#: airtime_mvc/application/controllers/LocaleController.php:289
msgid "Recording From Line In"
msgstr "Снимање са Line In"
-#: airtime_mvc/application/controllers/LocaleController.php:287
+#: airtime_mvc/application/controllers/LocaleController.php:290
msgid "Track preview"
msgstr "Преглед песма"
-#: airtime_mvc/application/controllers/LocaleController.php:291
+#: airtime_mvc/application/controllers/LocaleController.php:294
msgid "Cannot schedule outside a show."
msgstr "Не може да се заказује ван емисије."
-#: airtime_mvc/application/controllers/LocaleController.php:292
+#: airtime_mvc/application/controllers/LocaleController.php:295
msgid "Moving 1 Item"
msgstr "Премештање 1 Ставка"
-#: airtime_mvc/application/controllers/LocaleController.php:293
+#: airtime_mvc/application/controllers/LocaleController.php:296
#, php-format
msgid "Moving %s Items"
msgstr "Премештање %s Ставке"
-#: airtime_mvc/application/controllers/LocaleController.php:296
+#: airtime_mvc/application/controllers/LocaleController.php:297
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
+#: airtime_mvc/application/forms/Preferences.php:40
+#: airtime_mvc/application/forms/EditHistory.php:131
+#: airtime_mvc/application/forms/AddUser.php:110
+#: airtime_mvc/application/forms/PasswordChange.php:43
+#: airtime_mvc/application/forms/SupportSettings.php:131
+msgid "Save"
+msgstr "Сачувај"
+
+#: airtime_mvc/application/controllers/LocaleController.php:298
+#: airtime_mvc/application/controllers/LocaleController.php:321
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
+#: airtime_mvc/application/forms/EditHistory.php:141
+#: airtime_mvc/application/forms/EditAudioMD.php:186
+msgid "Cancel"
+msgstr "Одустани"
+
+#: airtime_mvc/application/controllers/LocaleController.php:299
msgid "Fade Editor"
msgstr "Уређивач за (Од-/За-)тамњивање"
-#: airtime_mvc/application/controllers/LocaleController.php:297
+#: airtime_mvc/application/controllers/LocaleController.php:300
msgid "Cue Editor"
msgstr "Cue Уређивач"
-#: airtime_mvc/application/controllers/LocaleController.php:298
+#: airtime_mvc/application/controllers/LocaleController.php:301
msgid "Waveform features are available in a browser supporting the Web Audio API"
msgstr "Таласни облик функције су доступне у споредну Web Audio API прегледачу"
-#: airtime_mvc/application/controllers/LocaleController.php:301
+#: airtime_mvc/application/controllers/LocaleController.php:304
msgid "Select all"
msgstr "Одабери све"
-#: airtime_mvc/application/controllers/LocaleController.php:302
+#: airtime_mvc/application/controllers/LocaleController.php:305
msgid "Select none"
msgstr "Не одабери ништа"
-#: airtime_mvc/application/controllers/LocaleController.php:303
+#: airtime_mvc/application/controllers/LocaleController.php:306
msgid "Trim overbooked shows"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:304
+#: airtime_mvc/application/controllers/LocaleController.php:307
msgid "Remove selected scheduled items"
msgstr "Уклони одабране заказане ставке"
-#: airtime_mvc/application/controllers/LocaleController.php:305
+#: airtime_mvc/application/controllers/LocaleController.php:308
msgid "Jump to the current playing track"
msgstr "Скочи на тренутну свирану песму"
-#: airtime_mvc/application/controllers/LocaleController.php:306
+#: airtime_mvc/application/controllers/LocaleController.php:309
msgid "Cancel current show"
msgstr "Поништи тренутну емисију"
-#: airtime_mvc/application/controllers/LocaleController.php:311
+#: airtime_mvc/application/controllers/LocaleController.php:314
msgid "Open library to add or remove content"
msgstr "Отвори библиотеку за додавање или уклањање садржаја"
-#: airtime_mvc/application/controllers/LocaleController.php:312
+#: airtime_mvc/application/controllers/LocaleController.php:315
msgid "Add / Remove Content"
msgstr "Додај / Уклони Садржај"
#: airtime_mvc/application/controllers/LocaleController.php:317
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
+msgid "in use"
+msgstr "у употреби"
+
+#: airtime_mvc/application/controllers/LocaleController.php:318
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
+msgid "Disk"
+msgstr "Диск"
+
+#: airtime_mvc/application/controllers/LocaleController.php:320
msgid "Look in"
msgstr "Погледај унутра"
-#: airtime_mvc/application/controllers/LocaleController.php:319
+#: airtime_mvc/application/controllers/LocaleController.php:322
msgid "Open"
msgstr "Отвори"
+#: airtime_mvc/application/controllers/LocaleController.php:324
+#: airtime_mvc/application/forms/AddUser.php:102
+msgid "Admin"
+msgstr "Администратор"
+
#: airtime_mvc/application/controllers/LocaleController.php:325
+#: airtime_mvc/application/forms/AddUser.php:100
+msgid "DJ"
+msgstr "Диск-џокеј"
+
+#: airtime_mvc/application/controllers/LocaleController.php:326
+#: airtime_mvc/application/forms/AddUser.php:101
+msgid "Program Manager"
+msgstr "Водитељ Програма"
+
+#: airtime_mvc/application/controllers/LocaleController.php:327
+#: airtime_mvc/application/forms/AddUser.php:99
+msgid "Guest"
+msgstr "Гост"
+
+#: airtime_mvc/application/controllers/LocaleController.php:328
msgid "Guests can do the following:"
msgstr "Гости могу да уради следеће:"
-#: airtime_mvc/application/controllers/LocaleController.php:326
+#: airtime_mvc/application/controllers/LocaleController.php:329
msgid "View schedule"
msgstr "Преглед распореда"
-#: airtime_mvc/application/controllers/LocaleController.php:327
+#: airtime_mvc/application/controllers/LocaleController.php:330
msgid "View show content"
msgstr "Преглед садржај емисије"
-#: airtime_mvc/application/controllers/LocaleController.php:328
+#: airtime_mvc/application/controllers/LocaleController.php:331
msgid "DJs can do the following:"
msgstr "Диск-џокеји могу да уради следеће:"
-#: airtime_mvc/application/controllers/LocaleController.php:329
+#: airtime_mvc/application/controllers/LocaleController.php:332
msgid "Manage assigned show content"
msgstr "Управљање додељен садржај емисије"
-#: airtime_mvc/application/controllers/LocaleController.php:330
+#: airtime_mvc/application/controllers/LocaleController.php:333
msgid "Import media files"
msgstr "Увоз медијске фајлове"
-#: airtime_mvc/application/controllers/LocaleController.php:331
+#: airtime_mvc/application/controllers/LocaleController.php:334
msgid "Create playlists, smart blocks, and webstreams"
msgstr "Изради листе песама, паметне блокове, и преносе"
-#: airtime_mvc/application/controllers/LocaleController.php:332
+#: airtime_mvc/application/controllers/LocaleController.php:335
msgid "Manage their own library content"
msgstr "Управљање своје библиотечког садржаја"
-#: airtime_mvc/application/controllers/LocaleController.php:333
+#: airtime_mvc/application/controllers/LocaleController.php:336
msgid "Progam Managers can do the following:"
msgstr "Менаџер програма могу да уради следеће:"
-#: airtime_mvc/application/controllers/LocaleController.php:334
+#: airtime_mvc/application/controllers/LocaleController.php:337
msgid "View and manage show content"
msgstr "Приказ и управљање садржај емисије"
-#: airtime_mvc/application/controllers/LocaleController.php:335
+#: airtime_mvc/application/controllers/LocaleController.php:338
msgid "Schedule shows"
msgstr "Распоредне емисије"
-#: airtime_mvc/application/controllers/LocaleController.php:336
+#: airtime_mvc/application/controllers/LocaleController.php:339
msgid "Manage all library content"
msgstr "Управљање све садржаје библиотека"
-#: airtime_mvc/application/controllers/LocaleController.php:337
+#: airtime_mvc/application/controllers/LocaleController.php:340
msgid "Admins can do the following:"
msgstr "Администратори могу да уради следеће:"
-#: airtime_mvc/application/controllers/LocaleController.php:338
+#: airtime_mvc/application/controllers/LocaleController.php:341
msgid "Manage preferences"
msgstr "Управљање подешавања"
-#: airtime_mvc/application/controllers/LocaleController.php:339
+#: airtime_mvc/application/controllers/LocaleController.php:342
msgid "Manage users"
msgstr "Управљање кориснике"
-#: airtime_mvc/application/controllers/LocaleController.php:340
+#: airtime_mvc/application/controllers/LocaleController.php:343
msgid "Manage watched folders"
msgstr "Управљање надзираних датотеке"
-#: airtime_mvc/application/controllers/LocaleController.php:342
+#: airtime_mvc/application/controllers/LocaleController.php:344
+#: airtime_mvc/application/forms/RegisterAirtime.php:116
+#: airtime_mvc/application/forms/SupportSettings.php:98
+msgid "Send support feedback"
+msgstr "Пошаљи повратне информације"
+
+#: airtime_mvc/application/controllers/LocaleController.php:345
msgid "View system status"
msgstr "Преглед стања система"
-#: airtime_mvc/application/controllers/LocaleController.php:343
+#: airtime_mvc/application/controllers/LocaleController.php:346
msgid "Access playout history"
msgstr "Приступ за историју пуштених песама"
-#: airtime_mvc/application/controllers/LocaleController.php:344
+#: airtime_mvc/application/controllers/LocaleController.php:347
msgid "View listener stats"
msgstr "Погледај статистику слушаоце"
-#: airtime_mvc/application/controllers/LocaleController.php:346
+#: airtime_mvc/application/controllers/LocaleController.php:349
msgid "Show / hide columns"
msgstr "Покажи/сакриј колоне"
-#: airtime_mvc/application/controllers/LocaleController.php:348
+#: airtime_mvc/application/controllers/LocaleController.php:351
msgid "From {from} to {to}"
msgstr "Од {from} до {to}"
-#: airtime_mvc/application/controllers/LocaleController.php:349
+#: airtime_mvc/application/controllers/LocaleController.php:352
msgid "kbps"
msgstr "kbps"
-#: airtime_mvc/application/controllers/LocaleController.php:350
+#: airtime_mvc/application/controllers/LocaleController.php:353
msgid "yyyy-mm-dd"
msgstr "гггг-мм-дд"
-#: airtime_mvc/application/controllers/LocaleController.php:351
+#: airtime_mvc/application/controllers/LocaleController.php:354
msgid "hh:mm:ss.t"
msgstr "hh:mm:ss.t"
-#: airtime_mvc/application/controllers/LocaleController.php:352
+#: airtime_mvc/application/controllers/LocaleController.php:355
msgid "kHz"
msgstr "kHz"
-#: airtime_mvc/application/controllers/LocaleController.php:355
+#: airtime_mvc/application/controllers/LocaleController.php:358
msgid "Su"
msgstr "Не"
-#: airtime_mvc/application/controllers/LocaleController.php:356
+#: airtime_mvc/application/controllers/LocaleController.php:359
msgid "Mo"
msgstr "По"
-#: airtime_mvc/application/controllers/LocaleController.php:357
+#: airtime_mvc/application/controllers/LocaleController.php:360
msgid "Tu"
msgstr "Ут"
-#: airtime_mvc/application/controllers/LocaleController.php:358
+#: airtime_mvc/application/controllers/LocaleController.php:361
msgid "We"
msgstr "Ср"
-#: airtime_mvc/application/controllers/LocaleController.php:359
+#: airtime_mvc/application/controllers/LocaleController.php:362
msgid "Th"
msgstr "Че"
-#: airtime_mvc/application/controllers/LocaleController.php:360
+#: airtime_mvc/application/controllers/LocaleController.php:363
msgid "Fr"
msgstr "Пе"
-#: airtime_mvc/application/controllers/LocaleController.php:361
+#: airtime_mvc/application/controllers/LocaleController.php:364
msgid "Sa"
msgstr "Су"
-#: airtime_mvc/application/controllers/LocaleController.php:364
+#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
+msgid "Close"
+msgstr "Затвори"
+
+#: airtime_mvc/application/controllers/LocaleController.php:367
msgid "Hour"
msgstr "Сат"
-#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:368
msgid "Minute"
msgstr "Минута"
-#: airtime_mvc/application/controllers/LocaleController.php:366
+#: airtime_mvc/application/controllers/LocaleController.php:369
msgid "Done"
msgstr "Готово"
-#: airtime_mvc/application/controllers/LocaleController.php:369
+#: airtime_mvc/application/controllers/LocaleController.php:372
msgid "Select files"
msgstr "Изабери датотеке"
-#: airtime_mvc/application/controllers/LocaleController.php:370
-#: airtime_mvc/application/controllers/LocaleController.php:371
+#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:374
msgid "Add files to the upload queue and click the start button."
msgstr "Додај датотеке и кликни на 'Покрени Upload' дугме."
-#: airtime_mvc/application/controllers/LocaleController.php:372
-#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:376
msgid "Status"
msgstr "Стање"
-#: airtime_mvc/application/controllers/LocaleController.php:374
+#: airtime_mvc/application/controllers/LocaleController.php:377
msgid "Add Files"
msgstr "Додај Датотеке"
-#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:378
msgid "Stop Upload"
msgstr "Заустави Upload"
-#: airtime_mvc/application/controllers/LocaleController.php:376
+#: airtime_mvc/application/controllers/LocaleController.php:379
msgid "Start upload"
msgstr "Покрени upload"
-#: airtime_mvc/application/controllers/LocaleController.php:377
+#: airtime_mvc/application/controllers/LocaleController.php:380
msgid "Add files"
msgstr "Додај датотеке"
-#: airtime_mvc/application/controllers/LocaleController.php:378
+#: airtime_mvc/application/controllers/LocaleController.php:381
#, php-format
msgid "Uploaded %d/%d files"
msgstr "Послата %d/%d датотека"
-#: airtime_mvc/application/controllers/LocaleController.php:379
+#: airtime_mvc/application/controllers/LocaleController.php:382
msgid "N/A"
msgstr "N/A"
-#: airtime_mvc/application/controllers/LocaleController.php:380
+#: airtime_mvc/application/controllers/LocaleController.php:383
msgid "Drag files here."
msgstr "Повуци датотеке овде."
-#: airtime_mvc/application/controllers/LocaleController.php:381
+#: airtime_mvc/application/controllers/LocaleController.php:384
msgid "File extension error."
msgstr "Грешка (ознаку типа датотеке)."
-#: airtime_mvc/application/controllers/LocaleController.php:382
+#: airtime_mvc/application/controllers/LocaleController.php:385
msgid "File size error."
msgstr "Грешка величине датотеке."
-#: airtime_mvc/application/controllers/LocaleController.php:383
+#: airtime_mvc/application/controllers/LocaleController.php:386
msgid "File count error."
msgstr "Грешка број датотеке."
-#: airtime_mvc/application/controllers/LocaleController.php:384
+#: airtime_mvc/application/controllers/LocaleController.php:387
msgid "Init error."
msgstr "Init грешка."
-#: airtime_mvc/application/controllers/LocaleController.php:385
+#: airtime_mvc/application/controllers/LocaleController.php:388
msgid "HTTP Error."
msgstr "HTTP Грешка."
-#: airtime_mvc/application/controllers/LocaleController.php:386
+#: airtime_mvc/application/controllers/LocaleController.php:389
msgid "Security error."
msgstr "Безбедносна грешка."
-#: airtime_mvc/application/controllers/LocaleController.php:387
+#: airtime_mvc/application/controllers/LocaleController.php:390
msgid "Generic error."
msgstr "Генеричка грешка."
-#: airtime_mvc/application/controllers/LocaleController.php:388
+#: airtime_mvc/application/controllers/LocaleController.php:391
msgid "IO error."
msgstr "IO грешка."
-#: airtime_mvc/application/controllers/LocaleController.php:389
+#: airtime_mvc/application/controllers/LocaleController.php:392
#, php-format
msgid "File: %s"
msgstr "Фајл: %s"
-#: airtime_mvc/application/controllers/LocaleController.php:391
+#: airtime_mvc/application/controllers/LocaleController.php:394
#, php-format
msgid "%d files queued"
msgstr "%d датотека на чекању"
-#: airtime_mvc/application/controllers/LocaleController.php:392
+#: airtime_mvc/application/controllers/LocaleController.php:395
msgid "File: %f, size: %s, max file size: %m"
msgstr "Датотека: %f, величина: %s, макс величина датотеке: %m"
-#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/controllers/LocaleController.php:396
msgid "Upload URL might be wrong or doesn't exist"
msgstr "Преносни URL може да буде у криву или не постоји"
-#: airtime_mvc/application/controllers/LocaleController.php:394
+#: airtime_mvc/application/controllers/LocaleController.php:397
msgid "Error: File too large: "
msgstr "Грешка: Датотека је превелика:"
-#: airtime_mvc/application/controllers/LocaleController.php:395
+#: airtime_mvc/application/controllers/LocaleController.php:398
msgid "Error: Invalid file extension: "
msgstr "Грешка: Неважећи ознак типа датотека:"
-#: airtime_mvc/application/controllers/LocaleController.php:398
+#: airtime_mvc/application/controllers/LocaleController.php:400
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
+msgid "Set Default"
+msgstr "Постави Подразумевано"
+
+#: airtime_mvc/application/controllers/LocaleController.php:401
msgid "Create Entry"
msgstr "Стварање Уноса"
-#: airtime_mvc/application/controllers/LocaleController.php:399
+#: airtime_mvc/application/controllers/LocaleController.php:402
msgid "Edit History Record"
msgstr "Уреди Историјат Уписа"
-#: airtime_mvc/application/controllers/LocaleController.php:402
+#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
+#: airtime_mvc/application/forms/EditHistoryItem.php:57
+msgid "No Show"
+msgstr "Нема Програма"
+
+#: airtime_mvc/application/controllers/LocaleController.php:405
#, php-format
msgid "Copied %s row%s to the clipboard"
msgstr "%s ред%s је копиран у међумеморију"
-#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/controllers/LocaleController.php:406
#, php-format
msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished."
msgstr "%sИспис поглед%sМолимо, користи прегледача штампање функцију за штампање ову табелу. Кад завршиш, притисни Escape."
-#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/controllers/LocaleController.php:407
msgid "New Show"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:405
+#: airtime_mvc/application/controllers/LocaleController.php:408
msgid "New Log Entry"
msgstr ""
-#: airtime_mvc/application/controllers/ScheduleController.php:389
-#, php-format
-msgid "Rebroadcast of show %s from %s at %s"
-msgstr "Реемитовање емисија %s од %s на %s"
-
-#: airtime_mvc/application/controllers/ScheduleController.php:712
-#: airtime_mvc/application/controllers/LibraryController.php:131
-msgid "Download"
-msgstr "Преузимање"
-
-#: airtime_mvc/application/controllers/ErrorController.php:78
-msgid "Page not found."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:87
-msgid "The requested action is not supported."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:98
-msgid "You do not have permission to access this resource."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:109
-msgid "An internal application error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ListenerstatController.php:51
-msgid "Please make sure admin user/password is correct on System->Streams page."
-msgstr "Молимо, провери да ли је исправан/на админ корисник/лозинка на страници Систем->Преноси."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:53
-#, php-format
-msgid "You are viewing an older version of %s"
-msgstr "Гледаш старију верзију %s"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:140
-msgid "You cannot add tracks to dynamic blocks."
-msgstr "Не можеш да додаш песме за динамичне блокове."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:147
-#: airtime_mvc/application/controllers/LibraryController.php:31
-#, php-format
-msgid "%s not found"
-msgstr "%s није пронађен"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:161
-#, php-format
-msgid "You don't have permission to delete selected %s(s)."
-msgstr "Немаш допуштење за брисање одабраног (е) %s."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:168
-#: airtime_mvc/application/controllers/LibraryController.php:40
-msgid "Something went wrong."
-msgstr "Нешто је пошло по криву."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:174
-msgid "You can only add tracks to smart block."
-msgstr "Можеш само песме да додаш за паметног блока."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:192
-msgid "Untitled Playlist"
-msgstr "Неименовани Списак Песама"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:194
-msgid "Untitled Smart Block"
-msgstr "Неименовани Smart Block"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:522
-msgid "Unknown Playlist"
-msgstr "Непознати Списак Песама"
-
-#: airtime_mvc/application/controllers/LoginController.php:43
-msgid "Please enter your username and password."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:93
-msgid "Wrong username or password provided. Please try again."
-msgstr "Погрешно корисничко име или лозинка. Молимо покушај поново."
-
-#: airtime_mvc/application/controllers/LoginController.php:167
-msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
-msgstr "Е-маил није могао да буде послат. Провери своје поставке сервера поште и провери се да је исправно подешен."
-
-#: airtime_mvc/application/controllers/LoginController.php:173
-msgid "There was a problem with the username or email address you entered."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:35
-#: airtime_mvc/application/controllers/DashboardController.php:84
-msgid "You don't have permission to disconnect source."
-msgstr "Немаш допуштење да искључиш извор."
-
-#: airtime_mvc/application/controllers/DashboardController.php:37
-#: airtime_mvc/application/controllers/DashboardController.php:86
-msgid "There is no source connected to this input."
-msgstr "Нема спојеног извора на овај улаз."
-
-#: airtime_mvc/application/controllers/DashboardController.php:81
-msgid "You don't have permission to switch source."
-msgstr "Немаш дозволу за промену извора."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:72
-msgid "Preferences updated."
-msgstr "Подешавања су ажуриране."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:115
-msgid "Support setting updated."
-msgstr "Подршка подешавања је ажурирана."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:123
-msgid "Support Feedback"
-msgstr "Повратне Информације"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:251
-msgid "Stream Setting Updated."
-msgstr "Пренос Подешавање је Ажурирано."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:342
-msgid "path should be specified"
-msgstr "пут би требао да буде специфициран"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:437
-msgid "Problem with Liquidsoap..."
-msgstr "Проблем са Liquidsoap..."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:493
-msgid "Request method not accepted"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:86
-msgid "User added successfully!"
-msgstr "Корисник је успешно додат!"
-
-#: airtime_mvc/application/controllers/UserController.php:88
-msgid "User updated successfully!"
-msgstr "Корисник је успешно ажуриран!"
-
-#: airtime_mvc/application/controllers/UserController.php:187
-msgid "Settings updated successfully!"
-msgstr "Подешавања су успешно ажуриране!"
-
-#: airtime_mvc/application/controllers/WebstreamController.php:28
-#: airtime_mvc/application/controllers/WebstreamController.php:32
-msgid "Untitled Webstream"
-msgstr "Неименовани Пренос"
-
-#: airtime_mvc/application/controllers/WebstreamController.php:150
-msgid "Webstream saved."
-msgstr "Пренос је сачуван."
-
-#: airtime_mvc/application/controllers/WebstreamController.php:158
-msgid "Invalid form values."
-msgstr "Неважећи вредности обрасца."
-
-#: airtime_mvc/application/controllers/LibraryController.php:95
-#: airtime_mvc/application/controllers/ShowbuilderController.php:136
-msgid "Preview"
-msgstr "Преглед"
-
-#: airtime_mvc/application/controllers/LibraryController.php:115
-#: airtime_mvc/application/controllers/LibraryController.php:177
-#: airtime_mvc/application/controllers/LibraryController.php:200
-msgid "Add to Playlist"
-msgstr "Додај на Списак Песама"
-
-#: airtime_mvc/application/controllers/LibraryController.php:117
-msgid "Add to Smart Block"
-msgstr "Додај у Smart Block"
-
-#: airtime_mvc/application/controllers/LibraryController.php:147
-msgid "View track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:148
-msgid "Remove track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:154
-#: airtime_mvc/application/controllers/LibraryController.php:159
-msgid "Upload track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:169
-msgid "Duplicate Playlist"
-msgstr "Удвостручавање"
-
-#: airtime_mvc/application/controllers/LibraryController.php:213
-msgid "No action available"
-msgstr "Нема доступних акција"
-
-#: airtime_mvc/application/controllers/LibraryController.php:233
-msgid "You don't have permission to delete selected items."
-msgstr "Немаш допуштење за брисање одабране ставке."
-
-#: airtime_mvc/application/controllers/LibraryController.php:279
-msgid "Could not delete file because it is scheduled in the future."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:282
-msgid "Could not delete file(s)."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:322
-#, php-format
-msgid "Copy of %s"
-msgstr "Копирање од %s"
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
-msgid ""
-"To configure and use the embeddable player you must:
\n"
-" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
-" 2. Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
-msgid ""
-"To use the embeddable weekly schedule widget you must:
\n"
-" Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
#: airtime_mvc/application/controllers/ShowbuilderController.php:138
msgid "Select cursor"
msgstr "Одабери показивач"
@@ -4038,39 +1803,78 @@ msgstr "Уклони показивач"
msgid "show does not exist"
msgstr "емисија не постоји"
-#: airtime_mvc/application/controllers/ApiController.php:79
-msgid "You are not allowed to access this resource."
-msgstr "Не смеш да приступиш овог извора."
-
-#: airtime_mvc/application/controllers/ApiController.php:244
-#: airtime_mvc/application/controllers/ApiController.php:317
-#: airtime_mvc/application/controllers/ApiController.php:392
-#: airtime_mvc/application/controllers/ApiController.php:435
-#: airtime_mvc/application/controllers/ApiController.php:474
-#: airtime_mvc/application/controllers/ApiController.php:507
-msgid "You are not allowed to access this resource. "
-msgstr "Не смеш да приступите овог извора."
-
-#: airtime_mvc/application/controllers/ApiController.php:698
-#: airtime_mvc/application/controllers/ApiController.php:718
-#: airtime_mvc/application/controllers/ApiController.php:730
+#: airtime_mvc/application/controllers/ScheduleController.php:389
#, php-format
-msgid "File does not exist in %s"
+msgid "Rebroadcast of show %s from %s at %s"
+msgstr "Реемитовање емисија %s од %s на %s"
+
+#: airtime_mvc/application/common/UsabilityHints.php:55
+msgid "Upload some tracks below to add them to your library!"
msgstr ""
-#: airtime_mvc/application/controllers/ApiController.php:781
-msgid "Bad request. no 'mode' parameter passed."
-msgstr "Неисправан захтев."
-
-#: airtime_mvc/application/controllers/ApiController.php:791
-msgid "Bad request. 'mode' parameter is invalid"
-msgstr "Неисправан захтев"
-
-#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#: airtime_mvc/application/common/UsabilityHints.php:57
#, php-format
-msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
msgstr ""
+#: airtime_mvc/application/common/UsabilityHints.php:63
+msgid "Click the 'New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:65
+#, php-format
+msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:73
+msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:75
+#, php-format
+msgid ""
+"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
+" %sCreate an unlinked show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:80
+msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:82
+#, php-format
+msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:89
+msgid "Click on the show starting next and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:91
+#, php-format
+msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/DateHelper.php:213
+#, php-format
+msgid "The year %s must be within the range of 1753 - 9999"
+msgstr "Година %s мора да буде у распону између 1753 - 9999"
+
+#: airtime_mvc/application/common/DateHelper.php:216
+#, php-format
+msgid "%s-%s-%s is not a valid date"
+msgstr "%s-%s-%s није исправан датум"
+
+#: airtime_mvc/application/common/DateHelper.php:240
+#, php-format
+msgid "%s:%s:%s is not a valid time"
+msgstr "%s:%s:%s није исправан датум"
+
+#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
+msgid "Live stream"
+msgstr "Пренос уживо"
+
#: airtime_mvc/application/layouts/scripts/layout.phtml:63
msgid "Smart Block"
msgstr ""
@@ -4083,6 +1887,17 @@ msgstr ""
msgid "Upload"
msgstr ""
+#: airtime_mvc/application/layouts/scripts/layout.phtml:76
+#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
+msgid "Dashboard"
+msgstr ""
+
+#: airtime_mvc/application/layouts/scripts/layout.phtml:84
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
+msgid "Webstreams"
+msgstr ""
+
#: airtime_mvc/application/layouts/scripts/layout.phtml:135
#: airtime_mvc/application/layouts/scripts/layout.phtml:161
msgid "Play"
@@ -4105,401 +1920,2128 @@ msgstr "Подеси Cue Out"
msgid "Cursor"
msgstr "Показивач"
-#~ msgid "Show:"
-#~ msgstr "Програм:"
+#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#, php-format
+msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
+msgid "Drop files here or click to browse your computer."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
+msgid "Failed"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
+msgid "Pending"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
+msgid "Recent Uploads"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
+msgid "Share"
+msgstr "Подели"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
+msgid "Select stream:"
+msgstr "Преноси:"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
+msgid "mute"
+msgstr "mute"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
+msgid "unmute"
+msgstr "укључи"
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
+msgid "About"
+msgstr "О пројекту"
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
+#, php-format
+msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
+#, php-format
+msgid "%1$s %2$s is distributed under the %3$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
+#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
+#, php-format
+msgid "Welcome to %s!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
+#, php-format
+msgid "Here's how you can get started using %s to automate your broadcasts: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
+msgid "Upload audio tracks"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
+msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
+msgid "Schedule a show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
+msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
+msgid "Add tracks to your show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
+msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
+msgid "Now you're good to go!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
+#, php-format
+msgid "For more detailed help, read the %suser manual%s."
+msgstr "За детаљну помоћ, прочитај %sупутство за коришћење%s."
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
+#: airtime_mvc/application/configs/navigation.php:40
+msgid "Weekly Schedule"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
+#: airtime_mvc/application/forms/Player.php:77
+msgid "Preview:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
+#: airtime_mvc/application/configs/navigation.php:34
+msgid "Player"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:97
+msgid "Playout History"
+msgstr "Историја Пуштених Песама"
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
+msgid "Log Sheet"
+msgstr "Списак Пријава"
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
+msgid "File Summary"
+msgstr "Датотечни Извештај"
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
+msgid "Show Summary"
+msgstr "Програмски Извештај"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
+msgid "Expand Static Block"
+msgstr "Проширење Статичког Bloка"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
+msgid "Expand Dynamic Block"
+msgstr "Проширење Динамичког Блока"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
+msgid "Choose some search criteria above and click Generate to create this playlist."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
+msgid "A track list will be generated when you schedule this smart block into a show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
+msgid "Drag tracks here from your library to add them to the playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
+msgid "Editing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:26
+msgid "Name:"
+msgstr "Назив:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
+#: airtime_mvc/application/forms/AddShowWhat.php:54
+msgid "Description:"
+msgstr "Опис:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
+#: airtime_mvc/application/forms/AddShowWhen.php:89
+msgid "Duration:"
+msgstr "Трајање:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
+msgid "Toggle Details"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+msgid "Shuffle playlist"
+msgstr "Случајни избор списак песама"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
+msgid "Shuffle"
+msgstr "Мешање"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
+msgid "Playlist crossfade"
+msgstr "Крижно утишавање списак песама"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+msgid "Empty playlist content"
+msgstr "Празан садржај списак песама"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Clear"
+msgstr "Очисти"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+msgid "Fade in: "
+msgstr "Одтамњење:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "Fade out: "
+msgstr "Затамњење:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+msgid "Save playlist"
+msgstr "Сачувај списак песама"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
+msgid "No open playlist"
+msgstr "Нема отворених списак песама"
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
+msgid "Show Waveform"
+msgstr "Емисијски звучни таласни облик"
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "(ss.t)"
+msgstr "(ss.t)"
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Remove all content from this smart block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
+msgid "No smart block currently open"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+msgid "Cue In: "
+msgstr "Cue In: "
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "(hh:mm:ss.t)"
+msgstr "(hh:mm:ss.t)"
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "Cue Out: "
+msgstr "Cue Out: "
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
+msgid "Original Length:"
+msgstr "Оригинална Дужина:"
+
+#: airtime_mvc/application/views/scripts/preference/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:56
+msgid "General"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
+msgid "Stream Settings"
+msgstr "Преносна Подешавања"
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
+msgid "Global"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
+msgid "dB"
+msgstr "dB"
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
+msgid "Output Streams"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:3
+#: airtime_mvc/application/forms/Login.php:83
+msgid "Login"
+msgstr "Пријава"
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:7
+#, php-format
+msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
+msgid "Email Sent!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
+msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
+msgid "Back"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
+msgid "Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
+msgid "New password"
+msgstr "Нова лозинка"
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
+msgid "Please enter and confirm your new password in the fields below."
+msgstr "Унеси и потврди своју нову лозинку у поља доле."
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
+msgid "Manage Users"
+msgstr "Управљање Кориснике"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
+msgid "New User"
+msgstr "Нови Корисник"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
+msgid "id"
+msgstr "id"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
+#: airtime_mvc/application/forms/PasswordRestore.php:25
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
+msgid "Username"
+msgstr "Корисничко име"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
+msgid "First Name"
+msgstr "Име"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
+msgid "Last Name"
+msgstr "Презиме"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
+msgid "User Type"
+msgstr "Врста Корисника"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
+#, php-format
+msgid "Super Admin details can be changed in your Billing Settings."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
+msgid "Find Shows"
+msgstr "Пронађи Емисије"
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
+msgid "Choose Show Instance"
+msgstr "Одабери Емисијску Степену"
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
+msgid "Find"
+msgstr "Пронађи"
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
+#: airtime_mvc/application/configs/navigation.php:61
+msgid "My Profile"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
+#, php-format
+msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
+msgid "Repeat Days:"
+msgstr "Поновљени Дани:"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
+#: airtime_mvc/application/forms/GeneralPreferences.php:53
+#: airtime_mvc/application/forms/AddShowStyle.php:64
+msgid "Remove"
+msgstr "Уклони"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
+msgid "Add"
+msgstr "Додај"
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
+msgid "Show Source"
+msgstr "Emisijski Izvor"
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
+msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
+msgid "Register Airtime"
+msgstr "Airtime Регистар"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
+#, php-format
+msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
+#, php-format
+msgid "Click the box below to promote your station on %s."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
+msgid "(Required)"
+msgstr "(Обавезно)"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
+msgid "(for verification purposes only, will not be published)"
+msgstr "(служи само за проверу, неће да буде објављена)"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
+#: airtime_mvc/application/forms/GeneralPreferences.php:43
+msgid "Note: Anything larger than 600x600 will be resized."
+msgstr "Напомена: Све већа од 600к600 ће да се мењају."
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
+msgid "Show me what I am sending "
+msgstr "Покажи ми шта шаљем"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
+msgid "Terms and Conditions"
+msgstr "Услови и Одредбе"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
+msgid "Choose Days:"
+msgstr "Одабери Дане:"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
+msgid "Search Criteria:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
+msgid "New Criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
+msgid "or"
+msgstr "или"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
+msgid "and"
+msgstr "и"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
+msgid "New Modifier"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
+msgid " to "
+msgstr "до"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
+msgid "files meet the criteria"
+msgstr "датотеке задовољавају критеријуме"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
+msgid "file meets the criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
+msgid "Filter History"
+msgstr "Филтрирај Историје"
+
+#: airtime_mvc/application/views/scripts/form/login.phtml:41
+msgid "Forgot your password?"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
+msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
+msgstr "(Како би се промовисао своју станицу, 'Пошаљи повратне информације' мора да буде омогућена)."
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
+msgid "Stream "
+msgstr "Пренос"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
+msgid "Additional Options"
+msgstr "Додатне Опције"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
+msgid "The following info will be displayed to listeners in their media player:"
+msgstr "Следеће информације ће да буде приказане слушаоцима у медијском плејерима:"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
+msgid "(Your radio station website)"
+msgstr "(Твоја радијска станица веб странице)"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
+msgid "Stream URL: "
+msgstr "URL Преноса:"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
+msgid "Choose folder"
+msgstr "Одабери фолдер"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
+msgid "Set"
+msgstr "Подеси"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
+msgid "Current Import Folder:"
+msgstr "Актуална Увозна Мапа:"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
+#, php-format
+msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
+msgid "Remove watched directory"
+msgstr "Уклони надзорану директоријуму"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
+msgid "You are not watching any media folders."
+msgstr "Не пратиш ниједне медијске мапе."
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
+msgid "Live Broadcasting"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
+msgid "Master Source"
+msgstr "Мајсторски Извор"
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
+msgid "Use these settings in your broadcasting software to stream live at any time."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
+msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
+msgid "TuneIn Settings"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
+msgid "SoundCloud Settings"
+msgstr "SoundCloud Подешавање"
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
+msgid "Dangerous Options"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Add this show"
+msgstr "Додај ову емисију"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Update show"
+msgstr "Ажурирање емисије"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
+msgid "What"
+msgstr "Шта"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
+msgid "When"
+msgstr "Када"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
+msgid "Live Stream Input"
+msgstr "Улаз Уживног Преноса"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
+msgid "Who"
+msgstr "Ко"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
+msgid "Style"
+msgstr "Стил"
+
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
+msgid "Disk Space"
+msgstr "Дисковни Простор"
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:3
+msgid "File import in progress..."
+msgstr "Увоз датотеке је у току..."
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:10
+#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
+msgid "Advanced Search Options"
+msgstr "Напредне Опције Претраживања"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
+#: airtime_mvc/application/forms/EditAudioMD.php:24
+#: airtime_mvc/application/forms/Player.php:15
+msgid "Title:"
+msgstr "Назив:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
+#: airtime_mvc/application/forms/EditAudioMD.php:34
+msgid "Creator:"
+msgstr "Творац:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
+#: airtime_mvc/application/forms/EditAudioMD.php:44
+msgid "Album:"
+msgstr "Aлбум:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
+msgid "Track:"
+msgstr "Песма:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
+msgid "Length:"
+msgstr "Дужина:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
+msgid "Sample Rate:"
+msgstr "Узорак Стопа:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
+msgid "Bit Rate:"
+msgstr "Брзина у Битовима:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
+#: airtime_mvc/application/forms/EditAudioMD.php:115
+msgid "Mood:"
+msgstr "Расположење:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:45
+#: airtime_mvc/application/forms/EditAudioMD.php:62
+msgid "Genre:"
+msgstr "Жанр:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
+#: airtime_mvc/application/forms/EditAudioMD.php:72
+msgid "Year:"
+msgstr "Година:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
+#: airtime_mvc/application/forms/EditAudioMD.php:85
+msgid "Label:"
+msgstr "Налепница:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
+#: airtime_mvc/application/forms/EditAudioMD.php:125
+msgid "BPM:"
+msgstr "BPM:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
+#: airtime_mvc/application/forms/EditAudioMD.php:95
+msgid "Composer:"
+msgstr "Композитор:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
+#: airtime_mvc/application/forms/EditAudioMD.php:105
+msgid "Conductor:"
+msgstr "Диригент:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
+#: airtime_mvc/application/forms/EditAudioMD.php:135
+msgid "Copyright:"
+msgstr "Ауторско право:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
+msgid "Isrc Number:"
+msgstr "Isrc Број:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
+#: airtime_mvc/application/forms/EditAudioMD.php:155
+msgid "Website:"
+msgstr "Веб страница:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
+#: airtime_mvc/application/forms/EditAudioMD.php:165
+#: airtime_mvc/application/forms/EditUser.php:119
+#: airtime_mvc/application/forms/Login.php:68
+msgid "Language:"
+msgstr "Језик:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
+msgid "File Path:"
+msgstr "Стажа Датотека:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
+msgid "Web Stream"
+msgstr "Пренос"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
+msgid "Dynamic Smart Block"
+msgstr "Динамички Паметан Блок"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
+msgid "Static Smart Block"
+msgstr "Статички Паметан Блок"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
+msgid "Audio Track"
+msgstr "Звучни Запис"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
+msgid "Playlist Contents: "
+msgstr "Садржаји Списак Песама:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
+msgid "Static Smart Block Contents: "
+msgstr "Статички Паметан Блок Садржаји:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
+msgid "Dynamic Smart Block Criteria: "
+msgstr "Динамички Паметан Блок Критеријуми:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
+msgid "Limit to "
+msgstr "Ограничено за"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
+#: airtime_mvc/application/forms/AddShowWhat.php:36
+msgid "URL:"
+msgstr "URL:"
+
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
+msgid "Viewing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
+msgid "Listeners"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
+msgid "Stream Data Collection Status"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
+msgid "Your trial expires in"
+msgstr "Ваш налог истиче у"
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
+msgid "days"
+msgstr "дани"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
+msgid "Previous:"
+msgstr "Претходна:"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
+msgid "Next:"
+msgstr "Следећа:"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
+msgid "Source Streams"
+msgstr "Преносни Извори"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
+msgid "ON AIR"
+msgstr "ПРЕНОС"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
+msgid "Listen"
+msgstr "Слушај"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
+msgid "Logout"
+msgstr "Одјава"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
+msgid "Playout History Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
+msgid "Log Sheet Templates"
+msgstr "Шаблони Списак Пријаве"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
+msgid "New Log Sheet Template"
+msgstr "Нови Листу шаблона"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
+msgid "No Log Sheet Templates"
+msgstr "Нема Листу Шаблона"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
+msgid "File Summary Templates"
+msgstr "Шаблони за Датотечни Сажеци"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
+msgid "New File Summary Template"
+msgstr "Нови Шаблон за Датотечни Сажеци"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
+msgid "No File Summary Templates"
+msgstr "Нема Шаблона за Датотечни Сажеци"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
+msgid "Creating File Summary Template"
+msgstr "Стварање Шаблона за Датотечни Сажеци"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
+msgid "Creating Log Sheet Template"
+msgstr "Стварање Листу Шаблона"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
+msgid "Name"
+msgstr "Назив"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
+msgid "Add more elements"
+msgstr "Додај више елемената"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
+msgid "Add New Field"
+msgstr "Додај Ново Поље"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
+msgid "Set Default Template"
+msgstr "Подеси Подразумевано Шаблону"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
+msgid "Description"
+msgstr "Опис"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
+msgid "Stream URL:"
+msgstr "URL Преноса:"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
+msgid "Default Length:"
+msgstr "Задата Дужина:"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
+msgid "No webstream"
+msgstr "Нема преноса"
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
+#: airtime_mvc/application/views/scripts/error/error.phtml:6
+msgid "An error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
+msgid "Access Denied!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
+msgid "You do not have permission to access this page!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
+#: airtime_mvc/application/views/scripts/error/error.phtml:14
+#: airtime_mvc/application/configs/navigation.php:143
+msgid "Help"
+msgstr "Помоћ"
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
+msgid "Oops!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
+msgid "Something went wrong!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
+msgid "Bad Request!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
+msgid "The requested action is not supported!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
+msgid "Page not found!"
+msgstr "Страница није пронађена!"
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
+msgid "We couldn't find the page you were looking for."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error.phtml:12
+msgid "Looks like the page you were looking for doesn't exist!"
+msgstr "Изгледа страница коју си тражио не постоји!"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
+msgid "previous"
+msgstr "претходна"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
+msgid "play"
+msgstr "покрени"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
+msgid "pause"
+msgstr "пауза"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
+msgid "next"
+msgstr "следећа"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
+msgid "stop"
+msgstr "заустави"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
+msgid "max volume"
+msgstr "макс гласноћа"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
+msgid "Update Required"
+msgstr "Потребно Ажурирање"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
+#, php-format
+msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
+msgstr "Медија је потребна за репродукцију, и мораш да ажурираш свој претраживач на новију верзију, или да ажурираш свој %sFlash plugin%s."
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
+msgid "Plan type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
+msgid "Billing cycle:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
+msgid "Payment method:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
+msgid "PayPal"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
+msgid "Credit Card via 2Checkout"
+msgstr ""
+
+#: airtime_mvc/application/forms/DateRange.php:16
+#: airtime_mvc/application/forms/ShowBuilder.php:18
+msgid "Date Start:"
+msgstr "Датум Почетка:"
+
+#: airtime_mvc/application/forms/DateRange.php:35
+#: airtime_mvc/application/forms/DateRange.php:63
+#: airtime_mvc/application/forms/ShowBuilder.php:37
+#: airtime_mvc/application/forms/ShowBuilder.php:65
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
+msgid "Invalid character entered"
+msgstr "Унесени су неважећи знакови"
+
+#: airtime_mvc/application/forms/DateRange.php:44
+#: airtime_mvc/application/forms/ShowBuilder.php:46
+#: airtime_mvc/application/forms/AddShowRepeats.php:56
+msgid "Date End:"
+msgstr "Датум Завршетка:"
+
+#: airtime_mvc/application/forms/ShowBuilder.php:72
+#: airtime_mvc/application/forms/ShowBuilder.php:88
+msgid "Filter by Show"
+msgstr ""
+
+#: airtime_mvc/application/forms/ShowBuilder.php:80
+msgid "All My Shows:"
+msgstr "Све Моје Емисије:"
+
+#: airtime_mvc/application/forms/AddShowWho.php:10
+msgid "Search Users:"
+msgstr "Тражи Кориснике:"
+
+#: airtime_mvc/application/forms/AddShowWho.php:24
+msgid "DJs:"
+msgstr "Диск-џокеји:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:30
+#: airtime_mvc/application/forms/GeneralPreferences.php:25
+#: airtime_mvc/application/forms/SupportSettings.php:18
+msgid "Station Name"
+msgstr "Назив Станице"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:39
+#: airtime_mvc/application/forms/SupportSettings.php:31
+msgid "Phone:"
+msgstr "Телефон:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:51
+#: airtime_mvc/application/forms/AddUser.php:67
+#: airtime_mvc/application/forms/EditUser.php:83
+#: airtime_mvc/application/forms/SupportSettings.php:43
+msgid "Email:"
+msgstr "Е-маил:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:62
+#: airtime_mvc/application/forms/SupportSettings.php:54
+msgid "Station Web Site:"
+msgstr "Веб Страница:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:73
+#: airtime_mvc/application/forms/SupportSettings.php:65
+msgid "Country:"
+msgstr "Држава:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:84
+#: airtime_mvc/application/forms/SupportSettings.php:76
+msgid "City:"
+msgstr "Град:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:96
+#: airtime_mvc/application/forms/SupportSettings.php:88
+msgid "Station Description:"
+msgstr "Опис:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:106
+#: airtime_mvc/application/forms/GeneralPreferences.php:42
+msgid "Station Logo:"
+msgstr "Лого:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:126
+#: airtime_mvc/application/forms/SupportSettings.php:108
+#, php-format
+msgid "Promote my station on %s"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:151
+#: airtime_mvc/application/forms/SupportSettings.php:120
+#, php-format
+msgid "By checking this box, I agree to %s's %sprivacy policy%s."
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:169
+#: airtime_mvc/application/forms/SupportSettings.php:143
+msgid "You have to agree to privacy policy."
+msgstr "Мораш да пристанеш на правила о приватности."
+
+#: airtime_mvc/application/forms/AddShowRR.php:10
+msgid "Record from Line In?"
+msgstr "Снимање са Line In?"
+
+#: airtime_mvc/application/forms/AddShowRR.php:16
+msgid "Rebroadcast?"
+msgstr "Поново да емитује?"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
+#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
+msgid "Value is required and can't be empty"
+msgstr "Вредност је потребна и не може да буде празан"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
+msgid "'%value%' is no valid email address in the basic format local-part@hostname"
+msgstr "'%value%' није ваљана е-маил адреса у основном облику local-part@hostname"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
+msgid "'%value%' does not fit the date format '%format%'"
+msgstr "'%value%' не одговара по облику датума '%format%'"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
+msgid "'%value%' is less than %min% characters long"
+msgstr "'%value%' је мањи од %min% дугачко знакова"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
+msgid "'%value%' is more than %max% characters long"
+msgstr "'%value%' је више од %max% дугачко знакова"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
+msgid "'%value%' is not between '%min%' and '%max%', inclusively"
+msgstr "'%value%' није између '%min%' и '%max%', укључиво"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
+msgid "Passwords do not match"
+msgstr "Лозинке се не подударају"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
+msgid "Day must be specified"
+msgstr "Дан мора да буде наведен"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
+msgid "Time must be specified"
+msgstr "Време мора да буде наведено"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
+msgid "Must wait at least 1 hour to rebroadcast"
+msgstr "Мораш да чекаш најмање 1 сат за ре-емитовање"
+
+#: airtime_mvc/application/forms/PasswordRestore.php:14
+msgid "Email"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordRestore.php:36
+msgid "Reset password"
+msgstr "Ресетуј лозинку"
+
+#: airtime_mvc/application/forms/AddShowWhat.php:30
+msgid "Untitled Show"
+msgstr "Неименована Емисија"
+
+#: airtime_mvc/application/forms/AddShowWhat.php:69
+msgid "Instance Description:"
+msgstr ""
+
+#: airtime_mvc/application/forms/DangerousPreferences.php:12
+msgid "Delete All Tracks in Library"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditAudioMD.php:145
+msgid "ISRC Number:"
+msgstr "ISRC Број:"
+
+#: airtime_mvc/application/forms/EditAudioMD.php:176
+msgid "OK"
+msgstr "ОК"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:33
+msgid "Station Description"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:62
+msgid "Default Crossfade Duration (s):"
+msgstr "Подразумевано Трајање Укрштено Стишавање (s):"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:68
+#: airtime_mvc/application/forms/GeneralPreferences.php:82
+#: airtime_mvc/application/forms/GeneralPreferences.php:96
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
+msgid "Please enter a time in seconds (eg. 0.5)"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:76
+msgid "Default Fade In (s):"
+msgstr "Подразумевано Одтамњење (s):"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:90
+msgid "Default Fade Out (s):"
+msgstr "Подразумевано Затамњење (s):"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:102
+msgid "Public Airtime API"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:103
+msgid "Required for embeddable schedule widget."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:105
+msgid "Disabled"
+msgstr "Онемогућено"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:106
+msgid "Enabled"
+msgstr "Омогућено"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:109
+msgid ""
+"Enabling this feature will allow Airtime to provide schedule data\n"
+" to external widgets that can be embedded in your website."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:120
+msgid "Default Language"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:127
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
+msgid "Station Timezone"
+msgstr "Станична Временска Зона"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:134
+msgid "Week Starts On"
+msgstr "Први Дан у Недељи"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:150
+msgid "Display login button on your Radio Page?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:29
+#: airtime_mvc/application/forms/EditUser.php:37
+#: airtime_mvc/application/forms/Login.php:41
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
+msgid "Username:"
+msgstr "Корисничко име:"
+
+#: airtime_mvc/application/forms/AddUser.php:38
+#: airtime_mvc/application/forms/EditUser.php:48
+#: airtime_mvc/application/forms/Login.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
+msgid "Password:"
+msgstr "Лозинка:"
+
+#: airtime_mvc/application/forms/AddUser.php:46
+#: airtime_mvc/application/forms/EditUser.php:57
+msgid "Verify Password:"
+msgstr "Потврди Лозинку:"
+
+#: airtime_mvc/application/forms/AddUser.php:55
+#: airtime_mvc/application/forms/EditUser.php:67
+msgid "Firstname:"
+msgstr "Име:"
+
+#: airtime_mvc/application/forms/AddUser.php:61
+#: airtime_mvc/application/forms/EditUser.php:75
+msgid "Lastname:"
+msgstr "Презиме:"
+
+#: airtime_mvc/application/forms/AddUser.php:76
+#: airtime_mvc/application/forms/EditUser.php:94
+msgid "Mobile Phone:"
+msgstr "Мобилни Телефон:"
+
+#: airtime_mvc/application/forms/AddUser.php:82
+#: airtime_mvc/application/forms/EditUser.php:102
+msgid "Skype:"
+msgstr "Skype:"
+
+#: airtime_mvc/application/forms/AddUser.php:88
+#: airtime_mvc/application/forms/EditUser.php:110
+msgid "Jabber:"
+msgstr "Jabber:"
+
+#: airtime_mvc/application/forms/AddUser.php:95
+msgid "User Type:"
+msgstr "Типова Корисника:"
+
+#: airtime_mvc/application/forms/AddUser.php:120
+#: airtime_mvc/application/forms/EditUser.php:155
+msgid "Login name is not unique."
+msgstr "Име пријаве није јединствено."
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
+msgid "Import Folder:"
+msgstr "Увозна Мапа:"
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
+msgid "Watched Folders:"
+msgstr "Мапе Под Надзором:"
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
+msgid "Not a valid Directory"
+msgstr "Не важећи Директоријум"
+
+#: airtime_mvc/application/forms/BillingClient.php:126
+msgid "What is the name of your favorite childhood friend?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:127
+msgid "What school did you attend for sixth grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:128
+msgid "In what city did you meet your spouse/significant other?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:129
+msgid "What street did you live on in third grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:130
+msgid "What is the first name of the boy or girl that you first kissed?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:131
+msgid "In what city or town was your first job?"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
+msgid "Default License:"
+msgstr "Задата Дозвола:"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
+msgid "All rights are reserved"
+msgstr "Сва права задржана"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
+msgid "The work is in the public domain"
+msgstr "Рад је у јавном домену"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
+msgid "Creative Commons Attribution"
+msgstr "Creative Commons Именовање"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
+msgid "Creative Commons Attribution Noncommercial"
+msgstr "Creative Commons Именовање Некомерцијално"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
+msgid "Creative Commons Attribution No Derivative Works"
+msgstr "Creative Commons Именовање Без Изведених Дела"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
+msgid "Creative Commons Attribution Share Alike"
+msgstr "Creative Commons Дели Под Истим Условима"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
+msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
+msgstr "Creative Commons Именовање Некомерцијално Без Изведених Дела"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
+msgid "Creative Commons Attribution Noncommercial Share Alike"
+msgstr "Creative Commons Именовање Некомерцијално Дијели Под Истим Условима"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
+msgid "Default Sharing Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
+msgid "Public"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
+msgid "Private"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditUser.php:129
+msgid "Interface Timezone:"
+msgstr "Временска Зона Интерфејси:"
+
+#: airtime_mvc/application/forms/Player.php:14
+msgid "Now Playing"
+msgstr "Тренутно Извођена"
+
+#: airtime_mvc/application/forms/Player.php:25
+msgid "Select Stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:28
+msgid "Auto detect the most appropriate stream to use."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:29
+msgid "Select a stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:41
+msgid " - Mobile friendly"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:45
+msgid " - The player does not support Opus streams."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:71
+msgid "Embeddable code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:72
+msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
+#: airtime_mvc/application/models/Block.php:1351
+msgid "Select criteria"
+msgstr "Одабери критеријуме"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
+#: airtime_mvc/application/models/Block.php:1353
+msgid "Bit Rate (Kbps)"
+msgstr "Брзина у Битовима (Kbps)"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
+#: airtime_mvc/application/models/Block.php:1374
+msgid "Sample Rate (kHz)"
+msgstr "Узорак Стопа (kHz)"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
+msgid "hours"
+msgstr "сати"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
+msgid "minutes"
+msgstr "минути"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
+#: airtime_mvc/application/models/Block.php:333
+msgid "items"
+msgstr "елементи"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
+msgid "Randomly"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
+msgid "Newest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
+msgid "Oldest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
+msgid "Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
+msgid "Static"
+msgstr "Статички"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
+msgid "Dynamic"
+msgstr "Динамички"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
+msgid "Allow Repeated Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
+msgid "Sort Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
+msgid "Limit to:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
+msgid "Generate playlist content and save criteria"
+msgstr "Генерисање листе песама и чување садржаја критеријуме"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
+msgid "Generate"
+msgstr "Генериши"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
+msgid "Shuffle playlist content"
+msgstr "Садржај случајни избор списак песама"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
+msgid "Limit cannot be empty or smaller than 0"
+msgstr "Ограничење не може да буде празан или мањи од 0"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
+msgid "Limit cannot be more than 24 hrs"
+msgstr "Ограничење не може да буде више од 24 сати"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
+msgid "The value should be an integer"
+msgstr "Вредност мора да буде цео број"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
+msgid "500 is the max item limit value you can set"
+msgstr "500 је макс ставу граничну вредност могуће је да подесиш"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
+msgid "You must select Criteria and Modifier"
+msgstr "Мораш да изабереш Критерију и Модификацију"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
+msgid "'Length' should be in '00:00:00' format"
+msgstr "'Дужина' требала да буде у '00:00:00' облику"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
+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:594
+msgid "The value has to be numeric"
+msgstr "Вредност мора да буде нумеричка"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
+msgid "The value should be less then 2147483648"
+msgstr "Вредност би требала да буде мања од 2147483648"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
+#, php-format
+msgid "The value should be less than %s characters"
+msgstr "Вредност мора да буде мања од %s знакова"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
+msgid "Value cannot be empty"
+msgstr "Вредност не може да буде празна"
+
+#: airtime_mvc/application/forms/StreamSetting.php:26
+msgid "Icecast Vorbis Metadata"
+msgstr "Icecast Vorbis Метаподаци"
+
+#: airtime_mvc/application/forms/StreamSetting.php:36
+msgid "Stream Label:"
+msgstr "Видљиви Подаци:"
+
+#: airtime_mvc/application/forms/StreamSetting.php:37
+msgid "Artist - Title"
+msgstr "Аутор - Назив"
+
+#: airtime_mvc/application/forms/StreamSetting.php:38
+msgid "Show - Artist - Title"
+msgstr "Емисија - Аутор - Назив"
+
+#: airtime_mvc/application/forms/StreamSetting.php:39
+msgid "Station name - Show name"
+msgstr "Назив станице - Назив емисије"
+
+#: airtime_mvc/application/forms/StreamSetting.php:45
+msgid "Off Air Metadata"
+msgstr "Off Air Метаподаци"
+
+#: airtime_mvc/application/forms/StreamSetting.php:51
+msgid "Enable Replay Gain"
+msgstr "Укључи Replay Gain"
+
+#: airtime_mvc/application/forms/StreamSetting.php:57
+msgid "Replay Gain Modifier"
+msgstr "Replay Gain Модификатор"
+
+#: airtime_mvc/application/forms/StreamSetting.php:65
+msgid "Streaming Server:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Airtime Pro Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Custom / 3rd Party Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordChange.php:17
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
+msgid "Password"
+msgstr "Лозинка"
-#~ msgid "enter a time in seconds 0{.0}"
-#~ msgstr "унеси време у секундама 0{.0}"
+#: airtime_mvc/application/forms/PasswordChange.php:28
+msgid "Confirm new password"
+msgstr "Потврди нову лозинку"
-#~ msgid "Allow Remote Websites To Access \"Schedule\" Info?%s (Enable this to make front-end widgets work.)"
-#~ msgstr "Допусти даљинске Веб странице за приступ \"Распоред\" Инфо?%s (Омогући ово да би front-end widgets рад.)"
+#: airtime_mvc/application/forms/PasswordChange.php:36
+msgid "Password confirmation does not match your password."
+msgstr "Лозинке које сте унели не подударају се."
-#~ msgid "Default Interface Language"
-#~ msgstr "Подразумевани Језик Интерфејса"
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
+msgid "Station Language"
+msgstr ""
-#~ msgid "Get new password"
-#~ msgstr "Набави нову лозинку"
-
-#~ msgid "Set smart block type:"
-#~ msgstr "Подеси smart block типа:"
-
-#~ msgid "Allow Repeat Tracks:"
-#~ msgstr "Допусти Понављање Песама:"
-
-#~ msgid "Limit to"
-#~ msgstr "Ограничено на"
-
-#~ msgid "Auto Switch Off"
-#~ msgstr "Аутоматско Искључивање"
-
-#~ msgid "Auto Switch On"
-#~ msgstr "Аутоматско Укључивање"
-
-#~ msgid "Switch Transition Fade (s)"
-#~ msgstr "Прелазни Fade Прекидач (s)"
-
-#~ msgid "enter a time in seconds 00{.000000}"
-#~ msgstr "унеси време у секундама 00{.000000}"
-
-#~ msgid "Master Username"
-#~ msgstr "Мајсторско Кор. Име"
-
-#~ msgid "Master Password"
-#~ msgstr "Мајсторска Лозинка"
-
-#~ msgid "Master Source Connection URL"
-#~ msgstr "URL веза мајсторског извора"
-
-#~ msgid "Show Source Connection URL"
-#~ msgstr "URL веза Програмског извора"
-
-#~ msgid "Master Source Port"
-#~ msgstr "Port Мајсторског Извора"
-
-#~ msgid "Master Source Mount Point"
-#~ msgstr "Тачка Мајсторског Извора"
-
-#~ msgid "Show Source Port"
-#~ msgstr "Port Програмског Извора"
-
-#~ msgid "Show Source Mount Point"
-#~ msgstr "Тачка Програмског Извора"
-
-#~ msgid "You cannot use same port as Master DJ port."
-#~ msgstr "Не можеш да користиш исти порт као Мајстор ДЈ прикључак."
-
-#~ msgid "Port %s is not available"
-#~ msgstr "Port %s није доступан"
-
-#~ msgid "E-mail"
-#~ msgstr "Е-маил"
-
-#~ msgid "Restore password"
-#~ msgstr "Опоравак лозинке"
-
-#~ msgid "Hardware Audio Output"
-#~ msgstr "Хардвер Аудио Излаз"
-
-#~ msgid "Output Type"
-#~ msgstr "Тип Излаза"
-
-#~ msgid "Date/Time Start:"
-#~ msgstr "Датум/Време Почетка:"
-
-#~ msgid "Date/Time End:"
-#~ msgstr "Датум/Време Завршетка:"
-
-#~ msgid "Automatically Upload Recorded Shows"
-#~ msgstr "Аутоматски Пренос (Upload) снимљене емисије"
-
-#~ msgid "Enable SoundCloud Upload"
-#~ msgstr "Омогући SoundCloud Пренос"
-
-#~ msgid "Automatically Mark Files \"Downloadable\" on SoundCloud"
-#~ msgstr "Аутоматски Обележени Фајлови \"може се преузети\" са SoundCloud"
-
-#~ msgid "SoundCloud Email"
-#~ msgstr "SoundCloud Е-маил"
-
-#~ msgid "SoundCloud Password"
-#~ msgstr "SoundCloud Лозинка"
-
-#~ msgid "SoundCloud Tags: (separate tags with spaces)"
-#~ msgstr "SoundCloud Тагови: (засебне ознаке са размацима)"
-
-#~ msgid "Default Genre:"
-#~ msgstr "Подразумевани Жанр:"
-
-#~ msgid "Default Track Type:"
-#~ msgstr "Задата Врста Песме:"
-
-#~ msgid "Original"
-#~ msgstr "Изворни"
-
-#~ msgid "Remix"
-#~ msgstr "Remix"
-
-#~ msgid "Live"
-#~ msgstr "Уживо"
-
-#~ msgid "Recording"
-#~ msgstr "Снимање"
-
-#~ msgid "Spoken"
-#~ msgstr "Говорни"
-
-#~ msgid "Podcast"
-#~ msgstr "Podcast"
-
-#~ msgid "Demo"
-#~ msgstr "Огледни"
-
-#~ msgid "Work in progress"
-#~ msgstr "Радови су у току"
-
-#~ msgid "Stem"
-#~ msgstr "Порекло"
-
-#~ msgid "Loop"
-#~ msgstr "Петља"
-
-#~ msgid "Sound Effect"
-#~ msgstr "Звучни ефекат"
-
-#~ msgid "One Shot Sample"
-#~ msgstr "Један Метак Узорак"
-
-#~ msgid "Other"
-#~ msgstr "Остало"
-
-#~ msgid "Enable System Emails (Password Reset)"
-#~ msgstr "Омогућавање система е-поште (Поново постављање лозинке)"
-
-#~ msgid "Reset Password 'From' Email"
-#~ msgstr "Поново постави лозинку 'из' е-поште"
-
-#~ msgid "Configure Mail Server"
-#~ msgstr "Конфигурисање Маил сервера"
-
-#~ msgid "Requires Authentication"
-#~ msgstr "Захтева потврду идентитета"
-
-#~ msgid "Mail Server"
-#~ msgstr "Маил Сервер"
-
-#~ msgid "Email Address"
-#~ msgstr "Е-маил Адреса"
-
-#~ msgid "Please enter your user name and password"
-#~ msgstr "Молимо унеси своје корисничко име и лозинку"
-
-#~ msgid "Given email not found."
-#~ msgstr "С обзиром е-маил није пронађен."
-
-#~ msgid "Page not found"
-#~ msgstr "Страница није пронађена"
-
-#~ msgid "Application error"
-#~ msgstr "Грешка апликације"
-
-#~ msgid "Playlist / Block"
-#~ msgstr "Playlist / Block"
-
-#~ msgid "If you change the username or password values for an enabled stream the playout engine will be rebooted and your listeners will hear silence for 5-10 seconds. Changing the following fields will NOT cause a reboot: Stream Label (Global Settings), and Switch Transition Fade(s), Master Username, and Master Password (Input Stream Settings). If Airtime is recording, and if the change causes a playout engine restart, the recording will be interrupted."
-#~ msgstr "Опрезно приликом ажурирању података!"
-
-#~ msgid "today"
-#~ msgstr "данас"
-
-#~ msgid "day"
-#~ msgstr "дан"
-
-#~ msgid "week"
-#~ msgstr "недеља"
-
-#~ msgid "month"
-#~ msgstr "месец"
-
-#~ msgid "Remove overbooked tracks"
-#~ msgstr "Уклони пребукиране песме"
-
-#~ msgid "Soundcloud"
-#~ msgstr "Soundcloud"
-
-#~ msgid "View on Soundcloud"
-#~ msgstr "Приказ на Soundcloud"
-
-#~ msgid "Re-upload to SoundCloud"
-#~ msgstr "Поново-да пренесе на Soundcloud"
-
-#~ msgid "Upload to SoundCloud"
-#~ msgstr "Пренос на Soundcloud"
-
-#~ msgid "Could not delete some scheduled files."
-#~ msgstr "Не може да се избрише неке заказане датотеке."
-
-#~ msgid "Add Media"
-#~ msgstr "Додај Медије"
-
-#~ msgid "Library"
-#~ msgstr "Библиотека"
-
-#~ msgid "System"
-#~ msgstr "Систем"
-
-#~ msgid "Preferences"
-#~ msgstr "Подешавање"
-
-#~ msgid "Media Folders"
-#~ msgstr "Медијска Мапа"
-
-#~ msgid "History"
-#~ msgstr "Историја"
-
-#~ msgid "Service"
-#~ msgstr "Услуга"
-
-#~ msgid "Uptime"
-#~ msgstr "Радно Време"
-
-#~ msgid "CPU"
-#~ msgstr "CPU"
-
-#~ msgid "Memory"
-#~ msgstr "Меморија"
-
-#~ msgid "Email / Mail Server Settings"
-#~ msgstr "Подешавања Е-маил / Маил Сервера"
-
-#~ msgid "Connection URL: "
-#~ msgstr "Прикључни URL:"
-
-#~ msgid "Input Stream Settings"
-#~ msgstr "Подешавање Улазног сигнала"
-
-#~ msgid "Master Source Connection URL:"
-#~ msgstr "URL веза Мајсторског извора:"
-
-#~ msgid "Override"
-#~ msgstr "Надјачај"
-
-#~ msgid "RESET"
-#~ msgstr "Ресетовање"
-
-#~ msgid "Show Source Connection URL:"
-#~ msgstr "URL веза Програмског извора:"
-
-#~ msgid "Filter By Show:"
-#~ msgstr "По Емисији:"
-
-#~ msgid "%s's Settings"
-#~ msgstr "%s Подешавање"
-
-#~ msgid "Sourcefabric Privacy Policy"
-#~ msgstr "Sourcefabric Правила о Приватности"
-
-#~ msgid "Smart Block Options"
-#~ msgstr "Smart Block Опције"
-
-#~ msgid "file meet the criteria"
-#~ msgstr "датотека задовољава критеријуме"
-
-#~ msgid "New"
-#~ msgstr "Нови"
-
-#~ msgid "New Playlist"
-#~ msgstr "Нови Списак Песама"
-
-#~ msgid "New Smart Block"
-#~ msgstr "Нови Паметни Блок"
-
-#~ msgid "New Webstream"
-#~ msgstr "Нови Пренос"
-
-#~ msgid "View / edit description"
-#~ msgstr "Преглед / уред описа"
-
-#~ msgid "Global Settings"
-#~ msgstr "Глобална Подешавања"
-
-#~ msgid "Output Stream Settings"
-#~ msgstr "Излазне Преносне Подешавање"
-
-#~ msgid "Listener Count Over Time"
-#~ msgstr "Статистика Слушалаца"
-
-#~ msgid "Begin by adding your files to the library using the 'Add Media' menu button. You can drag and drop your files to this window too."
-#~ msgstr "Започни додавањем датотеке у библиотеку помоћу 'Додај Медије' мени тастером. Можеш да повучеш и испустиш датотеке на овом прозору."
-
-#~ msgid "Create a show by going to 'Calendar' in the menu bar, and then clicking the '+ Show' icon. This can be either a one-time or repeating show. Only admins and program managers can add shows."
-#~ msgstr "Креирај једну емисију тако да идеш на 'Календар' на траци менија, а затим кликом на '+ Емисија' иконицу. Оне могу да буде било једнократне или понављајуће емисије. Само администратори и уредници могу да додају емисије."
-
-#~ msgid "Add media to the show by going to your show in the Schedule calendar, left-clicking on it and selecting 'Add / Remove Content'"
-#~ msgstr "Додај медије за емисију у календару, кликни са левом кликом на њега и изабери опцију 'Додај / Уклони садржај'"
-
-#~ msgid "Select your media from the left pane and drag them to your show in the right pane."
-#~ msgstr "Одабери своје медије на левом окну и повуци их на своју емисију у десном окну."
-
-#~ msgid "Then you're good to go!"
-#~ msgstr "И већ је завршено!"
-
-#~ msgid "Please enter your account e-mail address. You will receive a link to create a new password via e-mail."
-#~ msgstr "Унеси своју е-маил адресу налога. Примићеш линк за нову лозинку путем е-маила."
-
-#~ msgid "Email sent"
-#~ msgstr "Е-маил је послат"
-
-#~ msgid "An email has been sent"
-#~ msgstr "Е-маил је послат"
-
-#~ msgid "Back to login screen"
-#~ msgstr "Повратак на екран за пријаву"
-
-#~ msgid "Scheduled Play"
-#~ msgstr "Заказана Представа"
-
-#~ msgid "Station time"
-#~ msgstr "Главно време"
-
-#~ msgid "Zend Framework Default Application"
-#~ msgstr "Zend Framework Задата Апликација"
-
-#~ msgid "Empty smart block"
-#~ msgstr "Празан паметни блок"
-
-#~ msgid "Empty playlist"
-#~ msgstr "Празан списак песама"
-
-#~ msgid "Empty smart block content"
-#~ msgstr "Празан садржај паметног блока"
-
-#~ msgid "No open smart block"
-#~ msgstr "Нема отворени паметни блок"
-
-#~ msgid "Record & Rebroadcast"
-#~ msgstr "Снимање & Реемитовање"
-
-#~ msgid "Failed to create 'organize' directory."
-#~ msgstr "Није успело стварање 'организовање' директоријума."
-
-#~ msgid "The file was not uploaded, there is %s MB of disk space left and the file you are uploading has a size of %s MB."
-#~ msgstr "Пренос датотеке није успео јер слободан простор је само %s MB од жељених датотеке величине од %s MB."
-
-#~ msgid "This file appears to be corrupted and will not be added to media library."
-#~ msgstr "Ова датотека чини се да је оштећена и неће буде додата у медијској библиотеци."
-
-#~ msgid "The file was not uploaded, this error can occur if the computer hard drive does not have enough disk space or the stor directory does not have correct write permissions."
-#~ msgstr "Датотека није послата, ова грешка може да се појави ако хард диск рачунара нема довољно простора на диску или стор директоријума нема исправних овлашћења за записивање."
-
-#~ msgid ""
-#~ "Hi %s, \n"
-#~ "\n"
-#~ "Click this link to reset your password: "
-#~ msgstr ""
-#~ "Здраво %s, \n"
-#~ "\n"
-#~ "Кликни на овај линк како би поништио лозинку:"
-
-#~ msgid "Show Content"
-#~ msgstr "Програмски Садржај"
-
-#~ msgid "Remove All Content"
-#~ msgstr "Уклони Све Садржаје"
-
-#~ msgid "Cancel Current Show"
-#~ msgstr "Прекид Емисија"
-
-#~ msgid "Edit This Instance"
-#~ msgstr "Уреди у том случају"
-
-#~ msgid "Delete This Instance"
-#~ msgstr "Обриши у том случају"
-
-#~ msgid "Delete This Instance and All Following"
-#~ msgstr "Обриши у том случају и сви пратећи"
-
-#~ msgid "Please selection an option"
-#~ msgstr "Молимо, одабери опцију"
-
-#~ msgid "No Records"
-#~ msgstr "Нема Записа"
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
+msgid "Enabled:"
+msgstr "Омогућено:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
+msgid "Mobile:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
+msgid "Stream Type:"
+msgstr "Пренос Типа:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
+msgid "Service Type:"
+msgstr "Тип Услуге:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
+msgid "Channels:"
+msgstr "Канали:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "1 - Mono"
+msgstr "1 - Mono"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "2 - Stereo"
+msgstr "2 - Stereo"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
+msgid "Server"
+msgstr "Сервер"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
+msgid "Port"
+msgstr "Порт"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
+msgid "Only numbers are allowed."
+msgstr "Допуштени су само бројеви."
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
+msgid "URL"
+msgstr "URL"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
+msgid "Mount Point"
+msgstr "Тачка Монтирања"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
+msgid "Admin User"
+msgstr "Админ Корисник"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
+msgid "Admin Password"
+msgstr "Aдминска Лозинка"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
+msgid "Server cannot be empty."
+msgstr "Сервер не може да буде празан."
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
+msgid "Port cannot be empty."
+msgstr "Port не може да буде празан."
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
+msgid "Mount cannot be empty with Icecast server."
+msgstr "Монтирање не може да буде празна са Icecast сервером."
+
+#: airtime_mvc/application/forms/AddShowWhen.php:16
+msgid "'%value%' does not fit the time format 'HH:mm'"
+msgstr "'%value%' се не уклапа у временском формату 'HH:mm'"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:22
+msgid "Start Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:37
+msgid "In the Future:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:64
+msgid "End Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:98
+msgid "Timezone:"
+msgstr "Временска Зона:"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:107
+msgid "Repeats?"
+msgstr "Понављање?"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:139
+msgid "Cannot create show in the past"
+msgstr "Не може да се створи емисију у прошлости"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:147
+msgid "Cannot modify start date/time of the show that is already started"
+msgstr "Не можеш да мењаш датум/време почетак емисије, ако је већ почела"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:156
+#: airtime_mvc/application/models/Show.php:282
+msgid "End date/time cannot be in the past"
+msgstr "Датум завршетка и време не може да буде у прошлости"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:164
+msgid "Cannot have duration < 0m"
+msgstr "Не може да траје < 0m"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:168
+msgid "Cannot have duration 00h 00m"
+msgstr "Не може да траје 00h 00m"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:175
+msgid "Cannot have duration greater than 24h"
+msgstr "Не може да траје више од 24h"
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:19
+msgid "Push metadata to your station on TuneIn?"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:24
+msgid "Station ID:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:30
+msgid "Partner Key:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:36
+msgid "Partner Id:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:77
+#: airtime_mvc/application/forms/TuneInPreferences.php:86
+msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:10
+#, php-format
+msgid "Use %s Authentication:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:16
+msgid "Use Custom Authentication:"
+msgstr "Користи Прилагођено потврду идентитета:"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:25
+msgid "Custom Username"
+msgstr "Прилагођено Корисничко Име"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:37
+msgid "Custom Password"
+msgstr "Прилагођена Лозинка"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:48
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
+msgid "Host:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
+msgid "Port:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:60
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
+msgid "Mount:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:77
+msgid "Username field cannot be empty."
+msgstr "'Корисничко Име' поља не сме да остане празно."
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:82
+msgid "Password field cannot be empty."
+msgstr "'Лозинка' поља не сме да остане празно."
+
+#: airtime_mvc/application/forms/AddShowStyle.php:12
+msgid "Background Colour:"
+msgstr "Боја Позадине:"
+
+#: airtime_mvc/application/forms/AddShowStyle.php:31
+msgid "Text Colour:"
+msgstr "Боја Текста:"
+
+#: airtime_mvc/application/forms/AddShowStyle.php:49
+msgid "Current Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:72
+msgid "Show Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:87
+msgid "Logo Preview:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Login.php:102
+msgid "Type the characters you see in the picture below."
+msgstr "Упиши знаке које видиш на слици у наставку."
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
+msgid "Auto Switch Off:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
+msgid "Auto Switch On:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
+msgid "Switch Transition Fade (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:10
+msgid "Link:"
+msgstr "Link:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:16
+msgid "Repeat Type:"
+msgstr "Тип Понављање:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:19
+msgid "weekly"
+msgstr "недељно"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:20
+msgid "every 2 weeks"
+msgstr "сваке 2 недеље"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:21
+msgid "every 3 weeks"
+msgstr "свака 3 недеље"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:22
+msgid "every 4 weeks"
+msgstr "свака 4 недеље"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:23
+msgid "monthly"
+msgstr "месечно"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:32
+msgid "Select Days:"
+msgstr "Одабери Дане:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:47
+msgid "Repeat By:"
+msgstr "Понављање По:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the month"
+msgstr "дан у месецу"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the week"
+msgstr "дан у недељи"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:69
+msgid "No End?"
+msgstr "Нема Краја?"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:106
+msgid "End date must be after start date"
+msgstr "Датум завршетка мора да буде после датума почетка"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:113
+msgid "Please select a repeat day"
+msgstr "Молимо, одабери којег дана"
+
+#: airtime_mvc/application/configs/navigation.php:12
+msgid "Radio Page"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:19
+msgid "Calendar"
+msgstr "Календар"
+
+#: airtime_mvc/application/configs/navigation.php:26
+msgid "Widgets"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:48
+msgid "Settings"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:67
+msgid "Users"
+msgstr "Корисници"
+
+#: airtime_mvc/application/configs/navigation.php:74
+msgid "Streams"
+msgstr "Преноси"
+
+#: airtime_mvc/application/configs/navigation.php:82
+msgid "Analytics"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:90
+msgid "Listener Stats"
+msgstr "Слушатељска Статистика"
+
+#: airtime_mvc/application/configs/navigation.php:104
+msgid "History Templates"
+msgstr "Историјски Шаблони"
+
+#: airtime_mvc/application/configs/navigation.php:113
+msgid "Billing"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:120
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:127
+msgid "Account Details"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:134
+msgid "View Invoices"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:150
+msgid "Getting Started"
+msgstr "Почетак Коришћења"
+
+#: airtime_mvc/application/configs/navigation.php:157
+msgid "FAQ"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:162
+msgid "User Manual"
+msgstr "Упутство"
+
+#: airtime_mvc/application/configs/navigation.php:167
+msgid "File a Support Ticket"
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:833
+#: airtime_mvc/application/models/Playlist.php:812
+msgid "Cue in and cue out are null."
+msgstr "'Cue in' и 'cue out' су нуле."
+
+#: airtime_mvc/application/models/Block.php:868
+#: airtime_mvc/application/models/Block.php:924
+#: airtime_mvc/application/models/Playlist.php:851
+#: airtime_mvc/application/models/Playlist.php:895
+msgid "Can't set cue out to be greater than file length."
+msgstr "Не можеш да подесиш да 'cue out' буде веће од дужине фајла."
+
+#: airtime_mvc/application/models/Block.php:879
+#: airtime_mvc/application/models/Block.php:900
+#: airtime_mvc/application/models/Playlist.php:843
+#: airtime_mvc/application/models/Playlist.php:868
+msgid "Can't set cue in to be larger than cue out."
+msgstr "Не можеш да подесиш да 'cue in' буде веће него 'cue out'."
+
+#: airtime_mvc/application/models/Block.php:935
+#: airtime_mvc/application/models/Playlist.php:887
+msgid "Can't set cue out to be smaller than cue in."
+msgstr "Не можеш да подесиш да 'cue out' буде мање него 'cue in'."
+
+#: airtime_mvc/application/models/Block.php:1366
+msgid "Upload Time"
+msgstr ""
+
+#: airtime_mvc/application/models/ShowBuilder.php:212
+#, php-format
+msgid "Rebroadcast of %s from %s"
+msgstr "Реемитовање од %s од %s"
+
+#: airtime_mvc/application/models/Preference.php:460
+#, php-format
+msgid "Powered by %s"
+msgstr ""
+
+#: airtime_mvc/application/models/Preference.php:588
+msgid "Select Country"
+msgstr "Одабери Државу"
+
+#: airtime_mvc/application/models/MusicDir.php:160
+#, php-format
+msgid "%s is already watched."
+msgstr "%s је већ надзиран."
+
+#: airtime_mvc/application/models/MusicDir.php:164
+#, php-format
+msgid "%s contains nested watched directory: %s"
+msgstr "%s садржава угнежђене надзиране директоријуме: %s"
+
+#: airtime_mvc/application/models/MusicDir.php:168
+#, php-format
+msgid "%s is nested within existing watched directory: %s"
+msgstr "%s се налази унутар у постојећи надзирани директоријуми: %s"
+
+#: airtime_mvc/application/models/MusicDir.php:189
+#: airtime_mvc/application/models/MusicDir.php:370
+#, php-format
+msgid "%s is not a valid directory."
+msgstr "%s није ваљан директоријум."
+
+#: airtime_mvc/application/models/MusicDir.php:232
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list"
+msgstr "%s је већ постављена као мапа за складиштење или је између пописа праћених фолдера"
+
+#: airtime_mvc/application/models/MusicDir.php:388
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list."
+msgstr "%s је већ постављена као мапа за складиштење или је између пописа праћених фолдера."
+
+#: airtime_mvc/application/models/MusicDir.php:431
+#, php-format
+msgid "%s doesn't exist in the watched list."
+msgstr "%s не постоји у листи надзираних локације."
+
+#: airtime_mvc/application/models/Auth.php:33
+#, php-format
+msgid ""
+"Hi %s, \n"
+"\n"
+"Please click this link to reset your password: "
+msgstr ""
+
+#: airtime_mvc/application/models/Auth.php:38
+#, php-format
+msgid "%s Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/models/Show.php:184
+msgid "Shows can have a max length of 24 hours."
+msgstr "Емисије могу да имају највећу дужину 24 сата."
+
+#: airtime_mvc/application/models/Show.php:293
+msgid ""
+"Cannot schedule overlapping shows.\n"
+"Note: Resizing a repeating show affects all of its repeats."
+msgstr ""
+"Не може да се закаже преклапајуће емисије.\n"
+"Напомена: Промена величине понављане емисије утиче на све њене понављање."
+
+#: airtime_mvc/application/models/Scheduler.php:73
+msgid "Cannot move items out of linked shows"
+msgstr "Не можеш да преместиш ставке из повезаних емисија"
+
+#: airtime_mvc/application/models/Scheduler.php:119
+msgid "The schedule you're viewing is out of date! (sched mismatch)"
+msgstr "Застарео се прегледан распоред! (неважећи распоред)"
+
+#: airtime_mvc/application/models/Scheduler.php:124
+msgid "The schedule you're viewing is out of date! (instance mismatch)"
+msgstr "Застарео се прегледан распоред! (пример неусклађеност)"
+
+#: airtime_mvc/application/models/Scheduler.php:132
+#: airtime_mvc/application/models/Scheduler.php:458
+#: airtime_mvc/application/models/Scheduler.php:490
+msgid "The schedule you're viewing is out of date!"
+msgstr "Застарео се прегледан распоред!"
+
+#: airtime_mvc/application/models/Scheduler.php:142
+#, php-format
+msgid "You are not allowed to schedule show %s."
+msgstr "Не смеш да закажеш распоредну емисију %s."
+
+#: airtime_mvc/application/models/Scheduler.php:146
+msgid "You cannot add files to recording shows."
+msgstr "Не можеш да додаш датотеке за снимљене емисије."
+
+#: airtime_mvc/application/models/Scheduler.php:152
+#, php-format
+msgid "The show %s is over and cannot be scheduled."
+msgstr "Емисија %s је готова и не могу да буде заказана."
+
+#: airtime_mvc/application/models/Scheduler.php:159
+#, php-format
+msgid "The show %s has been previously updated!"
+msgstr "Раније је %s емисија већ била ажурирана!"
+
+#: airtime_mvc/application/models/Scheduler.php:178
+msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
+msgstr "Садржај у повезаним емисијама мора да буде заказан пре или после било које емисије"
+
+#: airtime_mvc/application/models/Scheduler.php:195
+msgid "Cannot schedule a playlist that contains missing files."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:216
+#: airtime_mvc/application/models/Scheduler.php:305
+msgid "A selected File does not exist!"
+msgstr "Изабрани Фајл не постоји!"
+
+#: airtime_mvc/application/models/Schedule.php:206
+msgid "livestream"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:166
+msgid "Length needs to be greater than 0 minutes"
+msgstr "Дужина мора да буде већа од 0 минута"
+
+#: airtime_mvc/application/models/Webstream.php:171
+msgid "Length should be of form \"00h 00m\""
+msgstr "Дужина мора да буде у облику \"00h 00m\""
+
+#: airtime_mvc/application/models/Webstream.php:184
+msgid "URL should be of form \"http://domain\""
+msgstr "URL мора да буде у облику \"http://domain\""
+
+#: airtime_mvc/application/models/Webstream.php:187
+msgid "URL should be 512 characters or less"
+msgstr "URL мора да буде 512 знакова или мање"
+
+#: airtime_mvc/application/models/Webstream.php:193
+msgid "No MIME type found for webstream."
+msgstr "Не постоји MIME тип за пренос."
+
+#: airtime_mvc/application/models/Webstream.php:209
+msgid "Webstream name cannot be empty"
+msgstr "Име преноса не може да да буде празно"
+
+#: airtime_mvc/application/models/Webstream.php:278
+msgid "Could not parse XSPF playlist"
+msgstr "Нисмо могли анализирати XSPF списак песама"
+
+#: airtime_mvc/application/models/Webstream.php:298
+msgid "Could not parse PLS playlist"
+msgstr "Нисмо могли анализирати PLS списак песама"
+
+#: airtime_mvc/application/models/Webstream.php:318
+msgid "Could not parse M3U playlist"
+msgstr "Нисмо могли анализирати M3U списак песама"
+
+#: airtime_mvc/application/models/Webstream.php:332
+msgid "Invalid webstream - This appears to be a file download."
+msgstr "Неважећи пренос - Чини се да је ово преузимање."
+
+#: airtime_mvc/application/models/Webstream.php:336
+#, php-format
+msgid "Unrecognized stream type: %s"
+msgstr "Непознати преносни тип: %s"
+
+#: airtime_mvc/public/setup/rabbitmq-setup.php:78
+msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
+msgstr ""
+
+#~ msgid "My Account"
+#~ msgstr "Мој Налог"
diff --git a/airtime_mvc/locale/sr_RS/LC_MESSAGES/pro.po b/airtime_mvc/locale/sr_RS/LC_MESSAGES/pro.po
index 866ee0acb..f59b52c3d 100644
--- a/airtime_mvc/locale/sr_RS/LC_MESSAGES/pro.po
+++ b/airtime_mvc/locale/sr_RS/LC_MESSAGES/pro.po
@@ -1,3 +1,139 @@
+#: airtime_mvc/application/controllers/LoginController.php:170
+#, php-format
+msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
+#, php-format
+msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
+#, php-format
+msgid "If you are the primary owner of this station, please reset your password here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
+msgid "Thank you!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
+msgid "Your station has been upgraded successfully."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
+msgid "Return to Airtime"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+#, php-format
+msgid "Purchase an %s plan!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+msgid "My Account"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
+msgid "Upgrade today to get more listeners and storage space!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
+msgid "View Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:257
+msgid "Your Current Plan:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:291
+msgid "Please enter your payment details:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
+msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
+msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:17
+msgid "First Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:26
+msgid "Last Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:35
+msgid "Company Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:44
+msgid "Email Address:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:54
+msgid "Address 1:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:63
+msgid "Address 2:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:70
+msgid "City:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:80
+msgid "State/Region:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:89
+msgid "Zip Code / Postal Code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:102
+msgid "Country:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:112
+msgid "Phone Number:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:121
+msgid "Please choose a security question:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:135
+msgid "Please enter an answer:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:152
+msgid "VAT/Tax ID (EU only)"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:162
+msgid "Subscribe to Sourcefabric newsletter"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:172
+msgid "Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:181
+msgid "Verify Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:193
+msgid "Save"
+msgstr ""
+
#: airtime_mvc/application/models/Auth.php:35
#, php-format
msgid ""
@@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
-msgid "Thank you!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
-msgid "Your station has been upgraded successfully."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
-msgid "Return to Airtime"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
-#, php-format
-msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
-msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
-msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
-#, php-format
-msgid "If you are the primary owner of this station, please reset your password here."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:170
-#, php-format
-msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
-msgstr ""
diff --git a/airtime_mvc/locale/sr_RS@latin/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/sr_RS@latin/LC_MESSAGES/airtime.mo
index 1b10182fd..b92c9541b 100644
Binary files a/airtime_mvc/locale/sr_RS@latin/LC_MESSAGES/airtime.mo and b/airtime_mvc/locale/sr_RS@latin/LC_MESSAGES/airtime.mo differ
diff --git a/airtime_mvc/locale/sr_RS@latin/LC_MESSAGES/airtime.po b/airtime_mvc/locale/sr_RS@latin/LC_MESSAGES/airtime.po
index 719a6a95c..f5b1ea053 100644
--- a/airtime_mvc/locale/sr_RS@latin/LC_MESSAGES/airtime.po
+++ b/airtime_mvc/locale/sr_RS@latin/LC_MESSAGES/airtime.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Airtime\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-09-03 10:24-0400\n"
-"PO-Revision-Date: 2014-11-14 09:58+0000\n"
+"POT-Creation-Date: 2015-09-04 11:17-0400\n"
+"PO-Revision-Date: 2015-09-04 08:15+0000\n"
"Last-Translator: Daniel James \n"
"Language-Team: Serbian (Latin) (Serbia) (http://www.transifex.com/sourcefabric/airtime/language/sr_RS@latin/)\n"
"Language: sr_RS@latin\n"
@@ -18,132 +18,6 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-#: airtime_mvc/public/setup/rabbitmq-setup.php:78
-msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1117
-#: airtime_mvc/application/services/HistoryService.php:1157
-#: airtime_mvc/application/services/HistoryService.php:1174
-#: airtime_mvc/application/models/Block.php:1375
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
-#: airtime_mvc/application/controllers/LocaleController.php:76
-msgid "Title"
-msgstr "Naziv"
-
-#: airtime_mvc/application/services/HistoryService.php:1118
-#: airtime_mvc/application/services/HistoryService.php:1158
-#: airtime_mvc/application/services/HistoryService.php:1175
-#: airtime_mvc/application/models/Block.php:1360
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
-#: airtime_mvc/application/controllers/LocaleController.php:77
-msgid "Creator"
-msgstr "Tvorac"
-
-#: airtime_mvc/application/services/HistoryService.php:1119
-#: airtime_mvc/application/models/Block.php:1352
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
-#: airtime_mvc/application/controllers/LocaleController.php:78
-msgid "Album"
-msgstr "Album"
-
-#: airtime_mvc/application/services/HistoryService.php:1120
-#: airtime_mvc/application/services/HistoryService.php:1177
-#: airtime_mvc/application/models/Block.php:1369
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
-#: airtime_mvc/application/controllers/LocaleController.php:91
-msgid "Length"
-msgstr "Dužina"
-
-#: airtime_mvc/application/services/HistoryService.php:1121
-#: airtime_mvc/application/models/Block.php:1362
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
-#: airtime_mvc/application/controllers/LocaleController.php:85
-msgid "Genre"
-msgstr "Žanr"
-
-#: airtime_mvc/application/services/HistoryService.php:1122
-#: airtime_mvc/application/models/Block.php:1371
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
-#: airtime_mvc/application/controllers/LocaleController.php:93
-msgid "Mood"
-msgstr "Raspoloženje"
-
-#: airtime_mvc/application/services/HistoryService.php:1123
-#: airtime_mvc/application/models/Block.php:1364
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
-#: airtime_mvc/application/controllers/LocaleController.php:87
-msgid "Label"
-msgstr "Nalepnica"
-
-#: airtime_mvc/application/services/HistoryService.php:1124
-#: airtime_mvc/application/services/HistoryService.php:1178
-#: airtime_mvc/application/models/Block.php:1355
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
-#: airtime_mvc/application/controllers/LocaleController.php:81
-msgid "Composer"
-msgstr "Kompozitor"
-
-#: airtime_mvc/application/services/HistoryService.php:1125
-#: airtime_mvc/application/models/Block.php:1363
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
-#: airtime_mvc/application/controllers/LocaleController.php:86
-msgid "ISRC"
-msgstr "ISRC"
-
-#: airtime_mvc/application/services/HistoryService.php:1126
-#: airtime_mvc/application/services/HistoryService.php:1179
-#: airtime_mvc/application/models/Block.php:1357
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
-#: airtime_mvc/application/controllers/LocaleController.php:83
-msgid "Copyright"
-msgstr "Autorsko pravo"
-
-#: airtime_mvc/application/services/HistoryService.php:1127
-#: airtime_mvc/application/models/Block.php:1379
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
-#: airtime_mvc/application/controllers/LocaleController.php:100
-msgid "Year"
-msgstr "Godina"
-
-#: airtime_mvc/application/services/HistoryService.php:1128
-msgid "Track"
-msgstr "Pesma"
-
-#: airtime_mvc/application/services/HistoryService.php:1129
-#: airtime_mvc/application/models/Block.php:1356
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
-#: airtime_mvc/application/controllers/LocaleController.php:82
-msgid "Conductor"
-msgstr "Dirigent"
-
-#: airtime_mvc/application/services/HistoryService.php:1130
-#: airtime_mvc/application/models/Block.php:1365
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
-#: airtime_mvc/application/controllers/LocaleController.php:88
-msgid "Language"
-msgstr "Jezik"
-
-#: airtime_mvc/application/services/HistoryService.php:1155
-#: airtime_mvc/application/forms/EditHistoryItem.php:32
-msgid "Start Time"
-msgstr "Vreme Početka"
-
-#: airtime_mvc/application/services/HistoryService.php:1156
-#: airtime_mvc/application/forms/EditHistoryItem.php:44
-msgid "End Time"
-msgstr "Vreme Završetka"
-
-#: airtime_mvc/application/services/HistoryService.php:1176
-msgid "Played"
-msgstr "Puštena"
-
#: airtime_mvc/application/services/CalendarService.php:50
msgid "Record file doesn't exist"
msgstr "Snimljena datoteka ne postoji"
@@ -239,2605 +113,382 @@ msgstr "Emisija je izbrisana jer je snimljena emisija ne postoji!"
msgid "Must wait 1 hour to rebroadcast."
msgstr "Moraš pričekati 1 sat za re-emitovanje."
-#: airtime_mvc/application/models/Schedule.php:206
-msgid "livestream"
-msgstr ""
-
-#: airtime_mvc/application/models/ShowBuilder.php:212
-#, php-format
-msgid "Rebroadcast of %s from %s"
-msgstr "Reemitovanje od %s od %s"
-
-#: airtime_mvc/application/models/Webstream.php:166
-msgid "Length needs to be greater than 0 minutes"
-msgstr "Dužina mora da bude veća od 0 minuta"
-
-#: airtime_mvc/application/models/Webstream.php:171
-msgid "Length should be of form \"00h 00m\""
-msgstr "Dužina mora da bude u obliku \"00h 00m\""
-
-#: airtime_mvc/application/models/Webstream.php:184
-msgid "URL should be of form \"http://domain\""
-msgstr "URL mora da bude u obliku \"http://domain\""
-
-#: airtime_mvc/application/models/Webstream.php:187
-msgid "URL should be 512 characters or less"
-msgstr "URL mora da bude 512 znakova ili manje"
-
-#: airtime_mvc/application/models/Webstream.php:193
-msgid "No MIME type found for webstream."
-msgstr "Ne postoji MIME tip za prenos."
-
-#: airtime_mvc/application/models/Webstream.php:209
-msgid "Webstream name cannot be empty"
-msgstr "Ime prenosa ne može da da bude prazno"
-
-#: airtime_mvc/application/models/Webstream.php:278
-msgid "Could not parse XSPF playlist"
-msgstr "Nismo mogli analizirati XSPF spisak pesama"
-
-#: airtime_mvc/application/models/Webstream.php:298
-msgid "Could not parse PLS playlist"
-msgstr "Nismo mogli analizirati PLS spisak pesama"
-
-#: airtime_mvc/application/models/Webstream.php:318
-msgid "Could not parse M3U playlist"
-msgstr "Nismo mogli analizirati M3U spisak pesama"
-
-#: airtime_mvc/application/models/Webstream.php:332
-msgid "Invalid webstream - This appears to be a file download."
-msgstr "Nevažeći prenos - Čini se da je ovo preuzimanje."
-
-#: airtime_mvc/application/models/Webstream.php:336
-#, php-format
-msgid "Unrecognized stream type: %s"
-msgstr "Nepoznati prenosni tip: %s"
-
-#: airtime_mvc/application/models/Preference.php:460
-#, php-format
-msgid "Powered by %s"
-msgstr ""
-
-#: airtime_mvc/application/models/Preference.php:588
-msgid "Select Country"
-msgstr "Odaberi Državu"
-
-#: airtime_mvc/application/models/MusicDir.php:160
-#, php-format
-msgid "%s is already watched."
-msgstr "%s je već nadziran."
-
-#: airtime_mvc/application/models/MusicDir.php:164
-#, php-format
-msgid "%s contains nested watched directory: %s"
-msgstr "%s sadržava ugnežđene nadzirane direktorijume: %s"
-
-#: airtime_mvc/application/models/MusicDir.php:168
-#, php-format
-msgid "%s is nested within existing watched directory: %s"
-msgstr "%s se nalazi unutar u postojeći nadzirani direktorijumi: %s"
-
-#: airtime_mvc/application/models/MusicDir.php:189
-#: airtime_mvc/application/models/MusicDir.php:370
-#, php-format
-msgid "%s is not a valid directory."
-msgstr "%s nije valjan direktorijum."
-
-#: airtime_mvc/application/models/MusicDir.php:232
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list"
-msgstr "%s je već postavljena kao mapa za skladištenje ili je između popisa praćenih foldera"
-
-#: airtime_mvc/application/models/MusicDir.php:388
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list."
-msgstr "%s je već postavljena kao mapa za skladištenje ili je između popisa praćenih foldera."
-
-#: airtime_mvc/application/models/MusicDir.php:431
-#, php-format
-msgid "%s doesn't exist in the watched list."
-msgstr "%s ne postoji u listi nadziranih lokacije."
-
-#: airtime_mvc/application/models/Show.php:184
-msgid "Shows can have a max length of 24 hours."
-msgstr "Emisije mogu da imaju najveću dužinu 24 sata."
-
-#: airtime_mvc/application/models/Show.php:282
-#: airtime_mvc/application/forms/AddShowWhen.php:156
-msgid "End date/time cannot be in the past"
-msgstr "Datum završetka i vreme ne može da bude u prošlosti"
-
-#: airtime_mvc/application/models/Show.php:293
-msgid ""
-"Cannot schedule overlapping shows.\n"
-"Note: Resizing a repeating show affects all of its repeats."
-msgstr ""
-"Ne može da se zakaže preklapajuće emisije.\n"
-"Napomena: Promena veličine ponavljane emisije utiče na sve njene ponavljanje."
-
-#: airtime_mvc/application/models/Auth.php:33
-#, php-format
-msgid ""
-"Hi %s, \n"
-"\n"
-"Please click this link to reset your password: "
-msgstr ""
-
-#: airtime_mvc/application/models/Auth.php:38
-#, php-format
-msgid "%s Password Reset"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:333
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
-msgid "items"
-msgstr "elementi"
-
-#: airtime_mvc/application/models/Block.php:833
-#: airtime_mvc/application/models/Playlist.php:812
-msgid "Cue in and cue out are null."
-msgstr "'Cue in' i 'cue out' su nule."
-
-#: airtime_mvc/application/models/Block.php:868
-#: airtime_mvc/application/models/Block.php:924
-#: airtime_mvc/application/models/Playlist.php:851
-#: airtime_mvc/application/models/Playlist.php:895
-msgid "Can't set cue out to be greater than file length."
-msgstr "Ne možeš da podesiš da 'cue out' bude veće od dužine fajla."
-
-#: airtime_mvc/application/models/Block.php:879
-#: airtime_mvc/application/models/Block.php:900
-#: airtime_mvc/application/models/Playlist.php:843
-#: airtime_mvc/application/models/Playlist.php:868
-msgid "Can't set cue in to be larger than cue out."
-msgstr "Ne možeš da podesiš da 'cue in' bude veće nego 'cue out'."
-
-#: airtime_mvc/application/models/Block.php:935
-#: airtime_mvc/application/models/Playlist.php:887
-msgid "Can't set cue out to be smaller than cue in."
-msgstr "Ne možeš da podesiš da 'cue out' bude manje nego 'cue in'."
-
-#: airtime_mvc/application/models/Block.php:1351
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
-msgid "Select criteria"
-msgstr "Odaberi kriterijume"
-
-#: airtime_mvc/application/models/Block.php:1353
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
-msgid "Bit Rate (Kbps)"
-msgstr "Brzina u Bitovima (Kbps)"
-
-#: airtime_mvc/application/models/Block.php:1354
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
-#: airtime_mvc/application/controllers/LocaleController.php:80
-msgid "BPM"
-msgstr "BPM"
-
-#: airtime_mvc/application/models/Block.php:1358
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
-#: airtime_mvc/application/controllers/LocaleController.php:281
-#: airtime_mvc/application/layouts/scripts/layout.phtml:140
-msgid "Cue In"
-msgstr "Cue In"
-
-#: airtime_mvc/application/models/Block.php:1359
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:282
-#: airtime_mvc/application/layouts/scripts/layout.phtml:147
-msgid "Cue Out"
-msgstr "Cue Out"
-
-#: airtime_mvc/application/models/Block.php:1361
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
-#: airtime_mvc/application/controllers/LocaleController.php:84
-msgid "Encoded By"
-msgstr "Kodirano je po"
-
-#: airtime_mvc/application/models/Block.php:1366
-msgid "Upload Time"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1367
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
-#: airtime_mvc/application/controllers/LocaleController.php:89
-msgid "Last Modified"
-msgstr "Poslednja Izmena"
-
-#: airtime_mvc/application/models/Block.php:1368
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
-#: airtime_mvc/application/controllers/LocaleController.php:90
-msgid "Last Played"
-msgstr "Zadnji Put Odigrana"
-
-#: airtime_mvc/application/models/Block.php:1370
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
-#: airtime_mvc/application/controllers/LocaleController.php:92
-msgid "Mime"
-msgstr "Mime"
-
-#: airtime_mvc/application/models/Block.php:1372
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
-#: airtime_mvc/application/controllers/LocaleController.php:94
-msgid "Owner"
-msgstr "Vlasnik"
-
-#: airtime_mvc/application/models/Block.php:1373
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
-#: airtime_mvc/application/controllers/LocaleController.php:95
-msgid "Replay Gain"
-msgstr "Replay Gain"
-
-#: airtime_mvc/application/models/Block.php:1374
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
-msgid "Sample Rate (kHz)"
-msgstr "Uzorak Stopa (kHz)"
-
-#: airtime_mvc/application/models/Block.php:1376
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
-#: airtime_mvc/application/controllers/LocaleController.php:97
-msgid "Track Number"
-msgstr "Broj Pesma"
-
-#: airtime_mvc/application/models/Block.php:1377
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
-#: airtime_mvc/application/controllers/LocaleController.php:98
-msgid "Uploaded"
-msgstr "Dodata"
-
-#: airtime_mvc/application/models/Block.php:1378
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
-#: airtime_mvc/application/controllers/LocaleController.php:99
-msgid "Website"
-msgstr "Veb stranica"
-
-#: airtime_mvc/application/models/Block.php:1383
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
-#: airtime_mvc/application/controllers/LocaleController.php:151
-msgid "Select modifier"
-msgstr "Odaberi modifikator"
-
-#: airtime_mvc/application/models/Block.php:1384
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
-#: airtime_mvc/application/controllers/LocaleController.php:152
-msgid "contains"
-msgstr "sadrži"
-
-#: airtime_mvc/application/models/Block.php:1385
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
-#: airtime_mvc/application/controllers/LocaleController.php:153
-msgid "does not contain"
-msgstr "ne sadrži"
-
-#: airtime_mvc/application/models/Block.php:1386
-#: airtime_mvc/application/models/Block.php:1390
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
-#: airtime_mvc/application/controllers/LocaleController.php:154
-msgid "is"
-msgstr "je"
-
-#: airtime_mvc/application/models/Block.php:1387
-#: airtime_mvc/application/models/Block.php:1391
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
-#: airtime_mvc/application/controllers/LocaleController.php:155
-msgid "is not"
-msgstr "nije"
-
-#: airtime_mvc/application/models/Block.php:1388
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
-#: airtime_mvc/application/controllers/LocaleController.php:156
-msgid "starts with"
-msgstr "počinje se sa"
-
-#: airtime_mvc/application/models/Block.php:1389
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
-#: airtime_mvc/application/controllers/LocaleController.php:157
-msgid "ends with"
-msgstr "završava se sa"
-
-#: airtime_mvc/application/models/Block.php:1392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
-#: airtime_mvc/application/controllers/LocaleController.php:158
-msgid "is greater than"
-msgstr "je veći od"
-
-#: airtime_mvc/application/models/Block.php:1393
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
-#: airtime_mvc/application/controllers/LocaleController.php:159
-msgid "is less than"
-msgstr "je manji od"
-
-#: airtime_mvc/application/models/Block.php:1394
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
-#: airtime_mvc/application/controllers/LocaleController.php:160
-msgid "is in the range"
-msgstr "je u opsegu"
-
-#: airtime_mvc/application/models/Scheduler.php:73
-msgid "Cannot move items out of linked shows"
-msgstr "Ne možeš da premestiš stavke iz povezanih emisija"
-
-#: airtime_mvc/application/models/Scheduler.php:119
-msgid "The schedule you're viewing is out of date! (sched mismatch)"
-msgstr "Zastareo se pregledan raspored! (nevažeći raspored)"
-
-#: airtime_mvc/application/models/Scheduler.php:124
-msgid "The schedule you're viewing is out of date! (instance mismatch)"
-msgstr "Zastareo se pregledan raspored! (primer neusklađenost)"
-
-#: airtime_mvc/application/models/Scheduler.php:132
-#: airtime_mvc/application/models/Scheduler.php:458
-#: airtime_mvc/application/models/Scheduler.php:490
-msgid "The schedule you're viewing is out of date!"
-msgstr "Zastareo se pregledan raspored!"
-
-#: airtime_mvc/application/models/Scheduler.php:142
-#, php-format
-msgid "You are not allowed to schedule show %s."
-msgstr "Ne smeš da zakažeš rasporednu emisiju %s."
-
-#: airtime_mvc/application/models/Scheduler.php:146
-msgid "You cannot add files to recording shows."
-msgstr "Ne možeš da dodaš datoteke za snimljene emisije."
-
-#: airtime_mvc/application/models/Scheduler.php:152
-#, php-format
-msgid "The show %s is over and cannot be scheduled."
-msgstr "Emisija %s je gotova i ne mogu da bude zakazana."
-
-#: airtime_mvc/application/models/Scheduler.php:159
-#, php-format
-msgid "The show %s has been previously updated!"
-msgstr "Ranije je %s emisija već bila ažurirana!"
-
-#: airtime_mvc/application/models/Scheduler.php:178
-msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
-msgstr "Sadržaj u povezanim emisijama mora da bude zakazan pre ili posle bilo koje emisije"
-
-#: airtime_mvc/application/models/Scheduler.php:195
-msgid "Cannot schedule a playlist that contains missing files."
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:216
-#: airtime_mvc/application/models/Scheduler.php:305
-msgid "A selected File does not exist!"
-msgstr "Izabrani Fajl ne postoji!"
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
-#: airtime_mvc/application/configs/navigation.php:40
-msgid "Weekly Schedule"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
-#: airtime_mvc/application/forms/Player.php:77
-msgid "Preview:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
-#: airtime_mvc/application/configs/navigation.php:34
-msgid "Player"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
-#: airtime_mvc/application/controllers/LocaleController.php:362
-#: airtime_mvc/application/controllers/LocaleController.php:390
-msgid "Close"
-msgstr "Zatvori"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Add this show"
-msgstr "Dodaj ovu emisiju"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Update show"
-msgstr "Ažuriranje emisije"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
-msgid "What"
-msgstr "Šta"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
-msgid "When"
-msgstr "Kada"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
-msgid "Live Stream Input"
-msgstr "Ulaz Uživnog Prenosa"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
-msgid "Who"
-msgstr "Ko"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
-msgid "Style"
-msgstr "Stil"
-
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
-#: airtime_mvc/application/controllers/LocaleController.php:273
-msgid "Start"
-msgstr "Početak"
-
-#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
-msgid "Password Reset"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
-msgid "Email Sent!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
-msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
-msgid "Back"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
-msgid "New password"
-msgstr "Nova lozinka"
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
-msgid "Please enter and confirm your new password in the fields below."
-msgstr "Unesi i potvrdi svoju novu lozinku u polja dole."
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:3
-#: airtime_mvc/application/forms/Login.php:83
-msgid "Login"
-msgstr "Prijava"
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:7
-#, php-format
-msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:97
-msgid "Playout History"
-msgstr "Istorija Puštenih Pesama"
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
-msgid "Log Sheet"
-msgstr "Spisak Prijava"
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
-msgid "File Summary"
-msgstr "Datotečni Izveštaj"
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
-msgid "Show Summary"
-msgstr "Programski Izveštaj"
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
-msgid "Your trial expires in"
-msgstr "Vaš nalog ističe u"
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
-msgid "days"
-msgstr "dani"
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-#, php-format
-msgid "Purchase an %s Pro plan!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-msgid "My Account"
-msgstr "Moj Nalog"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
-msgid "Previous:"
-msgstr "Prethodna:"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
-msgid "Next:"
-msgstr "Sledeća:"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
-msgid "Source Streams"
-msgstr "Prenosni Izvori"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
-msgid "Master Source"
-msgstr "Majstorski Izvor"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
-msgid "Show Source"
-msgstr "Emisijski Izvor"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
-msgid "ON AIR"
-msgstr "PRENOS"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
-msgid "Listen"
-msgstr "Slušaj"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
-msgid "Logout"
-msgstr "Odjava"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
-msgid "Drop files here or click to browse your computer."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
-#: airtime_mvc/application/controllers/LocaleController.php:314
-msgid "in use"
-msgstr "u upotrebi"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
-#: airtime_mvc/application/controllers/LocaleController.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:401
-msgid "All"
-msgstr "Sve"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
-msgid "Failed"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
-msgid "Pending"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
-msgid "Recent Uploads"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
-#: airtime_mvc/application/configs/navigation.php:120
-msgid "Account Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
-msgid "Upgrade today to get more listeners and storage space!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
-msgid "View Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
-msgid "About"
-msgstr "O projektu"
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
-#, php-format
-msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
-#, php-format
-msgid "%1$s %2$s is distributed under the %3$s"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
-#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
-msgid "Live stream"
-msgstr "Prenos uživo"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
-msgid "Share"
-msgstr "Podeli"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
-msgid "Select stream:"
-msgstr "Prenosi:"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
-msgid "mute"
-msgstr "mute"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
-msgid "unmute"
-msgstr "uključi"
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
-#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
-#, php-format
-msgid "Welcome to %s!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
-#, php-format
-msgid "Here's how you can get started using %s to automate your broadcasts: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
-msgid "Upload audio tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
-msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
-msgid "Schedule a show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
-msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
-msgid "Add tracks to your show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
-msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
-msgid "Now you're good to go!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
-#, php-format
-msgid "For more detailed help, read the %suser manual%s."
-msgstr "Za detaljnu pomoć, pročitaj %suputstvo za korišćenje%s."
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
-msgid "Listeners"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
-msgid "Stream Data Collection Status"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
-#: airtime_mvc/application/views/scripts/error/error.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
-msgid "An error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
-msgid "Access Denied!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
-msgid "You do not have permission to access this page!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
-#: airtime_mvc/application/views/scripts/error/error.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
-#: airtime_mvc/application/configs/navigation.php:143
-msgid "Help"
-msgstr "Pomoć"
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
-msgid "Page not found!"
-msgstr "Stranica nije pronađena!"
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
-msgid "We couldn't find the page you were looking for."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error.phtml:12
-msgid "Looks like the page you were looking for doesn't exist!"
-msgstr "Izgleda stranica koju si tražio ne postoji!"
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
-msgid "Oops!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
-msgid "Something went wrong!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
-msgid "Bad Request!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
-msgid "The requested action is not supported!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
-msgid "Viewing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
-msgid "Editing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:3
-msgid "File import in progress..."
-msgstr "Uvoz datoteke je u toku..."
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:10
-#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
-msgid "Advanced Search Options"
-msgstr "Napredne Opcije Pretraživanja"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
-#: airtime_mvc/application/forms/Player.php:15
-#: airtime_mvc/application/forms/EditAudioMD.php:24
-msgid "Title:"
-msgstr "Naziv:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
-#: airtime_mvc/application/forms/EditAudioMD.php:34
-msgid "Creator:"
-msgstr "Tvorac:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
-#: airtime_mvc/application/forms/EditAudioMD.php:44
-msgid "Album:"
-msgstr "Album:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
-msgid "Track:"
-msgstr "Pesma:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
-msgid "Length:"
-msgstr "Dužina:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
-msgid "Sample Rate:"
-msgstr "Uzorak Stopa:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
-msgid "Bit Rate:"
-msgstr "Brzina u Bitovima:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
-#: airtime_mvc/application/forms/EditAudioMD.php:115
-msgid "Mood:"
-msgstr "Raspoloženje:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
-#: airtime_mvc/application/forms/EditAudioMD.php:62
-#: airtime_mvc/application/forms/AddShowWhat.php:45
-msgid "Genre:"
-msgstr "Žanr:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
-#: airtime_mvc/application/forms/EditAudioMD.php:72
-msgid "Year:"
-msgstr "Godina:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
-#: airtime_mvc/application/forms/EditAudioMD.php:85
-msgid "Label:"
-msgstr "Nalepnica:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
-#: airtime_mvc/application/forms/EditAudioMD.php:125
-msgid "BPM:"
-msgstr "BPM:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
-#: airtime_mvc/application/forms/EditAudioMD.php:95
-msgid "Composer:"
-msgstr "Kompozitor:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
-#: airtime_mvc/application/forms/EditAudioMD.php:105
-msgid "Conductor:"
-msgstr "Dirigent:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
-#: airtime_mvc/application/forms/EditAudioMD.php:135
-msgid "Copyright:"
-msgstr "Autorsko pravo:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
-msgid "Isrc Number:"
-msgstr "Isrc Broj:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
-#: airtime_mvc/application/forms/EditAudioMD.php:155
-msgid "Website:"
-msgstr "Veb stranica:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
-#: airtime_mvc/application/forms/EditUser.php:119
-#: airtime_mvc/application/forms/EditAudioMD.php:165
-#: airtime_mvc/application/forms/Login.php:68
-msgid "Language:"
-msgstr "Jezik:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
-msgid "File Path:"
-msgstr "Staža Datoteka:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
-#: airtime_mvc/application/forms/AddShowWhat.php:26
-msgid "Name:"
-msgstr "Naziv:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
-#: airtime_mvc/application/forms/AddShowWhat.php:54
-msgid "Description:"
-msgstr "Opis:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
-msgid "Web Stream"
-msgstr "Prenos"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
-msgid "Dynamic Smart Block"
-msgstr "Dinamički Pametan Blok"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
-msgid "Static Smart Block"
-msgstr "Statički Pametan Blok"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
-msgid "Audio Track"
-msgstr "Zvučni Zapis"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
-msgid "Playlist Contents: "
-msgstr "Sadržaji Spisak Pesama:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
-msgid "Static Smart Block Contents: "
-msgstr "Statički Pametan Blok Sadržaji:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
-msgid "Dynamic Smart Block Criteria: "
-msgstr "Dinamički Pametan Blok Kriterijumi:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
-msgid "Limit to "
-msgstr "Ograničeno za"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
-#: airtime_mvc/application/forms/AddShowWhat.php:36
-msgid "URL:"
-msgstr "URL:"
-
-#: airtime_mvc/application/views/scripts/form/login.phtml:41
-msgid "Forgot your password?"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
-#, php-format
-msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
-#, php-format
-msgid "Click the box below to promote your station on %s."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
-msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
-msgstr "(Kako bi se promovisao svoju stanicu, 'Pošalji povratne informacije' mora da bude omogućena)."
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
-msgid "(Required)"
-msgstr "(Obavezno)"
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
-msgid "(for verification purposes only, will not be published)"
-msgstr "(služi samo za proveru, neće da bude objavljena)"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
-msgid "Choose folder"
-msgstr "Odaberi folder"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
-msgid "Set"
-msgstr "Podesi"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
-msgid "Current Import Folder:"
-msgstr "Aktualna Uvozna Mapa:"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
-msgid "Add"
-msgstr "Dodaj"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
-#, php-format
-msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
-msgid "Remove watched directory"
-msgstr "Ukloni nadzoranu direktorijumu"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
-msgid "You are not watching any media folders."
-msgstr "Ne pratiš nijedne medijske mape."
-
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
-msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
-msgid "Live Broadcasting"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
-msgid "Use these settings in your broadcasting software to stream live at any time."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
-msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
-msgid "Choose Show Instance"
-msgstr "Odaberi Emisijsku Stepenu"
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
-#: airtime_mvc/application/forms/EditHistoryItem.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:400
-msgid "No Show"
-msgstr "Nema Programa"
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
-msgid "Find"
-msgstr "Pronađi"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
-msgid "Choose Days:"
-msgstr "Odaberi Dane:"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
-#: airtime_mvc/application/forms/AddShowStyle.php:64
-#: airtime_mvc/application/forms/GeneralPreferences.php:53
-msgid "Remove"
-msgstr "Ukloni"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
-msgid "Stream "
-msgstr "Prenos"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
-msgid "Additional Options"
-msgstr "Dodatne Opcije"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
-msgid "The following info will be displayed to listeners in their media player:"
-msgstr "Sledeće informacije će da bude prikazane slušaocima u medijskom plejerima:"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
-msgid "(Your radio station website)"
-msgstr "(Tvoja radijska stanica veb stranice)"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
-msgid "Stream URL: "
-msgstr "URL Prenosa:"
-
-#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
-msgid "Find Shows"
-msgstr "Pronađi Emisije"
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
-msgid "TuneIn Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
-msgid "SoundCloud Settings"
-msgstr "SoundCloud Podešavanje"
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
-msgid "Dangerous Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
-msgid "Search Criteria:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
-msgid "New Criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
-msgid "or"
-msgstr "ili"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
-msgid "and"
-msgstr "i"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
-msgid "New Modifier"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
-msgid " to "
-msgstr "do"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
-msgid "files meet the criteria"
-msgstr "datoteke zadovoljavaju kriterijume"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
-msgid "file meets the criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
-msgid "Filter History"
-msgstr "Filtriraj Istorije"
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
-#: airtime_mvc/application/configs/navigation.php:61
-msgid "My Profile"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
-#, php-format
-msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
-#: airtime_mvc/application/forms/Preferences.php:40
-#: airtime_mvc/application/forms/PasswordChange.php:43
-#: airtime_mvc/application/forms/AddUser.php:110
-#: airtime_mvc/application/forms/BillingClient.php:193
-#: airtime_mvc/application/forms/SupportSettings.php:131
-#: airtime_mvc/application/forms/EditHistory.php:131
-#: airtime_mvc/application/controllers/LocaleController.php:294
-msgid "Save"
-msgstr "Sačuvaj"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
-msgid "Repeat Days:"
-msgstr "Ponovljeni Dani:"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
-msgid "Register Airtime"
-msgstr "Airtime Registar"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
-#: airtime_mvc/application/forms/GeneralPreferences.php:43
-msgid "Note: Anything larger than 600x600 will be resized."
-msgstr "Napomena: Sve veća od 600k600 će da se menjaju."
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
-msgid "Show me what I am sending "
-msgstr "Pokaži mi šta šaljem"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
-msgid "Terms and Conditions"
-msgstr "Uslovi i Odredbe"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
-msgid "Creating File Summary Template"
-msgstr "Stvaranje Šablona za Datotečni Sažeci"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
-msgid "Creating Log Sheet Template"
-msgstr "Stvaranje Listu Šablona"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
-msgid "Name"
+#: airtime_mvc/application/services/HistoryService.php:1117
+#: airtime_mvc/application/services/HistoryService.php:1157
+#: airtime_mvc/application/services/HistoryService.php:1174
+#: airtime_mvc/application/controllers/LocaleController.php:76
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
+#: airtime_mvc/application/models/Block.php:1375
+msgid "Title"
msgstr "Naziv"
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
-msgid "Add more elements"
-msgstr "Dodaj više elemenata"
+#: airtime_mvc/application/services/HistoryService.php:1118
+#: airtime_mvc/application/services/HistoryService.php:1158
+#: airtime_mvc/application/services/HistoryService.php:1175
+#: airtime_mvc/application/controllers/LocaleController.php:77
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
+#: airtime_mvc/application/models/Block.php:1360
+msgid "Creator"
+msgstr "Tvorac"
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
-msgid "Add New Field"
-msgstr "Dodaj Novo Polje"
+#: airtime_mvc/application/services/HistoryService.php:1119
+#: airtime_mvc/application/controllers/LocaleController.php:78
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
+#: airtime_mvc/application/models/Block.php:1352
+msgid "Album"
+msgstr "Album"
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
-msgid "Set Default Template"
-msgstr "Podesi Podrazumevano Šablonu"
+#: airtime_mvc/application/services/HistoryService.php:1120
+#: airtime_mvc/application/services/HistoryService.php:1177
+#: airtime_mvc/application/controllers/LocaleController.php:91
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
+#: airtime_mvc/application/models/Block.php:1369
+msgid "Length"
+msgstr "Dužina"
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
-msgid "Playout History Templates"
-msgstr ""
+#: airtime_mvc/application/services/HistoryService.php:1121
+#: airtime_mvc/application/controllers/LocaleController.php:85
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
+#: airtime_mvc/application/models/Block.php:1362
+msgid "Genre"
+msgstr "Žanr"
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
-msgid "Log Sheet Templates"
-msgstr "Šabloni Spisak Prijave"
+#: airtime_mvc/application/services/HistoryService.php:1122
+#: airtime_mvc/application/controllers/LocaleController.php:93
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
+#: airtime_mvc/application/models/Block.php:1371
+msgid "Mood"
+msgstr "Raspoloženje"
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
-msgid "New Log Sheet Template"
-msgstr "Novi Listu šablona"
+#: airtime_mvc/application/services/HistoryService.php:1123
+#: airtime_mvc/application/controllers/LocaleController.php:87
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
+#: airtime_mvc/application/models/Block.php:1364
+msgid "Label"
+msgstr "Nalepnica"
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
-msgid "No Log Sheet Templates"
-msgstr "Nema Listu Šablona"
+#: airtime_mvc/application/services/HistoryService.php:1124
+#: airtime_mvc/application/services/HistoryService.php:1178
+#: airtime_mvc/application/controllers/LocaleController.php:81
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
+#: airtime_mvc/application/models/Block.php:1355
+msgid "Composer"
+msgstr "Kompozitor"
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
-#: airtime_mvc/application/controllers/LocaleController.php:397
-msgid "Set Default"
-msgstr "Postavi Podrazumevano"
+#: airtime_mvc/application/services/HistoryService.php:1125
+#: airtime_mvc/application/controllers/LocaleController.php:86
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
+#: airtime_mvc/application/models/Block.php:1363
+msgid "ISRC"
+msgstr "ISRC"
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
-msgid "File Summary Templates"
-msgstr "Šabloni za Datotečni Sažeci"
+#: airtime_mvc/application/services/HistoryService.php:1126
+#: airtime_mvc/application/services/HistoryService.php:1179
+#: airtime_mvc/application/controllers/LocaleController.php:83
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
+#: airtime_mvc/application/models/Block.php:1357
+msgid "Copyright"
+msgstr "Autorsko pravo"
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
-msgid "New File Summary Template"
-msgstr "Novi Šablon za Datotečni Sažeci"
+#: airtime_mvc/application/services/HistoryService.php:1127
+#: airtime_mvc/application/controllers/LocaleController.php:100
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
+#: airtime_mvc/application/models/Block.php:1379
+msgid "Year"
+msgstr "Godina"
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
-msgid "No File Summary Templates"
-msgstr "Nema Šablona za Datotečni Sažeci"
+#: airtime_mvc/application/services/HistoryService.php:1128
+msgid "Track"
+msgstr "Pesma"
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
-msgid "Disk Space"
-msgstr "Diskovni Prostor"
+#: airtime_mvc/application/services/HistoryService.php:1129
+#: airtime_mvc/application/controllers/LocaleController.php:82
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
+#: airtime_mvc/application/models/Block.php:1356
+msgid "Conductor"
+msgstr "Dirigent"
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
-#: airtime_mvc/application/controllers/LocaleController.php:315
-msgid "Disk"
-msgstr "Disk"
+#: airtime_mvc/application/services/HistoryService.php:1130
+#: airtime_mvc/application/controllers/LocaleController.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
+#: airtime_mvc/application/models/Block.php:1365
+msgid "Language"
+msgstr "Jezik"
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
-#: airtime_mvc/application/forms/AddShowWhen.php:89
-msgid "Duration:"
-msgstr "Trajanje:"
+#: airtime_mvc/application/services/HistoryService.php:1155
+#: airtime_mvc/application/forms/EditHistoryItem.php:32
+msgid "Start Time"
+msgstr "Vreme Početka"
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
-msgid "Toggle Details"
-msgstr ""
+#: airtime_mvc/application/services/HistoryService.php:1156
+#: airtime_mvc/application/forms/EditHistoryItem.php:44
+msgid "End Time"
+msgstr "Vreme Završetka"
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
-msgid "Playlist crossfade"
-msgstr "Križno utišavanje spisak pesama"
+#: airtime_mvc/application/services/HistoryService.php:1176
+msgid "Played"
+msgstr "Puštena"
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-msgid "Remove all content from this smart block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Clear"
-msgstr "Očisti"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "Fade in: "
-msgstr "Odtamnjenje:"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "(ss.t)"
-msgstr "(ss.t)"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-msgid "Fade out: "
-msgstr "Zatamnjenje:"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
-#: airtime_mvc/application/forms/EditAudioMD.php:186
-#: airtime_mvc/application/forms/EditHistory.php:141
-#: airtime_mvc/application/controllers/LocaleController.php:295
-#: airtime_mvc/application/controllers/LocaleController.php:318
-msgid "Cancel"
-msgstr "Odustani"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
-msgid "No smart block currently open"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
-msgid "Show Waveform"
-msgstr "Emisijski zvučni talasni oblik"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-msgid "Cue In: "
-msgstr "Cue In: "
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "(hh:mm:ss.t)"
-msgstr "(hh:mm:ss.t)"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "Cue Out: "
-msgstr "Cue Out: "
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
-msgid "Original Length:"
-msgstr "Originalna Dužina:"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
-msgid "Expand Static Block"
-msgstr "Proširenje Statičkog Bloka"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
-msgid "Expand Dynamic Block"
-msgstr "Proširenje Dinamičkog Bloka"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
-msgid "Choose some search criteria above and click Generate to create this playlist."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
-msgid "A track list will be generated when you schedule this smart block into a show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
-msgid "Drag tracks here from your library to add them to the playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-msgid "Shuffle playlist"
-msgstr "Slučajni izbor spisak pesama"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
-msgid "Shuffle"
-msgstr "Mešanje"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Empty playlist content"
-msgstr "Prazan sadržaj spisak pesama"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-msgid "Save playlist"
-msgstr "Sačuvaj spisak pesama"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
-msgid "No open playlist"
-msgstr "Nema otvorenih spisak pesama"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
-msgid "previous"
-msgstr "prethodna"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
-msgid "play"
-msgstr "pokreni"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
-msgid "pause"
-msgstr "pauza"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
-msgid "next"
-msgstr "sledeća"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
-msgid "stop"
-msgstr "zaustavi"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
-msgid "max volume"
-msgstr "maks glasnoća"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
-msgid "Update Required"
-msgstr "Potrebno Ažuriranje"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
+#: airtime_mvc/application/controllers/LibraryController.php:31
+#: airtime_mvc/application/controllers/PlaylistController.php:147
#, php-format
-msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
-msgstr "Medija je potrebna za reprodukciju, i moraš da ažuriraš svoj pretraživač na noviju verziju, ili da ažuriraš svoj %sFlash plugin%s."
+msgid "%s not found"
+msgstr "%s nije pronađen"
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
-msgid "Stream Settings"
-msgstr "Prenosna Podešavanja"
+#: airtime_mvc/application/controllers/LibraryController.php:40
+#: airtime_mvc/application/controllers/PlaylistController.php:168
+msgid "Something went wrong."
+msgstr "Nešto je pošlo po krivu."
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
-msgid "Global"
+#: airtime_mvc/application/controllers/LibraryController.php:95
+#: airtime_mvc/application/controllers/ShowbuilderController.php:136
+msgid "Preview"
+msgstr "Pregled"
+
+#: airtime_mvc/application/controllers/LibraryController.php:115
+#: airtime_mvc/application/controllers/LibraryController.php:177
+#: airtime_mvc/application/controllers/LibraryController.php:200
+msgid "Add to Playlist"
+msgstr "Dodaj na Spisak Pesama"
+
+#: airtime_mvc/application/controllers/LibraryController.php:117
+msgid "Add to Smart Block"
+msgstr "Dodaj u Smart Block"
+
+#: airtime_mvc/application/controllers/LibraryController.php:123
+#: airtime_mvc/application/controllers/LocaleController.php:66
+msgid "Edit Metadata"
+msgstr "Uredi Metapodatke"
+
+#: airtime_mvc/application/controllers/LibraryController.php:131
+#: airtime_mvc/application/controllers/ScheduleController.php:712
+msgid "Download"
+msgstr "Preuzimanje"
+
+#: airtime_mvc/application/controllers/LibraryController.php:147
+msgid "View track"
msgstr ""
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
-msgid "dB"
-msgstr "dB"
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
-msgid "Output Streams"
+#: airtime_mvc/application/controllers/LibraryController.php:148
+msgid "Remove track"
msgstr ""
-#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
-#: airtime_mvc/application/controllers/LocaleController.php:166
-msgid "Manage Media Folders"
-msgstr "Upravljanje Medijske Mape"
-
-#: airtime_mvc/application/views/scripts/preference/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:56
-msgid "General"
+#: airtime_mvc/application/controllers/LibraryController.php:154
+#: airtime_mvc/application/controllers/LibraryController.php:159
+msgid "Upload track"
msgstr ""
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
-msgid "Description"
-msgstr "Opis"
+#: airtime_mvc/application/controllers/LibraryController.php:169
+msgid "Duplicate Playlist"
+msgstr "Udvostručavanje"
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
-msgid "Stream URL:"
-msgstr "URL Prenosa:"
+#: airtime_mvc/application/controllers/LibraryController.php:213
+msgid "No action available"
+msgstr "Nema dostupnih akcija"
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
-msgid "Default Length:"
-msgstr "Zadata Dužina:"
+#: airtime_mvc/application/controllers/LibraryController.php:233
+msgid "You don't have permission to delete selected items."
+msgstr "Nemaš dopuštenje za brisanje odabrane stavke."
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
-msgid "No webstream"
-msgstr "Nema prenosa"
+#: airtime_mvc/application/controllers/LibraryController.php:279
+msgid "Could not delete file because it is scheduled in the future."
+msgstr ""
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
-msgid "Manage Users"
-msgstr "Upravljanje Korisnike"
+#: airtime_mvc/application/controllers/LibraryController.php:282
+msgid "Could not delete file(s)."
+msgstr ""
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
-msgid "New User"
-msgstr "Novi Korisnik"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
-msgid "id"
-msgstr "id"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
-#: airtime_mvc/application/forms/PasswordRestore.php:25
-msgid "Username"
-msgstr "Korisničko ime"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
-msgid "First Name"
-msgstr "Ime"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
-msgid "Last Name"
-msgstr "Prezime"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
-msgid "User Type"
-msgstr "Vrsta Korisnika"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
+#: airtime_mvc/application/controllers/LibraryController.php:322
#, php-format
-msgid "Super Admin details can be changed in your Billing Settings."
-msgstr ""
+msgid "Copy of %s"
+msgstr "Kopiranje od %s"
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
-#: airtime_mvc/application/controllers/LocaleController.php:74
-#: airtime_mvc/application/layouts/scripts/layout.phtml:78
-msgid "Tracks"
-msgstr ""
+#: airtime_mvc/application/controllers/WebstreamController.php:28
+#: airtime_mvc/application/controllers/WebstreamController.php:32
+msgid "Untitled Webstream"
+msgstr "Neimenovani Prenos"
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
-#: airtime_mvc/application/controllers/LocaleController.php:104
-#: airtime_mvc/application/layouts/scripts/layout.phtml:80
-msgid "Playlists"
-msgstr "Liste pesama"
+#: airtime_mvc/application/controllers/WebstreamController.php:150
+msgid "Webstream saved."
+msgstr "Prenos je sačuvan."
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
-#: airtime_mvc/application/controllers/LocaleController.php:105
-#: airtime_mvc/application/layouts/scripts/layout.phtml:82
-msgid "Smart Blocks"
-msgstr "Smart Block-ovi"
+#: airtime_mvc/application/controllers/WebstreamController.php:158
+msgid "Invalid form values."
+msgstr "Nevažeći vrednosti obrasca."
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
-#: airtime_mvc/application/layouts/scripts/layout.phtml:84
-msgid "Webstreams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
-#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
-#: airtime_mvc/application/layouts/scripts/layout.phtml:76
-msgid "Dashboard"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:12
-msgid "Radio Page"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:19
-msgid "Calendar"
-msgstr "Kalendar"
-
-#: airtime_mvc/application/configs/navigation.php:26
-msgid "Widgets"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:48
-msgid "Settings"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:67
-msgid "Users"
-msgstr "Korisnici"
-
-#: airtime_mvc/application/configs/navigation.php:74
-msgid "Streams"
-msgstr "Prenosi"
-
-#: airtime_mvc/application/configs/navigation.php:82
-msgid "Analytics"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:90
-msgid "Listener Stats"
-msgstr "Slušateljska Statistika"
-
-#: airtime_mvc/application/configs/navigation.php:104
-msgid "History Templates"
-msgstr "Istorijski Šabloni"
-
-#: airtime_mvc/application/configs/navigation.php:113
-msgid "Billing"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:127
-msgid "Account Details"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:134
-msgid "View Invoices"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:150
-msgid "Getting Started"
-msgstr "Početak Korišćenja"
-
-#: airtime_mvc/application/configs/navigation.php:157
-msgid "FAQ"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:162
-msgid "User Manual"
-msgstr "Uputstvo"
-
-#: airtime_mvc/application/configs/navigation.php:167
-msgid "File a Support Ticket"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:12
-msgid "Background Colour:"
-msgstr "Boja Pozadine:"
-
-#: airtime_mvc/application/forms/AddShowStyle.php:31
-msgid "Text Colour:"
-msgstr "Boja Teksta:"
-
-#: airtime_mvc/application/forms/AddShowStyle.php:49
-msgid "Current Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:72
-msgid "Show Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:87
-msgid "Logo Preview:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:19
-msgid "Push metadata to your station on TuneIn?"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:24
-msgid "Station ID:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:30
-msgid "Partner Key:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:36
-msgid "Partner Id:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:77
-#: airtime_mvc/application/forms/TuneInPreferences.php:86
-msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:14
-msgid "Now Playing"
-msgstr "Trenutno Izvođena"
-
-#: airtime_mvc/application/forms/Player.php:25
-msgid "Select Stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:28
-msgid "Auto detect the most appropriate stream to use."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:29
-msgid "Select a stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:41
-msgid " - Mobile friendly"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:45
-msgid " - The player does not support Opus streams."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:71
-msgid "Embeddable code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:72
-msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:37
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
-#: airtime_mvc/application/forms/Login.php:41
-#: airtime_mvc/application/forms/AddUser.php:29
-msgid "Username:"
-msgstr "Korisničko ime:"
-
-#: airtime_mvc/application/forms/EditUser.php:48
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
-#: airtime_mvc/application/forms/Login.php:54
-#: airtime_mvc/application/forms/AddUser.php:38
-#: airtime_mvc/application/forms/BillingClient.php:172
-msgid "Password:"
-msgstr "Lozinka:"
-
-#: airtime_mvc/application/forms/EditUser.php:57
-#: airtime_mvc/application/forms/AddUser.php:46
-#: airtime_mvc/application/forms/BillingClient.php:181
-msgid "Verify Password:"
-msgstr "Potvrdi Lozinku:"
-
-#: airtime_mvc/application/forms/EditUser.php:67
-#: airtime_mvc/application/forms/AddUser.php:55
-msgid "Firstname:"
-msgstr "Ime:"
-
-#: airtime_mvc/application/forms/EditUser.php:75
-#: airtime_mvc/application/forms/AddUser.php:61
-msgid "Lastname:"
-msgstr "Prezime:"
-
-#: airtime_mvc/application/forms/EditUser.php:83
-#: airtime_mvc/application/forms/RegisterAirtime.php:51
-#: airtime_mvc/application/forms/AddUser.php:67
-#: airtime_mvc/application/forms/SupportSettings.php:43
-msgid "Email:"
-msgstr "E-mail:"
-
-#: airtime_mvc/application/forms/EditUser.php:94
-#: airtime_mvc/application/forms/AddUser.php:76
-msgid "Mobile Phone:"
-msgstr "Mobilni Telefon:"
-
-#: airtime_mvc/application/forms/EditUser.php:102
-#: airtime_mvc/application/forms/AddUser.php:82
-msgid "Skype:"
-msgstr "Skype:"
-
-#: airtime_mvc/application/forms/EditUser.php:110
-#: airtime_mvc/application/forms/AddUser.php:88
-msgid "Jabber:"
-msgstr "Jabber:"
-
-#: airtime_mvc/application/forms/EditUser.php:129
-msgid "Interface Timezone:"
-msgstr "Vremenska Zona Interfejsi:"
-
-#: airtime_mvc/application/forms/EditUser.php:155
-#: airtime_mvc/application/forms/AddUser.php:120
-msgid "Login name is not unique."
-msgstr "Ime prijave nije jedinstveno."
-
-#: airtime_mvc/application/forms/AddShowRR.php:10
-msgid "Record from Line In?"
-msgstr "Snimanje sa Line In?"
-
-#: airtime_mvc/application/forms/AddShowRR.php:16
-msgid "Rebroadcast?"
-msgstr "Ponovo da emituje?"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:16
-msgid "'%value%' does not fit the time format 'HH:mm'"
-msgstr "'%value%' se ne uklapa u vremenskom formatu 'HH:mm'"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:22
-msgid "Start Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:37
-msgid "In the Future:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:64
-msgid "End Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:98
-msgid "Timezone:"
-msgstr "Vremenska Zona:"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:107
-msgid "Repeats?"
-msgstr "Ponavljanje?"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:139
-msgid "Cannot create show in the past"
-msgstr "Ne može da se stvori emisiju u prošlosti"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:147
-msgid "Cannot modify start date/time of the show that is already started"
-msgstr "Ne možeš da menjaš datum/vreme početak emisije, ako je već počela"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:164
-msgid "Cannot have duration < 0m"
-msgstr "Ne može da traje < 0m"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:168
-msgid "Cannot have duration 00h 00m"
-msgstr "Ne može da traje 00h 00m"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:175
-msgid "Cannot have duration greater than 24h"
-msgstr "Ne može da traje više od 24h"
-
-#: airtime_mvc/application/forms/AddShowWho.php:10
-msgid "Search Users:"
-msgstr "Traži Korisnike:"
-
-#: airtime_mvc/application/forms/AddShowWho.php:24
-msgid "DJs:"
-msgstr "Disk-džokeji:"
-
-#: airtime_mvc/application/forms/PasswordChange.php:17
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
-msgid "Password"
-msgstr "Lozinka"
-
-#: airtime_mvc/application/forms/PasswordChange.php:28
-msgid "Confirm new password"
-msgstr "Potvrdi novu lozinku"
-
-#: airtime_mvc/application/forms/PasswordChange.php:36
-msgid "Password confirmation does not match your password."
-msgstr "Lozinke koje ste uneli ne podudaraju se."
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
-msgid "Station Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
-#: airtime_mvc/application/forms/GeneralPreferences.php:127
-msgid "Station Timezone"
-msgstr "Stanična Vremenska Zona"
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
-msgid "Auto Switch Off:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
-msgid "Auto Switch On:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
-msgid "Switch Transition Fade (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
-#: airtime_mvc/application/forms/GeneralPreferences.php:68
-#: airtime_mvc/application/forms/GeneralPreferences.php:82
-#: airtime_mvc/application/forms/GeneralPreferences.php:96
-msgid "Please enter a time in seconds (eg. 0.5)"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
-#: airtime_mvc/application/forms/AddShowLiveStream.php:48
-msgid "Host:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
-#: airtime_mvc/application/forms/AddShowLiveStream.php:54
-msgid "Port:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
-#: airtime_mvc/application/forms/AddShowLiveStream.php:60
-msgid "Mount:"
-msgstr ""
-
-#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
-msgid "Value is required and can't be empty"
-msgstr "Vrednost je potrebna i ne može da bude prazan"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:25
-#: airtime_mvc/application/forms/RegisterAirtime.php:30
-#: airtime_mvc/application/forms/SupportSettings.php:18
-msgid "Station Name"
-msgstr "Naziv Stanice"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:33
-msgid "Station Description"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:42
-#: airtime_mvc/application/forms/RegisterAirtime.php:106
-msgid "Station Logo:"
-msgstr "Logo:"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:62
-msgid "Default Crossfade Duration (s):"
-msgstr "Podrazumevano Trajanje Ukršteno Stišavanje (s):"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:76
-msgid "Default Fade In (s):"
-msgstr "Podrazumevano Odtamnjenje (s):"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:90
-msgid "Default Fade Out (s):"
-msgstr "Podrazumevano Zatamnjenje (s):"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:102
-msgid "Public Airtime API"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:103
-msgid "Required for embeddable schedule widget."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:105
-msgid "Disabled"
-msgstr "Onemogućeno"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:106
-msgid "Enabled"
-msgstr "Omogućeno"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:109
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
msgid ""
-"Enabling this feature will allow Airtime to provide schedule data\n"
-" to external widgets that can be embedded in your website."
+"To configure and use the embeddable player you must:
\n"
+" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
+" 2. Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/forms/GeneralPreferences.php:120
-msgid "Default Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:134
-msgid "Week Starts On"
-msgstr "Prvi Dan u Nedelji"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:150
-msgid "Display login button on your Radio Page?"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:158
-#: airtime_mvc/application/controllers/LocaleController.php:249
-msgid "Sunday"
-msgstr "Nedelja"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:159
-#: airtime_mvc/application/controllers/LocaleController.php:250
-msgid "Monday"
-msgstr "Ponedeljak"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:160
-#: airtime_mvc/application/controllers/LocaleController.php:251
-msgid "Tuesday"
-msgstr "Utorak"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:161
-#: airtime_mvc/application/controllers/LocaleController.php:252
-msgid "Wednesday"
-msgstr "Sreda"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:162
-#: airtime_mvc/application/controllers/LocaleController.php:253
-msgid "Thursday"
-msgstr "Četvrtak"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:163
-#: airtime_mvc/application/controllers/LocaleController.php:254
-msgid "Friday"
-msgstr "Petak"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:164
-#: airtime_mvc/application/controllers/LocaleController.php:255
-msgid "Saturday"
-msgstr "Subota"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
-msgid "Default License:"
-msgstr "Zadata Dozvola:"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
-msgid "All rights are reserved"
-msgstr "Sva prava zadržana"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
-msgid "The work is in the public domain"
-msgstr "Rad je u javnom domenu"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
-msgid "Creative Commons Attribution"
-msgstr "Creative Commons Imenovanje"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
-msgid "Creative Commons Attribution Noncommercial"
-msgstr "Creative Commons Imenovanje Nekomercijalno"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
-msgid "Creative Commons Attribution No Derivative Works"
-msgstr "Creative Commons Imenovanje Bez Izvedenih Dela"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
-msgid "Creative Commons Attribution Share Alike"
-msgstr "Creative Commons Deli Pod Istim Uslovima"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
-msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
-msgstr "Creative Commons Imenovanje Nekomercijalno Bez Izvedenih Dela"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
-msgid "Creative Commons Attribution Noncommercial Share Alike"
-msgstr "Creative Commons Imenovanje Nekomercijalno Dijeli Pod Istim Uslovima"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
-msgid "Default Sharing Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
-msgid "Public"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
-msgid "Private"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:18
-#: airtime_mvc/application/forms/DateRange.php:16
-msgid "Date Start:"
-msgstr "Datum Početka:"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:37
-#: airtime_mvc/application/forms/ShowBuilder.php:65
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
-#: airtime_mvc/application/forms/DateRange.php:35
-#: airtime_mvc/application/forms/DateRange.php:63
-msgid "Invalid character entered"
-msgstr "Uneseni su nevažeći znakovi"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:46
-#: airtime_mvc/application/forms/AddShowRepeats.php:56
-#: airtime_mvc/application/forms/DateRange.php:44
-msgid "Date End:"
-msgstr "Datum Završetka:"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:72
-#: airtime_mvc/application/forms/ShowBuilder.php:88
-msgid "Filter by Show"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:80
-msgid "All My Shows:"
-msgstr "Sve Moje Emisije:"
-
-#: airtime_mvc/application/forms/EditAudioMD.php:145
-msgid "ISRC Number:"
-msgstr "ISRC Broj:"
-
-#: airtime_mvc/application/forms/EditAudioMD.php:176
-msgid "OK"
-msgstr "OK"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
-msgid "Day must be specified"
-msgstr "Dan mora da bude naveden"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
-msgid "Time must be specified"
-msgstr "Vreme mora da bude navedeno"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
-msgid "Must wait at least 1 hour to rebroadcast"
-msgstr "Moraš da čekaš najmanje 1 sat za re-emitovanje"
-
-#: airtime_mvc/application/forms/AddShowWhat.php:30
-msgid "Untitled Show"
-msgstr "Neimenovana Emisija"
-
-#: airtime_mvc/application/forms/AddShowWhat.php:69
-msgid "Instance Description:"
-msgstr ""
-
-#: airtime_mvc/application/forms/DangerousPreferences.php:12
-msgid "Delete All Tracks in Library"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:39
-#: airtime_mvc/application/forms/SupportSettings.php:31
-msgid "Phone:"
-msgstr "Telefon:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:62
-#: airtime_mvc/application/forms/SupportSettings.php:54
-msgid "Station Web Site:"
-msgstr "Veb Stranica:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:73
-#: airtime_mvc/application/forms/BillingClient.php:102
-#: airtime_mvc/application/forms/SupportSettings.php:65
-msgid "Country:"
-msgstr "Država:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:84
-#: airtime_mvc/application/forms/BillingClient.php:70
-#: airtime_mvc/application/forms/SupportSettings.php:76
-msgid "City:"
-msgstr "Grad:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:96
-#: airtime_mvc/application/forms/SupportSettings.php:88
-msgid "Station Description:"
-msgstr "Opis:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:116
-#: airtime_mvc/application/forms/SupportSettings.php:98
-#: airtime_mvc/application/controllers/LocaleController.php:341
-msgid "Send support feedback"
-msgstr "Pošalji povratne informacije"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:126
-#: airtime_mvc/application/forms/SupportSettings.php:108
-#, php-format
-msgid "Promote my station on %s"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:151
-#: airtime_mvc/application/forms/SupportSettings.php:120
-#, php-format
-msgid "By checking this box, I agree to %s's %sprivacy policy%s."
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:169
-#: airtime_mvc/application/forms/SupportSettings.php:143
-msgid "You have to agree to privacy policy."
-msgstr "Moraš da pristaneš na pravila o privatnosti."
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:10
-msgid "Link:"
-msgstr "Link:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:16
-msgid "Repeat Type:"
-msgstr "Tip Ponavljanje:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:19
-msgid "weekly"
-msgstr "nedeljno"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:20
-msgid "every 2 weeks"
-msgstr "svake 2 nedelje"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:21
-msgid "every 3 weeks"
-msgstr "svaka 3 nedelje"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:22
-msgid "every 4 weeks"
-msgstr "svaka 4 nedelje"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:23
-msgid "monthly"
-msgstr "mesečno"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:32
-msgid "Select Days:"
-msgstr "Odaberi Dane:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:35
-#: airtime_mvc/application/controllers/LocaleController.php:256
-msgid "Sun"
-msgstr "Ned"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:36
-#: airtime_mvc/application/controllers/LocaleController.php:257
-msgid "Mon"
-msgstr "Pon"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:37
-#: airtime_mvc/application/controllers/LocaleController.php:258
-msgid "Tue"
-msgstr "Uto"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:38
-#: airtime_mvc/application/controllers/LocaleController.php:259
-msgid "Wed"
-msgstr "Sre"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:39
-#: airtime_mvc/application/controllers/LocaleController.php:260
-msgid "Thu"
-msgstr "Čet"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:40
-#: airtime_mvc/application/controllers/LocaleController.php:261
-msgid "Fri"
-msgstr "Pet"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:41
-#: airtime_mvc/application/controllers/LocaleController.php:262
-msgid "Sat"
-msgstr "Sub"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:47
-msgid "Repeat By:"
-msgstr "Ponavljanje Po:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the month"
-msgstr "dan u mesecu"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the week"
-msgstr "dan u nedelji"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:69
-msgid "No End?"
-msgstr "Nema Kraja?"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:106
-msgid "End date must be after start date"
-msgstr "Datum završetka mora da bude posle datuma početka"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:113
-msgid "Please select a repeat day"
-msgstr "Molimo, odaberi kojeg dana"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:10
-#, php-format
-msgid "Use %s Authentication:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:16
-msgid "Use Custom Authentication:"
-msgstr "Koristi Prilagođeno potvrdu identiteta:"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:25
-msgid "Custom Username"
-msgstr "Prilagođeno Korisničko Ime"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:37
-msgid "Custom Password"
-msgstr "Prilagođena Lozinka"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:77
-msgid "Username field cannot be empty."
-msgstr "'Korisničko Ime' polja ne sme da ostane prazno."
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:82
-msgid "Password field cannot be empty."
-msgstr "'Lozinka' polja ne sme da ostane prazno."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
-msgid "Enabled:"
-msgstr "Omogućeno:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
-msgid "Mobile:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
-msgid "Stream Type:"
-msgstr "Prenos Tipa:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
-msgid "Service Type:"
-msgstr "Tip Usluge:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
-msgid "Channels:"
-msgstr "Kanali:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "1 - Mono"
-msgstr "1 - Mono"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "2 - Stereo"
-msgstr "2 - Stereo"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
-msgid "Server"
-msgstr "Server"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
-msgid "Port"
-msgstr "Port"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
-msgid "Only numbers are allowed."
-msgstr "Dopušteni su samo brojevi."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
-msgid "URL"
-msgstr "URL"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
-msgid "Mount Point"
-msgstr "Tačka Montiranja"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
-msgid "Admin User"
-msgstr "Admin Korisnik"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
-msgid "Admin Password"
-msgstr "Adminska Lozinka"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
-#: airtime_mvc/application/controllers/LocaleController.php:173
-msgid "Getting information from the server..."
-msgstr "Dobijanje informacija sa servera..."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
-msgid "Server cannot be empty."
-msgstr "Server ne može da bude prazan."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
-msgid "Port cannot be empty."
-msgstr "Port ne može da bude prazan."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
-msgid "Mount cannot be empty with Icecast server."
-msgstr "Montiranje ne može da bude prazna sa Icecast serverom."
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
-msgid "'%value%' is no valid email address in the basic format local-part@hostname"
-msgstr "'%value%' nije valjana e-mail adresa u osnovnom obliku local-part@hostname"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
-msgid "'%value%' does not fit the date format '%format%'"
-msgstr "'%value%' ne odgovara po obliku datuma '%format%'"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
-msgid "'%value%' is less than %min% characters long"
-msgstr "'%value%' je manji od %min% dugačko znakova"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
-msgid "'%value%' is more than %max% characters long"
-msgstr "'%value%' je više od %max% dugačko znakova"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
-msgid "'%value%' is not between '%min%' and '%max%', inclusively"
-msgstr "'%value%' nije između '%min%' i '%max%', uključivo"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
-msgid "Passwords do not match"
-msgstr "Lozinke se ne podudaraju"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
-msgid "hours"
-msgstr "sati"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
-msgid "minutes"
-msgstr "minuti"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
-msgid "Randomly"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
-msgid "Newest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
-msgid "Oldest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
-msgid "Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
-msgid "Static"
-msgstr "Statički"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
-msgid "Dynamic"
-msgstr "Dinamički"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
-msgid "Allow Repeated Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
-msgid "Sort Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
-msgid "Limit to:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
-msgid "Generate playlist content and save criteria"
-msgstr "Generisanje liste pesama i čuvanje sadržaja kriterijume"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
-msgid "Generate"
-msgstr "Generiši"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
-msgid "Shuffle playlist content"
-msgstr "Sadržaj slučajni izbor spisak pesama"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
-msgid "Limit cannot be empty or smaller than 0"
-msgstr "Ograničenje ne može da bude prazan ili manji od 0"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
-msgid "Limit cannot be more than 24 hrs"
-msgstr "Ograničenje ne može da bude više od 24 sati"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
-msgid "The value should be an integer"
-msgstr "Vrednost mora da bude ceo broj"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
-msgid "500 is the max item limit value you can set"
-msgstr "500 je maks stavu graničnu vrednost moguće je da podesiš"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
-msgid "You must select Criteria and Modifier"
-msgstr "Moraš da izabereš Kriteriju i Modifikaciju"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
-msgid "'Length' should be in '00:00:00' format"
-msgstr "'Dužina' trebala da bude u '00:00:00' obliku"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
-msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)"
-msgstr "Vrednost mora da bude u obliku vremenske oznake (npr. 0000-00-00 ili 0000-00-00 00:00:00)"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:594
-msgid "The value has to be numeric"
-msgstr "Vrednost mora da bude numerička"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
-msgid "The value should be less then 2147483648"
-msgstr "Vrednost bi trebala da bude manja od 2147483648"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
-#, php-format
-msgid "The value should be less than %s characters"
-msgstr "Vrednost mora da bude manja od %s znakova"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
-msgid "Value cannot be empty"
-msgstr "Vrednost ne može da bude prazna"
-
-#: airtime_mvc/application/forms/Login.php:102
-msgid "Type the characters you see in the picture below."
-msgstr "Upiši znake koje vidiš na slici u nastavku."
-
-#: airtime_mvc/application/forms/StreamSetting.php:26
-msgid "Icecast Vorbis Metadata"
-msgstr "Icecast Vorbis Metapodaci"
-
-#: airtime_mvc/application/forms/StreamSetting.php:36
-msgid "Stream Label:"
-msgstr "Vidljivi Podaci:"
-
-#: airtime_mvc/application/forms/StreamSetting.php:37
-msgid "Artist - Title"
-msgstr "Autor - Naziv"
-
-#: airtime_mvc/application/forms/StreamSetting.php:38
-msgid "Show - Artist - Title"
-msgstr "Emisija - Autor - Naziv"
-
-#: airtime_mvc/application/forms/StreamSetting.php:39
-msgid "Station name - Show name"
-msgstr "Naziv stanice - Naziv emisije"
-
-#: airtime_mvc/application/forms/StreamSetting.php:45
-msgid "Off Air Metadata"
-msgstr "Off Air Metapodaci"
-
-#: airtime_mvc/application/forms/StreamSetting.php:51
-msgid "Enable Replay Gain"
-msgstr "Uključi Replay Gain"
-
-#: airtime_mvc/application/forms/StreamSetting.php:57
-msgid "Replay Gain Modifier"
-msgstr "Replay Gain Modifikator"
-
-#: airtime_mvc/application/forms/StreamSetting.php:65
-msgid "Streaming Server:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Airtime Pro Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Custom / 3rd Party Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:95
-msgid "User Type:"
-msgstr "Tipova Korisnika:"
-
-#: airtime_mvc/application/forms/AddUser.php:99
-#: airtime_mvc/application/controllers/LocaleController.php:324
-msgid "Guest"
-msgstr "Gost"
-
-#: airtime_mvc/application/forms/AddUser.php:100
-#: airtime_mvc/application/controllers/LocaleController.php:322
-msgid "DJ"
-msgstr "Disk-džokej"
-
-#: airtime_mvc/application/forms/AddUser.php:101
-#: airtime_mvc/application/controllers/LocaleController.php:323
-msgid "Program Manager"
-msgstr "Voditelj Programa"
-
-#: airtime_mvc/application/forms/AddUser.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:321
-msgid "Admin"
-msgstr "Administrator"
-
-#: airtime_mvc/application/forms/BillingClient.php:17
-msgid "First Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:26
-msgid "Last Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:35
-msgid "Company Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:44
-msgid "Email Address:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:54
-msgid "Address 1:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:63
-msgid "Address 2:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:80
-msgid "State/Region:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:89
-msgid "Zip Code / Postal Code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:112
-msgid "Phone Number:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:121
-msgid "Please choose a security question:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:126
-msgid "What is the name of your favorite childhood friend?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:127
-msgid "What school did you attend for sixth grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:128
-msgid "In what city did you meet your spouse/significant other?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:129
-msgid "What street did you live on in third grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:130
-msgid "What is the first name of the boy or girl that you first kissed?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:131
-msgid "In what city or town was your first job?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:135
-msgid "Please enter an answer:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:152
-msgid "VAT/Tax ID (EU only)"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:162
-msgid "Subscribe to Sourcefabric newsletter"
-msgstr ""
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
-msgid "Import Folder:"
-msgstr "Uvozna Mapa:"
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
-msgid "Watched Folders:"
-msgstr "Mape Pod Nadzorom:"
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
-msgid "Not a valid Directory"
-msgstr "Ne važeći Direktorijum"
-
-#: airtime_mvc/application/forms/PasswordRestore.php:14
-msgid "Email"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordRestore.php:36
-msgid "Reset password"
-msgstr "Resetuj lozinku"
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
-msgid "Plan type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
-msgid "Billing cycle:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
-msgid "Payment method:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
-msgid "PayPal"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
-msgid "Credit Card via 2Checkout"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:213
-#, php-format
-msgid "The year %s must be within the range of 1753 - 9999"
-msgstr "Godina %s mora da bude u rasponu između 1753 - 9999"
-
-#: airtime_mvc/application/common/DateHelper.php:216
-#, php-format
-msgid "%s-%s-%s is not a valid date"
-msgstr "%s-%s-%s nije ispravan datum"
-
-#: airtime_mvc/application/common/DateHelper.php:240
-#, php-format
-msgid "%s:%s:%s is not a valid time"
-msgstr "%s:%s:%s nije ispravan datum"
-
-#: airtime_mvc/application/common/UsabilityHints.php:55
-msgid "Upload some tracks below to add them to your library!"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:57
-#, php-format
-msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:63
-msgid "Click the 'New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:65
-#, php-format
-msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:73
-msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:75
-#, php-format
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
msgid ""
-"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
-" %sCreate an unlinked show now%s."
+"To use the embeddable weekly schedule widget you must:
\n"
+" Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/common/UsabilityHints.php:80
-msgid "To start broadcasting, click on the current show and select 'Schedule Show'"
-msgstr ""
+#: airtime_mvc/application/controllers/ListenerstatController.php:51
+msgid "Please make sure admin user/password is correct on System->Streams page."
+msgstr "Molimo, proveri da li je ispravan/na admin korisnik/lozinka na stranici Sistem->Prenosi."
-#: airtime_mvc/application/common/UsabilityHints.php:82
+#: airtime_mvc/application/controllers/UserController.php:86
+msgid "User added successfully!"
+msgstr "Korisnik je uspešno dodat!"
+
+#: airtime_mvc/application/controllers/UserController.php:88
+msgid "User updated successfully!"
+msgstr "Korisnik je uspešno ažuriran!"
+
+#: airtime_mvc/application/controllers/UserController.php:187
+msgid "Settings updated successfully!"
+msgstr "Podešavanja su uspešno ažurirane!"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:53
#, php-format
-msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
-msgstr ""
+msgid "You are viewing an older version of %s"
+msgstr "Gledaš stariju verziju %s"
-#: airtime_mvc/application/common/UsabilityHints.php:89
-msgid "Click on the show starting next and select 'Schedule Show'"
-msgstr ""
+#: airtime_mvc/application/controllers/PlaylistController.php:140
+msgid "You cannot add tracks to dynamic blocks."
+msgstr "Ne možeš da dodaš pesme za dinamične blokove."
-#: airtime_mvc/application/common/UsabilityHints.php:91
+#: airtime_mvc/application/controllers/PlaylistController.php:161
#, php-format
-msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+msgid "You don't have permission to delete selected %s(s)."
+msgstr "Nemaš dopuštenje za brisanje odabranog (e) %s."
+
+#: airtime_mvc/application/controllers/PlaylistController.php:174
+msgid "You can only add tracks to smart block."
+msgstr "Možeš samo pesme da dodaš za pametnog bloka."
+
+#: airtime_mvc/application/controllers/PlaylistController.php:180
+#: airtime_mvc/application/controllers/LocaleController.php:50
+msgid "You can only add tracks, smart blocks, and webstreams to playlists."
+msgstr "Možeš samo da dodaš pesme, pametne blokova, i prenose kod liste numera."
+
+#: airtime_mvc/application/controllers/PlaylistController.php:192
+msgid "Untitled Playlist"
+msgstr "Neimenovani Spisak Pesama"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:194
+msgid "Untitled Smart Block"
+msgstr "Neimenovani Smart Block"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:522
+msgid "Unknown Playlist"
+msgstr "Nepoznati Spisak Pesama"
+
+#: airtime_mvc/application/controllers/ErrorController.php:78
+msgid "Page not found."
msgstr ""
+#: airtime_mvc/application/controllers/ErrorController.php:87
+msgid "The requested action is not supported."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:98
+msgid "You do not have permission to access this resource."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:109
+msgid "An internal application error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/controllers/Apiv2Controller.php:77
+#: airtime_mvc/application/controllers/ApiController.php:79
+msgid "You are not allowed to access this resource."
+msgstr "Ne smeš da pristupiš ovog izvora."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:72
+msgid "Preferences updated."
+msgstr "Podešavanja su ažurirane."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:115
+msgid "Support setting updated."
+msgstr "Podrška podešavanja je ažurirana."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:123
+msgid "Support Feedback"
+msgstr "Povratne Informacije"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:251
+msgid "Stream Setting Updated."
+msgstr "Prenos Podešavanje je Ažurirano."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:342
+msgid "path should be specified"
+msgstr "put bi trebao da bude specificiran"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:437
+msgid "Problem with Liquidsoap..."
+msgstr "Problem sa Liquidsoap..."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:493
+msgid "Request method not accepted"
+msgstr ""
+
+#: airtime_mvc/application/controllers/DashboardController.php:35
+#: airtime_mvc/application/controllers/DashboardController.php:84
+msgid "You don't have permission to disconnect source."
+msgstr "Nemaš dopuštenje da isključiš izvor."
+
+#: airtime_mvc/application/controllers/DashboardController.php:37
+#: airtime_mvc/application/controllers/DashboardController.php:86
+msgid "There is no source connected to this input."
+msgstr "Nema spojenog izvora na ovaj ulaz."
+
+#: airtime_mvc/application/controllers/DashboardController.php:81
+msgid "You don't have permission to switch source."
+msgstr "Nemaš dozvolu za promenu izvora."
+
+#: airtime_mvc/application/controllers/LoginController.php:43
+msgid "Please enter your username and password."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:93
+msgid "Wrong username or password provided. Please try again."
+msgstr "Pogrešno korisničko ime ili lozinka. Molimo pokušaj ponovo."
+
+#: airtime_mvc/application/controllers/LoginController.php:167
+msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
+msgstr "E-mail nije mogao da bude poslat. Proveri svoje postavke servera pošte i proveri se da je ispravno podešen."
+
+#: airtime_mvc/application/controllers/LoginController.php:173
+msgid "There was a problem with the username or email address you entered."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ApiController.php:244
+#: airtime_mvc/application/controllers/ApiController.php:317
+#: airtime_mvc/application/controllers/ApiController.php:392
+#: airtime_mvc/application/controllers/ApiController.php:435
+#: airtime_mvc/application/controllers/ApiController.php:474
+#: airtime_mvc/application/controllers/ApiController.php:507
+msgid "You are not allowed to access this resource. "
+msgstr "Ne smeš da pristupite ovog izvora."
+
+#: airtime_mvc/application/controllers/ApiController.php:698
+#: airtime_mvc/application/controllers/ApiController.php:718
+#: airtime_mvc/application/controllers/ApiController.php:730
+#, php-format
+msgid "File does not exist in %s"
+msgstr ""
+
+#: airtime_mvc/application/controllers/ApiController.php:781
+msgid "Bad request. no 'mode' parameter passed."
+msgstr "Neispravan zahtev."
+
+#: airtime_mvc/application/controllers/ApiController.php:791
+msgid "Bad request. 'mode' parameter is invalid"
+msgstr "Neispravan zahtev"
+
#: airtime_mvc/application/controllers/LocaleController.php:30
#: airtime_mvc/application/layouts/scripts/audio-player.phtml:5
msgid "Audio Player"
@@ -2908,11 +559,6 @@ msgstr "Dodavanje %s Stavke"
msgid "You can only add tracks to smart blocks."
msgstr "Možeš da dodaš samo pesme kod pametnih blokova."
-#: airtime_mvc/application/controllers/LocaleController.php:50
-#: airtime_mvc/application/controllers/PlaylistController.php:180
-msgid "You can only add tracks, smart blocks, and webstreams to playlists."
-msgstr "Možeš samo da dodaš pesme, pametne blokova, i prenose kod liste numera."
-
#: airtime_mvc/application/controllers/LocaleController.php:53
msgid "Please select a cursor position on timeline."
msgstr "Molimo odaberi mesto pokazivača na vremenskoj crti."
@@ -2953,11 +599,6 @@ msgstr ""
msgid "Click 'New' to create one."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:66
-#: airtime_mvc/application/controllers/LibraryController.php:123
-msgid "Edit Metadata"
-msgstr "Uredi Metapodatke"
-
#: airtime_mvc/application/controllers/LocaleController.php:67
msgid "Add to selected show"
msgstr "Dodaj u odabranoj emisiji"
@@ -2986,6 +627,12 @@ msgstr "Jesi li siguran da želiš da izbrišeš odabranu (e) stavu (e)?"
msgid "Scheduled"
msgstr "Zakazana"
+#: airtime_mvc/application/controllers/LocaleController.php:74
+#: airtime_mvc/application/layouts/scripts/layout.phtml:78
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
+msgid "Tracks"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:75
#: airtime_mvc/application/layouts/scripts/layout.phtml:60
msgid "Playlist"
@@ -2995,18 +642,96 @@ msgstr ""
msgid "Bit Rate"
msgstr "Prenos Bita"
+#: airtime_mvc/application/controllers/LocaleController.php:80
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
+#: airtime_mvc/application/models/Block.php:1354
+msgid "BPM"
+msgstr "BPM"
+
+#: airtime_mvc/application/controllers/LocaleController.php:84
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
+#: airtime_mvc/application/models/Block.php:1361
+msgid "Encoded By"
+msgstr "Kodirano je po"
+
+#: airtime_mvc/application/controllers/LocaleController.php:89
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
+#: airtime_mvc/application/models/Block.php:1367
+msgid "Last Modified"
+msgstr "Poslednja Izmena"
+
+#: airtime_mvc/application/controllers/LocaleController.php:90
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
+#: airtime_mvc/application/models/Block.php:1368
+msgid "Last Played"
+msgstr "Zadnji Put Odigrana"
+
+#: airtime_mvc/application/controllers/LocaleController.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
+#: airtime_mvc/application/models/Block.php:1370
+msgid "Mime"
+msgstr "Mime"
+
+#: airtime_mvc/application/controllers/LocaleController.php:94
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
+#: airtime_mvc/application/models/Block.php:1372
+msgid "Owner"
+msgstr "Vlasnik"
+
+#: airtime_mvc/application/controllers/LocaleController.php:95
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
+#: airtime_mvc/application/models/Block.php:1373
+msgid "Replay Gain"
+msgstr "Replay Gain"
+
#: airtime_mvc/application/controllers/LocaleController.php:96
msgid "Sample Rate"
msgstr "Uzorak Stopa"
+#: airtime_mvc/application/controllers/LocaleController.php:97
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
+#: airtime_mvc/application/models/Block.php:1376
+msgid "Track Number"
+msgstr "Broj Pesma"
+
+#: airtime_mvc/application/controllers/LocaleController.php:98
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
+#: airtime_mvc/application/models/Block.php:1377
+msgid "Uploaded"
+msgstr "Dodata"
+
+#: airtime_mvc/application/controllers/LocaleController.php:99
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
+#: airtime_mvc/application/models/Block.php:1378
+msgid "Website"
+msgstr "Veb stranica"
+
#: airtime_mvc/application/controllers/LocaleController.php:101
msgid "Loading..."
msgstr "Učitavanje..."
+#: airtime_mvc/application/controllers/LocaleController.php:102
+#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
+msgid "All"
+msgstr "Sve"
+
#: airtime_mvc/application/controllers/LocaleController.php:103
msgid "Files"
msgstr "Datoteke"
+#: airtime_mvc/application/controllers/LocaleController.php:104
+#: airtime_mvc/application/layouts/scripts/layout.phtml:80
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
+msgid "Playlists"
+msgstr "Liste pesama"
+
+#: airtime_mvc/application/controllers/LocaleController.php:105
+#: airtime_mvc/application/layouts/scripts/layout.phtml:82
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
+msgid "Smart Blocks"
+msgstr "Smart Block-ovi"
+
#: airtime_mvc/application/controllers/LocaleController.php:106
msgid "Web Streams"
msgstr "Prenosi"
@@ -3151,6 +876,74 @@ msgstr "Smart block je sačuvan"
msgid "Processing..."
msgstr "Obrada..."
+#: airtime_mvc/application/controllers/LocaleController.php:151
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
+#: airtime_mvc/application/models/Block.php:1383
+msgid "Select modifier"
+msgstr "Odaberi modifikator"
+
+#: airtime_mvc/application/controllers/LocaleController.php:152
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
+#: airtime_mvc/application/models/Block.php:1384
+msgid "contains"
+msgstr "sadrži"
+
+#: airtime_mvc/application/controllers/LocaleController.php:153
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
+#: airtime_mvc/application/models/Block.php:1385
+msgid "does not contain"
+msgstr "ne sadrži"
+
+#: airtime_mvc/application/controllers/LocaleController.php:154
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
+#: airtime_mvc/application/models/Block.php:1386
+#: airtime_mvc/application/models/Block.php:1390
+msgid "is"
+msgstr "je"
+
+#: airtime_mvc/application/controllers/LocaleController.php:155
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
+#: airtime_mvc/application/models/Block.php:1387
+#: airtime_mvc/application/models/Block.php:1391
+msgid "is not"
+msgstr "nije"
+
+#: airtime_mvc/application/controllers/LocaleController.php:156
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
+#: airtime_mvc/application/models/Block.php:1388
+msgid "starts with"
+msgstr "počinje se sa"
+
+#: airtime_mvc/application/controllers/LocaleController.php:157
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
+#: airtime_mvc/application/models/Block.php:1389
+msgid "ends with"
+msgstr "završava se sa"
+
+#: airtime_mvc/application/controllers/LocaleController.php:158
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
+#: airtime_mvc/application/models/Block.php:1392
+msgid "is greater than"
+msgstr "je veći od"
+
+#: airtime_mvc/application/controllers/LocaleController.php:159
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
+#: airtime_mvc/application/models/Block.php:1393
+msgid "is less than"
+msgstr "je manji od"
+
+#: airtime_mvc/application/controllers/LocaleController.php:160
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
+#: airtime_mvc/application/models/Block.php:1394
+msgid "is in the range"
+msgstr "je u opsegu"
+
#: airtime_mvc/application/controllers/LocaleController.php:162
msgid "Choose Storage Folder"
msgstr "Odaberi Mapu za Skladištenje"
@@ -3167,6 +960,11 @@ msgstr ""
"Jesi li siguran da želiš da promeniš mapu za skladištenje?\n"
"To će da ukloni datoteke iz tvoje biblioteke!"
+#: airtime_mvc/application/controllers/LocaleController.php:166
+#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
+msgid "Manage Media Folders"
+msgstr "Upravljanje Medijske Mape"
+
#: airtime_mvc/application/controllers/LocaleController.php:167
msgid "Are you sure you want to remove the watched folder?"
msgstr "Jesi li siguran da želiš da ukloniš nadzorsku mapu?"
@@ -3188,6 +986,11 @@ msgstr "Priključen je na serveru"
msgid "The stream is disabled"
msgstr "Prenos je onemogućen"
+#: airtime_mvc/application/controllers/LocaleController.php:173
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
+msgid "Getting information from the server..."
+msgstr "Dobijanje informacija sa servera..."
+
#: airtime_mvc/application/controllers/LocaleController.php:174
msgid "Can not connect to the streaming server"
msgstr "Ne može da se poveže na serveru"
@@ -3415,6 +1218,76 @@ msgstr ""
msgid "Month"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:249
+#: airtime_mvc/application/forms/GeneralPreferences.php:158
+msgid "Sunday"
+msgstr "Nedelja"
+
+#: airtime_mvc/application/controllers/LocaleController.php:250
+#: airtime_mvc/application/forms/GeneralPreferences.php:159
+msgid "Monday"
+msgstr "Ponedeljak"
+
+#: airtime_mvc/application/controllers/LocaleController.php:251
+#: airtime_mvc/application/forms/GeneralPreferences.php:160
+msgid "Tuesday"
+msgstr "Utorak"
+
+#: airtime_mvc/application/controllers/LocaleController.php:252
+#: airtime_mvc/application/forms/GeneralPreferences.php:161
+msgid "Wednesday"
+msgstr "Sreda"
+
+#: airtime_mvc/application/controllers/LocaleController.php:253
+#: airtime_mvc/application/forms/GeneralPreferences.php:162
+msgid "Thursday"
+msgstr "Četvrtak"
+
+#: airtime_mvc/application/controllers/LocaleController.php:254
+#: airtime_mvc/application/forms/GeneralPreferences.php:163
+msgid "Friday"
+msgstr "Petak"
+
+#: airtime_mvc/application/controllers/LocaleController.php:255
+#: airtime_mvc/application/forms/GeneralPreferences.php:164
+msgid "Saturday"
+msgstr "Subota"
+
+#: airtime_mvc/application/controllers/LocaleController.php:256
+#: airtime_mvc/application/forms/AddShowRepeats.php:35
+msgid "Sun"
+msgstr "Ned"
+
+#: airtime_mvc/application/controllers/LocaleController.php:257
+#: airtime_mvc/application/forms/AddShowRepeats.php:36
+msgid "Mon"
+msgstr "Pon"
+
+#: airtime_mvc/application/controllers/LocaleController.php:258
+#: airtime_mvc/application/forms/AddShowRepeats.php:37
+msgid "Tue"
+msgstr "Uto"
+
+#: airtime_mvc/application/controllers/LocaleController.php:259
+#: airtime_mvc/application/forms/AddShowRepeats.php:38
+msgid "Wed"
+msgstr "Sre"
+
+#: airtime_mvc/application/controllers/LocaleController.php:260
+#: airtime_mvc/application/forms/AddShowRepeats.php:39
+msgid "Thu"
+msgstr "Čet"
+
+#: airtime_mvc/application/controllers/LocaleController.php:261
+#: airtime_mvc/application/forms/AddShowRepeats.php:40
+msgid "Fri"
+msgstr "Pet"
+
+#: airtime_mvc/application/controllers/LocaleController.php:262
+#: airtime_mvc/application/forms/AddShowRepeats.php:41
+msgid "Sat"
+msgstr "Sub"
+
#: airtime_mvc/application/controllers/LocaleController.php:263
msgid "Shows longer than their scheduled time will be cut off by a following show."
msgstr "Emisija duže od predviđenog vremena će da bude odsečen."
@@ -3424,7 +1297,7 @@ msgid "Cancel Current Show?"
msgstr "Otkaži Trenutnog Programa?"
#: airtime_mvc/application/controllers/LocaleController.php:265
-#: airtime_mvc/application/controllers/LocaleController.php:309
+#: airtime_mvc/application/controllers/LocaleController.php:312
msgid "Stop recording current show?"
msgstr "Zaustavljanje snimanje emisije?"
@@ -3444,6 +1317,11 @@ msgstr "Ukloniš sve sadržaje?"
msgid "Delete selected item(s)?"
msgstr "Obrišeš li odabranu (e) stavu (e)?"
+#: airtime_mvc/application/controllers/LocaleController.php:273
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
+msgid "Start"
+msgstr "Početak"
+
#: airtime_mvc/application/controllers/LocaleController.php:274
msgid "End"
msgstr "Završetak"
@@ -3452,580 +1330,467 @@ msgstr "Završetak"
msgid "Duration"
msgstr "Trajanje"
-#: airtime_mvc/application/controllers/LocaleController.php:283
+#: airtime_mvc/application/controllers/LocaleController.php:276
+msgid "Filtering out "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:277
+msgid " of "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:278
+msgid " records"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/layouts/scripts/layout.phtml:140
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
+#: airtime_mvc/application/models/Block.php:1358
+msgid "Cue In"
+msgstr "Cue In"
+
+#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/layouts/scripts/layout.phtml:147
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
+#: airtime_mvc/application/models/Block.php:1359
+msgid "Cue Out"
+msgstr "Cue Out"
+
+#: airtime_mvc/application/controllers/LocaleController.php:286
#: airtime_mvc/application/layouts/scripts/layout.phtml:167
msgid "Fade In"
msgstr "Odtamnjenje"
-#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/controllers/LocaleController.php:287
#: airtime_mvc/application/layouts/scripts/layout.phtml:168
msgid "Fade Out"
msgstr "Zatamnjenje"
-#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/controllers/LocaleController.php:288
msgid "Show Empty"
msgstr "Prazna Emisija"
-#: airtime_mvc/application/controllers/LocaleController.php:286
+#: airtime_mvc/application/controllers/LocaleController.php:289
msgid "Recording From Line In"
msgstr "Snimanje sa Line In"
-#: airtime_mvc/application/controllers/LocaleController.php:287
+#: airtime_mvc/application/controllers/LocaleController.php:290
msgid "Track preview"
msgstr "Pregled pesma"
-#: airtime_mvc/application/controllers/LocaleController.php:291
+#: airtime_mvc/application/controllers/LocaleController.php:294
msgid "Cannot schedule outside a show."
msgstr "Ne može da se zakazuje van emisije."
-#: airtime_mvc/application/controllers/LocaleController.php:292
+#: airtime_mvc/application/controllers/LocaleController.php:295
msgid "Moving 1 Item"
msgstr "Premeštanje 1 Stavka"
-#: airtime_mvc/application/controllers/LocaleController.php:293
+#: airtime_mvc/application/controllers/LocaleController.php:296
#, php-format
msgid "Moving %s Items"
msgstr "Premeštanje %s Stavke"
-#: airtime_mvc/application/controllers/LocaleController.php:296
+#: airtime_mvc/application/controllers/LocaleController.php:297
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
+#: airtime_mvc/application/forms/Preferences.php:40
+#: airtime_mvc/application/forms/EditHistory.php:131
+#: airtime_mvc/application/forms/AddUser.php:110
+#: airtime_mvc/application/forms/PasswordChange.php:43
+#: airtime_mvc/application/forms/SupportSettings.php:131
+msgid "Save"
+msgstr "Sačuvaj"
+
+#: airtime_mvc/application/controllers/LocaleController.php:298
+#: airtime_mvc/application/controllers/LocaleController.php:321
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
+#: airtime_mvc/application/forms/EditHistory.php:141
+#: airtime_mvc/application/forms/EditAudioMD.php:186
+msgid "Cancel"
+msgstr "Odustani"
+
+#: airtime_mvc/application/controllers/LocaleController.php:299
msgid "Fade Editor"
msgstr "Uređivač za (Od-/Za-)tamnjivanje"
-#: airtime_mvc/application/controllers/LocaleController.php:297
+#: airtime_mvc/application/controllers/LocaleController.php:300
msgid "Cue Editor"
msgstr "Cue Uređivač"
-#: airtime_mvc/application/controllers/LocaleController.php:298
+#: airtime_mvc/application/controllers/LocaleController.php:301
msgid "Waveform features are available in a browser supporting the Web Audio API"
msgstr "Talasni oblik funkcije su dostupne u sporednu Web Audio API pregledaču"
-#: airtime_mvc/application/controllers/LocaleController.php:301
+#: airtime_mvc/application/controllers/LocaleController.php:304
msgid "Select all"
msgstr "Odaberi sve"
-#: airtime_mvc/application/controllers/LocaleController.php:302
+#: airtime_mvc/application/controllers/LocaleController.php:305
msgid "Select none"
msgstr "Ne odaberi ništa"
-#: airtime_mvc/application/controllers/LocaleController.php:303
+#: airtime_mvc/application/controllers/LocaleController.php:306
msgid "Trim overbooked shows"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:304
+#: airtime_mvc/application/controllers/LocaleController.php:307
msgid "Remove selected scheduled items"
msgstr "Ukloni odabrane zakazane stavke"
-#: airtime_mvc/application/controllers/LocaleController.php:305
+#: airtime_mvc/application/controllers/LocaleController.php:308
msgid "Jump to the current playing track"
msgstr "Skoči na trenutnu sviranu pesmu"
-#: airtime_mvc/application/controllers/LocaleController.php:306
+#: airtime_mvc/application/controllers/LocaleController.php:309
msgid "Cancel current show"
msgstr "Poništi trenutnu emisiju"
-#: airtime_mvc/application/controllers/LocaleController.php:311
+#: airtime_mvc/application/controllers/LocaleController.php:314
msgid "Open library to add or remove content"
msgstr "Otvori biblioteku za dodavanje ili uklanjanje sadržaja"
-#: airtime_mvc/application/controllers/LocaleController.php:312
+#: airtime_mvc/application/controllers/LocaleController.php:315
msgid "Add / Remove Content"
msgstr "Dodaj / Ukloni Sadržaj"
#: airtime_mvc/application/controllers/LocaleController.php:317
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
+msgid "in use"
+msgstr "u upotrebi"
+
+#: airtime_mvc/application/controllers/LocaleController.php:318
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
+msgid "Disk"
+msgstr "Disk"
+
+#: airtime_mvc/application/controllers/LocaleController.php:320
msgid "Look in"
msgstr "Pogledaj unutra"
-#: airtime_mvc/application/controllers/LocaleController.php:319
+#: airtime_mvc/application/controllers/LocaleController.php:322
msgid "Open"
msgstr "Otvori"
+#: airtime_mvc/application/controllers/LocaleController.php:324
+#: airtime_mvc/application/forms/AddUser.php:102
+msgid "Admin"
+msgstr "Administrator"
+
#: airtime_mvc/application/controllers/LocaleController.php:325
+#: airtime_mvc/application/forms/AddUser.php:100
+msgid "DJ"
+msgstr "Disk-džokej"
+
+#: airtime_mvc/application/controllers/LocaleController.php:326
+#: airtime_mvc/application/forms/AddUser.php:101
+msgid "Program Manager"
+msgstr "Voditelj Programa"
+
+#: airtime_mvc/application/controllers/LocaleController.php:327
+#: airtime_mvc/application/forms/AddUser.php:99
+msgid "Guest"
+msgstr "Gost"
+
+#: airtime_mvc/application/controllers/LocaleController.php:328
msgid "Guests can do the following:"
msgstr "Gosti mogu da uradi sledeće:"
-#: airtime_mvc/application/controllers/LocaleController.php:326
+#: airtime_mvc/application/controllers/LocaleController.php:329
msgid "View schedule"
msgstr "Pregled rasporeda"
-#: airtime_mvc/application/controllers/LocaleController.php:327
+#: airtime_mvc/application/controllers/LocaleController.php:330
msgid "View show content"
msgstr "Pregled sadržaj emisije"
-#: airtime_mvc/application/controllers/LocaleController.php:328
+#: airtime_mvc/application/controllers/LocaleController.php:331
msgid "DJs can do the following:"
msgstr "Disk-džokeji mogu da uradi sledeće:"
-#: airtime_mvc/application/controllers/LocaleController.php:329
+#: airtime_mvc/application/controllers/LocaleController.php:332
msgid "Manage assigned show content"
msgstr "Upravljanje dodeljen sadržaj emisije"
-#: airtime_mvc/application/controllers/LocaleController.php:330
+#: airtime_mvc/application/controllers/LocaleController.php:333
msgid "Import media files"
msgstr "Uvoz medijske fajlove"
-#: airtime_mvc/application/controllers/LocaleController.php:331
+#: airtime_mvc/application/controllers/LocaleController.php:334
msgid "Create playlists, smart blocks, and webstreams"
msgstr "Izradi liste pesama, pametne blokove, i prenose"
-#: airtime_mvc/application/controllers/LocaleController.php:332
+#: airtime_mvc/application/controllers/LocaleController.php:335
msgid "Manage their own library content"
msgstr "Upravljanje svoje bibliotečkog sadržaja"
-#: airtime_mvc/application/controllers/LocaleController.php:333
+#: airtime_mvc/application/controllers/LocaleController.php:336
msgid "Progam Managers can do the following:"
msgstr "Menadžer programa mogu da uradi sledeće:"
-#: airtime_mvc/application/controllers/LocaleController.php:334
+#: airtime_mvc/application/controllers/LocaleController.php:337
msgid "View and manage show content"
msgstr "Prikaz i upravljanje sadržaj emisije"
-#: airtime_mvc/application/controllers/LocaleController.php:335
+#: airtime_mvc/application/controllers/LocaleController.php:338
msgid "Schedule shows"
msgstr "Rasporedne emisije"
-#: airtime_mvc/application/controllers/LocaleController.php:336
+#: airtime_mvc/application/controllers/LocaleController.php:339
msgid "Manage all library content"
msgstr "Upravljanje sve sadržaje biblioteka"
-#: airtime_mvc/application/controllers/LocaleController.php:337
+#: airtime_mvc/application/controllers/LocaleController.php:340
msgid "Admins can do the following:"
msgstr "Administratori mogu da uradi sledeće:"
-#: airtime_mvc/application/controllers/LocaleController.php:338
+#: airtime_mvc/application/controllers/LocaleController.php:341
msgid "Manage preferences"
msgstr "Upravljanje podešavanja"
-#: airtime_mvc/application/controllers/LocaleController.php:339
+#: airtime_mvc/application/controllers/LocaleController.php:342
msgid "Manage users"
msgstr "Upravljanje korisnike"
-#: airtime_mvc/application/controllers/LocaleController.php:340
+#: airtime_mvc/application/controllers/LocaleController.php:343
msgid "Manage watched folders"
msgstr "Upravljanje nadziranih datoteke"
-#: airtime_mvc/application/controllers/LocaleController.php:342
+#: airtime_mvc/application/controllers/LocaleController.php:344
+#: airtime_mvc/application/forms/RegisterAirtime.php:116
+#: airtime_mvc/application/forms/SupportSettings.php:98
+msgid "Send support feedback"
+msgstr "Pošalji povratne informacije"
+
+#: airtime_mvc/application/controllers/LocaleController.php:345
msgid "View system status"
msgstr "Pregled stanja sistema"
-#: airtime_mvc/application/controllers/LocaleController.php:343
+#: airtime_mvc/application/controllers/LocaleController.php:346
msgid "Access playout history"
msgstr "Pristup za istoriju puštenih pesama"
-#: airtime_mvc/application/controllers/LocaleController.php:344
+#: airtime_mvc/application/controllers/LocaleController.php:347
msgid "View listener stats"
msgstr "Pogledaj statistiku slušaoce"
-#: airtime_mvc/application/controllers/LocaleController.php:346
+#: airtime_mvc/application/controllers/LocaleController.php:349
msgid "Show / hide columns"
msgstr "Pokaži/sakrij kolone"
-#: airtime_mvc/application/controllers/LocaleController.php:348
+#: airtime_mvc/application/controllers/LocaleController.php:351
msgid "From {from} to {to}"
msgstr "Od {from} do {to}"
-#: airtime_mvc/application/controllers/LocaleController.php:349
+#: airtime_mvc/application/controllers/LocaleController.php:352
msgid "kbps"
msgstr "kbps"
-#: airtime_mvc/application/controllers/LocaleController.php:350
+#: airtime_mvc/application/controllers/LocaleController.php:353
msgid "yyyy-mm-dd"
msgstr "gggg-mm-dd"
-#: airtime_mvc/application/controllers/LocaleController.php:351
+#: airtime_mvc/application/controllers/LocaleController.php:354
msgid "hh:mm:ss.t"
msgstr "hh:mm:ss.t"
-#: airtime_mvc/application/controllers/LocaleController.php:352
+#: airtime_mvc/application/controllers/LocaleController.php:355
msgid "kHz"
msgstr "kHz"
-#: airtime_mvc/application/controllers/LocaleController.php:355
+#: airtime_mvc/application/controllers/LocaleController.php:358
msgid "Su"
msgstr "Ne"
-#: airtime_mvc/application/controllers/LocaleController.php:356
+#: airtime_mvc/application/controllers/LocaleController.php:359
msgid "Mo"
msgstr "Po"
-#: airtime_mvc/application/controllers/LocaleController.php:357
+#: airtime_mvc/application/controllers/LocaleController.php:360
msgid "Tu"
msgstr "Ut"
-#: airtime_mvc/application/controllers/LocaleController.php:358
+#: airtime_mvc/application/controllers/LocaleController.php:361
msgid "We"
msgstr "Sr"
-#: airtime_mvc/application/controllers/LocaleController.php:359
+#: airtime_mvc/application/controllers/LocaleController.php:362
msgid "Th"
msgstr "Če"
-#: airtime_mvc/application/controllers/LocaleController.php:360
+#: airtime_mvc/application/controllers/LocaleController.php:363
msgid "Fr"
msgstr "Pe"
-#: airtime_mvc/application/controllers/LocaleController.php:361
+#: airtime_mvc/application/controllers/LocaleController.php:364
msgid "Sa"
msgstr "Su"
-#: airtime_mvc/application/controllers/LocaleController.php:364
+#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
+msgid "Close"
+msgstr "Zatvori"
+
+#: airtime_mvc/application/controllers/LocaleController.php:367
msgid "Hour"
msgstr "Sat"
-#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:368
msgid "Minute"
msgstr "Minuta"
-#: airtime_mvc/application/controllers/LocaleController.php:366
+#: airtime_mvc/application/controllers/LocaleController.php:369
msgid "Done"
msgstr "Gotovo"
-#: airtime_mvc/application/controllers/LocaleController.php:369
+#: airtime_mvc/application/controllers/LocaleController.php:372
msgid "Select files"
msgstr "Izaberi datoteke"
-#: airtime_mvc/application/controllers/LocaleController.php:370
-#: airtime_mvc/application/controllers/LocaleController.php:371
+#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:374
msgid "Add files to the upload queue and click the start button."
msgstr "Dodaj datoteke i klikni na 'Pokreni Upload' dugme."
-#: airtime_mvc/application/controllers/LocaleController.php:372
-#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:376
msgid "Status"
msgstr "Stanje"
-#: airtime_mvc/application/controllers/LocaleController.php:374
+#: airtime_mvc/application/controllers/LocaleController.php:377
msgid "Add Files"
msgstr "Dodaj Datoteke"
-#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:378
msgid "Stop Upload"
msgstr "Zaustavi Upload"
-#: airtime_mvc/application/controllers/LocaleController.php:376
+#: airtime_mvc/application/controllers/LocaleController.php:379
msgid "Start upload"
msgstr "Pokreni upload"
-#: airtime_mvc/application/controllers/LocaleController.php:377
+#: airtime_mvc/application/controllers/LocaleController.php:380
msgid "Add files"
msgstr "Dodaj datoteke"
-#: airtime_mvc/application/controllers/LocaleController.php:378
+#: airtime_mvc/application/controllers/LocaleController.php:381
#, php-format
msgid "Uploaded %d/%d files"
msgstr "Poslata %d/%d datoteka"
-#: airtime_mvc/application/controllers/LocaleController.php:379
+#: airtime_mvc/application/controllers/LocaleController.php:382
msgid "N/A"
msgstr "N/A"
-#: airtime_mvc/application/controllers/LocaleController.php:380
+#: airtime_mvc/application/controllers/LocaleController.php:383
msgid "Drag files here."
msgstr "Povuci datoteke ovde."
-#: airtime_mvc/application/controllers/LocaleController.php:381
+#: airtime_mvc/application/controllers/LocaleController.php:384
msgid "File extension error."
msgstr "Greška (oznaku tipa datoteke)."
-#: airtime_mvc/application/controllers/LocaleController.php:382
+#: airtime_mvc/application/controllers/LocaleController.php:385
msgid "File size error."
msgstr "Greška veličine datoteke."
-#: airtime_mvc/application/controllers/LocaleController.php:383
+#: airtime_mvc/application/controllers/LocaleController.php:386
msgid "File count error."
msgstr "Greška broj datoteke."
-#: airtime_mvc/application/controllers/LocaleController.php:384
+#: airtime_mvc/application/controllers/LocaleController.php:387
msgid "Init error."
msgstr "Init greška."
-#: airtime_mvc/application/controllers/LocaleController.php:385
+#: airtime_mvc/application/controllers/LocaleController.php:388
msgid "HTTP Error."
msgstr "HTTP Greška."
-#: airtime_mvc/application/controllers/LocaleController.php:386
+#: airtime_mvc/application/controllers/LocaleController.php:389
msgid "Security error."
msgstr "Bezbednosna greška."
-#: airtime_mvc/application/controllers/LocaleController.php:387
+#: airtime_mvc/application/controllers/LocaleController.php:390
msgid "Generic error."
msgstr "Generička greška."
-#: airtime_mvc/application/controllers/LocaleController.php:388
+#: airtime_mvc/application/controllers/LocaleController.php:391
msgid "IO error."
msgstr "IO greška."
-#: airtime_mvc/application/controllers/LocaleController.php:389
+#: airtime_mvc/application/controllers/LocaleController.php:392
#, php-format
msgid "File: %s"
msgstr "Fajl: %s"
-#: airtime_mvc/application/controllers/LocaleController.php:391
+#: airtime_mvc/application/controllers/LocaleController.php:394
#, php-format
msgid "%d files queued"
msgstr "%d datoteka na čekanju"
-#: airtime_mvc/application/controllers/LocaleController.php:392
+#: airtime_mvc/application/controllers/LocaleController.php:395
msgid "File: %f, size: %s, max file size: %m"
msgstr "Datoteka: %f, veličina: %s, maks veličina datoteke: %m"
-#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/controllers/LocaleController.php:396
msgid "Upload URL might be wrong or doesn't exist"
msgstr "Prenosni URL može da bude u krivu ili ne postoji"
-#: airtime_mvc/application/controllers/LocaleController.php:394
+#: airtime_mvc/application/controllers/LocaleController.php:397
msgid "Error: File too large: "
msgstr "Greška: Datoteka je prevelika:"
-#: airtime_mvc/application/controllers/LocaleController.php:395
+#: airtime_mvc/application/controllers/LocaleController.php:398
msgid "Error: Invalid file extension: "
msgstr "Greška: Nevažeći oznak tipa datoteka:"
-#: airtime_mvc/application/controllers/LocaleController.php:398
+#: airtime_mvc/application/controllers/LocaleController.php:400
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
+msgid "Set Default"
+msgstr "Postavi Podrazumevano"
+
+#: airtime_mvc/application/controllers/LocaleController.php:401
msgid "Create Entry"
msgstr "Stvaranje Unosa"
-#: airtime_mvc/application/controllers/LocaleController.php:399
+#: airtime_mvc/application/controllers/LocaleController.php:402
msgid "Edit History Record"
msgstr "Uredi Istorijat Upisa"
-#: airtime_mvc/application/controllers/LocaleController.php:402
+#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
+#: airtime_mvc/application/forms/EditHistoryItem.php:57
+msgid "No Show"
+msgstr "Nema Programa"
+
+#: airtime_mvc/application/controllers/LocaleController.php:405
#, php-format
msgid "Copied %s row%s to the clipboard"
msgstr "%s red%s je kopiran u međumemoriju"
-#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/controllers/LocaleController.php:406
#, php-format
msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished."
msgstr "%sIspis pogled%sMolimo, koristi pregledača štampanje funkciju za štampanje ovu tabelu. Kad završiš, pritisni Escape."
-#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/controllers/LocaleController.php:407
msgid "New Show"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:405
+#: airtime_mvc/application/controllers/LocaleController.php:408
msgid "New Log Entry"
msgstr ""
-#: airtime_mvc/application/controllers/ScheduleController.php:389
-#, php-format
-msgid "Rebroadcast of show %s from %s at %s"
-msgstr "Reemitovanje emisija %s od %s na %s"
-
-#: airtime_mvc/application/controllers/ScheduleController.php:712
-#: airtime_mvc/application/controllers/LibraryController.php:131
-msgid "Download"
-msgstr "Preuzimanje"
-
-#: airtime_mvc/application/controllers/ErrorController.php:78
-msgid "Page not found."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:87
-msgid "The requested action is not supported."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:98
-msgid "You do not have permission to access this resource."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:109
-msgid "An internal application error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ListenerstatController.php:51
-msgid "Please make sure admin user/password is correct on System->Streams page."
-msgstr "Molimo, proveri da li je ispravan/na admin korisnik/lozinka na stranici Sistem->Prenosi."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:53
-#, php-format
-msgid "You are viewing an older version of %s"
-msgstr "Gledaš stariju verziju %s"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:140
-msgid "You cannot add tracks to dynamic blocks."
-msgstr "Ne možeš da dodaš pesme za dinamične blokove."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:147
-#: airtime_mvc/application/controllers/LibraryController.php:31
-#, php-format
-msgid "%s not found"
-msgstr "%s nije pronađen"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:161
-#, php-format
-msgid "You don't have permission to delete selected %s(s)."
-msgstr "Nemaš dopuštenje za brisanje odabranog (e) %s."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:168
-#: airtime_mvc/application/controllers/LibraryController.php:40
-msgid "Something went wrong."
-msgstr "Nešto je pošlo po krivu."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:174
-msgid "You can only add tracks to smart block."
-msgstr "Možeš samo pesme da dodaš za pametnog bloka."
-
-#: airtime_mvc/application/controllers/PlaylistController.php:192
-msgid "Untitled Playlist"
-msgstr "Neimenovani Spisak Pesama"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:194
-msgid "Untitled Smart Block"
-msgstr "Neimenovani Smart Block"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:522
-msgid "Unknown Playlist"
-msgstr "Nepoznati Spisak Pesama"
-
-#: airtime_mvc/application/controllers/LoginController.php:43
-msgid "Please enter your username and password."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:93
-msgid "Wrong username or password provided. Please try again."
-msgstr "Pogrešno korisničko ime ili lozinka. Molimo pokušaj ponovo."
-
-#: airtime_mvc/application/controllers/LoginController.php:167
-msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
-msgstr "E-mail nije mogao da bude poslat. Proveri svoje postavke servera pošte i proveri se da je ispravno podešen."
-
-#: airtime_mvc/application/controllers/LoginController.php:173
-msgid "There was a problem with the username or email address you entered."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:35
-#: airtime_mvc/application/controllers/DashboardController.php:84
-msgid "You don't have permission to disconnect source."
-msgstr "Nemaš dopuštenje da isključiš izvor."
-
-#: airtime_mvc/application/controllers/DashboardController.php:37
-#: airtime_mvc/application/controllers/DashboardController.php:86
-msgid "There is no source connected to this input."
-msgstr "Nema spojenog izvora na ovaj ulaz."
-
-#: airtime_mvc/application/controllers/DashboardController.php:81
-msgid "You don't have permission to switch source."
-msgstr "Nemaš dozvolu za promenu izvora."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:72
-msgid "Preferences updated."
-msgstr "Podešavanja su ažurirane."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:115
-msgid "Support setting updated."
-msgstr "Podrška podešavanja je ažurirana."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:123
-msgid "Support Feedback"
-msgstr "Povratne Informacije"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:251
-msgid "Stream Setting Updated."
-msgstr "Prenos Podešavanje je Ažurirano."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:342
-msgid "path should be specified"
-msgstr "put bi trebao da bude specificiran"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:437
-msgid "Problem with Liquidsoap..."
-msgstr "Problem sa Liquidsoap..."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:493
-msgid "Request method not accepted"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:86
-msgid "User added successfully!"
-msgstr "Korisnik je uspešno dodat!"
-
-#: airtime_mvc/application/controllers/UserController.php:88
-msgid "User updated successfully!"
-msgstr "Korisnik je uspešno ažuriran!"
-
-#: airtime_mvc/application/controllers/UserController.php:187
-msgid "Settings updated successfully!"
-msgstr "Podešavanja su uspešno ažurirane!"
-
-#: airtime_mvc/application/controllers/WebstreamController.php:28
-#: airtime_mvc/application/controllers/WebstreamController.php:32
-msgid "Untitled Webstream"
-msgstr "Neimenovani Prenos"
-
-#: airtime_mvc/application/controllers/WebstreamController.php:150
-msgid "Webstream saved."
-msgstr "Prenos je sačuvan."
-
-#: airtime_mvc/application/controllers/WebstreamController.php:158
-msgid "Invalid form values."
-msgstr "Nevažeći vrednosti obrasca."
-
-#: airtime_mvc/application/controllers/LibraryController.php:95
-#: airtime_mvc/application/controllers/ShowbuilderController.php:136
-msgid "Preview"
-msgstr "Pregled"
-
-#: airtime_mvc/application/controllers/LibraryController.php:115
-#: airtime_mvc/application/controllers/LibraryController.php:177
-#: airtime_mvc/application/controllers/LibraryController.php:200
-msgid "Add to Playlist"
-msgstr "Dodaj na Spisak Pesama"
-
-#: airtime_mvc/application/controllers/LibraryController.php:117
-msgid "Add to Smart Block"
-msgstr "Dodaj u Smart Block"
-
-#: airtime_mvc/application/controllers/LibraryController.php:147
-msgid "View track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:148
-msgid "Remove track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:154
-#: airtime_mvc/application/controllers/LibraryController.php:159
-msgid "Upload track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:169
-msgid "Duplicate Playlist"
-msgstr "Udvostručavanje"
-
-#: airtime_mvc/application/controllers/LibraryController.php:213
-msgid "No action available"
-msgstr "Nema dostupnih akcija"
-
-#: airtime_mvc/application/controllers/LibraryController.php:233
-msgid "You don't have permission to delete selected items."
-msgstr "Nemaš dopuštenje za brisanje odabrane stavke."
-
-#: airtime_mvc/application/controllers/LibraryController.php:279
-msgid "Could not delete file because it is scheduled in the future."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:282
-msgid "Could not delete file(s)."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:322
-#, php-format
-msgid "Copy of %s"
-msgstr "Kopiranje od %s"
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
-msgid ""
-"To configure and use the embeddable player you must:
\n"
-" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
-" 2. Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
-msgid ""
-"To use the embeddable weekly schedule widget you must:
\n"
-" Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
#: airtime_mvc/application/controllers/ShowbuilderController.php:138
msgid "Select cursor"
msgstr "Odaberi pokazivač"
@@ -4038,39 +1803,78 @@ msgstr "Ukloni pokazivač"
msgid "show does not exist"
msgstr "emisija ne postoji"
-#: airtime_mvc/application/controllers/ApiController.php:79
-msgid "You are not allowed to access this resource."
-msgstr "Ne smeš da pristupiš ovog izvora."
-
-#: airtime_mvc/application/controllers/ApiController.php:244
-#: airtime_mvc/application/controllers/ApiController.php:317
-#: airtime_mvc/application/controllers/ApiController.php:392
-#: airtime_mvc/application/controllers/ApiController.php:435
-#: airtime_mvc/application/controllers/ApiController.php:474
-#: airtime_mvc/application/controllers/ApiController.php:507
-msgid "You are not allowed to access this resource. "
-msgstr "Ne smeš da pristupite ovog izvora."
-
-#: airtime_mvc/application/controllers/ApiController.php:698
-#: airtime_mvc/application/controllers/ApiController.php:718
-#: airtime_mvc/application/controllers/ApiController.php:730
+#: airtime_mvc/application/controllers/ScheduleController.php:389
#, php-format
-msgid "File does not exist in %s"
+msgid "Rebroadcast of show %s from %s at %s"
+msgstr "Reemitovanje emisija %s od %s na %s"
+
+#: airtime_mvc/application/common/UsabilityHints.php:55
+msgid "Upload some tracks below to add them to your library!"
msgstr ""
-#: airtime_mvc/application/controllers/ApiController.php:781
-msgid "Bad request. no 'mode' parameter passed."
-msgstr "Neispravan zahtev."
-
-#: airtime_mvc/application/controllers/ApiController.php:791
-msgid "Bad request. 'mode' parameter is invalid"
-msgstr "Neispravan zahtev"
-
-#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#: airtime_mvc/application/common/UsabilityHints.php:57
#, php-format
-msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
msgstr ""
+#: airtime_mvc/application/common/UsabilityHints.php:63
+msgid "Click the 'New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:65
+#, php-format
+msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:73
+msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:75
+#, php-format
+msgid ""
+"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
+" %sCreate an unlinked show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:80
+msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:82
+#, php-format
+msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:89
+msgid "Click on the show starting next and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:91
+#, php-format
+msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/DateHelper.php:213
+#, php-format
+msgid "The year %s must be within the range of 1753 - 9999"
+msgstr "Godina %s mora da bude u rasponu između 1753 - 9999"
+
+#: airtime_mvc/application/common/DateHelper.php:216
+#, php-format
+msgid "%s-%s-%s is not a valid date"
+msgstr "%s-%s-%s nije ispravan datum"
+
+#: airtime_mvc/application/common/DateHelper.php:240
+#, php-format
+msgid "%s:%s:%s is not a valid time"
+msgstr "%s:%s:%s nije ispravan datum"
+
+#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
+msgid "Live stream"
+msgstr "Prenos uživo"
+
#: airtime_mvc/application/layouts/scripts/layout.phtml:63
msgid "Smart Block"
msgstr ""
@@ -4083,6 +1887,17 @@ msgstr ""
msgid "Upload"
msgstr ""
+#: airtime_mvc/application/layouts/scripts/layout.phtml:76
+#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
+msgid "Dashboard"
+msgstr ""
+
+#: airtime_mvc/application/layouts/scripts/layout.phtml:84
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
+msgid "Webstreams"
+msgstr ""
+
#: airtime_mvc/application/layouts/scripts/layout.phtml:135
#: airtime_mvc/application/layouts/scripts/layout.phtml:161
msgid "Play"
@@ -4105,401 +1920,2128 @@ msgstr "Podesi Cue Out"
msgid "Cursor"
msgstr "Pokazivač"
-#~ msgid "Show:"
-#~ msgstr "Program:"
+#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#, php-format
+msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
+msgid "Drop files here or click to browse your computer."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
+msgid "Failed"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
+msgid "Pending"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
+msgid "Recent Uploads"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
+msgid "Share"
+msgstr "Podeli"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
+msgid "Select stream:"
+msgstr "Prenosi:"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
+msgid "mute"
+msgstr "mute"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
+msgid "unmute"
+msgstr "uključi"
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
+msgid "About"
+msgstr "O projektu"
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
+#, php-format
+msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
+#, php-format
+msgid "%1$s %2$s is distributed under the %3$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
+#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
+#, php-format
+msgid "Welcome to %s!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
+#, php-format
+msgid "Here's how you can get started using %s to automate your broadcasts: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
+msgid "Upload audio tracks"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
+msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
+msgid "Schedule a show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
+msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
+msgid "Add tracks to your show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
+msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
+msgid "Now you're good to go!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
+#, php-format
+msgid "For more detailed help, read the %suser manual%s."
+msgstr "Za detaljnu pomoć, pročitaj %suputstvo za korišćenje%s."
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
+#: airtime_mvc/application/configs/navigation.php:40
+msgid "Weekly Schedule"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
+#: airtime_mvc/application/forms/Player.php:77
+msgid "Preview:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
+#: airtime_mvc/application/configs/navigation.php:34
+msgid "Player"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:97
+msgid "Playout History"
+msgstr "Istorija Puštenih Pesama"
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
+msgid "Log Sheet"
+msgstr "Spisak Prijava"
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
+msgid "File Summary"
+msgstr "Datotečni Izveštaj"
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
+msgid "Show Summary"
+msgstr "Programski Izveštaj"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
+msgid "Expand Static Block"
+msgstr "Proširenje Statičkog Bloka"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
+msgid "Expand Dynamic Block"
+msgstr "Proširenje Dinamičkog Bloka"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
+msgid "Choose some search criteria above and click Generate to create this playlist."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
+msgid "A track list will be generated when you schedule this smart block into a show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
+msgid "Drag tracks here from your library to add them to the playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
+msgid "Editing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:26
+msgid "Name:"
+msgstr "Naziv:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
+#: airtime_mvc/application/forms/AddShowWhat.php:54
+msgid "Description:"
+msgstr "Opis:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
+#: airtime_mvc/application/forms/AddShowWhen.php:89
+msgid "Duration:"
+msgstr "Trajanje:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
+msgid "Toggle Details"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+msgid "Shuffle playlist"
+msgstr "Slučajni izbor spisak pesama"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
+msgid "Shuffle"
+msgstr "Mešanje"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
+msgid "Playlist crossfade"
+msgstr "Križno utišavanje spisak pesama"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+msgid "Empty playlist content"
+msgstr "Prazan sadržaj spisak pesama"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Clear"
+msgstr "Očisti"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+msgid "Fade in: "
+msgstr "Odtamnjenje:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "Fade out: "
+msgstr "Zatamnjenje:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+msgid "Save playlist"
+msgstr "Sačuvaj spisak pesama"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
+msgid "No open playlist"
+msgstr "Nema otvorenih spisak pesama"
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
+msgid "Show Waveform"
+msgstr "Emisijski zvučni talasni oblik"
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "(ss.t)"
+msgstr "(ss.t)"
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Remove all content from this smart block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
+msgid "No smart block currently open"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+msgid "Cue In: "
+msgstr "Cue In: "
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "(hh:mm:ss.t)"
+msgstr "(hh:mm:ss.t)"
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "Cue Out: "
+msgstr "Cue Out: "
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
+msgid "Original Length:"
+msgstr "Originalna Dužina:"
+
+#: airtime_mvc/application/views/scripts/preference/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:56
+msgid "General"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
+msgid "Stream Settings"
+msgstr "Prenosna Podešavanja"
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
+msgid "Global"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
+msgid "dB"
+msgstr "dB"
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
+msgid "Output Streams"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:3
+#: airtime_mvc/application/forms/Login.php:83
+msgid "Login"
+msgstr "Prijava"
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:7
+#, php-format
+msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
+msgid "Email Sent!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
+msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
+msgid "Back"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
+msgid "Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
+msgid "New password"
+msgstr "Nova lozinka"
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
+msgid "Please enter and confirm your new password in the fields below."
+msgstr "Unesi i potvrdi svoju novu lozinku u polja dole."
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
+msgid "Manage Users"
+msgstr "Upravljanje Korisnike"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
+msgid "New User"
+msgstr "Novi Korisnik"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
+msgid "id"
+msgstr "id"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
+#: airtime_mvc/application/forms/PasswordRestore.php:25
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
+msgid "Username"
+msgstr "Korisničko ime"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
+msgid "First Name"
+msgstr "Ime"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
+msgid "Last Name"
+msgstr "Prezime"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
+msgid "User Type"
+msgstr "Vrsta Korisnika"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
+#, php-format
+msgid "Super Admin details can be changed in your Billing Settings."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
+msgid "Find Shows"
+msgstr "Pronađi Emisije"
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
+msgid "Choose Show Instance"
+msgstr "Odaberi Emisijsku Stepenu"
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
+msgid "Find"
+msgstr "Pronađi"
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
+#: airtime_mvc/application/configs/navigation.php:61
+msgid "My Profile"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
+#, php-format
+msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
+msgid "Repeat Days:"
+msgstr "Ponovljeni Dani:"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
+#: airtime_mvc/application/forms/GeneralPreferences.php:53
+#: airtime_mvc/application/forms/AddShowStyle.php:64
+msgid "Remove"
+msgstr "Ukloni"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
+msgid "Add"
+msgstr "Dodaj"
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
+msgid "Show Source"
+msgstr "Emisijski Izvor"
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
+msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
+msgid "Register Airtime"
+msgstr "Airtime Registar"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
+#, php-format
+msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
+#, php-format
+msgid "Click the box below to promote your station on %s."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
+msgid "(Required)"
+msgstr "(Obavezno)"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
+msgid "(for verification purposes only, will not be published)"
+msgstr "(služi samo za proveru, neće da bude objavljena)"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
+#: airtime_mvc/application/forms/GeneralPreferences.php:43
+msgid "Note: Anything larger than 600x600 will be resized."
+msgstr "Napomena: Sve veća od 600k600 će da se menjaju."
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
+msgid "Show me what I am sending "
+msgstr "Pokaži mi šta šaljem"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
+msgid "Terms and Conditions"
+msgstr "Uslovi i Odredbe"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
+msgid "Choose Days:"
+msgstr "Odaberi Dane:"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
+msgid "Search Criteria:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
+msgid "New Criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
+msgid "or"
+msgstr "ili"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
+msgid "and"
+msgstr "i"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
+msgid "New Modifier"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
+msgid " to "
+msgstr "do"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
+msgid "files meet the criteria"
+msgstr "datoteke zadovoljavaju kriterijume"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
+msgid "file meets the criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
+msgid "Filter History"
+msgstr "Filtriraj Istorije"
+
+#: airtime_mvc/application/views/scripts/form/login.phtml:41
+msgid "Forgot your password?"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
+msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
+msgstr "(Kako bi se promovisao svoju stanicu, 'Pošalji povratne informacije' mora da bude omogućena)."
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
+msgid "Stream "
+msgstr "Prenos"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
+msgid "Additional Options"
+msgstr "Dodatne Opcije"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
+msgid "The following info will be displayed to listeners in their media player:"
+msgstr "Sledeće informacije će da bude prikazane slušaocima u medijskom plejerima:"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
+msgid "(Your radio station website)"
+msgstr "(Tvoja radijska stanica veb stranice)"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
+msgid "Stream URL: "
+msgstr "URL Prenosa:"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
+msgid "Choose folder"
+msgstr "Odaberi folder"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
+msgid "Set"
+msgstr "Podesi"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
+msgid "Current Import Folder:"
+msgstr "Aktualna Uvozna Mapa:"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
+#, php-format
+msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
+msgid "Remove watched directory"
+msgstr "Ukloni nadzoranu direktorijumu"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
+msgid "You are not watching any media folders."
+msgstr "Ne pratiš nijedne medijske mape."
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
+msgid "Live Broadcasting"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
+msgid "Master Source"
+msgstr "Majstorski Izvor"
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
+msgid "Use these settings in your broadcasting software to stream live at any time."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
+msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
+msgid "TuneIn Settings"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
+msgid "SoundCloud Settings"
+msgstr "SoundCloud Podešavanje"
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
+msgid "Dangerous Options"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Add this show"
+msgstr "Dodaj ovu emisiju"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Update show"
+msgstr "Ažuriranje emisije"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
+msgid "What"
+msgstr "Šta"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
+msgid "When"
+msgstr "Kada"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
+msgid "Live Stream Input"
+msgstr "Ulaz Uživnog Prenosa"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
+msgid "Who"
+msgstr "Ko"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
+msgid "Style"
+msgstr "Stil"
+
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
+msgid "Disk Space"
+msgstr "Diskovni Prostor"
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:3
+msgid "File import in progress..."
+msgstr "Uvoz datoteke je u toku..."
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:10
+#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
+msgid "Advanced Search Options"
+msgstr "Napredne Opcije Pretraživanja"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
+#: airtime_mvc/application/forms/EditAudioMD.php:24
+#: airtime_mvc/application/forms/Player.php:15
+msgid "Title:"
+msgstr "Naziv:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
+#: airtime_mvc/application/forms/EditAudioMD.php:34
+msgid "Creator:"
+msgstr "Tvorac:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
+#: airtime_mvc/application/forms/EditAudioMD.php:44
+msgid "Album:"
+msgstr "Album:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
+msgid "Track:"
+msgstr "Pesma:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
+msgid "Length:"
+msgstr "Dužina:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
+msgid "Sample Rate:"
+msgstr "Uzorak Stopa:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
+msgid "Bit Rate:"
+msgstr "Brzina u Bitovima:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
+#: airtime_mvc/application/forms/EditAudioMD.php:115
+msgid "Mood:"
+msgstr "Raspoloženje:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:45
+#: airtime_mvc/application/forms/EditAudioMD.php:62
+msgid "Genre:"
+msgstr "Žanr:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
+#: airtime_mvc/application/forms/EditAudioMD.php:72
+msgid "Year:"
+msgstr "Godina:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
+#: airtime_mvc/application/forms/EditAudioMD.php:85
+msgid "Label:"
+msgstr "Nalepnica:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
+#: airtime_mvc/application/forms/EditAudioMD.php:125
+msgid "BPM:"
+msgstr "BPM:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
+#: airtime_mvc/application/forms/EditAudioMD.php:95
+msgid "Composer:"
+msgstr "Kompozitor:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
+#: airtime_mvc/application/forms/EditAudioMD.php:105
+msgid "Conductor:"
+msgstr "Dirigent:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
+#: airtime_mvc/application/forms/EditAudioMD.php:135
+msgid "Copyright:"
+msgstr "Autorsko pravo:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
+msgid "Isrc Number:"
+msgstr "Isrc Broj:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
+#: airtime_mvc/application/forms/EditAudioMD.php:155
+msgid "Website:"
+msgstr "Veb stranica:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
+#: airtime_mvc/application/forms/EditAudioMD.php:165
+#: airtime_mvc/application/forms/EditUser.php:119
+#: airtime_mvc/application/forms/Login.php:68
+msgid "Language:"
+msgstr "Jezik:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
+msgid "File Path:"
+msgstr "Staža Datoteka:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
+msgid "Web Stream"
+msgstr "Prenos"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
+msgid "Dynamic Smart Block"
+msgstr "Dinamički Pametan Blok"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
+msgid "Static Smart Block"
+msgstr "Statički Pametan Blok"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
+msgid "Audio Track"
+msgstr "Zvučni Zapis"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
+msgid "Playlist Contents: "
+msgstr "Sadržaji Spisak Pesama:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
+msgid "Static Smart Block Contents: "
+msgstr "Statički Pametan Blok Sadržaji:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
+msgid "Dynamic Smart Block Criteria: "
+msgstr "Dinamički Pametan Blok Kriterijumi:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
+msgid "Limit to "
+msgstr "Ograničeno za"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
+#: airtime_mvc/application/forms/AddShowWhat.php:36
+msgid "URL:"
+msgstr "URL:"
+
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
+msgid "Viewing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
+msgid "Listeners"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
+msgid "Stream Data Collection Status"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
+msgid "Your trial expires in"
+msgstr "Vaš nalog ističe u"
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
+msgid "days"
+msgstr "dani"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
+msgid "Previous:"
+msgstr "Prethodna:"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
+msgid "Next:"
+msgstr "Sledeća:"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
+msgid "Source Streams"
+msgstr "Prenosni Izvori"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
+msgid "ON AIR"
+msgstr "PRENOS"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
+msgid "Listen"
+msgstr "Slušaj"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
+msgid "Logout"
+msgstr "Odjava"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
+msgid "Playout History Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
+msgid "Log Sheet Templates"
+msgstr "Šabloni Spisak Prijave"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
+msgid "New Log Sheet Template"
+msgstr "Novi Listu šablona"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
+msgid "No Log Sheet Templates"
+msgstr "Nema Listu Šablona"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
+msgid "File Summary Templates"
+msgstr "Šabloni za Datotečni Sažeci"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
+msgid "New File Summary Template"
+msgstr "Novi Šablon za Datotečni Sažeci"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
+msgid "No File Summary Templates"
+msgstr "Nema Šablona za Datotečni Sažeci"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
+msgid "Creating File Summary Template"
+msgstr "Stvaranje Šablona za Datotečni Sažeci"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
+msgid "Creating Log Sheet Template"
+msgstr "Stvaranje Listu Šablona"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
+msgid "Name"
+msgstr "Naziv"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
+msgid "Add more elements"
+msgstr "Dodaj više elemenata"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
+msgid "Add New Field"
+msgstr "Dodaj Novo Polje"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
+msgid "Set Default Template"
+msgstr "Podesi Podrazumevano Šablonu"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
+msgid "Description"
+msgstr "Opis"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
+msgid "Stream URL:"
+msgstr "URL Prenosa:"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
+msgid "Default Length:"
+msgstr "Zadata Dužina:"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
+msgid "No webstream"
+msgstr "Nema prenosa"
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
+#: airtime_mvc/application/views/scripts/error/error.phtml:6
+msgid "An error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
+msgid "Access Denied!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
+msgid "You do not have permission to access this page!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
+#: airtime_mvc/application/views/scripts/error/error.phtml:14
+#: airtime_mvc/application/configs/navigation.php:143
+msgid "Help"
+msgstr "Pomoć"
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
+msgid "Oops!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
+msgid "Something went wrong!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
+msgid "Bad Request!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
+msgid "The requested action is not supported!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
+msgid "Page not found!"
+msgstr "Stranica nije pronađena!"
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
+msgid "We couldn't find the page you were looking for."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error.phtml:12
+msgid "Looks like the page you were looking for doesn't exist!"
+msgstr "Izgleda stranica koju si tražio ne postoji!"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
+msgid "previous"
+msgstr "prethodna"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
+msgid "play"
+msgstr "pokreni"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
+msgid "pause"
+msgstr "pauza"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
+msgid "next"
+msgstr "sledeća"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
+msgid "stop"
+msgstr "zaustavi"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
+msgid "max volume"
+msgstr "maks glasnoća"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
+msgid "Update Required"
+msgstr "Potrebno Ažuriranje"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
+#, php-format
+msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
+msgstr "Medija je potrebna za reprodukciju, i moraš da ažuriraš svoj pretraživač na noviju verziju, ili da ažuriraš svoj %sFlash plugin%s."
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
+msgid "Plan type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
+msgid "Billing cycle:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
+msgid "Payment method:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
+msgid "PayPal"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
+msgid "Credit Card via 2Checkout"
+msgstr ""
+
+#: airtime_mvc/application/forms/DateRange.php:16
+#: airtime_mvc/application/forms/ShowBuilder.php:18
+msgid "Date Start:"
+msgstr "Datum Početka:"
+
+#: airtime_mvc/application/forms/DateRange.php:35
+#: airtime_mvc/application/forms/DateRange.php:63
+#: airtime_mvc/application/forms/ShowBuilder.php:37
+#: airtime_mvc/application/forms/ShowBuilder.php:65
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
+msgid "Invalid character entered"
+msgstr "Uneseni su nevažeći znakovi"
+
+#: airtime_mvc/application/forms/DateRange.php:44
+#: airtime_mvc/application/forms/ShowBuilder.php:46
+#: airtime_mvc/application/forms/AddShowRepeats.php:56
+msgid "Date End:"
+msgstr "Datum Završetka:"
+
+#: airtime_mvc/application/forms/ShowBuilder.php:72
+#: airtime_mvc/application/forms/ShowBuilder.php:88
+msgid "Filter by Show"
+msgstr ""
+
+#: airtime_mvc/application/forms/ShowBuilder.php:80
+msgid "All My Shows:"
+msgstr "Sve Moje Emisije:"
+
+#: airtime_mvc/application/forms/AddShowWho.php:10
+msgid "Search Users:"
+msgstr "Traži Korisnike:"
+
+#: airtime_mvc/application/forms/AddShowWho.php:24
+msgid "DJs:"
+msgstr "Disk-džokeji:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:30
+#: airtime_mvc/application/forms/GeneralPreferences.php:25
+#: airtime_mvc/application/forms/SupportSettings.php:18
+msgid "Station Name"
+msgstr "Naziv Stanice"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:39
+#: airtime_mvc/application/forms/SupportSettings.php:31
+msgid "Phone:"
+msgstr "Telefon:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:51
+#: airtime_mvc/application/forms/AddUser.php:67
+#: airtime_mvc/application/forms/EditUser.php:83
+#: airtime_mvc/application/forms/SupportSettings.php:43
+msgid "Email:"
+msgstr "E-mail:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:62
+#: airtime_mvc/application/forms/SupportSettings.php:54
+msgid "Station Web Site:"
+msgstr "Veb Stranica:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:73
+#: airtime_mvc/application/forms/SupportSettings.php:65
+msgid "Country:"
+msgstr "Država:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:84
+#: airtime_mvc/application/forms/SupportSettings.php:76
+msgid "City:"
+msgstr "Grad:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:96
+#: airtime_mvc/application/forms/SupportSettings.php:88
+msgid "Station Description:"
+msgstr "Opis:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:106
+#: airtime_mvc/application/forms/GeneralPreferences.php:42
+msgid "Station Logo:"
+msgstr "Logo:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:126
+#: airtime_mvc/application/forms/SupportSettings.php:108
+#, php-format
+msgid "Promote my station on %s"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:151
+#: airtime_mvc/application/forms/SupportSettings.php:120
+#, php-format
+msgid "By checking this box, I agree to %s's %sprivacy policy%s."
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:169
+#: airtime_mvc/application/forms/SupportSettings.php:143
+msgid "You have to agree to privacy policy."
+msgstr "Moraš da pristaneš na pravila o privatnosti."
+
+#: airtime_mvc/application/forms/AddShowRR.php:10
+msgid "Record from Line In?"
+msgstr "Snimanje sa Line In?"
+
+#: airtime_mvc/application/forms/AddShowRR.php:16
+msgid "Rebroadcast?"
+msgstr "Ponovo da emituje?"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
+#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
+msgid "Value is required and can't be empty"
+msgstr "Vrednost je potrebna i ne može da bude prazan"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
+msgid "'%value%' is no valid email address in the basic format local-part@hostname"
+msgstr "'%value%' nije valjana e-mail adresa u osnovnom obliku local-part@hostname"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
+msgid "'%value%' does not fit the date format '%format%'"
+msgstr "'%value%' ne odgovara po obliku datuma '%format%'"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
+msgid "'%value%' is less than %min% characters long"
+msgstr "'%value%' je manji od %min% dugačko znakova"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
+msgid "'%value%' is more than %max% characters long"
+msgstr "'%value%' je više od %max% dugačko znakova"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
+msgid "'%value%' is not between '%min%' and '%max%', inclusively"
+msgstr "'%value%' nije između '%min%' i '%max%', uključivo"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
+msgid "Passwords do not match"
+msgstr "Lozinke se ne podudaraju"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
+msgid "Day must be specified"
+msgstr "Dan mora da bude naveden"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
+msgid "Time must be specified"
+msgstr "Vreme mora da bude navedeno"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
+msgid "Must wait at least 1 hour to rebroadcast"
+msgstr "Moraš da čekaš najmanje 1 sat za re-emitovanje"
+
+#: airtime_mvc/application/forms/PasswordRestore.php:14
+msgid "Email"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordRestore.php:36
+msgid "Reset password"
+msgstr "Resetuj lozinku"
+
+#: airtime_mvc/application/forms/AddShowWhat.php:30
+msgid "Untitled Show"
+msgstr "Neimenovana Emisija"
+
+#: airtime_mvc/application/forms/AddShowWhat.php:69
+msgid "Instance Description:"
+msgstr ""
+
+#: airtime_mvc/application/forms/DangerousPreferences.php:12
+msgid "Delete All Tracks in Library"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditAudioMD.php:145
+msgid "ISRC Number:"
+msgstr "ISRC Broj:"
+
+#: airtime_mvc/application/forms/EditAudioMD.php:176
+msgid "OK"
+msgstr "OK"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:33
+msgid "Station Description"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:62
+msgid "Default Crossfade Duration (s):"
+msgstr "Podrazumevano Trajanje Ukršteno Stišavanje (s):"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:68
+#: airtime_mvc/application/forms/GeneralPreferences.php:82
+#: airtime_mvc/application/forms/GeneralPreferences.php:96
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
+msgid "Please enter a time in seconds (eg. 0.5)"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:76
+msgid "Default Fade In (s):"
+msgstr "Podrazumevano Odtamnjenje (s):"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:90
+msgid "Default Fade Out (s):"
+msgstr "Podrazumevano Zatamnjenje (s):"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:102
+msgid "Public Airtime API"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:103
+msgid "Required for embeddable schedule widget."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:105
+msgid "Disabled"
+msgstr "Onemogućeno"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:106
+msgid "Enabled"
+msgstr "Omogućeno"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:109
+msgid ""
+"Enabling this feature will allow Airtime to provide schedule data\n"
+" to external widgets that can be embedded in your website."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:120
+msgid "Default Language"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:127
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
+msgid "Station Timezone"
+msgstr "Stanična Vremenska Zona"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:134
+msgid "Week Starts On"
+msgstr "Prvi Dan u Nedelji"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:150
+msgid "Display login button on your Radio Page?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:29
+#: airtime_mvc/application/forms/EditUser.php:37
+#: airtime_mvc/application/forms/Login.php:41
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
+msgid "Username:"
+msgstr "Korisničko ime:"
+
+#: airtime_mvc/application/forms/AddUser.php:38
+#: airtime_mvc/application/forms/EditUser.php:48
+#: airtime_mvc/application/forms/Login.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
+msgid "Password:"
+msgstr "Lozinka:"
+
+#: airtime_mvc/application/forms/AddUser.php:46
+#: airtime_mvc/application/forms/EditUser.php:57
+msgid "Verify Password:"
+msgstr "Potvrdi Lozinku:"
+
+#: airtime_mvc/application/forms/AddUser.php:55
+#: airtime_mvc/application/forms/EditUser.php:67
+msgid "Firstname:"
+msgstr "Ime:"
+
+#: airtime_mvc/application/forms/AddUser.php:61
+#: airtime_mvc/application/forms/EditUser.php:75
+msgid "Lastname:"
+msgstr "Prezime:"
+
+#: airtime_mvc/application/forms/AddUser.php:76
+#: airtime_mvc/application/forms/EditUser.php:94
+msgid "Mobile Phone:"
+msgstr "Mobilni Telefon:"
+
+#: airtime_mvc/application/forms/AddUser.php:82
+#: airtime_mvc/application/forms/EditUser.php:102
+msgid "Skype:"
+msgstr "Skype:"
+
+#: airtime_mvc/application/forms/AddUser.php:88
+#: airtime_mvc/application/forms/EditUser.php:110
+msgid "Jabber:"
+msgstr "Jabber:"
+
+#: airtime_mvc/application/forms/AddUser.php:95
+msgid "User Type:"
+msgstr "Tipova Korisnika:"
+
+#: airtime_mvc/application/forms/AddUser.php:120
+#: airtime_mvc/application/forms/EditUser.php:155
+msgid "Login name is not unique."
+msgstr "Ime prijave nije jedinstveno."
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
+msgid "Import Folder:"
+msgstr "Uvozna Mapa:"
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
+msgid "Watched Folders:"
+msgstr "Mape Pod Nadzorom:"
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
+msgid "Not a valid Directory"
+msgstr "Ne važeći Direktorijum"
+
+#: airtime_mvc/application/forms/BillingClient.php:126
+msgid "What is the name of your favorite childhood friend?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:127
+msgid "What school did you attend for sixth grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:128
+msgid "In what city did you meet your spouse/significant other?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:129
+msgid "What street did you live on in third grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:130
+msgid "What is the first name of the boy or girl that you first kissed?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:131
+msgid "In what city or town was your first job?"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
+msgid "Default License:"
+msgstr "Zadata Dozvola:"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
+msgid "All rights are reserved"
+msgstr "Sva prava zadržana"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
+msgid "The work is in the public domain"
+msgstr "Rad je u javnom domenu"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
+msgid "Creative Commons Attribution"
+msgstr "Creative Commons Imenovanje"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
+msgid "Creative Commons Attribution Noncommercial"
+msgstr "Creative Commons Imenovanje Nekomercijalno"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
+msgid "Creative Commons Attribution No Derivative Works"
+msgstr "Creative Commons Imenovanje Bez Izvedenih Dela"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
+msgid "Creative Commons Attribution Share Alike"
+msgstr "Creative Commons Deli Pod Istim Uslovima"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
+msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
+msgstr "Creative Commons Imenovanje Nekomercijalno Bez Izvedenih Dela"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
+msgid "Creative Commons Attribution Noncommercial Share Alike"
+msgstr "Creative Commons Imenovanje Nekomercijalno Dijeli Pod Istim Uslovima"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
+msgid "Default Sharing Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
+msgid "Public"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
+msgid "Private"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditUser.php:129
+msgid "Interface Timezone:"
+msgstr "Vremenska Zona Interfejsi:"
+
+#: airtime_mvc/application/forms/Player.php:14
+msgid "Now Playing"
+msgstr "Trenutno Izvođena"
+
+#: airtime_mvc/application/forms/Player.php:25
+msgid "Select Stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:28
+msgid "Auto detect the most appropriate stream to use."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:29
+msgid "Select a stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:41
+msgid " - Mobile friendly"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:45
+msgid " - The player does not support Opus streams."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:71
+msgid "Embeddable code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:72
+msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
+#: airtime_mvc/application/models/Block.php:1351
+msgid "Select criteria"
+msgstr "Odaberi kriterijume"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
+#: airtime_mvc/application/models/Block.php:1353
+msgid "Bit Rate (Kbps)"
+msgstr "Brzina u Bitovima (Kbps)"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
+#: airtime_mvc/application/models/Block.php:1374
+msgid "Sample Rate (kHz)"
+msgstr "Uzorak Stopa (kHz)"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
+msgid "hours"
+msgstr "sati"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
+msgid "minutes"
+msgstr "minuti"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
+#: airtime_mvc/application/models/Block.php:333
+msgid "items"
+msgstr "elementi"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
+msgid "Randomly"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
+msgid "Newest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
+msgid "Oldest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
+msgid "Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
+msgid "Static"
+msgstr "Statički"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
+msgid "Dynamic"
+msgstr "Dinamički"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
+msgid "Allow Repeated Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
+msgid "Sort Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
+msgid "Limit to:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
+msgid "Generate playlist content and save criteria"
+msgstr "Generisanje liste pesama i čuvanje sadržaja kriterijume"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
+msgid "Generate"
+msgstr "Generiši"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
+msgid "Shuffle playlist content"
+msgstr "Sadržaj slučajni izbor spisak pesama"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
+msgid "Limit cannot be empty or smaller than 0"
+msgstr "Ograničenje ne može da bude prazan ili manji od 0"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
+msgid "Limit cannot be more than 24 hrs"
+msgstr "Ograničenje ne može da bude više od 24 sati"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
+msgid "The value should be an integer"
+msgstr "Vrednost mora da bude ceo broj"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
+msgid "500 is the max item limit value you can set"
+msgstr "500 je maks stavu graničnu vrednost moguće je da podesiš"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
+msgid "You must select Criteria and Modifier"
+msgstr "Moraš da izabereš Kriteriju i Modifikaciju"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
+msgid "'Length' should be in '00:00:00' format"
+msgstr "'Dužina' trebala da bude u '00:00:00' obliku"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
+msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)"
+msgstr "Vrednost mora da bude u obliku vremenske oznake (npr. 0000-00-00 ili 0000-00-00 00:00:00)"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:594
+msgid "The value has to be numeric"
+msgstr "Vrednost mora da bude numerička"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
+msgid "The value should be less then 2147483648"
+msgstr "Vrednost bi trebala da bude manja od 2147483648"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
+#, php-format
+msgid "The value should be less than %s characters"
+msgstr "Vrednost mora da bude manja od %s znakova"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
+msgid "Value cannot be empty"
+msgstr "Vrednost ne može da bude prazna"
+
+#: airtime_mvc/application/forms/StreamSetting.php:26
+msgid "Icecast Vorbis Metadata"
+msgstr "Icecast Vorbis Metapodaci"
+
+#: airtime_mvc/application/forms/StreamSetting.php:36
+msgid "Stream Label:"
+msgstr "Vidljivi Podaci:"
+
+#: airtime_mvc/application/forms/StreamSetting.php:37
+msgid "Artist - Title"
+msgstr "Autor - Naziv"
+
+#: airtime_mvc/application/forms/StreamSetting.php:38
+msgid "Show - Artist - Title"
+msgstr "Emisija - Autor - Naziv"
+
+#: airtime_mvc/application/forms/StreamSetting.php:39
+msgid "Station name - Show name"
+msgstr "Naziv stanice - Naziv emisije"
+
+#: airtime_mvc/application/forms/StreamSetting.php:45
+msgid "Off Air Metadata"
+msgstr "Off Air Metapodaci"
+
+#: airtime_mvc/application/forms/StreamSetting.php:51
+msgid "Enable Replay Gain"
+msgstr "Uključi Replay Gain"
+
+#: airtime_mvc/application/forms/StreamSetting.php:57
+msgid "Replay Gain Modifier"
+msgstr "Replay Gain Modifikator"
+
+#: airtime_mvc/application/forms/StreamSetting.php:65
+msgid "Streaming Server:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Airtime Pro Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Custom / 3rd Party Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordChange.php:17
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
+msgid "Password"
+msgstr "Lozinka"
-#~ msgid "enter a time in seconds 0{.0}"
-#~ msgstr "unesi vreme u sekundama 0{.0}"
+#: airtime_mvc/application/forms/PasswordChange.php:28
+msgid "Confirm new password"
+msgstr "Potvrdi novu lozinku"
-#~ msgid "Allow Remote Websites To Access \"Schedule\" Info?%s (Enable this to make front-end widgets work.)"
-#~ msgstr "Dopusti daljinske Veb stranice za pristup \"Raspored\" Info?%s (Omogući ovo da bi front-end widgets rad.)"
+#: airtime_mvc/application/forms/PasswordChange.php:36
+msgid "Password confirmation does not match your password."
+msgstr "Lozinke koje ste uneli ne podudaraju se."
-#~ msgid "Default Interface Language"
-#~ msgstr "Podrazumevani Jezik Interfejsa"
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
+msgid "Station Language"
+msgstr ""
-#~ msgid "Get new password"
-#~ msgstr "Nabavi novu lozinku"
-
-#~ msgid "Set smart block type:"
-#~ msgstr "Podesi smart block tipa:"
-
-#~ msgid "Allow Repeat Tracks:"
-#~ msgstr "Dopusti Ponavljanje Pesama:"
-
-#~ msgid "Limit to"
-#~ msgstr "Ograničeno na"
-
-#~ msgid "Auto Switch Off"
-#~ msgstr "Automatsko Isključivanje"
-
-#~ msgid "Auto Switch On"
-#~ msgstr "Automatsko Uključivanje"
-
-#~ msgid "Switch Transition Fade (s)"
-#~ msgstr "Prelazni Fade Prekidač (s)"
-
-#~ msgid "enter a time in seconds 00{.000000}"
-#~ msgstr "unesi vreme u sekundama 00{.000000}"
-
-#~ msgid "Master Username"
-#~ msgstr "Majstorsko Kor. Ime"
-
-#~ msgid "Master Password"
-#~ msgstr "Majstorska Lozinka"
-
-#~ msgid "Master Source Connection URL"
-#~ msgstr "URL veza majstorskog izvora"
-
-#~ msgid "Show Source Connection URL"
-#~ msgstr "URL veza Programskog izvora"
-
-#~ msgid "Master Source Port"
-#~ msgstr "Port Majstorskog Izvora"
-
-#~ msgid "Master Source Mount Point"
-#~ msgstr "Tačka Majstorskog Izvora"
-
-#~ msgid "Show Source Port"
-#~ msgstr "Port Programskog Izvora"
-
-#~ msgid "Show Source Mount Point"
-#~ msgstr "Tačka Programskog Izvora"
-
-#~ msgid "You cannot use same port as Master DJ port."
-#~ msgstr "Ne možeš da koristiš isti port kao Majstor DJ priključak."
-
-#~ msgid "Port %s is not available"
-#~ msgstr "Port %s nije dostupan"
-
-#~ msgid "E-mail"
-#~ msgstr "E-mail"
-
-#~ msgid "Restore password"
-#~ msgstr "Oporavak lozinke"
-
-#~ msgid "Hardware Audio Output"
-#~ msgstr "Hardver Audio Izlaz"
-
-#~ msgid "Output Type"
-#~ msgstr "Tip Izlaza"
-
-#~ msgid "Date/Time Start:"
-#~ msgstr "Datum/Vreme Početka:"
-
-#~ msgid "Date/Time End:"
-#~ msgstr "Datum/Vreme Završetka:"
-
-#~ msgid "Automatically Upload Recorded Shows"
-#~ msgstr "Automatski Prenos (Upload) snimljene emisije"
-
-#~ msgid "Enable SoundCloud Upload"
-#~ msgstr "Omogući SoundCloud Prenos"
-
-#~ msgid "Automatically Mark Files \"Downloadable\" on SoundCloud"
-#~ msgstr "Automatski Obeleženi Fajlovi \"može se preuzeti\" sa SoundCloud"
-
-#~ msgid "SoundCloud Email"
-#~ msgstr "SoundCloud E-mail"
-
-#~ msgid "SoundCloud Password"
-#~ msgstr "SoundCloud Lozinka"
-
-#~ msgid "SoundCloud Tags: (separate tags with spaces)"
-#~ msgstr "SoundCloud Tagovi: (zasebne oznake sa razmacima)"
-
-#~ msgid "Default Genre:"
-#~ msgstr "Podrazumevani Žanr:"
-
-#~ msgid "Default Track Type:"
-#~ msgstr "Zadata Vrsta Pesme:"
-
-#~ msgid "Original"
-#~ msgstr "Izvorni"
-
-#~ msgid "Remix"
-#~ msgstr "Remix"
-
-#~ msgid "Live"
-#~ msgstr "Uživo"
-
-#~ msgid "Recording"
-#~ msgstr "Snimanje"
-
-#~ msgid "Spoken"
-#~ msgstr "Govorni"
-
-#~ msgid "Podcast"
-#~ msgstr "Podcast"
-
-#~ msgid "Demo"
-#~ msgstr "Ogledni"
-
-#~ msgid "Work in progress"
-#~ msgstr "Radovi su u toku"
-
-#~ msgid "Stem"
-#~ msgstr "Poreklo"
-
-#~ msgid "Loop"
-#~ msgstr "Petlja"
-
-#~ msgid "Sound Effect"
-#~ msgstr "Zvučni efekat"
-
-#~ msgid "One Shot Sample"
-#~ msgstr "Jedan Metak Uzorak"
-
-#~ msgid "Other"
-#~ msgstr "Ostalo"
-
-#~ msgid "Enable System Emails (Password Reset)"
-#~ msgstr "Omogućavanje sistema e-pošte (Ponovo postavljanje lozinke)"
-
-#~ msgid "Reset Password 'From' Email"
-#~ msgstr "Ponovo postavi lozinku 'iz' e-pošte"
-
-#~ msgid "Configure Mail Server"
-#~ msgstr "Konfigurisanje Mail servera"
-
-#~ msgid "Requires Authentication"
-#~ msgstr "Zahteva potvrdu identiteta"
-
-#~ msgid "Mail Server"
-#~ msgstr "Mail Server"
-
-#~ msgid "Email Address"
-#~ msgstr "E-mail Adresa"
-
-#~ msgid "Please enter your user name and password"
-#~ msgstr "Molimo unesi svoje korisničko ime i lozinku"
-
-#~ msgid "Given email not found."
-#~ msgstr "S obzirom e-mail nije pronađen."
-
-#~ msgid "Page not found"
-#~ msgstr "Stranica nije pronađena"
-
-#~ msgid "Application error"
-#~ msgstr "Greška aplikacije"
-
-#~ msgid "Playlist / Block"
-#~ msgstr "Playlist / Block"
-
-#~ msgid "If you change the username or password values for an enabled stream the playout engine will be rebooted and your listeners will hear silence for 5-10 seconds. Changing the following fields will NOT cause a reboot: Stream Label (Global Settings), and Switch Transition Fade(s), Master Username, and Master Password (Input Stream Settings). If Airtime is recording, and if the change causes a playout engine restart, the recording will be interrupted."
-#~ msgstr "Oprezno prilikom ažuriranju podataka!"
-
-#~ msgid "today"
-#~ msgstr "danas"
-
-#~ msgid "day"
-#~ msgstr "dan"
-
-#~ msgid "week"
-#~ msgstr "nedelja"
-
-#~ msgid "month"
-#~ msgstr "mesec"
-
-#~ msgid "Remove overbooked tracks"
-#~ msgstr "Ukloni prebukirane pesme"
-
-#~ msgid "Soundcloud"
-#~ msgstr "Soundcloud"
-
-#~ msgid "View on Soundcloud"
-#~ msgstr "Prikaz na Soundcloud"
-
-#~ msgid "Re-upload to SoundCloud"
-#~ msgstr "Ponovo-da prenese na Soundcloud"
-
-#~ msgid "Upload to SoundCloud"
-#~ msgstr "Prenos na Soundcloud"
-
-#~ msgid "Could not delete some scheduled files."
-#~ msgstr "Ne može da se izbriše neke zakazane datoteke."
-
-#~ msgid "Add Media"
-#~ msgstr "Dodaj Medije"
-
-#~ msgid "Library"
-#~ msgstr "Biblioteka"
-
-#~ msgid "System"
-#~ msgstr "Sistem"
-
-#~ msgid "Preferences"
-#~ msgstr "Podešavanje"
-
-#~ msgid "Media Folders"
-#~ msgstr "Medijska Mapa"
-
-#~ msgid "History"
-#~ msgstr "Istorija"
-
-#~ msgid "Service"
-#~ msgstr "Usluga"
-
-#~ msgid "Uptime"
-#~ msgstr "Radno Vreme"
-
-#~ msgid "CPU"
-#~ msgstr "CPU"
-
-#~ msgid "Memory"
-#~ msgstr "Memorija"
-
-#~ msgid "Email / Mail Server Settings"
-#~ msgstr "Podešavanja E-mail / Mail Servera"
-
-#~ msgid "Connection URL: "
-#~ msgstr "Priključni URL:"
-
-#~ msgid "Input Stream Settings"
-#~ msgstr "Podešavanje Ulaznog signala"
-
-#~ msgid "Master Source Connection URL:"
-#~ msgstr "URL veza Majstorskog izvora:"
-
-#~ msgid "Override"
-#~ msgstr "Nadjačaj"
-
-#~ msgid "RESET"
-#~ msgstr "Resetovanje"
-
-#~ msgid "Show Source Connection URL:"
-#~ msgstr "URL veza Programskog izvora:"
-
-#~ msgid "Filter By Show:"
-#~ msgstr "Po Emisiji:"
-
-#~ msgid "%s's Settings"
-#~ msgstr "%s Podešavanje"
-
-#~ msgid "Sourcefabric Privacy Policy"
-#~ msgstr "Sourcefabric Pravila o Privatnosti"
-
-#~ msgid "Smart Block Options"
-#~ msgstr "Smart Block Opcije"
-
-#~ msgid "file meet the criteria"
-#~ msgstr "datoteka zadovoljava kriterijume"
-
-#~ msgid "New"
-#~ msgstr "Novi"
-
-#~ msgid "New Playlist"
-#~ msgstr "Novi Spisak Pesama"
-
-#~ msgid "New Smart Block"
-#~ msgstr "Novi Pametni Blok"
-
-#~ msgid "New Webstream"
-#~ msgstr "Novi Prenos"
-
-#~ msgid "View / edit description"
-#~ msgstr "Pregled / ured opisa"
-
-#~ msgid "Global Settings"
-#~ msgstr "Globalna Podešavanja"
-
-#~ msgid "Output Stream Settings"
-#~ msgstr "Izlazne Prenosne Podešavanje"
-
-#~ msgid "Listener Count Over Time"
-#~ msgstr "Statistika Slušalaca"
-
-#~ msgid "Begin by adding your files to the library using the 'Add Media' menu button. You can drag and drop your files to this window too."
-#~ msgstr "Započni dodavanjem datoteke u biblioteku pomoću 'Dodaj Medije' meni tasterom. Možeš da povučeš i ispustiš datoteke na ovom prozoru."
-
-#~ msgid "Create a show by going to 'Calendar' in the menu bar, and then clicking the '+ Show' icon. This can be either a one-time or repeating show. Only admins and program managers can add shows."
-#~ msgstr "Kreiraj jednu emisiju tako da ideš na 'Kalendar' na traci menija, a zatim klikom na '+ Emisija' ikonicu. One mogu da bude bilo jednokratne ili ponavljajuće emisije. Samo administratori i urednici mogu da dodaju emisije."
-
-#~ msgid "Add media to the show by going to your show in the Schedule calendar, left-clicking on it and selecting 'Add / Remove Content'"
-#~ msgstr "Dodaj medije za emisiju u kalendaru, klikni sa levom klikom na njega i izaberi opciju 'Dodaj / Ukloni sadržaj'"
-
-#~ msgid "Select your media from the left pane and drag them to your show in the right pane."
-#~ msgstr "Odaberi svoje medije na levom oknu i povuci ih na svoju emisiju u desnom oknu."
-
-#~ msgid "Then you're good to go!"
-#~ msgstr "I već je završeno!"
-
-#~ msgid "Please enter your account e-mail address. You will receive a link to create a new password via e-mail."
-#~ msgstr "Unesi svoju e-mail adresu naloga. Primićeš link za novu lozinku putem e-maila."
-
-#~ msgid "Email sent"
-#~ msgstr "E-mail je poslat"
-
-#~ msgid "An email has been sent"
-#~ msgstr "E-mail je poslat"
-
-#~ msgid "Back to login screen"
-#~ msgstr "Povratak na ekran za prijavu"
-
-#~ msgid "Scheduled Play"
-#~ msgstr "Zakazana Predstava"
-
-#~ msgid "Station time"
-#~ msgstr "Glavno vreme"
-
-#~ msgid "Zend Framework Default Application"
-#~ msgstr "Zend Framework Zadata Aplikacija"
-
-#~ msgid "Empty smart block"
-#~ msgstr "Prazan pametni blok"
-
-#~ msgid "Empty playlist"
-#~ msgstr "Prazan spisak pesama"
-
-#~ msgid "Empty smart block content"
-#~ msgstr "Prazan sadržaj pametnog bloka"
-
-#~ msgid "No open smart block"
-#~ msgstr "Nema otvoreni pametni blok"
-
-#~ msgid "Record & Rebroadcast"
-#~ msgstr "Snimanje & Reemitovanje"
-
-#~ msgid "Failed to create 'organize' directory."
-#~ msgstr "Nije uspelo stvaranje 'organizovanje' direktorijuma."
-
-#~ msgid "The file was not uploaded, there is %s MB of disk space left and the file you are uploading has a size of %s MB."
-#~ msgstr "Prenos datoteke nije uspeo jer slobodan prostor je samo %s MB od željenih datoteke veličine od %s MB."
-
-#~ msgid "This file appears to be corrupted and will not be added to media library."
-#~ msgstr "Ova datoteka čini se da je oštećena i neće bude dodata u medijskoj biblioteci."
-
-#~ msgid "The file was not uploaded, this error can occur if the computer hard drive does not have enough disk space or the stor directory does not have correct write permissions."
-#~ msgstr "Datoteka nije poslata, ova greška može da se pojavi ako hard disk računara nema dovoljno prostora na disku ili stor direktorijuma nema ispravnih ovlašćenja za zapisivanje."
-
-#~ msgid ""
-#~ "Hi %s, \n"
-#~ "\n"
-#~ "Click this link to reset your password: "
-#~ msgstr ""
-#~ "Zdravo %s, \n"
-#~ "\n"
-#~ "Klikni na ovaj link kako bi poništio lozinku:"
-
-#~ msgid "Show Content"
-#~ msgstr "Programski Sadržaj"
-
-#~ msgid "Remove All Content"
-#~ msgstr "Ukloni Sve Sadržaje"
-
-#~ msgid "Cancel Current Show"
-#~ msgstr "Prekid Emisija"
-
-#~ msgid "Edit This Instance"
-#~ msgstr "Uredi u tom slučaju"
-
-#~ msgid "Delete This Instance"
-#~ msgstr "Obriši u tom slučaju"
-
-#~ msgid "Delete This Instance and All Following"
-#~ msgstr "Obriši u tom slučaju i svi prateći"
-
-#~ msgid "Please selection an option"
-#~ msgstr "Molimo, odaberi opciju"
-
-#~ msgid "No Records"
-#~ msgstr "Nema Zapisa"
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
+msgid "Enabled:"
+msgstr "Omogućeno:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
+msgid "Mobile:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
+msgid "Stream Type:"
+msgstr "Prenos Tipa:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
+msgid "Service Type:"
+msgstr "Tip Usluge:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
+msgid "Channels:"
+msgstr "Kanali:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "1 - Mono"
+msgstr "1 - Mono"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "2 - Stereo"
+msgstr "2 - Stereo"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
+msgid "Server"
+msgstr "Server"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
+msgid "Port"
+msgstr "Port"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
+msgid "Only numbers are allowed."
+msgstr "Dopušteni su samo brojevi."
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
+msgid "URL"
+msgstr "URL"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
+msgid "Mount Point"
+msgstr "Tačka Montiranja"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
+msgid "Admin User"
+msgstr "Admin Korisnik"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
+msgid "Admin Password"
+msgstr "Adminska Lozinka"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
+msgid "Server cannot be empty."
+msgstr "Server ne može da bude prazan."
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
+msgid "Port cannot be empty."
+msgstr "Port ne može da bude prazan."
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
+msgid "Mount cannot be empty with Icecast server."
+msgstr "Montiranje ne može da bude prazna sa Icecast serverom."
+
+#: airtime_mvc/application/forms/AddShowWhen.php:16
+msgid "'%value%' does not fit the time format 'HH:mm'"
+msgstr "'%value%' se ne uklapa u vremenskom formatu 'HH:mm'"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:22
+msgid "Start Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:37
+msgid "In the Future:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:64
+msgid "End Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:98
+msgid "Timezone:"
+msgstr "Vremenska Zona:"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:107
+msgid "Repeats?"
+msgstr "Ponavljanje?"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:139
+msgid "Cannot create show in the past"
+msgstr "Ne može da se stvori emisiju u prošlosti"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:147
+msgid "Cannot modify start date/time of the show that is already started"
+msgstr "Ne možeš da menjaš datum/vreme početak emisije, ako je već počela"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:156
+#: airtime_mvc/application/models/Show.php:282
+msgid "End date/time cannot be in the past"
+msgstr "Datum završetka i vreme ne može da bude u prošlosti"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:164
+msgid "Cannot have duration < 0m"
+msgstr "Ne može da traje < 0m"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:168
+msgid "Cannot have duration 00h 00m"
+msgstr "Ne može da traje 00h 00m"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:175
+msgid "Cannot have duration greater than 24h"
+msgstr "Ne može da traje više od 24h"
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:19
+msgid "Push metadata to your station on TuneIn?"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:24
+msgid "Station ID:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:30
+msgid "Partner Key:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:36
+msgid "Partner Id:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:77
+#: airtime_mvc/application/forms/TuneInPreferences.php:86
+msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:10
+#, php-format
+msgid "Use %s Authentication:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:16
+msgid "Use Custom Authentication:"
+msgstr "Koristi Prilagođeno potvrdu identiteta:"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:25
+msgid "Custom Username"
+msgstr "Prilagođeno Korisničko Ime"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:37
+msgid "Custom Password"
+msgstr "Prilagođena Lozinka"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:48
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
+msgid "Host:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
+msgid "Port:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:60
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
+msgid "Mount:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:77
+msgid "Username field cannot be empty."
+msgstr "'Korisničko Ime' polja ne sme da ostane prazno."
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:82
+msgid "Password field cannot be empty."
+msgstr "'Lozinka' polja ne sme da ostane prazno."
+
+#: airtime_mvc/application/forms/AddShowStyle.php:12
+msgid "Background Colour:"
+msgstr "Boja Pozadine:"
+
+#: airtime_mvc/application/forms/AddShowStyle.php:31
+msgid "Text Colour:"
+msgstr "Boja Teksta:"
+
+#: airtime_mvc/application/forms/AddShowStyle.php:49
+msgid "Current Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:72
+msgid "Show Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:87
+msgid "Logo Preview:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Login.php:102
+msgid "Type the characters you see in the picture below."
+msgstr "Upiši znake koje vidiš na slici u nastavku."
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
+msgid "Auto Switch Off:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
+msgid "Auto Switch On:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
+msgid "Switch Transition Fade (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:10
+msgid "Link:"
+msgstr "Link:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:16
+msgid "Repeat Type:"
+msgstr "Tip Ponavljanje:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:19
+msgid "weekly"
+msgstr "nedeljno"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:20
+msgid "every 2 weeks"
+msgstr "svake 2 nedelje"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:21
+msgid "every 3 weeks"
+msgstr "svaka 3 nedelje"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:22
+msgid "every 4 weeks"
+msgstr "svaka 4 nedelje"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:23
+msgid "monthly"
+msgstr "mesečno"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:32
+msgid "Select Days:"
+msgstr "Odaberi Dane:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:47
+msgid "Repeat By:"
+msgstr "Ponavljanje Po:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the month"
+msgstr "dan u mesecu"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the week"
+msgstr "dan u nedelji"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:69
+msgid "No End?"
+msgstr "Nema Kraja?"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:106
+msgid "End date must be after start date"
+msgstr "Datum završetka mora da bude posle datuma početka"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:113
+msgid "Please select a repeat day"
+msgstr "Molimo, odaberi kojeg dana"
+
+#: airtime_mvc/application/configs/navigation.php:12
+msgid "Radio Page"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:19
+msgid "Calendar"
+msgstr "Kalendar"
+
+#: airtime_mvc/application/configs/navigation.php:26
+msgid "Widgets"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:48
+msgid "Settings"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:67
+msgid "Users"
+msgstr "Korisnici"
+
+#: airtime_mvc/application/configs/navigation.php:74
+msgid "Streams"
+msgstr "Prenosi"
+
+#: airtime_mvc/application/configs/navigation.php:82
+msgid "Analytics"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:90
+msgid "Listener Stats"
+msgstr "Slušateljska Statistika"
+
+#: airtime_mvc/application/configs/navigation.php:104
+msgid "History Templates"
+msgstr "Istorijski Šabloni"
+
+#: airtime_mvc/application/configs/navigation.php:113
+msgid "Billing"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:120
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:127
+msgid "Account Details"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:134
+msgid "View Invoices"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:150
+msgid "Getting Started"
+msgstr "Početak Korišćenja"
+
+#: airtime_mvc/application/configs/navigation.php:157
+msgid "FAQ"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:162
+msgid "User Manual"
+msgstr "Uputstvo"
+
+#: airtime_mvc/application/configs/navigation.php:167
+msgid "File a Support Ticket"
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:833
+#: airtime_mvc/application/models/Playlist.php:812
+msgid "Cue in and cue out are null."
+msgstr "'Cue in' i 'cue out' su nule."
+
+#: airtime_mvc/application/models/Block.php:868
+#: airtime_mvc/application/models/Block.php:924
+#: airtime_mvc/application/models/Playlist.php:851
+#: airtime_mvc/application/models/Playlist.php:895
+msgid "Can't set cue out to be greater than file length."
+msgstr "Ne možeš da podesiš da 'cue out' bude veće od dužine fajla."
+
+#: airtime_mvc/application/models/Block.php:879
+#: airtime_mvc/application/models/Block.php:900
+#: airtime_mvc/application/models/Playlist.php:843
+#: airtime_mvc/application/models/Playlist.php:868
+msgid "Can't set cue in to be larger than cue out."
+msgstr "Ne možeš da podesiš da 'cue in' bude veće nego 'cue out'."
+
+#: airtime_mvc/application/models/Block.php:935
+#: airtime_mvc/application/models/Playlist.php:887
+msgid "Can't set cue out to be smaller than cue in."
+msgstr "Ne možeš da podesiš da 'cue out' bude manje nego 'cue in'."
+
+#: airtime_mvc/application/models/Block.php:1366
+msgid "Upload Time"
+msgstr ""
+
+#: airtime_mvc/application/models/ShowBuilder.php:212
+#, php-format
+msgid "Rebroadcast of %s from %s"
+msgstr "Reemitovanje od %s od %s"
+
+#: airtime_mvc/application/models/Preference.php:460
+#, php-format
+msgid "Powered by %s"
+msgstr ""
+
+#: airtime_mvc/application/models/Preference.php:588
+msgid "Select Country"
+msgstr "Odaberi Državu"
+
+#: airtime_mvc/application/models/MusicDir.php:160
+#, php-format
+msgid "%s is already watched."
+msgstr "%s je već nadziran."
+
+#: airtime_mvc/application/models/MusicDir.php:164
+#, php-format
+msgid "%s contains nested watched directory: %s"
+msgstr "%s sadržava ugnežđene nadzirane direktorijume: %s"
+
+#: airtime_mvc/application/models/MusicDir.php:168
+#, php-format
+msgid "%s is nested within existing watched directory: %s"
+msgstr "%s se nalazi unutar u postojeći nadzirani direktorijumi: %s"
+
+#: airtime_mvc/application/models/MusicDir.php:189
+#: airtime_mvc/application/models/MusicDir.php:370
+#, php-format
+msgid "%s is not a valid directory."
+msgstr "%s nije valjan direktorijum."
+
+#: airtime_mvc/application/models/MusicDir.php:232
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list"
+msgstr "%s je već postavljena kao mapa za skladištenje ili je između popisa praćenih foldera"
+
+#: airtime_mvc/application/models/MusicDir.php:388
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list."
+msgstr "%s je već postavljena kao mapa za skladištenje ili je između popisa praćenih foldera."
+
+#: airtime_mvc/application/models/MusicDir.php:431
+#, php-format
+msgid "%s doesn't exist in the watched list."
+msgstr "%s ne postoji u listi nadziranih lokacije."
+
+#: airtime_mvc/application/models/Auth.php:33
+#, php-format
+msgid ""
+"Hi %s, \n"
+"\n"
+"Please click this link to reset your password: "
+msgstr ""
+
+#: airtime_mvc/application/models/Auth.php:38
+#, php-format
+msgid "%s Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/models/Show.php:184
+msgid "Shows can have a max length of 24 hours."
+msgstr "Emisije mogu da imaju najveću dužinu 24 sata."
+
+#: airtime_mvc/application/models/Show.php:293
+msgid ""
+"Cannot schedule overlapping shows.\n"
+"Note: Resizing a repeating show affects all of its repeats."
+msgstr ""
+"Ne može da se zakaže preklapajuće emisije.\n"
+"Napomena: Promena veličine ponavljane emisije utiče na sve njene ponavljanje."
+
+#: airtime_mvc/application/models/Scheduler.php:73
+msgid "Cannot move items out of linked shows"
+msgstr "Ne možeš da premestiš stavke iz povezanih emisija"
+
+#: airtime_mvc/application/models/Scheduler.php:119
+msgid "The schedule you're viewing is out of date! (sched mismatch)"
+msgstr "Zastareo se pregledan raspored! (nevažeći raspored)"
+
+#: airtime_mvc/application/models/Scheduler.php:124
+msgid "The schedule you're viewing is out of date! (instance mismatch)"
+msgstr "Zastareo se pregledan raspored! (primer neusklađenost)"
+
+#: airtime_mvc/application/models/Scheduler.php:132
+#: airtime_mvc/application/models/Scheduler.php:458
+#: airtime_mvc/application/models/Scheduler.php:490
+msgid "The schedule you're viewing is out of date!"
+msgstr "Zastareo se pregledan raspored!"
+
+#: airtime_mvc/application/models/Scheduler.php:142
+#, php-format
+msgid "You are not allowed to schedule show %s."
+msgstr "Ne smeš da zakažeš rasporednu emisiju %s."
+
+#: airtime_mvc/application/models/Scheduler.php:146
+msgid "You cannot add files to recording shows."
+msgstr "Ne možeš da dodaš datoteke za snimljene emisije."
+
+#: airtime_mvc/application/models/Scheduler.php:152
+#, php-format
+msgid "The show %s is over and cannot be scheduled."
+msgstr "Emisija %s je gotova i ne mogu da bude zakazana."
+
+#: airtime_mvc/application/models/Scheduler.php:159
+#, php-format
+msgid "The show %s has been previously updated!"
+msgstr "Ranije je %s emisija već bila ažurirana!"
+
+#: airtime_mvc/application/models/Scheduler.php:178
+msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
+msgstr "Sadržaj u povezanim emisijama mora da bude zakazan pre ili posle bilo koje emisije"
+
+#: airtime_mvc/application/models/Scheduler.php:195
+msgid "Cannot schedule a playlist that contains missing files."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:216
+#: airtime_mvc/application/models/Scheduler.php:305
+msgid "A selected File does not exist!"
+msgstr "Izabrani Fajl ne postoji!"
+
+#: airtime_mvc/application/models/Schedule.php:206
+msgid "livestream"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:166
+msgid "Length needs to be greater than 0 minutes"
+msgstr "Dužina mora da bude veća od 0 minuta"
+
+#: airtime_mvc/application/models/Webstream.php:171
+msgid "Length should be of form \"00h 00m\""
+msgstr "Dužina mora da bude u obliku \"00h 00m\""
+
+#: airtime_mvc/application/models/Webstream.php:184
+msgid "URL should be of form \"http://domain\""
+msgstr "URL mora da bude u obliku \"http://domain\""
+
+#: airtime_mvc/application/models/Webstream.php:187
+msgid "URL should be 512 characters or less"
+msgstr "URL mora da bude 512 znakova ili manje"
+
+#: airtime_mvc/application/models/Webstream.php:193
+msgid "No MIME type found for webstream."
+msgstr "Ne postoji MIME tip za prenos."
+
+#: airtime_mvc/application/models/Webstream.php:209
+msgid "Webstream name cannot be empty"
+msgstr "Ime prenosa ne može da da bude prazno"
+
+#: airtime_mvc/application/models/Webstream.php:278
+msgid "Could not parse XSPF playlist"
+msgstr "Nismo mogli analizirati XSPF spisak pesama"
+
+#: airtime_mvc/application/models/Webstream.php:298
+msgid "Could not parse PLS playlist"
+msgstr "Nismo mogli analizirati PLS spisak pesama"
+
+#: airtime_mvc/application/models/Webstream.php:318
+msgid "Could not parse M3U playlist"
+msgstr "Nismo mogli analizirati M3U spisak pesama"
+
+#: airtime_mvc/application/models/Webstream.php:332
+msgid "Invalid webstream - This appears to be a file download."
+msgstr "Nevažeći prenos - Čini se da je ovo preuzimanje."
+
+#: airtime_mvc/application/models/Webstream.php:336
+#, php-format
+msgid "Unrecognized stream type: %s"
+msgstr "Nepoznati prenosni tip: %s"
+
+#: airtime_mvc/public/setup/rabbitmq-setup.php:78
+msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
+msgstr ""
+
+#~ msgid "My Account"
+#~ msgstr "Moj Nalog"
diff --git a/airtime_mvc/locale/sr_RS@latin/LC_MESSAGES/pro.po b/airtime_mvc/locale/sr_RS@latin/LC_MESSAGES/pro.po
index 866ee0acb..f59b52c3d 100644
--- a/airtime_mvc/locale/sr_RS@latin/LC_MESSAGES/pro.po
+++ b/airtime_mvc/locale/sr_RS@latin/LC_MESSAGES/pro.po
@@ -1,3 +1,139 @@
+#: airtime_mvc/application/controllers/LoginController.php:170
+#, php-format
+msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
+#, php-format
+msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
+#, php-format
+msgid "If you are the primary owner of this station, please reset your password here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
+msgid "Thank you!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
+msgid "Your station has been upgraded successfully."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
+msgid "Return to Airtime"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+#, php-format
+msgid "Purchase an %s plan!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+msgid "My Account"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
+msgid "Upgrade today to get more listeners and storage space!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
+msgid "View Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:257
+msgid "Your Current Plan:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:291
+msgid "Please enter your payment details:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
+msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
+msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:17
+msgid "First Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:26
+msgid "Last Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:35
+msgid "Company Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:44
+msgid "Email Address:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:54
+msgid "Address 1:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:63
+msgid "Address 2:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:70
+msgid "City:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:80
+msgid "State/Region:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:89
+msgid "Zip Code / Postal Code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:102
+msgid "Country:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:112
+msgid "Phone Number:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:121
+msgid "Please choose a security question:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:135
+msgid "Please enter an answer:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:152
+msgid "VAT/Tax ID (EU only)"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:162
+msgid "Subscribe to Sourcefabric newsletter"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:172
+msgid "Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:181
+msgid "Verify Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:193
+msgid "Save"
+msgstr ""
+
#: airtime_mvc/application/models/Auth.php:35
#, php-format
msgid ""
@@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
-msgid "Thank you!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
-msgid "Your station has been upgraded successfully."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
-msgid "Return to Airtime"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
-#, php-format
-msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
-msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
-msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
-#, php-format
-msgid "If you are the primary owner of this station, please reset your password here."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:170
-#, php-format
-msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
-msgstr ""
diff --git a/airtime_mvc/locale/template/airtime.po b/airtime_mvc/locale/template/airtime.po
index f11713c60..0ed1611d5 100644
--- a/airtime_mvc/locale/template/airtime.po
+++ b/airtime_mvc/locale/template/airtime.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Airtime 2.5\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-09-03 10:24-0400\n"
+"POT-Creation-Date: 2015-09-04 11:17-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -17,132 +17,6 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: airtime_mvc/public/setup/rabbitmq-setup.php:78
-msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1117
-#: airtime_mvc/application/services/HistoryService.php:1157
-#: airtime_mvc/application/services/HistoryService.php:1174
-#: airtime_mvc/application/models/Block.php:1375
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
-#: airtime_mvc/application/controllers/LocaleController.php:76
-msgid "Title"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1118
-#: airtime_mvc/application/services/HistoryService.php:1158
-#: airtime_mvc/application/services/HistoryService.php:1175
-#: airtime_mvc/application/models/Block.php:1360
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
-#: airtime_mvc/application/controllers/LocaleController.php:77
-msgid "Creator"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1119
-#: airtime_mvc/application/models/Block.php:1352
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
-#: airtime_mvc/application/controllers/LocaleController.php:78
-msgid "Album"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1120
-#: airtime_mvc/application/services/HistoryService.php:1177
-#: airtime_mvc/application/models/Block.php:1369
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
-#: airtime_mvc/application/controllers/LocaleController.php:91
-msgid "Length"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1121
-#: airtime_mvc/application/models/Block.php:1362
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
-#: airtime_mvc/application/controllers/LocaleController.php:85
-msgid "Genre"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1122
-#: airtime_mvc/application/models/Block.php:1371
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
-#: airtime_mvc/application/controllers/LocaleController.php:93
-msgid "Mood"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1123
-#: airtime_mvc/application/models/Block.php:1364
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
-#: airtime_mvc/application/controllers/LocaleController.php:87
-msgid "Label"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1124
-#: airtime_mvc/application/services/HistoryService.php:1178
-#: airtime_mvc/application/models/Block.php:1355
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
-#: airtime_mvc/application/controllers/LocaleController.php:81
-msgid "Composer"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1125
-#: airtime_mvc/application/models/Block.php:1363
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
-#: airtime_mvc/application/controllers/LocaleController.php:86
-msgid "ISRC"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1126
-#: airtime_mvc/application/services/HistoryService.php:1179
-#: airtime_mvc/application/models/Block.php:1357
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
-#: airtime_mvc/application/controllers/LocaleController.php:83
-msgid "Copyright"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1127
-#: airtime_mvc/application/models/Block.php:1379
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
-#: airtime_mvc/application/controllers/LocaleController.php:100
-msgid "Year"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1128
-msgid "Track"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1129
-#: airtime_mvc/application/models/Block.php:1356
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
-#: airtime_mvc/application/controllers/LocaleController.php:82
-msgid "Conductor"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1130
-#: airtime_mvc/application/models/Block.php:1365
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
-#: airtime_mvc/application/controllers/LocaleController.php:88
-msgid "Language"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1155
-#: airtime_mvc/application/forms/EditHistoryItem.php:32
-msgid "Start Time"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1156
-#: airtime_mvc/application/forms/EditHistoryItem.php:44
-msgid "End Time"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1176
-msgid "Played"
-msgstr ""
-
#: airtime_mvc/application/services/CalendarService.php:50
msgid "Record file doesn't exist"
msgstr ""
@@ -238,2601 +112,380 @@ msgstr ""
msgid "Must wait 1 hour to rebroadcast."
msgstr ""
-#: airtime_mvc/application/models/Schedule.php:206
-msgid "livestream"
+#: airtime_mvc/application/services/HistoryService.php:1117
+#: airtime_mvc/application/services/HistoryService.php:1157
+#: airtime_mvc/application/services/HistoryService.php:1174
+#: airtime_mvc/application/controllers/LocaleController.php:76
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
+#: airtime_mvc/application/models/Block.php:1375
+msgid "Title"
msgstr ""
-#: airtime_mvc/application/models/ShowBuilder.php:212
+#: airtime_mvc/application/services/HistoryService.php:1118
+#: airtime_mvc/application/services/HistoryService.php:1158
+#: airtime_mvc/application/services/HistoryService.php:1175
+#: airtime_mvc/application/controllers/LocaleController.php:77
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
+#: airtime_mvc/application/models/Block.php:1360
+msgid "Creator"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1119
+#: airtime_mvc/application/controllers/LocaleController.php:78
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
+#: airtime_mvc/application/models/Block.php:1352
+msgid "Album"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1120
+#: airtime_mvc/application/services/HistoryService.php:1177
+#: airtime_mvc/application/controllers/LocaleController.php:91
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
+#: airtime_mvc/application/models/Block.php:1369
+msgid "Length"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1121
+#: airtime_mvc/application/controllers/LocaleController.php:85
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
+#: airtime_mvc/application/models/Block.php:1362
+msgid "Genre"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1122
+#: airtime_mvc/application/controllers/LocaleController.php:93
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
+#: airtime_mvc/application/models/Block.php:1371
+msgid "Mood"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1123
+#: airtime_mvc/application/controllers/LocaleController.php:87
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
+#: airtime_mvc/application/models/Block.php:1364
+msgid "Label"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1124
+#: airtime_mvc/application/services/HistoryService.php:1178
+#: airtime_mvc/application/controllers/LocaleController.php:81
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
+#: airtime_mvc/application/models/Block.php:1355
+msgid "Composer"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1125
+#: airtime_mvc/application/controllers/LocaleController.php:86
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
+#: airtime_mvc/application/models/Block.php:1363
+msgid "ISRC"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1126
+#: airtime_mvc/application/services/HistoryService.php:1179
+#: airtime_mvc/application/controllers/LocaleController.php:83
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
+#: airtime_mvc/application/models/Block.php:1357
+msgid "Copyright"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1127
+#: airtime_mvc/application/controllers/LocaleController.php:100
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
+#: airtime_mvc/application/models/Block.php:1379
+msgid "Year"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1128
+msgid "Track"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1129
+#: airtime_mvc/application/controllers/LocaleController.php:82
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
+#: airtime_mvc/application/models/Block.php:1356
+msgid "Conductor"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1130
+#: airtime_mvc/application/controllers/LocaleController.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
+#: airtime_mvc/application/models/Block.php:1365
+msgid "Language"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1155
+#: airtime_mvc/application/forms/EditHistoryItem.php:32
+msgid "Start Time"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1156
+#: airtime_mvc/application/forms/EditHistoryItem.php:44
+msgid "End Time"
+msgstr ""
+
+#: airtime_mvc/application/services/HistoryService.php:1176
+msgid "Played"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:31
+#: airtime_mvc/application/controllers/PlaylistController.php:147
#, php-format
-msgid "Rebroadcast of %s from %s"
+msgid "%s not found"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:166
-msgid "Length needs to be greater than 0 minutes"
+#: airtime_mvc/application/controllers/LibraryController.php:40
+#: airtime_mvc/application/controllers/PlaylistController.php:168
+msgid "Something went wrong."
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:171
-msgid "Length should be of form \"00h 00m\""
+#: airtime_mvc/application/controllers/LibraryController.php:95
+#: airtime_mvc/application/controllers/ShowbuilderController.php:136
+msgid "Preview"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:184
-msgid "URL should be of form \"http://domain\""
+#: airtime_mvc/application/controllers/LibraryController.php:115
+#: airtime_mvc/application/controllers/LibraryController.php:177
+#: airtime_mvc/application/controllers/LibraryController.php:200
+msgid "Add to Playlist"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:187
-msgid "URL should be 512 characters or less"
+#: airtime_mvc/application/controllers/LibraryController.php:117
+msgid "Add to Smart Block"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:193
-msgid "No MIME type found for webstream."
+#: airtime_mvc/application/controllers/LibraryController.php:123
+#: airtime_mvc/application/controllers/LocaleController.php:66
+msgid "Edit Metadata"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:209
-msgid "Webstream name cannot be empty"
+#: airtime_mvc/application/controllers/LibraryController.php:131
+#: airtime_mvc/application/controllers/ScheduleController.php:712
+msgid "Download"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:278
-msgid "Could not parse XSPF playlist"
+#: airtime_mvc/application/controllers/LibraryController.php:147
+msgid "View track"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:298
-msgid "Could not parse PLS playlist"
+#: airtime_mvc/application/controllers/LibraryController.php:148
+msgid "Remove track"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:318
-msgid "Could not parse M3U playlist"
+#: airtime_mvc/application/controllers/LibraryController.php:154
+#: airtime_mvc/application/controllers/LibraryController.php:159
+msgid "Upload track"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:332
-msgid "Invalid webstream - This appears to be a file download."
+#: airtime_mvc/application/controllers/LibraryController.php:169
+msgid "Duplicate Playlist"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:336
+#: airtime_mvc/application/controllers/LibraryController.php:213
+msgid "No action available"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:233
+msgid "You don't have permission to delete selected items."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:279
+msgid "Could not delete file because it is scheduled in the future."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:282
+msgid "Could not delete file(s)."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:322
#, php-format
-msgid "Unrecognized stream type: %s"
+msgid "Copy of %s"
msgstr ""
-#: airtime_mvc/application/models/Preference.php:460
-#, php-format
-msgid "Powered by %s"
+#: airtime_mvc/application/controllers/WebstreamController.php:28
+#: airtime_mvc/application/controllers/WebstreamController.php:32
+msgid "Untitled Webstream"
msgstr ""
-#: airtime_mvc/application/models/Preference.php:588
-msgid "Select Country"
+#: airtime_mvc/application/controllers/WebstreamController.php:150
+msgid "Webstream saved."
msgstr ""
-#: airtime_mvc/application/models/MusicDir.php:160
-#, php-format
-msgid "%s is already watched."
+#: airtime_mvc/application/controllers/WebstreamController.php:158
+msgid "Invalid form values."
msgstr ""
-#: airtime_mvc/application/models/MusicDir.php:164
-#, php-format
-msgid "%s contains nested watched directory: %s"
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:168
-#, php-format
-msgid "%s is nested within existing watched directory: %s"
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:189
-#: airtime_mvc/application/models/MusicDir.php:370
-#, php-format
-msgid "%s is not a valid directory."
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:232
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list"
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:388
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list."
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:431
-#, php-format
-msgid "%s doesn't exist in the watched list."
-msgstr ""
-
-#: airtime_mvc/application/models/Show.php:184
-msgid "Shows can have a max length of 24 hours."
-msgstr ""
-
-#: airtime_mvc/application/models/Show.php:282
-#: airtime_mvc/application/forms/AddShowWhen.php:156
-msgid "End date/time cannot be in the past"
-msgstr ""
-
-#: airtime_mvc/application/models/Show.php:293
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
msgid ""
-"Cannot schedule overlapping shows.\n"
-"Note: Resizing a repeating show affects all of its repeats."
+"To configure and use the embeddable player you must:
\n"
+" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
+" 2. Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/models/Auth.php:33
-#, php-format
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
msgid ""
-"Hi %s, \n"
-"\n"
-"Please click this link to reset your password: "
+"To use the embeddable weekly schedule widget you must:
\n"
+" Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/models/Auth.php:38
+#: airtime_mvc/application/controllers/ListenerstatController.php:51
+msgid "Please make sure admin user/password is correct on System->Streams page."
+msgstr ""
+
+#: airtime_mvc/application/controllers/UserController.php:86
+msgid "User added successfully!"
+msgstr ""
+
+#: airtime_mvc/application/controllers/UserController.php:88
+msgid "User updated successfully!"
+msgstr ""
+
+#: airtime_mvc/application/controllers/UserController.php:187
+msgid "Settings updated successfully!"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PlaylistController.php:53
#, php-format
-msgid "%s Password Reset"
+msgid "You are viewing an older version of %s"
msgstr ""
-#: airtime_mvc/application/models/Block.php:333
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
-msgid "items"
+#: airtime_mvc/application/controllers/PlaylistController.php:140
+msgid "You cannot add tracks to dynamic blocks."
msgstr ""
-#: airtime_mvc/application/models/Block.php:833
-#: airtime_mvc/application/models/Playlist.php:812
-msgid "Cue in and cue out are null."
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:868
-#: airtime_mvc/application/models/Block.php:924
-#: airtime_mvc/application/models/Playlist.php:851
-#: airtime_mvc/application/models/Playlist.php:895
-msgid "Can't set cue out to be greater than file length."
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:879
-#: airtime_mvc/application/models/Block.php:900
-#: airtime_mvc/application/models/Playlist.php:843
-#: airtime_mvc/application/models/Playlist.php:868
-msgid "Can't set cue in to be larger than cue out."
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:935
-#: airtime_mvc/application/models/Playlist.php:887
-msgid "Can't set cue out to be smaller than cue in."
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1351
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
-msgid "Select criteria"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1353
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
-msgid "Bit Rate (Kbps)"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1354
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
-#: airtime_mvc/application/controllers/LocaleController.php:80
-msgid "BPM"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1358
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
-#: airtime_mvc/application/controllers/LocaleController.php:281
-#: airtime_mvc/application/layouts/scripts/layout.phtml:140
-msgid "Cue In"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1359
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:282
-#: airtime_mvc/application/layouts/scripts/layout.phtml:147
-msgid "Cue Out"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1361
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
-#: airtime_mvc/application/controllers/LocaleController.php:84
-msgid "Encoded By"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1366
-msgid "Upload Time"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1367
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
-#: airtime_mvc/application/controllers/LocaleController.php:89
-msgid "Last Modified"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1368
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
-#: airtime_mvc/application/controllers/LocaleController.php:90
-msgid "Last Played"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1370
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
-#: airtime_mvc/application/controllers/LocaleController.php:92
-msgid "Mime"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1372
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
-#: airtime_mvc/application/controllers/LocaleController.php:94
-msgid "Owner"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1373
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
-#: airtime_mvc/application/controllers/LocaleController.php:95
-msgid "Replay Gain"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1374
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
-msgid "Sample Rate (kHz)"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1376
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
-#: airtime_mvc/application/controllers/LocaleController.php:97
-msgid "Track Number"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1377
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
-#: airtime_mvc/application/controllers/LocaleController.php:98
-msgid "Uploaded"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1378
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
-#: airtime_mvc/application/controllers/LocaleController.php:99
-msgid "Website"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1383
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
-#: airtime_mvc/application/controllers/LocaleController.php:151
-msgid "Select modifier"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1384
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
-#: airtime_mvc/application/controllers/LocaleController.php:152
-msgid "contains"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1385
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
-#: airtime_mvc/application/controllers/LocaleController.php:153
-msgid "does not contain"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1386
-#: airtime_mvc/application/models/Block.php:1390
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
-#: airtime_mvc/application/controllers/LocaleController.php:154
-msgid "is"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1387
-#: airtime_mvc/application/models/Block.php:1391
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
-#: airtime_mvc/application/controllers/LocaleController.php:155
-msgid "is not"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1388
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
-#: airtime_mvc/application/controllers/LocaleController.php:156
-msgid "starts with"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1389
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
-#: airtime_mvc/application/controllers/LocaleController.php:157
-msgid "ends with"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
-#: airtime_mvc/application/controllers/LocaleController.php:158
-msgid "is greater than"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1393
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
-#: airtime_mvc/application/controllers/LocaleController.php:159
-msgid "is less than"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1394
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
-#: airtime_mvc/application/controllers/LocaleController.php:160
-msgid "is in the range"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:73
-msgid "Cannot move items out of linked shows"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:119
-msgid "The schedule you're viewing is out of date! (sched mismatch)"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:124
-msgid "The schedule you're viewing is out of date! (instance mismatch)"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:132
-#: airtime_mvc/application/models/Scheduler.php:458
-#: airtime_mvc/application/models/Scheduler.php:490
-msgid "The schedule you're viewing is out of date!"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:142
+#: airtime_mvc/application/controllers/PlaylistController.php:161
#, php-format
-msgid "You are not allowed to schedule show %s."
+msgid "You don't have permission to delete selected %s(s)."
msgstr ""
-#: airtime_mvc/application/models/Scheduler.php:146
-msgid "You cannot add files to recording shows."
+#: airtime_mvc/application/controllers/PlaylistController.php:174
+msgid "You can only add tracks to smart block."
msgstr ""
-#: airtime_mvc/application/models/Scheduler.php:152
+#: airtime_mvc/application/controllers/PlaylistController.php:180
+#: airtime_mvc/application/controllers/LocaleController.php:50
+msgid "You can only add tracks, smart blocks, and webstreams to playlists."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PlaylistController.php:192
+msgid "Untitled Playlist"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PlaylistController.php:194
+msgid "Untitled Smart Block"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PlaylistController.php:522
+msgid "Unknown Playlist"
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:78
+msgid "Page not found."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:87
+msgid "The requested action is not supported."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:98
+msgid "You do not have permission to access this resource."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:109
+msgid "An internal application error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/controllers/Apiv2Controller.php:77
+#: airtime_mvc/application/controllers/ApiController.php:79
+msgid "You are not allowed to access this resource."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:72
+msgid "Preferences updated."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:115
+msgid "Support setting updated."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:123
+msgid "Support Feedback"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:251
+msgid "Stream Setting Updated."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:342
+msgid "path should be specified"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:437
+msgid "Problem with Liquidsoap..."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:493
+msgid "Request method not accepted"
+msgstr ""
+
+#: airtime_mvc/application/controllers/DashboardController.php:35
+#: airtime_mvc/application/controllers/DashboardController.php:84
+msgid "You don't have permission to disconnect source."
+msgstr ""
+
+#: airtime_mvc/application/controllers/DashboardController.php:37
+#: airtime_mvc/application/controllers/DashboardController.php:86
+msgid "There is no source connected to this input."
+msgstr ""
+
+#: airtime_mvc/application/controllers/DashboardController.php:81
+msgid "You don't have permission to switch source."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:43
+msgid "Please enter your username and password."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:93
+msgid "Wrong username or password provided. Please try again."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:167
+msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:173
+msgid "There was a problem with the username or email address you entered."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ApiController.php:244
+#: airtime_mvc/application/controllers/ApiController.php:317
+#: airtime_mvc/application/controllers/ApiController.php:392
+#: airtime_mvc/application/controllers/ApiController.php:435
+#: airtime_mvc/application/controllers/ApiController.php:474
+#: airtime_mvc/application/controllers/ApiController.php:507
+msgid "You are not allowed to access this resource. "
+msgstr ""
+
+#: airtime_mvc/application/controllers/ApiController.php:698
+#: airtime_mvc/application/controllers/ApiController.php:718
+#: airtime_mvc/application/controllers/ApiController.php:730
#, php-format
-msgid "The show %s is over and cannot be scheduled."
+msgid "File does not exist in %s"
msgstr ""
-#: airtime_mvc/application/models/Scheduler.php:159
-#, php-format
-msgid "The show %s has been previously updated!"
+#: airtime_mvc/application/controllers/ApiController.php:781
+msgid "Bad request. no 'mode' parameter passed."
msgstr ""
-#: airtime_mvc/application/models/Scheduler.php:178
-msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:195
-msgid "Cannot schedule a playlist that contains missing files."
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:216
-#: airtime_mvc/application/models/Scheduler.php:305
-msgid "A selected File does not exist!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
-#: airtime_mvc/application/configs/navigation.php:40
-msgid "Weekly Schedule"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
-#: airtime_mvc/application/forms/Player.php:77
-msgid "Preview:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
-#: airtime_mvc/application/configs/navigation.php:34
-msgid "Player"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
-#: airtime_mvc/application/controllers/LocaleController.php:362
-#: airtime_mvc/application/controllers/LocaleController.php:390
-msgid "Close"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Add this show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Update show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
-msgid "What"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
-msgid "When"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
-msgid "Live Stream Input"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
-msgid "Who"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
-msgid "Style"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
-#: airtime_mvc/application/controllers/LocaleController.php:273
-msgid "Start"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
-msgid "Password Reset"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
-msgid "Email Sent!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
-msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
-msgid "Back"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
-msgid "New password"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
-msgid "Please enter and confirm your new password in the fields below."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:3
-#: airtime_mvc/application/forms/Login.php:83
-msgid "Login"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:7
-#, php-format
-msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:97
-msgid "Playout History"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
-msgid "Log Sheet"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
-msgid "File Summary"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
-msgid "Show Summary"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
-msgid "Your trial expires in"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
-msgid "days"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-#, php-format
-msgid "Purchase an %s Pro plan!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-msgid "My Account"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
-msgid "Previous:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
-msgid "Next:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
-msgid "Source Streams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
-msgid "Master Source"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
-msgid "Show Source"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
-msgid "ON AIR"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
-msgid "Listen"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
-msgid "Logout"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
-msgid "Drop files here or click to browse your computer."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
-#: airtime_mvc/application/controllers/LocaleController.php:314
-msgid "in use"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
-#: airtime_mvc/application/controllers/LocaleController.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:401
-msgid "All"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
-msgid "Failed"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
-msgid "Pending"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
-msgid "Recent Uploads"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
-#: airtime_mvc/application/configs/navigation.php:120
-msgid "Account Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
-msgid "Upgrade today to get more listeners and storage space!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
-msgid "View Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
-msgid "About"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
-#, php-format
-msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
-#, php-format
-msgid "%1$s %2$s is distributed under the %3$s"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
-#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
-msgid "Live stream"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
-msgid "Share"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
-msgid "Select stream:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
-msgid "mute"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
-msgid "unmute"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
-#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
-#, php-format
-msgid "Welcome to %s!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
-#, php-format
-msgid "Here's how you can get started using %s to automate your broadcasts: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
-msgid "Upload audio tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
-msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
-msgid "Schedule a show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
-msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
-msgid "Add tracks to your show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
-msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
-msgid "Now you're good to go!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
-#, php-format
-msgid "For more detailed help, read the %suser manual%s."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
-msgid "Listeners"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
-msgid "Stream Data Collection Status"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
-#: airtime_mvc/application/views/scripts/error/error.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
-msgid "An error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
-msgid "Access Denied!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
-msgid "You do not have permission to access this page!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
-#: airtime_mvc/application/views/scripts/error/error.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
-#: airtime_mvc/application/configs/navigation.php:143
-msgid "Help"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
-msgid "Page not found!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
-msgid "We couldn't find the page you were looking for."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error.phtml:12
-msgid "Looks like the page you were looking for doesn't exist!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
-msgid "Oops!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
-msgid "Something went wrong!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
-msgid "Bad Request!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
-msgid "The requested action is not supported!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
-msgid "Viewing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
-msgid "Editing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:3
-msgid "File import in progress..."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:10
-#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
-msgid "Advanced Search Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
-#: airtime_mvc/application/forms/Player.php:15
-#: airtime_mvc/application/forms/EditAudioMD.php:24
-msgid "Title:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
-#: airtime_mvc/application/forms/EditAudioMD.php:34
-msgid "Creator:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
-#: airtime_mvc/application/forms/EditAudioMD.php:44
-msgid "Album:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
-msgid "Track:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
-msgid "Length:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
-msgid "Sample Rate:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
-msgid "Bit Rate:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
-#: airtime_mvc/application/forms/EditAudioMD.php:115
-msgid "Mood:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
-#: airtime_mvc/application/forms/EditAudioMD.php:62
-#: airtime_mvc/application/forms/AddShowWhat.php:45
-msgid "Genre:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
-#: airtime_mvc/application/forms/EditAudioMD.php:72
-msgid "Year:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
-#: airtime_mvc/application/forms/EditAudioMD.php:85
-msgid "Label:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
-#: airtime_mvc/application/forms/EditAudioMD.php:125
-msgid "BPM:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
-#: airtime_mvc/application/forms/EditAudioMD.php:95
-msgid "Composer:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
-#: airtime_mvc/application/forms/EditAudioMD.php:105
-msgid "Conductor:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
-#: airtime_mvc/application/forms/EditAudioMD.php:135
-msgid "Copyright:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
-msgid "Isrc Number:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
-#: airtime_mvc/application/forms/EditAudioMD.php:155
-msgid "Website:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
-#: airtime_mvc/application/forms/EditUser.php:119
-#: airtime_mvc/application/forms/EditAudioMD.php:165
-#: airtime_mvc/application/forms/Login.php:68
-msgid "Language:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
-msgid "File Path:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
-#: airtime_mvc/application/forms/AddShowWhat.php:26
-msgid "Name:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
-#: airtime_mvc/application/forms/AddShowWhat.php:54
-msgid "Description:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
-msgid "Web Stream"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
-msgid "Dynamic Smart Block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
-msgid "Static Smart Block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
-msgid "Audio Track"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
-msgid "Playlist Contents: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
-msgid "Static Smart Block Contents: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
-msgid "Dynamic Smart Block Criteria: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
-msgid "Limit to "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
-#: airtime_mvc/application/forms/AddShowWhat.php:36
-msgid "URL:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/login.phtml:41
-msgid "Forgot your password?"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
-#, php-format
-msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
-#, php-format
-msgid "Click the box below to promote your station on %s."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
-msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
-msgid "(Required)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
-msgid "(for verification purposes only, will not be published)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
-msgid "Choose folder"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
-msgid "Set"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
-msgid "Current Import Folder:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
-msgid "Add"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
-#, php-format
-msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
-msgid "Remove watched directory"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
-msgid "You are not watching any media folders."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
-msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
-msgid "Live Broadcasting"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
-msgid "Use these settings in your broadcasting software to stream live at any time."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
-msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
-msgid "Choose Show Instance"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
-#: airtime_mvc/application/forms/EditHistoryItem.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:400
-msgid "No Show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
-msgid "Find"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
-msgid "Choose Days:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
-#: airtime_mvc/application/forms/AddShowStyle.php:64
-#: airtime_mvc/application/forms/GeneralPreferences.php:53
-msgid "Remove"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
-msgid "Stream "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
-msgid "Additional Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
-msgid "The following info will be displayed to listeners in their media player:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
-msgid "(Your radio station website)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
-msgid "Stream URL: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
-msgid "Find Shows"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
-msgid "TuneIn Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
-msgid "SoundCloud Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
-msgid "Dangerous Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
-msgid "Search Criteria:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
-msgid "New Criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
-msgid "or"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
-msgid "and"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
-msgid "New Modifier"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
-msgid " to "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
-msgid "files meet the criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
-msgid "file meets the criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
-msgid "Filter History"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
-#: airtime_mvc/application/configs/navigation.php:61
-msgid "My Profile"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
-#, php-format
-msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
-#: airtime_mvc/application/forms/Preferences.php:40
-#: airtime_mvc/application/forms/PasswordChange.php:43
-#: airtime_mvc/application/forms/AddUser.php:110
-#: airtime_mvc/application/forms/BillingClient.php:193
-#: airtime_mvc/application/forms/SupportSettings.php:131
-#: airtime_mvc/application/forms/EditHistory.php:131
-#: airtime_mvc/application/controllers/LocaleController.php:294
-msgid "Save"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
-msgid "Repeat Days:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
-msgid "Register Airtime"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
-#: airtime_mvc/application/forms/GeneralPreferences.php:43
-msgid "Note: Anything larger than 600x600 will be resized."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
-msgid "Show me what I am sending "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
-msgid "Terms and Conditions"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
-msgid "Creating File Summary Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
-msgid "Creating Log Sheet Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
-msgid "Name"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
-msgid "Add more elements"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
-msgid "Add New Field"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
-msgid "Set Default Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
-msgid "Playout History Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
-msgid "Log Sheet Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
-msgid "New Log Sheet Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
-msgid "No Log Sheet Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
-#: airtime_mvc/application/controllers/LocaleController.php:397
-msgid "Set Default"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
-msgid "File Summary Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
-msgid "New File Summary Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
-msgid "No File Summary Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
-msgid "Disk Space"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
-#: airtime_mvc/application/controllers/LocaleController.php:315
-msgid "Disk"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
-#: airtime_mvc/application/forms/AddShowWhen.php:89
-msgid "Duration:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
-msgid "Toggle Details"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
-msgid "Playlist crossfade"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-msgid "Remove all content from this smart block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Clear"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "Fade in: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "(ss.t)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-msgid "Fade out: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
-#: airtime_mvc/application/forms/EditAudioMD.php:186
-#: airtime_mvc/application/forms/EditHistory.php:141
-#: airtime_mvc/application/controllers/LocaleController.php:295
-#: airtime_mvc/application/controllers/LocaleController.php:318
-msgid "Cancel"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
-msgid "No smart block currently open"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
-msgid "Show Waveform"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-msgid "Cue In: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "(hh:mm:ss.t)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "Cue Out: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
-msgid "Original Length:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
-msgid "Expand Static Block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
-msgid "Expand Dynamic Block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
-msgid "Choose some search criteria above and click Generate to create this playlist."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
-msgid "A track list will be generated when you schedule this smart block into a show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
-msgid "Drag tracks here from your library to add them to the playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-msgid "Shuffle playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
-msgid "Shuffle"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Empty playlist content"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-msgid "Save playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
-msgid "No open playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
-msgid "previous"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
-msgid "play"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
-msgid "pause"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
-msgid "next"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
-msgid "stop"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
-msgid "max volume"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
-msgid "Update Required"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
-#, php-format
-msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
-msgid "Stream Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
-msgid "Global"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
-msgid "dB"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
-msgid "Output Streams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
-#: airtime_mvc/application/controllers/LocaleController.php:166
-msgid "Manage Media Folders"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:56
-msgid "General"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
-msgid "Description"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
-msgid "Stream URL:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
-msgid "Default Length:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
-msgid "No webstream"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
-msgid "Manage Users"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
-msgid "New User"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
-msgid "id"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
-#: airtime_mvc/application/forms/PasswordRestore.php:25
-msgid "Username"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
-msgid "First Name"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
-msgid "Last Name"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
-msgid "User Type"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
-#, php-format
-msgid "Super Admin details can be changed in your Billing Settings."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
-#: airtime_mvc/application/controllers/LocaleController.php:74
-#: airtime_mvc/application/layouts/scripts/layout.phtml:78
-msgid "Tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
-#: airtime_mvc/application/controllers/LocaleController.php:104
-#: airtime_mvc/application/layouts/scripts/layout.phtml:80
-msgid "Playlists"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
-#: airtime_mvc/application/controllers/LocaleController.php:105
-#: airtime_mvc/application/layouts/scripts/layout.phtml:82
-msgid "Smart Blocks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
-#: airtime_mvc/application/layouts/scripts/layout.phtml:84
-msgid "Webstreams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
-#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
-#: airtime_mvc/application/layouts/scripts/layout.phtml:76
-msgid "Dashboard"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:12
-msgid "Radio Page"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:19
-msgid "Calendar"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:26
-msgid "Widgets"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:48
-msgid "Settings"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:67
-msgid "Users"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:74
-msgid "Streams"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:82
-msgid "Analytics"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:90
-msgid "Listener Stats"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:104
-msgid "History Templates"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:113
-msgid "Billing"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:127
-msgid "Account Details"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:134
-msgid "View Invoices"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:150
-msgid "Getting Started"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:157
-msgid "FAQ"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:162
-msgid "User Manual"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:167
-msgid "File a Support Ticket"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:12
-msgid "Background Colour:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:31
-msgid "Text Colour:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:49
-msgid "Current Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:72
-msgid "Show Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:87
-msgid "Logo Preview:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:19
-msgid "Push metadata to your station on TuneIn?"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:24
-msgid "Station ID:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:30
-msgid "Partner Key:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:36
-msgid "Partner Id:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:77
-#: airtime_mvc/application/forms/TuneInPreferences.php:86
-msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:14
-msgid "Now Playing"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:25
-msgid "Select Stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:28
-msgid "Auto detect the most appropriate stream to use."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:29
-msgid "Select a stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:41
-msgid " - Mobile friendly"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:45
-msgid " - The player does not support Opus streams."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:71
-msgid "Embeddable code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:72
-msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:37
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
-#: airtime_mvc/application/forms/Login.php:41
-#: airtime_mvc/application/forms/AddUser.php:29
-msgid "Username:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:48
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
-#: airtime_mvc/application/forms/Login.php:54
-#: airtime_mvc/application/forms/AddUser.php:38
-#: airtime_mvc/application/forms/BillingClient.php:172
-msgid "Password:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:57
-#: airtime_mvc/application/forms/AddUser.php:46
-#: airtime_mvc/application/forms/BillingClient.php:181
-msgid "Verify Password:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:67
-#: airtime_mvc/application/forms/AddUser.php:55
-msgid "Firstname:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:75
-#: airtime_mvc/application/forms/AddUser.php:61
-msgid "Lastname:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:83
-#: airtime_mvc/application/forms/RegisterAirtime.php:51
-#: airtime_mvc/application/forms/AddUser.php:67
-#: airtime_mvc/application/forms/SupportSettings.php:43
-msgid "Email:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:94
-#: airtime_mvc/application/forms/AddUser.php:76
-msgid "Mobile Phone:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:102
-#: airtime_mvc/application/forms/AddUser.php:82
-msgid "Skype:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:110
-#: airtime_mvc/application/forms/AddUser.php:88
-msgid "Jabber:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:129
-msgid "Interface Timezone:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:155
-#: airtime_mvc/application/forms/AddUser.php:120
-msgid "Login name is not unique."
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRR.php:10
-msgid "Record from Line In?"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRR.php:16
-msgid "Rebroadcast?"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:16
-msgid "'%value%' does not fit the time format 'HH:mm'"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:22
-msgid "Start Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:37
-msgid "In the Future:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:64
-msgid "End Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:98
-msgid "Timezone:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:107
-msgid "Repeats?"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:139
-msgid "Cannot create show in the past"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:147
-msgid "Cannot modify start date/time of the show that is already started"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:164
-msgid "Cannot have duration < 0m"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:168
-msgid "Cannot have duration 00h 00m"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:175
-msgid "Cannot have duration greater than 24h"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWho.php:10
-msgid "Search Users:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWho.php:24
-msgid "DJs:"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordChange.php:17
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
-msgid "Password"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordChange.php:28
-msgid "Confirm new password"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordChange.php:36
-msgid "Password confirmation does not match your password."
-msgstr ""
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
-msgid "Station Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
-#: airtime_mvc/application/forms/GeneralPreferences.php:127
-msgid "Station Timezone"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
-msgid "Auto Switch Off:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
-msgid "Auto Switch On:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
-msgid "Switch Transition Fade (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
-#: airtime_mvc/application/forms/GeneralPreferences.php:68
-#: airtime_mvc/application/forms/GeneralPreferences.php:82
-#: airtime_mvc/application/forms/GeneralPreferences.php:96
-msgid "Please enter a time in seconds (eg. 0.5)"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
-#: airtime_mvc/application/forms/AddShowLiveStream.php:48
-msgid "Host:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
-#: airtime_mvc/application/forms/AddShowLiveStream.php:54
-msgid "Port:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
-#: airtime_mvc/application/forms/AddShowLiveStream.php:60
-msgid "Mount:"
-msgstr ""
-
-#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
-msgid "Value is required and can't be empty"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:25
-#: airtime_mvc/application/forms/RegisterAirtime.php:30
-#: airtime_mvc/application/forms/SupportSettings.php:18
-msgid "Station Name"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:33
-msgid "Station Description"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:42
-#: airtime_mvc/application/forms/RegisterAirtime.php:106
-msgid "Station Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:62
-msgid "Default Crossfade Duration (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:76
-msgid "Default Fade In (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:90
-msgid "Default Fade Out (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:102
-msgid "Public Airtime API"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:103
-msgid "Required for embeddable schedule widget."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:105
-msgid "Disabled"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:106
-msgid "Enabled"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:109
-msgid ""
-"Enabling this feature will allow Airtime to provide schedule data\n"
-" to external widgets that can be embedded in your website."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:120
-msgid "Default Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:134
-msgid "Week Starts On"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:150
-msgid "Display login button on your Radio Page?"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:158
-#: airtime_mvc/application/controllers/LocaleController.php:249
-msgid "Sunday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:159
-#: airtime_mvc/application/controllers/LocaleController.php:250
-msgid "Monday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:160
-#: airtime_mvc/application/controllers/LocaleController.php:251
-msgid "Tuesday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:161
-#: airtime_mvc/application/controllers/LocaleController.php:252
-msgid "Wednesday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:162
-#: airtime_mvc/application/controllers/LocaleController.php:253
-msgid "Thursday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:163
-#: airtime_mvc/application/controllers/LocaleController.php:254
-msgid "Friday"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:164
-#: airtime_mvc/application/controllers/LocaleController.php:255
-msgid "Saturday"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
-msgid "Default License:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
-msgid "All rights are reserved"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
-msgid "The work is in the public domain"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
-msgid "Creative Commons Attribution"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
-msgid "Creative Commons Attribution Noncommercial"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
-msgid "Creative Commons Attribution No Derivative Works"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
-msgid "Creative Commons Attribution Share Alike"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
-msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
-msgid "Creative Commons Attribution Noncommercial Share Alike"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
-msgid "Default Sharing Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
-msgid "Public"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
-msgid "Private"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:18
-#: airtime_mvc/application/forms/DateRange.php:16
-msgid "Date Start:"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:37
-#: airtime_mvc/application/forms/ShowBuilder.php:65
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
-#: airtime_mvc/application/forms/DateRange.php:35
-#: airtime_mvc/application/forms/DateRange.php:63
-msgid "Invalid character entered"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:46
-#: airtime_mvc/application/forms/AddShowRepeats.php:56
-#: airtime_mvc/application/forms/DateRange.php:44
-msgid "Date End:"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:72
-#: airtime_mvc/application/forms/ShowBuilder.php:88
-msgid "Filter by Show"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:80
-msgid "All My Shows:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditAudioMD.php:145
-msgid "ISRC Number:"
-msgstr ""
-
-#: airtime_mvc/application/forms/EditAudioMD.php:176
-msgid "OK"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
-msgid "Day must be specified"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
-msgid "Time must be specified"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
-msgid "Must wait at least 1 hour to rebroadcast"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhat.php:30
-msgid "Untitled Show"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhat.php:69
-msgid "Instance Description:"
-msgstr ""
-
-#: airtime_mvc/application/forms/DangerousPreferences.php:12
-msgid "Delete All Tracks in Library"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:39
-#: airtime_mvc/application/forms/SupportSettings.php:31
-msgid "Phone:"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:62
-#: airtime_mvc/application/forms/SupportSettings.php:54
-msgid "Station Web Site:"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:73
-#: airtime_mvc/application/forms/BillingClient.php:102
-#: airtime_mvc/application/forms/SupportSettings.php:65
-msgid "Country:"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:84
-#: airtime_mvc/application/forms/BillingClient.php:70
-#: airtime_mvc/application/forms/SupportSettings.php:76
-msgid "City:"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:96
-#: airtime_mvc/application/forms/SupportSettings.php:88
-msgid "Station Description:"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:116
-#: airtime_mvc/application/forms/SupportSettings.php:98
-#: airtime_mvc/application/controllers/LocaleController.php:341
-msgid "Send support feedback"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:126
-#: airtime_mvc/application/forms/SupportSettings.php:108
-#, php-format
-msgid "Promote my station on %s"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:151
-#: airtime_mvc/application/forms/SupportSettings.php:120
-#, php-format
-msgid "By checking this box, I agree to %s's %sprivacy policy%s."
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:169
-#: airtime_mvc/application/forms/SupportSettings.php:143
-msgid "You have to agree to privacy policy."
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:10
-msgid "Link:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:16
-msgid "Repeat Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:19
-msgid "weekly"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:20
-msgid "every 2 weeks"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:21
-msgid "every 3 weeks"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:22
-msgid "every 4 weeks"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:23
-msgid "monthly"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:32
-msgid "Select Days:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:35
-#: airtime_mvc/application/controllers/LocaleController.php:256
-msgid "Sun"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:36
-#: airtime_mvc/application/controllers/LocaleController.php:257
-msgid "Mon"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:37
-#: airtime_mvc/application/controllers/LocaleController.php:258
-msgid "Tue"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:38
-#: airtime_mvc/application/controllers/LocaleController.php:259
-msgid "Wed"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:39
-#: airtime_mvc/application/controllers/LocaleController.php:260
-msgid "Thu"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:40
-#: airtime_mvc/application/controllers/LocaleController.php:261
-msgid "Fri"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:41
-#: airtime_mvc/application/controllers/LocaleController.php:262
-msgid "Sat"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:47
-msgid "Repeat By:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the month"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the week"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:69
-msgid "No End?"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:106
-msgid "End date must be after start date"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:113
-msgid "Please select a repeat day"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:10
-#, php-format
-msgid "Use %s Authentication:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:16
-msgid "Use Custom Authentication:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:25
-msgid "Custom Username"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:37
-msgid "Custom Password"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:77
-msgid "Username field cannot be empty."
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:82
-msgid "Password field cannot be empty."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
-msgid "Enabled:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
-msgid "Mobile:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
-msgid "Stream Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
-msgid "Service Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
-msgid "Channels:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "1 - Mono"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "2 - Stereo"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
-msgid "Server"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
-msgid "Port"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
-msgid "Only numbers are allowed."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
-msgid "URL"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
-msgid "Mount Point"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
-msgid "Admin User"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
-msgid "Admin Password"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
-#: airtime_mvc/application/controllers/LocaleController.php:173
-msgid "Getting information from the server..."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
-msgid "Server cannot be empty."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
-msgid "Port cannot be empty."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
-msgid "Mount cannot be empty with Icecast server."
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
-msgid "'%value%' is no valid email address in the basic format local-part@hostname"
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
-msgid "'%value%' does not fit the date format '%format%'"
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
-msgid "'%value%' is less than %min% characters long"
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
-msgid "'%value%' is more than %max% characters long"
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
-msgid "'%value%' is not between '%min%' and '%max%', inclusively"
-msgstr ""
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
-msgid "Passwords do not match"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
-msgid "hours"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
-msgid "minutes"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
-msgid "Randomly"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
-msgid "Newest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
-msgid "Oldest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
-msgid "Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
-msgid "Static"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
-msgid "Dynamic"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
-msgid "Allow Repeated Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
-msgid "Sort Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
-msgid "Limit to:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
-msgid "Generate playlist content and save criteria"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
-msgid "Generate"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
-msgid "Shuffle playlist content"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
-msgid "Limit cannot be empty or smaller than 0"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
-msgid "Limit cannot be more than 24 hrs"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
-msgid "The value should be an integer"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
-msgid "500 is the max item limit value you can set"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
-msgid "You must select Criteria and Modifier"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
-msgid "'Length' should be in '00:00:00' format"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
-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:594
-msgid "The value has to be numeric"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
-msgid "The value should be less then 2147483648"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
-#, php-format
-msgid "The value should be less than %s characters"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
-msgid "Value cannot be empty"
-msgstr ""
-
-#: airtime_mvc/application/forms/Login.php:102
-msgid "Type the characters you see in the picture below."
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:26
-msgid "Icecast Vorbis Metadata"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:36
-msgid "Stream Label:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:37
-msgid "Artist - Title"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:38
-msgid "Show - Artist - Title"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:39
-msgid "Station name - Show name"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:45
-msgid "Off Air Metadata"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:51
-msgid "Enable Replay Gain"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:57
-msgid "Replay Gain Modifier"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:65
-msgid "Streaming Server:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Airtime Pro Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Custom / 3rd Party Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:95
-msgid "User Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:99
-#: airtime_mvc/application/controllers/LocaleController.php:324
-msgid "Guest"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:100
-#: airtime_mvc/application/controllers/LocaleController.php:322
-msgid "DJ"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:101
-#: airtime_mvc/application/controllers/LocaleController.php:323
-msgid "Program Manager"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:321
-msgid "Admin"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:17
-msgid "First Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:26
-msgid "Last Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:35
-msgid "Company Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:44
-msgid "Email Address:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:54
-msgid "Address 1:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:63
-msgid "Address 2:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:80
-msgid "State/Region:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:89
-msgid "Zip Code / Postal Code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:112
-msgid "Phone Number:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:121
-msgid "Please choose a security question:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:126
-msgid "What is the name of your favorite childhood friend?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:127
-msgid "What school did you attend for sixth grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:128
-msgid "In what city did you meet your spouse/significant other?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:129
-msgid "What street did you live on in third grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:130
-msgid "What is the first name of the boy or girl that you first kissed?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:131
-msgid "In what city or town was your first job?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:135
-msgid "Please enter an answer:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:152
-msgid "VAT/Tax ID (EU only)"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:162
-msgid "Subscribe to Sourcefabric newsletter"
-msgstr ""
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
-msgid "Import Folder:"
-msgstr ""
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
-msgid "Watched Folders:"
-msgstr ""
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
-msgid "Not a valid Directory"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordRestore.php:14
-msgid "Email"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordRestore.php:36
-msgid "Reset password"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
-msgid "Plan type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
-msgid "Billing cycle:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
-msgid "Payment method:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
-msgid "PayPal"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
-msgid "Credit Card via 2Checkout"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:213
-#, php-format
-msgid "The year %s must be within the range of 1753 - 9999"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:216
-#, php-format
-msgid "%s-%s-%s is not a valid date"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:240
-#, php-format
-msgid "%s:%s:%s is not a valid time"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:55
-msgid "Upload some tracks below to add them to your library!"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:57
-#, php-format
-msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:63
-msgid "Click the 'New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:65
-#, php-format
-msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:73
-msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:75
-#, php-format
-msgid ""
-"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
-" %sCreate an unlinked show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:80
-msgid "To start broadcasting, click on the current show and select 'Schedule Show'"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:82
-#, php-format
-msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:89
-msgid "Click on the show starting next and select 'Schedule Show'"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:91
-#, php-format
-msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+#: airtime_mvc/application/controllers/ApiController.php:791
+msgid "Bad request. 'mode' parameter is invalid"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:30
@@ -2905,11 +558,6 @@ msgstr ""
msgid "You can only add tracks to smart blocks."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:50
-#: airtime_mvc/application/controllers/PlaylistController.php:180
-msgid "You can only add tracks, smart blocks, and webstreams to playlists."
-msgstr ""
-
#: airtime_mvc/application/controllers/LocaleController.php:53
msgid "Please select a cursor position on timeline."
msgstr ""
@@ -2950,11 +598,6 @@ msgstr ""
msgid "Click 'New' to create one."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:66
-#: airtime_mvc/application/controllers/LibraryController.php:123
-msgid "Edit Metadata"
-msgstr ""
-
#: airtime_mvc/application/controllers/LocaleController.php:67
msgid "Add to selected show"
msgstr ""
@@ -2983,6 +626,12 @@ msgstr ""
msgid "Scheduled"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:74
+#: airtime_mvc/application/layouts/scripts/layout.phtml:78
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
+msgid "Tracks"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:75
#: airtime_mvc/application/layouts/scripts/layout.phtml:60
msgid "Playlist"
@@ -2992,18 +641,96 @@ msgstr ""
msgid "Bit Rate"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:80
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
+#: airtime_mvc/application/models/Block.php:1354
+msgid "BPM"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:84
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
+#: airtime_mvc/application/models/Block.php:1361
+msgid "Encoded By"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:89
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
+#: airtime_mvc/application/models/Block.php:1367
+msgid "Last Modified"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:90
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
+#: airtime_mvc/application/models/Block.php:1368
+msgid "Last Played"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
+#: airtime_mvc/application/models/Block.php:1370
+msgid "Mime"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:94
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
+#: airtime_mvc/application/models/Block.php:1372
+msgid "Owner"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:95
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
+#: airtime_mvc/application/models/Block.php:1373
+msgid "Replay Gain"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:96
msgid "Sample Rate"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:97
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
+#: airtime_mvc/application/models/Block.php:1376
+msgid "Track Number"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:98
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
+#: airtime_mvc/application/models/Block.php:1377
+msgid "Uploaded"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:99
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
+#: airtime_mvc/application/models/Block.php:1378
+msgid "Website"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:101
msgid "Loading..."
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:102
+#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
+msgid "All"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:103
msgid "Files"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:104
+#: airtime_mvc/application/layouts/scripts/layout.phtml:80
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
+msgid "Playlists"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:105
+#: airtime_mvc/application/layouts/scripts/layout.phtml:82
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
+msgid "Smart Blocks"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:106
msgid "Web Streams"
msgstr ""
@@ -3148,6 +875,74 @@ msgstr ""
msgid "Processing..."
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:151
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
+#: airtime_mvc/application/models/Block.php:1383
+msgid "Select modifier"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:152
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
+#: airtime_mvc/application/models/Block.php:1384
+msgid "contains"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:153
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
+#: airtime_mvc/application/models/Block.php:1385
+msgid "does not contain"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:154
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
+#: airtime_mvc/application/models/Block.php:1386
+#: airtime_mvc/application/models/Block.php:1390
+msgid "is"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:155
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
+#: airtime_mvc/application/models/Block.php:1387
+#: airtime_mvc/application/models/Block.php:1391
+msgid "is not"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:156
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
+#: airtime_mvc/application/models/Block.php:1388
+msgid "starts with"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:157
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
+#: airtime_mvc/application/models/Block.php:1389
+msgid "ends with"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:158
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
+#: airtime_mvc/application/models/Block.php:1392
+msgid "is greater than"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:159
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
+#: airtime_mvc/application/models/Block.php:1393
+msgid "is less than"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:160
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
+#: airtime_mvc/application/models/Block.php:1394
+msgid "is in the range"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:162
msgid "Choose Storage Folder"
msgstr ""
@@ -3162,6 +957,11 @@ msgid ""
"This will remove the files from your Airtime library!"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:166
+#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
+msgid "Manage Media Folders"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:167
msgid "Are you sure you want to remove the watched folder?"
msgstr ""
@@ -3183,6 +983,11 @@ msgstr ""
msgid "The stream is disabled"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:173
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
+msgid "Getting information from the server..."
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:174
msgid "Can not connect to the streaming server"
msgstr ""
@@ -3410,6 +1215,76 @@ msgstr ""
msgid "Month"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:249
+#: airtime_mvc/application/forms/GeneralPreferences.php:158
+msgid "Sunday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:250
+#: airtime_mvc/application/forms/GeneralPreferences.php:159
+msgid "Monday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:251
+#: airtime_mvc/application/forms/GeneralPreferences.php:160
+msgid "Tuesday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:252
+#: airtime_mvc/application/forms/GeneralPreferences.php:161
+msgid "Wednesday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:253
+#: airtime_mvc/application/forms/GeneralPreferences.php:162
+msgid "Thursday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:254
+#: airtime_mvc/application/forms/GeneralPreferences.php:163
+msgid "Friday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:255
+#: airtime_mvc/application/forms/GeneralPreferences.php:164
+msgid "Saturday"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:256
+#: airtime_mvc/application/forms/AddShowRepeats.php:35
+msgid "Sun"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:257
+#: airtime_mvc/application/forms/AddShowRepeats.php:36
+msgid "Mon"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:258
+#: airtime_mvc/application/forms/AddShowRepeats.php:37
+msgid "Tue"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:259
+#: airtime_mvc/application/forms/AddShowRepeats.php:38
+msgid "Wed"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:260
+#: airtime_mvc/application/forms/AddShowRepeats.php:39
+msgid "Thu"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:261
+#: airtime_mvc/application/forms/AddShowRepeats.php:40
+msgid "Fri"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:262
+#: airtime_mvc/application/forms/AddShowRepeats.php:41
+msgid "Sat"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:263
msgid "Shows longer than their scheduled time will be cut off by a following show."
msgstr ""
@@ -3419,7 +1294,7 @@ msgid "Cancel Current Show?"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:265
-#: airtime_mvc/application/controllers/LocaleController.php:309
+#: airtime_mvc/application/controllers/LocaleController.php:312
msgid "Stop recording current show?"
msgstr ""
@@ -3439,6 +1314,11 @@ msgstr ""
msgid "Delete selected item(s)?"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:273
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
+msgid "Start"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:274
msgid "End"
msgstr ""
@@ -3447,580 +1327,467 @@ msgstr ""
msgid "Duration"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:283
+#: airtime_mvc/application/controllers/LocaleController.php:276
+msgid "Filtering out "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:277
+msgid " of "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:278
+msgid " records"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/layouts/scripts/layout.phtml:140
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
+#: airtime_mvc/application/models/Block.php:1358
+msgid "Cue In"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/layouts/scripts/layout.phtml:147
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
+#: airtime_mvc/application/models/Block.php:1359
+msgid "Cue Out"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:286
#: airtime_mvc/application/layouts/scripts/layout.phtml:167
msgid "Fade In"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/controllers/LocaleController.php:287
#: airtime_mvc/application/layouts/scripts/layout.phtml:168
msgid "Fade Out"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/controllers/LocaleController.php:288
msgid "Show Empty"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:286
+#: airtime_mvc/application/controllers/LocaleController.php:289
msgid "Recording From Line In"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:287
+#: airtime_mvc/application/controllers/LocaleController.php:290
msgid "Track preview"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:291
+#: airtime_mvc/application/controllers/LocaleController.php:294
msgid "Cannot schedule outside a show."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:292
+#: airtime_mvc/application/controllers/LocaleController.php:295
msgid "Moving 1 Item"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:293
+#: airtime_mvc/application/controllers/LocaleController.php:296
#, php-format
msgid "Moving %s Items"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:296
-msgid "Fade Editor"
-msgstr ""
-
#: airtime_mvc/application/controllers/LocaleController.php:297
-msgid "Cue Editor"
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
+#: airtime_mvc/application/forms/Preferences.php:40
+#: airtime_mvc/application/forms/EditHistory.php:131
+#: airtime_mvc/application/forms/AddUser.php:110
+#: airtime_mvc/application/forms/PasswordChange.php:43
+#: airtime_mvc/application/forms/SupportSettings.php:131
+msgid "Save"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:298
-msgid "Waveform features are available in a browser supporting the Web Audio API"
+#: airtime_mvc/application/controllers/LocaleController.php:321
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
+#: airtime_mvc/application/forms/EditHistory.php:141
+#: airtime_mvc/application/forms/EditAudioMD.php:186
+msgid "Cancel"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:299
+msgid "Fade Editor"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:300
+msgid "Cue Editor"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:301
-msgid "Select all"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LocaleController.php:302
-msgid "Select none"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LocaleController.php:303
-msgid "Trim overbooked shows"
+msgid "Waveform features are available in a browser supporting the Web Audio API"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:304
-msgid "Remove selected scheduled items"
+msgid "Select all"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:305
-msgid "Jump to the current playing track"
+msgid "Select none"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:306
+msgid "Trim overbooked shows"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:307
+msgid "Remove selected scheduled items"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:308
+msgid "Jump to the current playing track"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:309
msgid "Cancel current show"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:311
+#: airtime_mvc/application/controllers/LocaleController.php:314
msgid "Open library to add or remove content"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:312
+#: airtime_mvc/application/controllers/LocaleController.php:315
msgid "Add / Remove Content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:317
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
+msgid "in use"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:318
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
+msgid "Disk"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:320
msgid "Look in"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:319
+#: airtime_mvc/application/controllers/LocaleController.php:322
msgid "Open"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:324
+#: airtime_mvc/application/forms/AddUser.php:102
+msgid "Admin"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:325
-msgid "Guests can do the following:"
+#: airtime_mvc/application/forms/AddUser.php:100
+msgid "DJ"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:326
-msgid "View schedule"
+#: airtime_mvc/application/forms/AddUser.php:101
+msgid "Program Manager"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:327
-msgid "View show content"
+#: airtime_mvc/application/forms/AddUser.php:99
+msgid "Guest"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:328
-msgid "DJs can do the following:"
+msgid "Guests can do the following:"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:329
-msgid "Manage assigned show content"
+msgid "View schedule"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:330
-msgid "Import media files"
+msgid "View show content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:331
-msgid "Create playlists, smart blocks, and webstreams"
+msgid "DJs can do the following:"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:332
-msgid "Manage their own library content"
+msgid "Manage assigned show content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:333
-msgid "Progam Managers can do the following:"
+msgid "Import media files"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:334
-msgid "View and manage show content"
+msgid "Create playlists, smart blocks, and webstreams"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:335
-msgid "Schedule shows"
+msgid "Manage their own library content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:336
-msgid "Manage all library content"
+msgid "Progam Managers can do the following:"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:337
-msgid "Admins can do the following:"
+msgid "View and manage show content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:338
-msgid "Manage preferences"
+msgid "Schedule shows"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:339
-msgid "Manage users"
+msgid "Manage all library content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:340
-msgid "Manage watched folders"
+msgid "Admins can do the following:"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:341
+msgid "Manage preferences"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:342
-msgid "View system status"
+msgid "Manage users"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:343
-msgid "Access playout history"
+msgid "Manage watched folders"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:344
-msgid "View listener stats"
+#: airtime_mvc/application/forms/RegisterAirtime.php:116
+#: airtime_mvc/application/forms/SupportSettings.php:98
+msgid "Send support feedback"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:345
+msgid "View system status"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:346
-msgid "Show / hide columns"
+msgid "Access playout history"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:348
-msgid "From {from} to {to}"
+#: airtime_mvc/application/controllers/LocaleController.php:347
+msgid "View listener stats"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:349
-msgid "kbps"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LocaleController.php:350
-msgid "yyyy-mm-dd"
+msgid "Show / hide columns"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:351
-msgid "hh:mm:ss.t"
+msgid "From {from} to {to}"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:352
-msgid "kHz"
+msgid "kbps"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:353
+msgid "yyyy-mm-dd"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:354
+msgid "hh:mm:ss.t"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:355
-msgid "Su"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LocaleController.php:356
-msgid "Mo"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LocaleController.php:357
-msgid "Tu"
+msgid "kHz"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:358
-msgid "We"
+msgid "Su"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:359
-msgid "Th"
+msgid "Mo"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:360
-msgid "Fr"
+msgid "Tu"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:361
-msgid "Sa"
+msgid "We"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:362
+msgid "Th"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:363
+msgid "Fr"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:364
-msgid "Hour"
+msgid "Sa"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
+msgid "Close"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:367
+msgid "Hour"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:368
msgid "Minute"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:366
+#: airtime_mvc/application/controllers/LocaleController.php:369
msgid "Done"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:369
+#: airtime_mvc/application/controllers/LocaleController.php:372
msgid "Select files"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:370
-#: airtime_mvc/application/controllers/LocaleController.php:371
+#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:374
msgid "Add files to the upload queue and click the start button."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:372
-#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:376
msgid "Status"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:374
+#: airtime_mvc/application/controllers/LocaleController.php:377
msgid "Add Files"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:378
msgid "Stop Upload"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:376
+#: airtime_mvc/application/controllers/LocaleController.php:379
msgid "Start upload"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:377
+#: airtime_mvc/application/controllers/LocaleController.php:380
msgid "Add files"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:378
+#: airtime_mvc/application/controllers/LocaleController.php:381
#, php-format
msgid "Uploaded %d/%d files"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:379
+#: airtime_mvc/application/controllers/LocaleController.php:382
msgid "N/A"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:380
+#: airtime_mvc/application/controllers/LocaleController.php:383
msgid "Drag files here."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:381
+#: airtime_mvc/application/controllers/LocaleController.php:384
msgid "File extension error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:382
+#: airtime_mvc/application/controllers/LocaleController.php:385
msgid "File size error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:383
+#: airtime_mvc/application/controllers/LocaleController.php:386
msgid "File count error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:384
+#: airtime_mvc/application/controllers/LocaleController.php:387
msgid "Init error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:385
+#: airtime_mvc/application/controllers/LocaleController.php:388
msgid "HTTP Error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:386
+#: airtime_mvc/application/controllers/LocaleController.php:389
msgid "Security error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:387
+#: airtime_mvc/application/controllers/LocaleController.php:390
msgid "Generic error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:388
+#: airtime_mvc/application/controllers/LocaleController.php:391
msgid "IO error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:389
+#: airtime_mvc/application/controllers/LocaleController.php:392
#, php-format
msgid "File: %s"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:391
+#: airtime_mvc/application/controllers/LocaleController.php:394
#, php-format
msgid "%d files queued"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:392
+#: airtime_mvc/application/controllers/LocaleController.php:395
msgid "File: %f, size: %s, max file size: %m"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/controllers/LocaleController.php:396
msgid "Upload URL might be wrong or doesn't exist"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:394
+#: airtime_mvc/application/controllers/LocaleController.php:397
msgid "Error: File too large: "
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:395
+#: airtime_mvc/application/controllers/LocaleController.php:398
msgid "Error: Invalid file extension: "
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:398
+#: airtime_mvc/application/controllers/LocaleController.php:400
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
+msgid "Set Default"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:401
msgid "Create Entry"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:399
+#: airtime_mvc/application/controllers/LocaleController.php:402
msgid "Edit History Record"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:402
+#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
+#: airtime_mvc/application/forms/EditHistoryItem.php:57
+msgid "No Show"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:405
#, php-format
msgid "Copied %s row%s to the clipboard"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/controllers/LocaleController.php:406
#, php-format
msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/controllers/LocaleController.php:407
msgid "New Show"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:405
+#: airtime_mvc/application/controllers/LocaleController.php:408
msgid "New Log Entry"
msgstr ""
-#: airtime_mvc/application/controllers/ScheduleController.php:389
-#, php-format
-msgid "Rebroadcast of show %s from %s at %s"
-msgstr ""
-
-#: airtime_mvc/application/controllers/ScheduleController.php:712
-#: airtime_mvc/application/controllers/LibraryController.php:131
-msgid "Download"
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:78
-msgid "Page not found."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:87
-msgid "The requested action is not supported."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:98
-msgid "You do not have permission to access this resource."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:109
-msgid "An internal application error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ListenerstatController.php:51
-msgid "Please make sure admin user/password is correct on System->Streams page."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:53
-#, php-format
-msgid "You are viewing an older version of %s"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:140
-msgid "You cannot add tracks to dynamic blocks."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:147
-#: airtime_mvc/application/controllers/LibraryController.php:31
-#, php-format
-msgid "%s not found"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:161
-#, php-format
-msgid "You don't have permission to delete selected %s(s)."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:168
-#: airtime_mvc/application/controllers/LibraryController.php:40
-msgid "Something went wrong."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:174
-msgid "You can only add tracks to smart block."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:192
-msgid "Untitled Playlist"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:194
-msgid "Untitled Smart Block"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:522
-msgid "Unknown Playlist"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:43
-msgid "Please enter your username and password."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:93
-msgid "Wrong username or password provided. Please try again."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:167
-msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:173
-msgid "There was a problem with the username or email address you entered."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:35
-#: airtime_mvc/application/controllers/DashboardController.php:84
-msgid "You don't have permission to disconnect source."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:37
-#: airtime_mvc/application/controllers/DashboardController.php:86
-msgid "There is no source connected to this input."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:81
-msgid "You don't have permission to switch source."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:72
-msgid "Preferences updated."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:115
-msgid "Support setting updated."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:123
-msgid "Support Feedback"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:251
-msgid "Stream Setting Updated."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:342
-msgid "path should be specified"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:437
-msgid "Problem with Liquidsoap..."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:493
-msgid "Request method not accepted"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:86
-msgid "User added successfully!"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:88
-msgid "User updated successfully!"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:187
-msgid "Settings updated successfully!"
-msgstr ""
-
-#: airtime_mvc/application/controllers/WebstreamController.php:28
-#: airtime_mvc/application/controllers/WebstreamController.php:32
-msgid "Untitled Webstream"
-msgstr ""
-
-#: airtime_mvc/application/controllers/WebstreamController.php:150
-msgid "Webstream saved."
-msgstr ""
-
-#: airtime_mvc/application/controllers/WebstreamController.php:158
-msgid "Invalid form values."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:95
-#: airtime_mvc/application/controllers/ShowbuilderController.php:136
-msgid "Preview"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:115
-#: airtime_mvc/application/controllers/LibraryController.php:177
-#: airtime_mvc/application/controllers/LibraryController.php:200
-msgid "Add to Playlist"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:117
-msgid "Add to Smart Block"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:147
-msgid "View track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:148
-msgid "Remove track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:154
-#: airtime_mvc/application/controllers/LibraryController.php:159
-msgid "Upload track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:169
-msgid "Duplicate Playlist"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:213
-msgid "No action available"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:233
-msgid "You don't have permission to delete selected items."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:279
-msgid "Could not delete file because it is scheduled in the future."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:282
-msgid "Could not delete file(s)."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:322
-#, php-format
-msgid "Copy of %s"
-msgstr ""
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
-msgid ""
-"To configure and use the embeddable player you must:
\n"
-" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
-" 2. Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
-msgid ""
-"To use the embeddable weekly schedule widget you must:
\n"
-" Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
#: airtime_mvc/application/controllers/ShowbuilderController.php:138
msgid "Select cursor"
msgstr ""
@@ -4033,37 +1800,76 @@ msgstr ""
msgid "show does not exist"
msgstr ""
-#: airtime_mvc/application/controllers/ApiController.php:79
-msgid "You are not allowed to access this resource."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ApiController.php:244
-#: airtime_mvc/application/controllers/ApiController.php:317
-#: airtime_mvc/application/controllers/ApiController.php:392
-#: airtime_mvc/application/controllers/ApiController.php:435
-#: airtime_mvc/application/controllers/ApiController.php:474
-#: airtime_mvc/application/controllers/ApiController.php:507
-msgid "You are not allowed to access this resource. "
-msgstr ""
-
-#: airtime_mvc/application/controllers/ApiController.php:698
-#: airtime_mvc/application/controllers/ApiController.php:718
-#: airtime_mvc/application/controllers/ApiController.php:730
+#: airtime_mvc/application/controllers/ScheduleController.php:389
#, php-format
-msgid "File does not exist in %s"
+msgid "Rebroadcast of show %s from %s at %s"
msgstr ""
-#: airtime_mvc/application/controllers/ApiController.php:781
-msgid "Bad request. no 'mode' parameter passed."
+#: airtime_mvc/application/common/UsabilityHints.php:55
+msgid "Upload some tracks below to add them to your library!"
msgstr ""
-#: airtime_mvc/application/controllers/ApiController.php:791
-msgid "Bad request. 'mode' parameter is invalid"
-msgstr ""
-
-#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#: airtime_mvc/application/common/UsabilityHints.php:57
#, php-format
-msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:63
+msgid "Click the 'New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:65
+#, php-format
+msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:73
+msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:75
+#, php-format
+msgid ""
+"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
+" %sCreate an unlinked show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:80
+msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:82
+#, php-format
+msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:89
+msgid "Click on the show starting next and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:91
+#, php-format
+msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/DateHelper.php:213
+#, php-format
+msgid "The year %s must be within the range of 1753 - 9999"
+msgstr ""
+
+#: airtime_mvc/application/common/DateHelper.php:216
+#, php-format
+msgid "%s-%s-%s is not a valid date"
+msgstr ""
+
+#: airtime_mvc/application/common/DateHelper.php:240
+#, php-format
+msgid "%s:%s:%s is not a valid time"
+msgstr ""
+
+#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
+msgid "Live stream"
msgstr ""
#: airtime_mvc/application/layouts/scripts/layout.phtml:63
@@ -4078,6 +1884,17 @@ msgstr ""
msgid "Upload"
msgstr ""
+#: airtime_mvc/application/layouts/scripts/layout.phtml:76
+#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
+msgid "Dashboard"
+msgstr ""
+
+#: airtime_mvc/application/layouts/scripts/layout.phtml:84
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
+msgid "Webstreams"
+msgstr ""
+
#: airtime_mvc/application/layouts/scripts/layout.phtml:135
#: airtime_mvc/application/layouts/scripts/layout.phtml:161
msgid "Play"
@@ -4099,3 +1916,2124 @@ msgstr ""
#: airtime_mvc/application/layouts/scripts/layout.phtml:166
msgid "Cursor"
msgstr ""
+
+#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#, php-format
+msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
+msgid "Drop files here or click to browse your computer."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
+msgid "Failed"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
+msgid "Pending"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
+msgid "Recent Uploads"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
+msgid "Share"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
+msgid "Select stream:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
+msgid "mute"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
+msgid "unmute"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
+msgid "About"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
+#, php-format
+msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
+#, php-format
+msgid "%1$s %2$s is distributed under the %3$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
+#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
+#, php-format
+msgid "Welcome to %s!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
+#, php-format
+msgid "Here's how you can get started using %s to automate your broadcasts: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
+msgid "Upload audio tracks"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
+msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
+msgid "Schedule a show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
+msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
+msgid "Add tracks to your show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
+msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
+msgid "Now you're good to go!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
+#, php-format
+msgid "For more detailed help, read the %suser manual%s."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
+#: airtime_mvc/application/configs/navigation.php:40
+msgid "Weekly Schedule"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
+#: airtime_mvc/application/forms/Player.php:77
+msgid "Preview:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
+#: airtime_mvc/application/configs/navigation.php:34
+msgid "Player"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:97
+msgid "Playout History"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
+msgid "Log Sheet"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
+msgid "File Summary"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
+msgid "Show Summary"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
+msgid "Expand Static Block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
+msgid "Expand Dynamic Block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
+msgid "Choose some search criteria above and click Generate to create this playlist."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
+msgid "A track list will be generated when you schedule this smart block into a show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
+msgid "Drag tracks here from your library to add them to the playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
+msgid "Editing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:26
+msgid "Name:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
+#: airtime_mvc/application/forms/AddShowWhat.php:54
+msgid "Description:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
+#: airtime_mvc/application/forms/AddShowWhen.php:89
+msgid "Duration:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
+msgid "Toggle Details"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+msgid "Shuffle playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
+msgid "Shuffle"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
+msgid "Playlist crossfade"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+msgid "Empty playlist content"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Clear"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+msgid "Fade in: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "Fade out: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+msgid "Save playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
+msgid "No open playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
+msgid "Show Waveform"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "(ss.t)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Remove all content from this smart block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
+msgid "No smart block currently open"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+msgid "Cue In: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "(hh:mm:ss.t)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "Cue Out: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
+msgid "Original Length:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:56
+msgid "General"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
+msgid "Stream Settings"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
+msgid "Global"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
+msgid "dB"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
+msgid "Output Streams"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:3
+#: airtime_mvc/application/forms/Login.php:83
+msgid "Login"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:7
+#, php-format
+msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
+msgid "Email Sent!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
+msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
+msgid "Back"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
+msgid "Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
+msgid "New password"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
+msgid "Please enter and confirm your new password in the fields below."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
+msgid "Manage Users"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
+msgid "New User"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
+msgid "id"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
+#: airtime_mvc/application/forms/PasswordRestore.php:25
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
+msgid "Username"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
+msgid "First Name"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
+msgid "Last Name"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
+msgid "User Type"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
+#, php-format
+msgid "Super Admin details can be changed in your Billing Settings."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
+msgid "Find Shows"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
+msgid "Choose Show Instance"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
+msgid "Find"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
+#: airtime_mvc/application/configs/navigation.php:61
+msgid "My Profile"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
+#, php-format
+msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
+msgid "Repeat Days:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
+#: airtime_mvc/application/forms/GeneralPreferences.php:53
+#: airtime_mvc/application/forms/AddShowStyle.php:64
+msgid "Remove"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
+msgid "Add"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
+msgid "Show Source"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
+msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
+msgid "Register Airtime"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
+#, php-format
+msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
+#, php-format
+msgid "Click the box below to promote your station on %s."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
+msgid "(Required)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
+msgid "(for verification purposes only, will not be published)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
+#: airtime_mvc/application/forms/GeneralPreferences.php:43
+msgid "Note: Anything larger than 600x600 will be resized."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
+msgid "Show me what I am sending "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
+msgid "Terms and Conditions"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
+msgid "Choose Days:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
+msgid "Search Criteria:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
+msgid "New Criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
+msgid "or"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
+msgid "and"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
+msgid "New Modifier"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
+msgid " to "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
+msgid "files meet the criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
+msgid "file meets the criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
+msgid "Filter History"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/login.phtml:41
+msgid "Forgot your password?"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
+msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
+msgid "Stream "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
+msgid "Additional Options"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
+msgid "The following info will be displayed to listeners in their media player:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
+msgid "(Your radio station website)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
+msgid "Stream URL: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
+msgid "Choose folder"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
+msgid "Set"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
+msgid "Current Import Folder:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
+#, php-format
+msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
+msgid "Remove watched directory"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
+msgid "You are not watching any media folders."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
+msgid "Live Broadcasting"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
+msgid "Master Source"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
+msgid "Use these settings in your broadcasting software to stream live at any time."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
+msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
+msgid "TuneIn Settings"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
+msgid "SoundCloud Settings"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
+msgid "Dangerous Options"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Add this show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Update show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
+msgid "What"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
+msgid "When"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
+msgid "Live Stream Input"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
+msgid "Who"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
+msgid "Style"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
+msgid "Disk Space"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:3
+msgid "File import in progress..."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:10
+#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
+msgid "Advanced Search Options"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
+#: airtime_mvc/application/forms/EditAudioMD.php:24
+#: airtime_mvc/application/forms/Player.php:15
+msgid "Title:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
+#: airtime_mvc/application/forms/EditAudioMD.php:34
+msgid "Creator:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
+#: airtime_mvc/application/forms/EditAudioMD.php:44
+msgid "Album:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
+msgid "Track:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
+msgid "Length:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
+msgid "Sample Rate:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
+msgid "Bit Rate:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
+#: airtime_mvc/application/forms/EditAudioMD.php:115
+msgid "Mood:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:45
+#: airtime_mvc/application/forms/EditAudioMD.php:62
+msgid "Genre:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
+#: airtime_mvc/application/forms/EditAudioMD.php:72
+msgid "Year:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
+#: airtime_mvc/application/forms/EditAudioMD.php:85
+msgid "Label:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
+#: airtime_mvc/application/forms/EditAudioMD.php:125
+msgid "BPM:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
+#: airtime_mvc/application/forms/EditAudioMD.php:95
+msgid "Composer:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
+#: airtime_mvc/application/forms/EditAudioMD.php:105
+msgid "Conductor:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
+#: airtime_mvc/application/forms/EditAudioMD.php:135
+msgid "Copyright:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
+msgid "Isrc Number:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
+#: airtime_mvc/application/forms/EditAudioMD.php:155
+msgid "Website:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
+#: airtime_mvc/application/forms/EditAudioMD.php:165
+#: airtime_mvc/application/forms/EditUser.php:119
+#: airtime_mvc/application/forms/Login.php:68
+msgid "Language:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
+msgid "File Path:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
+msgid "Web Stream"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
+msgid "Dynamic Smart Block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
+msgid "Static Smart Block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
+msgid "Audio Track"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
+msgid "Playlist Contents: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
+msgid "Static Smart Block Contents: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
+msgid "Dynamic Smart Block Criteria: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
+msgid "Limit to "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
+#: airtime_mvc/application/forms/AddShowWhat.php:36
+msgid "URL:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
+msgid "Viewing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
+msgid "Listeners"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
+msgid "Stream Data Collection Status"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
+msgid "Your trial expires in"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
+msgid "days"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
+msgid "Previous:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
+msgid "Next:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
+msgid "Source Streams"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
+msgid "ON AIR"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
+msgid "Listen"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
+msgid "Logout"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
+msgid "Playout History Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
+msgid "Log Sheet Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
+msgid "New Log Sheet Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
+msgid "No Log Sheet Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
+msgid "File Summary Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
+msgid "New File Summary Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
+msgid "No File Summary Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
+msgid "Creating File Summary Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
+msgid "Creating Log Sheet Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
+msgid "Name"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
+msgid "Add more elements"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
+msgid "Add New Field"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
+msgid "Set Default Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
+msgid "Description"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
+msgid "Stream URL:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
+msgid "Default Length:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
+msgid "No webstream"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
+#: airtime_mvc/application/views/scripts/error/error.phtml:6
+msgid "An error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
+msgid "Access Denied!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
+msgid "You do not have permission to access this page!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
+#: airtime_mvc/application/views/scripts/error/error.phtml:14
+#: airtime_mvc/application/configs/navigation.php:143
+msgid "Help"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
+msgid "Oops!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
+msgid "Something went wrong!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
+msgid "Bad Request!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
+msgid "The requested action is not supported!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
+msgid "Page not found!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
+msgid "We couldn't find the page you were looking for."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error.phtml:12
+msgid "Looks like the page you were looking for doesn't exist!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
+msgid "previous"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
+msgid "play"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
+msgid "pause"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
+msgid "next"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
+msgid "stop"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
+msgid "max volume"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
+msgid "Update Required"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
+#, php-format
+msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
+msgid "Plan type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
+msgid "Billing cycle:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
+msgid "Payment method:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
+msgid "PayPal"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
+msgid "Credit Card via 2Checkout"
+msgstr ""
+
+#: airtime_mvc/application/forms/DateRange.php:16
+#: airtime_mvc/application/forms/ShowBuilder.php:18
+msgid "Date Start:"
+msgstr ""
+
+#: airtime_mvc/application/forms/DateRange.php:35
+#: airtime_mvc/application/forms/DateRange.php:63
+#: airtime_mvc/application/forms/ShowBuilder.php:37
+#: airtime_mvc/application/forms/ShowBuilder.php:65
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
+msgid "Invalid character entered"
+msgstr ""
+
+#: airtime_mvc/application/forms/DateRange.php:44
+#: airtime_mvc/application/forms/ShowBuilder.php:46
+#: airtime_mvc/application/forms/AddShowRepeats.php:56
+msgid "Date End:"
+msgstr ""
+
+#: airtime_mvc/application/forms/ShowBuilder.php:72
+#: airtime_mvc/application/forms/ShowBuilder.php:88
+msgid "Filter by Show"
+msgstr ""
+
+#: airtime_mvc/application/forms/ShowBuilder.php:80
+msgid "All My Shows:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWho.php:10
+msgid "Search Users:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWho.php:24
+msgid "DJs:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:30
+#: airtime_mvc/application/forms/GeneralPreferences.php:25
+#: airtime_mvc/application/forms/SupportSettings.php:18
+msgid "Station Name"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:39
+#: airtime_mvc/application/forms/SupportSettings.php:31
+msgid "Phone:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:51
+#: airtime_mvc/application/forms/AddUser.php:67
+#: airtime_mvc/application/forms/EditUser.php:83
+#: airtime_mvc/application/forms/SupportSettings.php:43
+msgid "Email:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:62
+#: airtime_mvc/application/forms/SupportSettings.php:54
+msgid "Station Web Site:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:73
+#: airtime_mvc/application/forms/SupportSettings.php:65
+msgid "Country:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:84
+#: airtime_mvc/application/forms/SupportSettings.php:76
+msgid "City:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:96
+#: airtime_mvc/application/forms/SupportSettings.php:88
+msgid "Station Description:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:106
+#: airtime_mvc/application/forms/GeneralPreferences.php:42
+msgid "Station Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:126
+#: airtime_mvc/application/forms/SupportSettings.php:108
+#, php-format
+msgid "Promote my station on %s"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:151
+#: airtime_mvc/application/forms/SupportSettings.php:120
+#, php-format
+msgid "By checking this box, I agree to %s's %sprivacy policy%s."
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:169
+#: airtime_mvc/application/forms/SupportSettings.php:143
+msgid "You have to agree to privacy policy."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRR.php:10
+msgid "Record from Line In?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRR.php:16
+msgid "Rebroadcast?"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
+#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
+msgid "Value is required and can't be empty"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
+msgid "'%value%' is no valid email address in the basic format local-part@hostname"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
+msgid "'%value%' does not fit the date format '%format%'"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
+msgid "'%value%' is less than %min% characters long"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
+msgid "'%value%' is more than %max% characters long"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
+msgid "'%value%' is not between '%min%' and '%max%', inclusively"
+msgstr ""
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
+msgid "Passwords do not match"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
+msgid "Day must be specified"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
+msgid "Time must be specified"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
+msgid "Must wait at least 1 hour to rebroadcast"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordRestore.php:14
+msgid "Email"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordRestore.php:36
+msgid "Reset password"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhat.php:30
+msgid "Untitled Show"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhat.php:69
+msgid "Instance Description:"
+msgstr ""
+
+#: airtime_mvc/application/forms/DangerousPreferences.php:12
+msgid "Delete All Tracks in Library"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditAudioMD.php:145
+msgid "ISRC Number:"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditAudioMD.php:176
+msgid "OK"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:33
+msgid "Station Description"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:62
+msgid "Default Crossfade Duration (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:68
+#: airtime_mvc/application/forms/GeneralPreferences.php:82
+#: airtime_mvc/application/forms/GeneralPreferences.php:96
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
+msgid "Please enter a time in seconds (eg. 0.5)"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:76
+msgid "Default Fade In (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:90
+msgid "Default Fade Out (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:102
+msgid "Public Airtime API"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:103
+msgid "Required for embeddable schedule widget."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:105
+msgid "Disabled"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:106
+msgid "Enabled"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:109
+msgid ""
+"Enabling this feature will allow Airtime to provide schedule data\n"
+" to external widgets that can be embedded in your website."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:120
+msgid "Default Language"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:127
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
+msgid "Station Timezone"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:134
+msgid "Week Starts On"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:150
+msgid "Display login button on your Radio Page?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:29
+#: airtime_mvc/application/forms/EditUser.php:37
+#: airtime_mvc/application/forms/Login.php:41
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
+msgid "Username:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:38
+#: airtime_mvc/application/forms/EditUser.php:48
+#: airtime_mvc/application/forms/Login.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
+msgid "Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:46
+#: airtime_mvc/application/forms/EditUser.php:57
+msgid "Verify Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:55
+#: airtime_mvc/application/forms/EditUser.php:67
+msgid "Firstname:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:61
+#: airtime_mvc/application/forms/EditUser.php:75
+msgid "Lastname:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:76
+#: airtime_mvc/application/forms/EditUser.php:94
+msgid "Mobile Phone:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:82
+#: airtime_mvc/application/forms/EditUser.php:102
+msgid "Skype:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:88
+#: airtime_mvc/application/forms/EditUser.php:110
+msgid "Jabber:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:95
+msgid "User Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:120
+#: airtime_mvc/application/forms/EditUser.php:155
+msgid "Login name is not unique."
+msgstr ""
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
+msgid "Import Folder:"
+msgstr ""
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
+msgid "Watched Folders:"
+msgstr ""
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
+msgid "Not a valid Directory"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:126
+msgid "What is the name of your favorite childhood friend?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:127
+msgid "What school did you attend for sixth grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:128
+msgid "In what city did you meet your spouse/significant other?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:129
+msgid "What street did you live on in third grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:130
+msgid "What is the first name of the boy or girl that you first kissed?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:131
+msgid "In what city or town was your first job?"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
+msgid "Default License:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
+msgid "All rights are reserved"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
+msgid "The work is in the public domain"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
+msgid "Creative Commons Attribution"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
+msgid "Creative Commons Attribution Noncommercial"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
+msgid "Creative Commons Attribution No Derivative Works"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
+msgid "Creative Commons Attribution Share Alike"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
+msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
+msgid "Creative Commons Attribution Noncommercial Share Alike"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
+msgid "Default Sharing Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
+msgid "Public"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
+msgid "Private"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditUser.php:129
+msgid "Interface Timezone:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:14
+msgid "Now Playing"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:25
+msgid "Select Stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:28
+msgid "Auto detect the most appropriate stream to use."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:29
+msgid "Select a stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:41
+msgid " - Mobile friendly"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:45
+msgid " - The player does not support Opus streams."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:71
+msgid "Embeddable code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:72
+msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
+#: airtime_mvc/application/models/Block.php:1351
+msgid "Select criteria"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
+#: airtime_mvc/application/models/Block.php:1353
+msgid "Bit Rate (Kbps)"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
+#: airtime_mvc/application/models/Block.php:1374
+msgid "Sample Rate (kHz)"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
+msgid "hours"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
+msgid "minutes"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
+#: airtime_mvc/application/models/Block.php:333
+msgid "items"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
+msgid "Randomly"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
+msgid "Newest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
+msgid "Oldest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
+msgid "Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
+msgid "Static"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
+msgid "Dynamic"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
+msgid "Allow Repeated Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
+msgid "Sort Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
+msgid "Limit to:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
+msgid "Generate playlist content and save criteria"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
+msgid "Generate"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
+msgid "Shuffle playlist content"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
+msgid "Limit cannot be empty or smaller than 0"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
+msgid "Limit cannot be more than 24 hrs"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
+msgid "The value should be an integer"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
+msgid "500 is the max item limit value you can set"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
+msgid "You must select Criteria and Modifier"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
+msgid "'Length' should be in '00:00:00' format"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
+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:594
+msgid "The value has to be numeric"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
+msgid "The value should be less then 2147483648"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
+#, php-format
+msgid "The value should be less than %s characters"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
+msgid "Value cannot be empty"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:26
+msgid "Icecast Vorbis Metadata"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:36
+msgid "Stream Label:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:37
+msgid "Artist - Title"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:38
+msgid "Show - Artist - Title"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:39
+msgid "Station name - Show name"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:45
+msgid "Off Air Metadata"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:51
+msgid "Enable Replay Gain"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:57
+msgid "Replay Gain Modifier"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:65
+msgid "Streaming Server:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Airtime Pro Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Custom / 3rd Party Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordChange.php:17
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
+msgid "Password"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordChange.php:28
+msgid "Confirm new password"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordChange.php:36
+msgid "Password confirmation does not match your password."
+msgstr ""
+
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
+msgid "Station Language"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
+msgid "Enabled:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
+msgid "Mobile:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
+msgid "Stream Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
+msgid "Service Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
+msgid "Channels:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "1 - Mono"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "2 - Stereo"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
+msgid "Server"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
+msgid "Port"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
+msgid "Only numbers are allowed."
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
+msgid "URL"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
+msgid "Mount Point"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
+msgid "Admin User"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
+msgid "Admin Password"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
+msgid "Server cannot be empty."
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
+msgid "Port cannot be empty."
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
+msgid "Mount cannot be empty with Icecast server."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:16
+msgid "'%value%' does not fit the time format 'HH:mm'"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:22
+msgid "Start Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:37
+msgid "In the Future:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:64
+msgid "End Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:98
+msgid "Timezone:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:107
+msgid "Repeats?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:139
+msgid "Cannot create show in the past"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:147
+msgid "Cannot modify start date/time of the show that is already started"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:156
+#: airtime_mvc/application/models/Show.php:282
+msgid "End date/time cannot be in the past"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:164
+msgid "Cannot have duration < 0m"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:168
+msgid "Cannot have duration 00h 00m"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:175
+msgid "Cannot have duration greater than 24h"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:19
+msgid "Push metadata to your station on TuneIn?"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:24
+msgid "Station ID:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:30
+msgid "Partner Key:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:36
+msgid "Partner Id:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:77
+#: airtime_mvc/application/forms/TuneInPreferences.php:86
+msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:10
+#, php-format
+msgid "Use %s Authentication:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:16
+msgid "Use Custom Authentication:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:25
+msgid "Custom Username"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:37
+msgid "Custom Password"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:48
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
+msgid "Host:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
+msgid "Port:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:60
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
+msgid "Mount:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:77
+msgid "Username field cannot be empty."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:82
+msgid "Password field cannot be empty."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:12
+msgid "Background Colour:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:31
+msgid "Text Colour:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:49
+msgid "Current Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:72
+msgid "Show Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:87
+msgid "Logo Preview:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Login.php:102
+msgid "Type the characters you see in the picture below."
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
+msgid "Auto Switch Off:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
+msgid "Auto Switch On:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
+msgid "Switch Transition Fade (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:10
+msgid "Link:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:16
+msgid "Repeat Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:19
+msgid "weekly"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:20
+msgid "every 2 weeks"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:21
+msgid "every 3 weeks"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:22
+msgid "every 4 weeks"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:23
+msgid "monthly"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:32
+msgid "Select Days:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:47
+msgid "Repeat By:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the month"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the week"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:69
+msgid "No End?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:106
+msgid "End date must be after start date"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:113
+msgid "Please select a repeat day"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:12
+msgid "Radio Page"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:19
+msgid "Calendar"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:26
+msgid "Widgets"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:48
+msgid "Settings"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:67
+msgid "Users"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:74
+msgid "Streams"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:82
+msgid "Analytics"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:90
+msgid "Listener Stats"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:104
+msgid "History Templates"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:113
+msgid "Billing"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:120
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:127
+msgid "Account Details"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:134
+msgid "View Invoices"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:150
+msgid "Getting Started"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:157
+msgid "FAQ"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:162
+msgid "User Manual"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:167
+msgid "File a Support Ticket"
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:833
+#: airtime_mvc/application/models/Playlist.php:812
+msgid "Cue in and cue out are null."
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:868
+#: airtime_mvc/application/models/Block.php:924
+#: airtime_mvc/application/models/Playlist.php:851
+#: airtime_mvc/application/models/Playlist.php:895
+msgid "Can't set cue out to be greater than file length."
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:879
+#: airtime_mvc/application/models/Block.php:900
+#: airtime_mvc/application/models/Playlist.php:843
+#: airtime_mvc/application/models/Playlist.php:868
+msgid "Can't set cue in to be larger than cue out."
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:935
+#: airtime_mvc/application/models/Playlist.php:887
+msgid "Can't set cue out to be smaller than cue in."
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:1366
+msgid "Upload Time"
+msgstr ""
+
+#: airtime_mvc/application/models/ShowBuilder.php:212
+#, php-format
+msgid "Rebroadcast of %s from %s"
+msgstr ""
+
+#: airtime_mvc/application/models/Preference.php:460
+#, php-format
+msgid "Powered by %s"
+msgstr ""
+
+#: airtime_mvc/application/models/Preference.php:588
+msgid "Select Country"
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:160
+#, php-format
+msgid "%s is already watched."
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:164
+#, php-format
+msgid "%s contains nested watched directory: %s"
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:168
+#, php-format
+msgid "%s is nested within existing watched directory: %s"
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:189
+#: airtime_mvc/application/models/MusicDir.php:370
+#, php-format
+msgid "%s is not a valid directory."
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:232
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list"
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:388
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list."
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:431
+#, php-format
+msgid "%s doesn't exist in the watched list."
+msgstr ""
+
+#: airtime_mvc/application/models/Auth.php:33
+#, php-format
+msgid ""
+"Hi %s, \n"
+"\n"
+"Please click this link to reset your password: "
+msgstr ""
+
+#: airtime_mvc/application/models/Auth.php:38
+#, php-format
+msgid "%s Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/models/Show.php:184
+msgid "Shows can have a max length of 24 hours."
+msgstr ""
+
+#: airtime_mvc/application/models/Show.php:293
+msgid ""
+"Cannot schedule overlapping shows.\n"
+"Note: Resizing a repeating show affects all of its repeats."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:73
+msgid "Cannot move items out of linked shows"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:119
+msgid "The schedule you're viewing is out of date! (sched mismatch)"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:124
+msgid "The schedule you're viewing is out of date! (instance mismatch)"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:132
+#: airtime_mvc/application/models/Scheduler.php:458
+#: airtime_mvc/application/models/Scheduler.php:490
+msgid "The schedule you're viewing is out of date!"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:142
+#, php-format
+msgid "You are not allowed to schedule show %s."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:146
+msgid "You cannot add files to recording shows."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:152
+#, php-format
+msgid "The show %s is over and cannot be scheduled."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:159
+#, php-format
+msgid "The show %s has been previously updated!"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:178
+msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:195
+msgid "Cannot schedule a playlist that contains missing files."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:216
+#: airtime_mvc/application/models/Scheduler.php:305
+msgid "A selected File does not exist!"
+msgstr ""
+
+#: airtime_mvc/application/models/Schedule.php:206
+msgid "livestream"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:166
+msgid "Length needs to be greater than 0 minutes"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:171
+msgid "Length should be of form \"00h 00m\""
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:184
+msgid "URL should be of form \"http://domain\""
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:187
+msgid "URL should be 512 characters or less"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:193
+msgid "No MIME type found for webstream."
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:209
+msgid "Webstream name cannot be empty"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:278
+msgid "Could not parse XSPF playlist"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:298
+msgid "Could not parse PLS playlist"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:318
+msgid "Could not parse M3U playlist"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:332
+msgid "Invalid webstream - This appears to be a file download."
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:336
+#, php-format
+msgid "Unrecognized stream type: %s"
+msgstr ""
+
+#: airtime_mvc/public/setup/rabbitmq-setup.php:78
+msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
+msgstr ""
diff --git a/airtime_mvc/locale/template/pro.po b/airtime_mvc/locale/template/pro.po
index e6b6463fe..47ead1f28 100644
--- a/airtime_mvc/locale/template/pro.po
+++ b/airtime_mvc/locale/template/pro.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Airtime 2.5\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-09-03 10:24-0400\n"
+"POT-Creation-Date: 2015-09-04 11:17-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -17,6 +17,142 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+#: airtime_mvc/application/controllers/LoginController.php:170
+#, php-format
+msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
+#, php-format
+msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
+#, php-format
+msgid "If you are the primary owner of this station, please reset your password here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
+msgid "Thank you!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
+msgid "Your station has been upgraded successfully."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
+msgid "Return to Airtime"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+#, php-format
+msgid "Purchase an %s plan!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+msgid "My Account"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
+msgid "Upgrade today to get more listeners and storage space!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
+msgid "View Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:257
+msgid "Your Current Plan:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:291
+msgid "Please enter your payment details:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
+msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
+msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:17
+msgid "First Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:26
+msgid "Last Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:35
+msgid "Company Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:44
+msgid "Email Address:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:54
+msgid "Address 1:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:63
+msgid "Address 2:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:70
+msgid "City:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:80
+msgid "State/Region:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:89
+msgid "Zip Code / Postal Code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:102
+msgid "Country:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:112
+msgid "Phone Number:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:121
+msgid "Please choose a security question:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:135
+msgid "Please enter an answer:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:152
+msgid "VAT/Tax ID (EU only)"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:162
+msgid "Subscribe to Sourcefabric newsletter"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:172
+msgid "Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:181
+msgid "Verify Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:193
+msgid "Save"
+msgstr ""
+
#: airtime_mvc/application/models/Auth.php:35
#, php-format
msgid ""
@@ -33,38 +169,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
-msgid "Thank you!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
-msgid "Your station has been upgraded successfully."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
-msgid "Return to Airtime"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
-#, php-format
-msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
-msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
-msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
-#, php-format
-msgid "If you are the primary owner of this station, please reset your password here."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:170
-#, php-format
-msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
-msgstr ""
diff --git a/airtime_mvc/locale/tr/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/tr/LC_MESSAGES/airtime.mo
index 11098a114..15b691531 100644
Binary files a/airtime_mvc/locale/tr/LC_MESSAGES/airtime.mo and b/airtime_mvc/locale/tr/LC_MESSAGES/airtime.mo differ
diff --git a/airtime_mvc/locale/tr/LC_MESSAGES/airtime.po b/airtime_mvc/locale/tr/LC_MESSAGES/airtime.po
index 66c88cb25..6e416d986 100644
--- a/airtime_mvc/locale/tr/LC_MESSAGES/airtime.po
+++ b/airtime_mvc/locale/tr/LC_MESSAGES/airtime.po
@@ -8,142 +8,16 @@ msgid ""
msgstr ""
"Project-Id-Version: Airtime\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-09-03 10:24-0400\n"
-"PO-Revision-Date: 2015-05-27 09:52+0000\n"
-"Last-Translator: M. Ömer Gölgeli \n"
-"Language-Team: Turkish (http://www.transifex.com/projects/p/airtime/language/tr/)\n"
+"POT-Creation-Date: 2015-09-04 11:17-0400\n"
+"PO-Revision-Date: 2015-09-04 08:15+0000\n"
+"Last-Translator: Daniel James \n"
+"Language-Team: Turkish (http://www.transifex.com/sourcefabric/airtime/language/tr/)\n"
"Language: tr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-#: airtime_mvc/public/setup/rabbitmq-setup.php:78
-msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1117
-#: airtime_mvc/application/services/HistoryService.php:1157
-#: airtime_mvc/application/services/HistoryService.php:1174
-#: airtime_mvc/application/models/Block.php:1375
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
-#: airtime_mvc/application/controllers/LocaleController.php:76
-msgid "Title"
-msgstr "Parça Adı"
-
-#: airtime_mvc/application/services/HistoryService.php:1118
-#: airtime_mvc/application/services/HistoryService.php:1158
-#: airtime_mvc/application/services/HistoryService.php:1175
-#: airtime_mvc/application/models/Block.php:1360
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
-#: airtime_mvc/application/controllers/LocaleController.php:77
-msgid "Creator"
-msgstr "Oluşturan"
-
-#: airtime_mvc/application/services/HistoryService.php:1119
-#: airtime_mvc/application/models/Block.php:1352
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
-#: airtime_mvc/application/controllers/LocaleController.php:78
-msgid "Album"
-msgstr "Albüm"
-
-#: airtime_mvc/application/services/HistoryService.php:1120
-#: airtime_mvc/application/services/HistoryService.php:1177
-#: airtime_mvc/application/models/Block.php:1369
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
-#: airtime_mvc/application/controllers/LocaleController.php:91
-msgid "Length"
-msgstr "Uzunluk"
-
-#: airtime_mvc/application/services/HistoryService.php:1121
-#: airtime_mvc/application/models/Block.php:1362
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
-#: airtime_mvc/application/controllers/LocaleController.php:85
-msgid "Genre"
-msgstr "Tür"
-
-#: airtime_mvc/application/services/HistoryService.php:1122
-#: airtime_mvc/application/models/Block.php:1371
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
-#: airtime_mvc/application/controllers/LocaleController.php:93
-msgid "Mood"
-msgstr "Ruh Hali"
-
-#: airtime_mvc/application/services/HistoryService.php:1123
-#: airtime_mvc/application/models/Block.php:1364
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
-#: airtime_mvc/application/controllers/LocaleController.php:87
-msgid "Label"
-msgstr "Plak Şirketi"
-
-#: airtime_mvc/application/services/HistoryService.php:1124
-#: airtime_mvc/application/services/HistoryService.php:1178
-#: airtime_mvc/application/models/Block.php:1355
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
-#: airtime_mvc/application/controllers/LocaleController.php:81
-msgid "Composer"
-msgstr "Besteleyen"
-
-#: airtime_mvc/application/services/HistoryService.php:1125
-#: airtime_mvc/application/models/Block.php:1363
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
-#: airtime_mvc/application/controllers/LocaleController.php:86
-msgid "ISRC"
-msgstr "ISRC"
-
-#: airtime_mvc/application/services/HistoryService.php:1126
-#: airtime_mvc/application/services/HistoryService.php:1179
-#: airtime_mvc/application/models/Block.php:1357
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
-#: airtime_mvc/application/controllers/LocaleController.php:83
-msgid "Copyright"
-msgstr "Telif Hakkı"
-
-#: airtime_mvc/application/services/HistoryService.php:1127
-#: airtime_mvc/application/models/Block.php:1379
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
-#: airtime_mvc/application/controllers/LocaleController.php:100
-msgid "Year"
-msgstr "Yıl"
-
-#: airtime_mvc/application/services/HistoryService.php:1128
-msgid "Track"
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1129
-#: airtime_mvc/application/models/Block.php:1356
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
-#: airtime_mvc/application/controllers/LocaleController.php:82
-msgid "Conductor"
-msgstr "Orkestra Şefi"
-
-#: airtime_mvc/application/services/HistoryService.php:1130
-#: airtime_mvc/application/models/Block.php:1365
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
-#: airtime_mvc/application/controllers/LocaleController.php:88
-msgid "Language"
-msgstr "Dil"
-
-#: airtime_mvc/application/services/HistoryService.php:1155
-#: airtime_mvc/application/forms/EditHistoryItem.php:32
-msgid "Start Time"
-msgstr "Başlangıç Saati"
-
-#: airtime_mvc/application/services/HistoryService.php:1156
-#: airtime_mvc/application/forms/EditHistoryItem.php:44
-msgid "End Time"
-msgstr "Bitiş Saati"
-
-#: airtime_mvc/application/services/HistoryService.php:1176
-msgid "Played"
-msgstr ""
-
#: airtime_mvc/application/services/CalendarService.php:50
msgid "Record file doesn't exist"
msgstr ""
@@ -239,2601 +113,380 @@ msgstr ""
msgid "Must wait 1 hour to rebroadcast."
msgstr ""
-#: airtime_mvc/application/models/Schedule.php:206
-msgid "livestream"
+#: airtime_mvc/application/services/HistoryService.php:1117
+#: airtime_mvc/application/services/HistoryService.php:1157
+#: airtime_mvc/application/services/HistoryService.php:1174
+#: airtime_mvc/application/controllers/LocaleController.php:76
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
+#: airtime_mvc/application/models/Block.php:1375
+msgid "Title"
+msgstr "Parça Adı"
+
+#: airtime_mvc/application/services/HistoryService.php:1118
+#: airtime_mvc/application/services/HistoryService.php:1158
+#: airtime_mvc/application/services/HistoryService.php:1175
+#: airtime_mvc/application/controllers/LocaleController.php:77
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
+#: airtime_mvc/application/models/Block.php:1360
+msgid "Creator"
+msgstr "Oluşturan"
+
+#: airtime_mvc/application/services/HistoryService.php:1119
+#: airtime_mvc/application/controllers/LocaleController.php:78
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
+#: airtime_mvc/application/models/Block.php:1352
+msgid "Album"
+msgstr "Albüm"
+
+#: airtime_mvc/application/services/HistoryService.php:1120
+#: airtime_mvc/application/services/HistoryService.php:1177
+#: airtime_mvc/application/controllers/LocaleController.php:91
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
+#: airtime_mvc/application/models/Block.php:1369
+msgid "Length"
+msgstr "Uzunluk"
+
+#: airtime_mvc/application/services/HistoryService.php:1121
+#: airtime_mvc/application/controllers/LocaleController.php:85
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
+#: airtime_mvc/application/models/Block.php:1362
+msgid "Genre"
+msgstr "Tür"
+
+#: airtime_mvc/application/services/HistoryService.php:1122
+#: airtime_mvc/application/controllers/LocaleController.php:93
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
+#: airtime_mvc/application/models/Block.php:1371
+msgid "Mood"
+msgstr "Ruh Hali"
+
+#: airtime_mvc/application/services/HistoryService.php:1123
+#: airtime_mvc/application/controllers/LocaleController.php:87
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
+#: airtime_mvc/application/models/Block.php:1364
+msgid "Label"
+msgstr "Plak Şirketi"
+
+#: airtime_mvc/application/services/HistoryService.php:1124
+#: airtime_mvc/application/services/HistoryService.php:1178
+#: airtime_mvc/application/controllers/LocaleController.php:81
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
+#: airtime_mvc/application/models/Block.php:1355
+msgid "Composer"
+msgstr "Besteleyen"
+
+#: airtime_mvc/application/services/HistoryService.php:1125
+#: airtime_mvc/application/controllers/LocaleController.php:86
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
+#: airtime_mvc/application/models/Block.php:1363
+msgid "ISRC"
+msgstr "ISRC"
+
+#: airtime_mvc/application/services/HistoryService.php:1126
+#: airtime_mvc/application/services/HistoryService.php:1179
+#: airtime_mvc/application/controllers/LocaleController.php:83
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
+#: airtime_mvc/application/models/Block.php:1357
+msgid "Copyright"
+msgstr "Telif Hakkı"
+
+#: airtime_mvc/application/services/HistoryService.php:1127
+#: airtime_mvc/application/controllers/LocaleController.php:100
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
+#: airtime_mvc/application/models/Block.php:1379
+msgid "Year"
+msgstr "Yıl"
+
+#: airtime_mvc/application/services/HistoryService.php:1128
+msgid "Track"
msgstr ""
-#: airtime_mvc/application/models/ShowBuilder.php:212
+#: airtime_mvc/application/services/HistoryService.php:1129
+#: airtime_mvc/application/controllers/LocaleController.php:82
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
+#: airtime_mvc/application/models/Block.php:1356
+msgid "Conductor"
+msgstr "Orkestra Şefi"
+
+#: airtime_mvc/application/services/HistoryService.php:1130
+#: airtime_mvc/application/controllers/LocaleController.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
+#: airtime_mvc/application/models/Block.php:1365
+msgid "Language"
+msgstr "Dil"
+
+#: airtime_mvc/application/services/HistoryService.php:1155
+#: airtime_mvc/application/forms/EditHistoryItem.php:32
+msgid "Start Time"
+msgstr "Başlangıç Saati"
+
+#: airtime_mvc/application/services/HistoryService.php:1156
+#: airtime_mvc/application/forms/EditHistoryItem.php:44
+msgid "End Time"
+msgstr "Bitiş Saati"
+
+#: airtime_mvc/application/services/HistoryService.php:1176
+msgid "Played"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:31
+#: airtime_mvc/application/controllers/PlaylistController.php:147
#, php-format
-msgid "Rebroadcast of %s from %s"
+msgid "%s not found"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:166
-msgid "Length needs to be greater than 0 minutes"
+#: airtime_mvc/application/controllers/LibraryController.php:40
+#: airtime_mvc/application/controllers/PlaylistController.php:168
+msgid "Something went wrong."
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:171
-msgid "Length should be of form \"00h 00m\""
+#: airtime_mvc/application/controllers/LibraryController.php:95
+#: airtime_mvc/application/controllers/ShowbuilderController.php:136
+msgid "Preview"
+msgstr "Ön izleme"
+
+#: airtime_mvc/application/controllers/LibraryController.php:115
+#: airtime_mvc/application/controllers/LibraryController.php:177
+#: airtime_mvc/application/controllers/LibraryController.php:200
+msgid "Add to Playlist"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:184
-msgid "URL should be of form \"http://domain\""
+#: airtime_mvc/application/controllers/LibraryController.php:117
+msgid "Add to Smart Block"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:187
-msgid "URL should be 512 characters or less"
+#: airtime_mvc/application/controllers/LibraryController.php:123
+#: airtime_mvc/application/controllers/LocaleController.php:66
+msgid "Edit Metadata"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:193
-msgid "No MIME type found for webstream."
+#: airtime_mvc/application/controllers/LibraryController.php:131
+#: airtime_mvc/application/controllers/ScheduleController.php:712
+msgid "Download"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:209
-msgid "Webstream name cannot be empty"
+#: airtime_mvc/application/controllers/LibraryController.php:147
+msgid "View track"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:278
-msgid "Could not parse XSPF playlist"
+#: airtime_mvc/application/controllers/LibraryController.php:148
+msgid "Remove track"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:298
-msgid "Could not parse PLS playlist"
+#: airtime_mvc/application/controllers/LibraryController.php:154
+#: airtime_mvc/application/controllers/LibraryController.php:159
+msgid "Upload track"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:318
-msgid "Could not parse M3U playlist"
+#: airtime_mvc/application/controllers/LibraryController.php:169
+msgid "Duplicate Playlist"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:332
-msgid "Invalid webstream - This appears to be a file download."
+#: airtime_mvc/application/controllers/LibraryController.php:213
+msgid "No action available"
msgstr ""
-#: airtime_mvc/application/models/Webstream.php:336
+#: airtime_mvc/application/controllers/LibraryController.php:233
+msgid "You don't have permission to delete selected items."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:279
+msgid "Could not delete file because it is scheduled in the future."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:282
+msgid "Could not delete file(s)."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:322
#, php-format
-msgid "Unrecognized stream type: %s"
+msgid "Copy of %s"
msgstr ""
-#: airtime_mvc/application/models/Preference.php:460
-#, php-format
-msgid "Powered by %s"
+#: airtime_mvc/application/controllers/WebstreamController.php:28
+#: airtime_mvc/application/controllers/WebstreamController.php:32
+msgid "Untitled Webstream"
msgstr ""
-#: airtime_mvc/application/models/Preference.php:588
-msgid "Select Country"
+#: airtime_mvc/application/controllers/WebstreamController.php:150
+msgid "Webstream saved."
msgstr ""
-#: airtime_mvc/application/models/MusicDir.php:160
-#, php-format
-msgid "%s is already watched."
+#: airtime_mvc/application/controllers/WebstreamController.php:158
+msgid "Invalid form values."
msgstr ""
-#: airtime_mvc/application/models/MusicDir.php:164
-#, php-format
-msgid "%s contains nested watched directory: %s"
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:168
-#, php-format
-msgid "%s is nested within existing watched directory: %s"
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:189
-#: airtime_mvc/application/models/MusicDir.php:370
-#, php-format
-msgid "%s is not a valid directory."
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:232
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list"
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:388
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list."
-msgstr ""
-
-#: airtime_mvc/application/models/MusicDir.php:431
-#, php-format
-msgid "%s doesn't exist in the watched list."
-msgstr ""
-
-#: airtime_mvc/application/models/Show.php:184
-msgid "Shows can have a max length of 24 hours."
-msgstr ""
-
-#: airtime_mvc/application/models/Show.php:282
-#: airtime_mvc/application/forms/AddShowWhen.php:156
-msgid "End date/time cannot be in the past"
-msgstr "Bitiş tarihi geçmişte olamaz"
-
-#: airtime_mvc/application/models/Show.php:293
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
msgid ""
-"Cannot schedule overlapping shows.\n"
-"Note: Resizing a repeating show affects all of its repeats."
+"To configure and use the embeddable player you must:
\n"
+" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
+" 2. Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/models/Auth.php:33
-#, php-format
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
msgid ""
-"Hi %s, \n"
-"\n"
-"Please click this link to reset your password: "
+"To use the embeddable weekly schedule widget you must:
\n"
+" Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/models/Auth.php:38
+#: airtime_mvc/application/controllers/ListenerstatController.php:51
+msgid "Please make sure admin user/password is correct on System->Streams page."
+msgstr ""
+
+#: airtime_mvc/application/controllers/UserController.php:86
+msgid "User added successfully!"
+msgstr ""
+
+#: airtime_mvc/application/controllers/UserController.php:88
+msgid "User updated successfully!"
+msgstr ""
+
+#: airtime_mvc/application/controllers/UserController.php:187
+msgid "Settings updated successfully!"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PlaylistController.php:53
#, php-format
-msgid "%s Password Reset"
+msgid "You are viewing an older version of %s"
msgstr ""
-#: airtime_mvc/application/models/Block.php:333
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
-msgid "items"
-msgstr "parça"
-
-#: airtime_mvc/application/models/Block.php:833
-#: airtime_mvc/application/models/Playlist.php:812
-msgid "Cue in and cue out are null."
+#: airtime_mvc/application/controllers/PlaylistController.php:140
+msgid "You cannot add tracks to dynamic blocks."
msgstr ""
-#: airtime_mvc/application/models/Block.php:868
-#: airtime_mvc/application/models/Block.php:924
-#: airtime_mvc/application/models/Playlist.php:851
-#: airtime_mvc/application/models/Playlist.php:895
-msgid "Can't set cue out to be greater than file length."
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:879
-#: airtime_mvc/application/models/Block.php:900
-#: airtime_mvc/application/models/Playlist.php:843
-#: airtime_mvc/application/models/Playlist.php:868
-msgid "Can't set cue in to be larger than cue out."
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:935
-#: airtime_mvc/application/models/Playlist.php:887
-msgid "Can't set cue out to be smaller than cue in."
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1351
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
-msgid "Select criteria"
-msgstr "Kriter seçiniz"
-
-#: airtime_mvc/application/models/Block.php:1353
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
-msgid "Bit Rate (Kbps)"
-msgstr "Bit Oranı (Kbps)"
-
-#: airtime_mvc/application/models/Block.php:1354
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
-#: airtime_mvc/application/controllers/LocaleController.php:80
-msgid "BPM"
-msgstr "BPM"
-
-#: airtime_mvc/application/models/Block.php:1358
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
-#: airtime_mvc/application/controllers/LocaleController.php:281
-#: airtime_mvc/application/layouts/scripts/layout.phtml:140
-msgid "Cue In"
-msgstr "Cue In"
-
-#: airtime_mvc/application/models/Block.php:1359
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:282
-#: airtime_mvc/application/layouts/scripts/layout.phtml:147
-msgid "Cue Out"
-msgstr "Cue Out"
-
-#: airtime_mvc/application/models/Block.php:1361
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
-#: airtime_mvc/application/controllers/LocaleController.php:84
-msgid "Encoded By"
-msgstr "Encode eden"
-
-#: airtime_mvc/application/models/Block.php:1366
-msgid "Upload Time"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1367
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
-#: airtime_mvc/application/controllers/LocaleController.php:89
-msgid "Last Modified"
-msgstr "Son Değiştirilme Zamanı"
-
-#: airtime_mvc/application/models/Block.php:1368
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
-#: airtime_mvc/application/controllers/LocaleController.php:90
-msgid "Last Played"
-msgstr "Son Oynatma Zamanı"
-
-#: airtime_mvc/application/models/Block.php:1370
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
-#: airtime_mvc/application/controllers/LocaleController.php:92
-msgid "Mime"
-msgstr "Mime"
-
-#: airtime_mvc/application/models/Block.php:1372
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
-#: airtime_mvc/application/controllers/LocaleController.php:94
-msgid "Owner"
-msgstr "Sahibi"
-
-#: airtime_mvc/application/models/Block.php:1373
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
-#: airtime_mvc/application/controllers/LocaleController.php:95
-msgid "Replay Gain"
-msgstr "Replay Gain"
-
-#: airtime_mvc/application/models/Block.php:1374
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
-msgid "Sample Rate (kHz)"
-msgstr "Örnekleme Oranı (kHz)"
-
-#: airtime_mvc/application/models/Block.php:1376
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
-#: airtime_mvc/application/controllers/LocaleController.php:97
-msgid "Track Number"
-msgstr "Parça Numarası"
-
-#: airtime_mvc/application/models/Block.php:1377
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
-#: airtime_mvc/application/controllers/LocaleController.php:98
-msgid "Uploaded"
-msgstr "Yüklenme Tarihi"
-
-#: airtime_mvc/application/models/Block.php:1378
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
-#: airtime_mvc/application/controllers/LocaleController.php:99
-msgid "Website"
-msgstr "Website'si"
-
-#: airtime_mvc/application/models/Block.php:1383
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
-#: airtime_mvc/application/controllers/LocaleController.php:151
-msgid "Select modifier"
-msgstr "Değişken seçin"
-
-#: airtime_mvc/application/models/Block.php:1384
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
-#: airtime_mvc/application/controllers/LocaleController.php:152
-msgid "contains"
-msgstr "içersin"
-
-#: airtime_mvc/application/models/Block.php:1385
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
-#: airtime_mvc/application/controllers/LocaleController.php:153
-msgid "does not contain"
-msgstr "içermesin"
-
-#: airtime_mvc/application/models/Block.php:1386
-#: airtime_mvc/application/models/Block.php:1390
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
-#: airtime_mvc/application/controllers/LocaleController.php:154
-msgid "is"
-msgstr "eşittir"
-
-#: airtime_mvc/application/models/Block.php:1387
-#: airtime_mvc/application/models/Block.php:1391
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
-#: airtime_mvc/application/controllers/LocaleController.php:155
-msgid "is not"
-msgstr "eşit değildir"
-
-#: airtime_mvc/application/models/Block.php:1388
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
-#: airtime_mvc/application/controllers/LocaleController.php:156
-msgid "starts with"
-msgstr "ile başlayan"
-
-#: airtime_mvc/application/models/Block.php:1389
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
-#: airtime_mvc/application/controllers/LocaleController.php:157
-msgid "ends with"
-msgstr "ile biten"
-
-#: airtime_mvc/application/models/Block.php:1392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
-#: airtime_mvc/application/controllers/LocaleController.php:158
-msgid "is greater than"
-msgstr "büyüktür"
-
-#: airtime_mvc/application/models/Block.php:1393
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
-#: airtime_mvc/application/controllers/LocaleController.php:159
-msgid "is less than"
-msgstr "küçüktür"
-
-#: airtime_mvc/application/models/Block.php:1394
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
-#: airtime_mvc/application/controllers/LocaleController.php:160
-msgid "is in the range"
-msgstr "aralıkta"
-
-#: airtime_mvc/application/models/Scheduler.php:73
-msgid "Cannot move items out of linked shows"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:119
-msgid "The schedule you're viewing is out of date! (sched mismatch)"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:124
-msgid "The schedule you're viewing is out of date! (instance mismatch)"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:132
-#: airtime_mvc/application/models/Scheduler.php:458
-#: airtime_mvc/application/models/Scheduler.php:490
-msgid "The schedule you're viewing is out of date!"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:142
+#: airtime_mvc/application/controllers/PlaylistController.php:161
#, php-format
-msgid "You are not allowed to schedule show %s."
+msgid "You don't have permission to delete selected %s(s)."
msgstr ""
-#: airtime_mvc/application/models/Scheduler.php:146
-msgid "You cannot add files to recording shows."
+#: airtime_mvc/application/controllers/PlaylistController.php:174
+msgid "You can only add tracks to smart block."
msgstr ""
-#: airtime_mvc/application/models/Scheduler.php:152
+#: airtime_mvc/application/controllers/PlaylistController.php:180
+#: airtime_mvc/application/controllers/LocaleController.php:50
+msgid "You can only add tracks, smart blocks, and webstreams to playlists."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PlaylistController.php:192
+msgid "Untitled Playlist"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PlaylistController.php:194
+msgid "Untitled Smart Block"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PlaylistController.php:522
+msgid "Unknown Playlist"
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:78
+msgid "Page not found."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:87
+msgid "The requested action is not supported."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:98
+msgid "You do not have permission to access this resource."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:109
+msgid "An internal application error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/controllers/Apiv2Controller.php:77
+#: airtime_mvc/application/controllers/ApiController.php:79
+msgid "You are not allowed to access this resource."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:72
+msgid "Preferences updated."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:115
+msgid "Support setting updated."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:123
+msgid "Support Feedback"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:251
+msgid "Stream Setting Updated."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:342
+msgid "path should be specified"
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:437
+msgid "Problem with Liquidsoap..."
+msgstr ""
+
+#: airtime_mvc/application/controllers/PreferenceController.php:493
+msgid "Request method not accepted"
+msgstr ""
+
+#: airtime_mvc/application/controllers/DashboardController.php:35
+#: airtime_mvc/application/controllers/DashboardController.php:84
+msgid "You don't have permission to disconnect source."
+msgstr ""
+
+#: airtime_mvc/application/controllers/DashboardController.php:37
+#: airtime_mvc/application/controllers/DashboardController.php:86
+msgid "There is no source connected to this input."
+msgstr ""
+
+#: airtime_mvc/application/controllers/DashboardController.php:81
+msgid "You don't have permission to switch source."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:43
+msgid "Please enter your username and password."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:93
+msgid "Wrong username or password provided. Please try again."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:167
+msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:173
+msgid "There was a problem with the username or email address you entered."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ApiController.php:244
+#: airtime_mvc/application/controllers/ApiController.php:317
+#: airtime_mvc/application/controllers/ApiController.php:392
+#: airtime_mvc/application/controllers/ApiController.php:435
+#: airtime_mvc/application/controllers/ApiController.php:474
+#: airtime_mvc/application/controllers/ApiController.php:507
+msgid "You are not allowed to access this resource. "
+msgstr ""
+
+#: airtime_mvc/application/controllers/ApiController.php:698
+#: airtime_mvc/application/controllers/ApiController.php:718
+#: airtime_mvc/application/controllers/ApiController.php:730
#, php-format
-msgid "The show %s is over and cannot be scheduled."
+msgid "File does not exist in %s"
msgstr ""
-#: airtime_mvc/application/models/Scheduler.php:159
-#, php-format
-msgid "The show %s has been previously updated!"
+#: airtime_mvc/application/controllers/ApiController.php:781
+msgid "Bad request. no 'mode' parameter passed."
msgstr ""
-#: airtime_mvc/application/models/Scheduler.php:178
-msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:195
-msgid "Cannot schedule a playlist that contains missing files."
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:216
-#: airtime_mvc/application/models/Scheduler.php:305
-msgid "A selected File does not exist!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
-#: airtime_mvc/application/configs/navigation.php:40
-msgid "Weekly Schedule"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
-#: airtime_mvc/application/forms/Player.php:77
-msgid "Preview:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
-#: airtime_mvc/application/configs/navigation.php:34
-msgid "Player"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
-#: airtime_mvc/application/controllers/LocaleController.php:362
-#: airtime_mvc/application/controllers/LocaleController.php:390
-msgid "Close"
-msgstr "Kapat"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Add this show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Update show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
-msgid "What"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
-msgid "When"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
-msgid "Live Stream Input"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
-msgid "Who"
-msgstr "DJ"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
-msgid "Style"
-msgstr "Stil"
-
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
-#: airtime_mvc/application/controllers/LocaleController.php:273
-msgid "Start"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
-msgid "Password Reset"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
-msgid "Email Sent!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
-msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
-msgid "Back"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
-msgid "New password"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
-msgid "Please enter and confirm your new password in the fields below."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:3
-#: airtime_mvc/application/forms/Login.php:83
-msgid "Login"
-msgstr "Giriş yap"
-
-#: airtime_mvc/application/views/scripts/login/index.phtml:7
-#, php-format
-msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:97
-msgid "Playout History"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
-msgid "Log Sheet"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
-msgid "File Summary"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
-msgid "Show Summary"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
-msgid "Your trial expires in"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
-msgid "days"
-msgstr "gün"
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-#, php-format
-msgid "Purchase an %s Pro plan!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-msgid "My Account"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
-msgid "Previous:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
-msgid "Next:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
-msgid "Source Streams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
-msgid "Master Source"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
-msgid "Show Source"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
-msgid "ON AIR"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
-msgid "Listen"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
-msgid "Logout"
-msgstr "Oturumu kapat"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
-msgid "Drop files here or click to browse your computer."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
-#: airtime_mvc/application/controllers/LocaleController.php:314
-msgid "in use"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
-#: airtime_mvc/application/controllers/LocaleController.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:401
-msgid "All"
-msgstr "Tümü"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
-msgid "Failed"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
-msgid "Pending"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
-msgid "Recent Uploads"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
-#: airtime_mvc/application/configs/navigation.php:120
-msgid "Account Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
-msgid "Upgrade today to get more listeners and storage space!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
-msgid "View Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
-msgid "About"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
-#, php-format
-msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
-#, php-format
-msgid "%1$s %2$s is distributed under the %3$s"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
-#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
-msgid "Live stream"
-msgstr "Canlı yayın"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
-msgid "Share"
-msgstr "Paylaş"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
-msgid "Select stream:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
-msgid "mute"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
-msgid "unmute"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
-#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
-#, php-format
-msgid "Welcome to %s!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
-#, php-format
-msgid "Here's how you can get started using %s to automate your broadcasts: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
-msgid "Upload audio tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
-msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
-msgid "Schedule a show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
-msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
-msgid "Add tracks to your show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
-msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
-msgid "Now you're good to go!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
-#, php-format
-msgid "For more detailed help, read the %suser manual%s."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
-msgid "Listeners"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
-msgid "Stream Data Collection Status"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
-#: airtime_mvc/application/views/scripts/error/error.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
-msgid "An error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
-msgid "Access Denied!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
-msgid "You do not have permission to access this page!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
-#: airtime_mvc/application/views/scripts/error/error.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
-#: airtime_mvc/application/configs/navigation.php:143
-msgid "Help"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
-msgid "Page not found!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
-msgid "We couldn't find the page you were looking for."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error.phtml:12
-msgid "Looks like the page you were looking for doesn't exist!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
-msgid "Oops!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
-msgid "Something went wrong!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
-msgid "Bad Request!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
-msgid "The requested action is not supported!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
-msgid "Viewing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
-msgid "Editing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:3
-msgid "File import in progress..."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:10
-#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
-msgid "Advanced Search Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
-#: airtime_mvc/application/forms/Player.php:15
-#: airtime_mvc/application/forms/EditAudioMD.php:24
-msgid "Title:"
-msgstr "Parça Adı:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
-#: airtime_mvc/application/forms/EditAudioMD.php:34
-msgid "Creator:"
-msgstr "Oluşturan:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
-#: airtime_mvc/application/forms/EditAudioMD.php:44
-msgid "Album:"
-msgstr "Albüm:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
-msgid "Track:"
-msgstr "Parça Numarası:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
-msgid "Length:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
-msgid "Sample Rate:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
-msgid "Bit Rate:"
-msgstr "Bit Değeri:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
-#: airtime_mvc/application/forms/EditAudioMD.php:115
-msgid "Mood:"
-msgstr "Ruh Hali:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
-#: airtime_mvc/application/forms/EditAudioMD.php:62
-#: airtime_mvc/application/forms/AddShowWhat.php:45
-msgid "Genre:"
-msgstr "Tür:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
-#: airtime_mvc/application/forms/EditAudioMD.php:72
-msgid "Year:"
-msgstr "Yıl:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
-#: airtime_mvc/application/forms/EditAudioMD.php:85
-msgid "Label:"
-msgstr "Plak Şirketi:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
-#: airtime_mvc/application/forms/EditAudioMD.php:125
-msgid "BPM:"
-msgstr "BPM:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
-#: airtime_mvc/application/forms/EditAudioMD.php:95
-msgid "Composer:"
-msgstr "Besteleyen:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
-#: airtime_mvc/application/forms/EditAudioMD.php:105
-msgid "Conductor:"
-msgstr "Orkestra Şefi:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
-#: airtime_mvc/application/forms/EditAudioMD.php:135
-msgid "Copyright:"
-msgstr "Telif Hakkı:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
-msgid "Isrc Number:"
-msgstr "ISRC No:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
-#: airtime_mvc/application/forms/EditAudioMD.php:155
-msgid "Website:"
-msgstr "Websitesi:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
-#: airtime_mvc/application/forms/EditUser.php:119
-#: airtime_mvc/application/forms/EditAudioMD.php:165
-#: airtime_mvc/application/forms/Login.php:68
-msgid "Language:"
-msgstr "Dil:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
-msgid "File Path:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
-#: airtime_mvc/application/forms/AddShowWhat.php:26
-msgid "Name:"
-msgstr "İsim:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
-#: airtime_mvc/application/forms/AddShowWhat.php:54
-msgid "Description:"
-msgstr "Açıklama:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
-msgid "Web Stream"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
-msgid "Dynamic Smart Block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
-msgid "Static Smart Block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
-msgid "Audio Track"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
-msgid "Playlist Contents: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
-msgid "Static Smart Block Contents: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
-msgid "Dynamic Smart Block Criteria: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
-msgid "Limit to "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
-#: airtime_mvc/application/forms/AddShowWhat.php:36
-msgid "URL:"
-msgstr "URL"
-
-#: airtime_mvc/application/views/scripts/form/login.phtml:41
-msgid "Forgot your password?"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
-#, php-format
-msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
-#, php-format
-msgid "Click the box below to promote your station on %s."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
-msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
-msgid "(Required)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
-msgid "(for verification purposes only, will not be published)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
-msgid "Choose folder"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
-msgid "Set"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
-msgid "Current Import Folder:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
-msgid "Add"
-msgstr "Ekle"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
-#, php-format
-msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
-msgid "Remove watched directory"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
-msgid "You are not watching any media folders."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
-msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
-msgid "Live Broadcasting"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
-msgid "Use these settings in your broadcasting software to stream live at any time."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
-msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
-msgid "Choose Show Instance"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
-#: airtime_mvc/application/forms/EditHistoryItem.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:400
-msgid "No Show"
-msgstr "Show Yok"
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
-msgid "Find"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
-msgid "Choose Days:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
-#: airtime_mvc/application/forms/AddShowStyle.php:64
-#: airtime_mvc/application/forms/GeneralPreferences.php:53
-msgid "Remove"
-msgstr "Kaldır"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
-msgid "Stream "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
-msgid "Additional Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
-msgid "The following info will be displayed to listeners in their media player:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
-msgid "(Your radio station website)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
-msgid "Stream URL: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
-msgid "Find Shows"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
-msgid "TuneIn Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
-msgid "SoundCloud Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
-msgid "Dangerous Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
-msgid "Search Criteria:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
-msgid "New Criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
-msgid "or"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
-msgid "and"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
-msgid "New Modifier"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
-msgid " to "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
-msgid "files meet the criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
-msgid "file meets the criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
-msgid "Filter History"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
-#: airtime_mvc/application/configs/navigation.php:61
-msgid "My Profile"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
-#, php-format
-msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
-#: airtime_mvc/application/forms/Preferences.php:40
-#: airtime_mvc/application/forms/PasswordChange.php:43
-#: airtime_mvc/application/forms/AddUser.php:110
-#: airtime_mvc/application/forms/BillingClient.php:193
-#: airtime_mvc/application/forms/SupportSettings.php:131
-#: airtime_mvc/application/forms/EditHistory.php:131
-#: airtime_mvc/application/controllers/LocaleController.php:294
-msgid "Save"
-msgstr "Kaydet"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
-msgid "Repeat Days:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
-msgid "Register Airtime"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
-#: airtime_mvc/application/forms/GeneralPreferences.php:43
-msgid "Note: Anything larger than 600x600 will be resized."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
-msgid "Show me what I am sending "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
-msgid "Terms and Conditions"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
-msgid "Creating File Summary Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
-msgid "Creating Log Sheet Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
-msgid "Name"
-msgstr "İsim"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
-msgid "Add more elements"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
-msgid "Add New Field"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
-msgid "Set Default Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
-msgid "Playout History Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
-msgid "Log Sheet Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
-msgid "New Log Sheet Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
-msgid "No Log Sheet Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
-#: airtime_mvc/application/controllers/LocaleController.php:397
-msgid "Set Default"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
-msgid "File Summary Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
-msgid "New File Summary Template"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
-msgid "No File Summary Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
-msgid "Disk Space"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
-#: airtime_mvc/application/controllers/LocaleController.php:315
-msgid "Disk"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
-#: airtime_mvc/application/forms/AddShowWhen.php:89
-msgid "Duration:"
-msgstr "Uzunluğu:"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
-msgid "Toggle Details"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
-msgid "Playlist crossfade"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-msgid "Remove all content from this smart block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Clear"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "Fade in: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "(ss.t)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-msgid "Fade out: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
-#: airtime_mvc/application/forms/EditAudioMD.php:186
-#: airtime_mvc/application/forms/EditHistory.php:141
-#: airtime_mvc/application/controllers/LocaleController.php:295
-#: airtime_mvc/application/controllers/LocaleController.php:318
-msgid "Cancel"
-msgstr "İptal"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
-msgid "No smart block currently open"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
-msgid "Show Waveform"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-msgid "Cue In: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "(hh:mm:ss.t)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "Cue Out: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
-msgid "Original Length:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
-msgid "Expand Static Block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
-msgid "Expand Dynamic Block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
-msgid "Choose some search criteria above and click Generate to create this playlist."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
-msgid "A track list will be generated when you schedule this smart block into a show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
-msgid "Drag tracks here from your library to add them to the playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-msgid "Shuffle playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
-msgid "Shuffle"
-msgstr "Karıştır"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Empty playlist content"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-msgid "Save playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
-msgid "No open playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
-msgid "previous"
-msgstr "önceki"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
-msgid "play"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
-msgid "pause"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
-msgid "next"
-msgstr "sonraki"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
-msgid "stop"
-msgstr "Durdur"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
-msgid "max volume"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
-msgid "Update Required"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
-#, php-format
-msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
-msgid "Stream Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
-msgid "Global"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
-msgid "dB"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
-msgid "Output Streams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
-#: airtime_mvc/application/controllers/LocaleController.php:166
-msgid "Manage Media Folders"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:56
-msgid "General"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
-msgid "Description"
-msgstr "Tanım"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
-msgid "Stream URL:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
-msgid "Default Length:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
-msgid "No webstream"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
-msgid "Manage Users"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
-msgid "New User"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
-msgid "id"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
-#: airtime_mvc/application/forms/PasswordRestore.php:25
-msgid "Username"
-msgstr "Kullanıcı adı"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
-msgid "First Name"
-msgstr "İsim"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
-msgid "Last Name"
-msgstr "Soyisim"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
-msgid "User Type"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
-#, php-format
-msgid "Super Admin details can be changed in your Billing Settings."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
-#: airtime_mvc/application/controllers/LocaleController.php:74
-#: airtime_mvc/application/layouts/scripts/layout.phtml:78
-msgid "Tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
-#: airtime_mvc/application/controllers/LocaleController.php:104
-#: airtime_mvc/application/layouts/scripts/layout.phtml:80
-msgid "Playlists"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
-#: airtime_mvc/application/controllers/LocaleController.php:105
-#: airtime_mvc/application/layouts/scripts/layout.phtml:82
-msgid "Smart Blocks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
-#: airtime_mvc/application/layouts/scripts/layout.phtml:84
-msgid "Webstreams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
-#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
-#: airtime_mvc/application/layouts/scripts/layout.phtml:76
-msgid "Dashboard"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:12
-msgid "Radio Page"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:19
-msgid "Calendar"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:26
-msgid "Widgets"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:48
-msgid "Settings"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:67
-msgid "Users"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:74
-msgid "Streams"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:82
-msgid "Analytics"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:90
-msgid "Listener Stats"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:104
-msgid "History Templates"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:113
-msgid "Billing"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:127
-msgid "Account Details"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:134
-msgid "View Invoices"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:150
-msgid "Getting Started"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:157
-msgid "FAQ"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:162
-msgid "User Manual"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:167
-msgid "File a Support Ticket"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:12
-msgid "Background Colour:"
-msgstr "Arkaplan Rengi"
-
-#: airtime_mvc/application/forms/AddShowStyle.php:31
-msgid "Text Colour:"
-msgstr "Metin Rengi:"
-
-#: airtime_mvc/application/forms/AddShowStyle.php:49
-msgid "Current Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:72
-msgid "Show Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:87
-msgid "Logo Preview:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:19
-msgid "Push metadata to your station on TuneIn?"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:24
-msgid "Station ID:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:30
-msgid "Partner Key:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:36
-msgid "Partner Id:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:77
-#: airtime_mvc/application/forms/TuneInPreferences.php:86
-msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:14
-msgid "Now Playing"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:25
-msgid "Select Stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:28
-msgid "Auto detect the most appropriate stream to use."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:29
-msgid "Select a stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:41
-msgid " - Mobile friendly"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:45
-msgid " - The player does not support Opus streams."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:71
-msgid "Embeddable code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:72
-msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:37
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
-#: airtime_mvc/application/forms/Login.php:41
-#: airtime_mvc/application/forms/AddUser.php:29
-msgid "Username:"
-msgstr "Kullanıcı Adı:"
-
-#: airtime_mvc/application/forms/EditUser.php:48
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
-#: airtime_mvc/application/forms/Login.php:54
-#: airtime_mvc/application/forms/AddUser.php:38
-#: airtime_mvc/application/forms/BillingClient.php:172
-msgid "Password:"
-msgstr "Şifre:"
-
-#: airtime_mvc/application/forms/EditUser.php:57
-#: airtime_mvc/application/forms/AddUser.php:46
-#: airtime_mvc/application/forms/BillingClient.php:181
-msgid "Verify Password:"
-msgstr "Şifre Onayı:"
-
-#: airtime_mvc/application/forms/EditUser.php:67
-#: airtime_mvc/application/forms/AddUser.php:55
-msgid "Firstname:"
-msgstr "İsim:"
-
-#: airtime_mvc/application/forms/EditUser.php:75
-#: airtime_mvc/application/forms/AddUser.php:61
-msgid "Lastname:"
-msgstr "Soyisim:"
-
-#: airtime_mvc/application/forms/EditUser.php:83
-#: airtime_mvc/application/forms/RegisterAirtime.php:51
-#: airtime_mvc/application/forms/AddUser.php:67
-#: airtime_mvc/application/forms/SupportSettings.php:43
-msgid "Email:"
-msgstr "Eposta:"
-
-#: airtime_mvc/application/forms/EditUser.php:94
-#: airtime_mvc/application/forms/AddUser.php:76
-msgid "Mobile Phone:"
-msgstr "Cep Telefonu:"
-
-#: airtime_mvc/application/forms/EditUser.php:102
-#: airtime_mvc/application/forms/AddUser.php:82
-msgid "Skype:"
-msgstr "Skype:"
-
-#: airtime_mvc/application/forms/EditUser.php:110
-#: airtime_mvc/application/forms/AddUser.php:88
-msgid "Jabber:"
-msgstr "Jabber:"
-
-#: airtime_mvc/application/forms/EditUser.php:129
-msgid "Interface Timezone:"
-msgstr "Arayüz Zaman Dilimi"
-
-#: airtime_mvc/application/forms/EditUser.php:155
-#: airtime_mvc/application/forms/AddUser.php:120
-msgid "Login name is not unique."
-msgstr "Kullanıcı adı eşsiz değil."
-
-#: airtime_mvc/application/forms/AddShowRR.php:10
-msgid "Record from Line In?"
-msgstr "Line In'den Kaydet?"
-
-#: airtime_mvc/application/forms/AddShowRR.php:16
-msgid "Rebroadcast?"
-msgstr "Tekrar yayınla?"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:16
-msgid "'%value%' does not fit the time format 'HH:mm'"
-msgstr "'%value%' değeri 'HH:mm' saat formatına uymuyor"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:22
-msgid "Start Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:37
-msgid "In the Future:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:64
-msgid "End Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:98
-msgid "Timezone:"
-msgstr "Zaman Dilimi:"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:107
-msgid "Repeats?"
-msgstr "Tekrar Ediyor mu?"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:139
-msgid "Cannot create show in the past"
-msgstr "Geçmiş tarihli bir show oluşturamazsınız"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:147
-msgid "Cannot modify start date/time of the show that is already started"
-msgstr "Başlamış olan bir yayının tarih/saat bilgilerini değiştiremezsiniz"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:164
-msgid "Cannot have duration < 0m"
-msgstr "Uzunluk < 0dk'dan kısa olamaz"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:168
-msgid "Cannot have duration 00h 00m"
-msgstr "00s 00dk Uzunluk olamaz"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:175
-msgid "Cannot have duration greater than 24h"
-msgstr "Yayın süresi 24 saati geçemez"
-
-#: airtime_mvc/application/forms/AddShowWho.php:10
-msgid "Search Users:"
-msgstr "Kullanıcıları Ara:"
-
-#: airtime_mvc/application/forms/AddShowWho.php:24
-msgid "DJs:"
-msgstr "DJ'ler:"
-
-#: airtime_mvc/application/forms/PasswordChange.php:17
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
-msgid "Password"
-msgstr "Şifre"
-
-#: airtime_mvc/application/forms/PasswordChange.php:28
-msgid "Confirm new password"
-msgstr "Yeni şifreyi onayla"
-
-#: airtime_mvc/application/forms/PasswordChange.php:36
-msgid "Password confirmation does not match your password."
-msgstr "Onay şifresiyle şifreniz aynı değil."
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
-msgid "Station Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
-#: airtime_mvc/application/forms/GeneralPreferences.php:127
-msgid "Station Timezone"
-msgstr "Radyo Saat Dilimi"
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
-msgid "Auto Switch Off:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
-msgid "Auto Switch On:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
-msgid "Switch Transition Fade (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
-#: airtime_mvc/application/forms/GeneralPreferences.php:68
-#: airtime_mvc/application/forms/GeneralPreferences.php:82
-#: airtime_mvc/application/forms/GeneralPreferences.php:96
-msgid "Please enter a time in seconds (eg. 0.5)"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
-#: airtime_mvc/application/forms/AddShowLiveStream.php:48
-msgid "Host:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
-#: airtime_mvc/application/forms/AddShowLiveStream.php:54
-msgid "Port:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
-#: airtime_mvc/application/forms/AddShowLiveStream.php:60
-msgid "Mount:"
-msgstr ""
-
-#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
-msgid "Value is required and can't be empty"
-msgstr "Değer gerekli ve boş bırakılamaz"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:25
-#: airtime_mvc/application/forms/RegisterAirtime.php:30
-#: airtime_mvc/application/forms/SupportSettings.php:18
-msgid "Station Name"
-msgstr "Radyo Adı"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:33
-msgid "Station Description"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:42
-#: airtime_mvc/application/forms/RegisterAirtime.php:106
-msgid "Station Logo:"
-msgstr "Radyo Logosu:"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:62
-msgid "Default Crossfade Duration (s):"
-msgstr "Varsayılan Çarpraz Geçiş Süresi:"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:76
-msgid "Default Fade In (s):"
-msgstr "Varsayılan Fade In geçişi (s)"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:90
-msgid "Default Fade Out (s):"
-msgstr "Varsayılan Fade Out geçişi (s)"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:102
-msgid "Public Airtime API"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:103
-msgid "Required for embeddable schedule widget."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:105
-msgid "Disabled"
-msgstr "Devre dışı"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:106
-msgid "Enabled"
-msgstr "Aktif"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:109
-msgid ""
-"Enabling this feature will allow Airtime to provide schedule data\n"
-" to external widgets that can be embedded in your website."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:120
-msgid "Default Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:134
-msgid "Week Starts On"
-msgstr "Hafta Başlangıcı"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:150
-msgid "Display login button on your Radio Page?"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:158
-#: airtime_mvc/application/controllers/LocaleController.php:249
-msgid "Sunday"
-msgstr "Pazar"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:159
-#: airtime_mvc/application/controllers/LocaleController.php:250
-msgid "Monday"
-msgstr "Pazartesi"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:160
-#: airtime_mvc/application/controllers/LocaleController.php:251
-msgid "Tuesday"
-msgstr "Salı"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:161
-#: airtime_mvc/application/controllers/LocaleController.php:252
-msgid "Wednesday"
-msgstr "Çarşamba"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:162
-#: airtime_mvc/application/controllers/LocaleController.php:253
-msgid "Thursday"
-msgstr "Perşembe"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:163
-#: airtime_mvc/application/controllers/LocaleController.php:254
-msgid "Friday"
-msgstr "Cuma"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:164
-#: airtime_mvc/application/controllers/LocaleController.php:255
-msgid "Saturday"
-msgstr "Cumartesi"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
-msgid "Default License:"
-msgstr "Varsayılan Lisans Türü:"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
-msgid "All rights are reserved"
-msgstr "Tüm Hakları Saklıdır"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
-msgid "The work is in the public domain"
-msgstr "Eser halka açık olarak kayıtlı"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
-msgid "Creative Commons Attribution"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
-msgid "Creative Commons Attribution Noncommercial"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
-msgid "Creative Commons Attribution No Derivative Works"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
-msgid "Creative Commons Attribution Share Alike"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
-msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
-msgid "Creative Commons Attribution Noncommercial Share Alike"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
-msgid "Default Sharing Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
-msgid "Public"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
-msgid "Private"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:18
-#: airtime_mvc/application/forms/DateRange.php:16
-msgid "Date Start:"
-msgstr "Tarih Başlangıcı:"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:37
-#: airtime_mvc/application/forms/ShowBuilder.php:65
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
-#: airtime_mvc/application/forms/DateRange.php:35
-#: airtime_mvc/application/forms/DateRange.php:63
-msgid "Invalid character entered"
-msgstr "Yanlış karakter girdiniz"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:46
-#: airtime_mvc/application/forms/AddShowRepeats.php:56
-#: airtime_mvc/application/forms/DateRange.php:44
-msgid "Date End:"
-msgstr "Tarih Bitişi:"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:72
-#: airtime_mvc/application/forms/ShowBuilder.php:88
-msgid "Filter by Show"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:80
-msgid "All My Shows:"
-msgstr "Tüm Show'larım:"
-
-#: airtime_mvc/application/forms/EditAudioMD.php:145
-msgid "ISRC Number:"
-msgstr "ISRC No:"
-
-#: airtime_mvc/application/forms/EditAudioMD.php:176
-msgid "OK"
-msgstr "OK"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
-msgid "Day must be specified"
-msgstr "Günü belirtmelisiniz"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
-msgid "Time must be specified"
-msgstr "Zamanı belirtmelisiniz"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
-msgid "Must wait at least 1 hour to rebroadcast"
-msgstr "Tekrar yayın yapmak için en az bir saat bekleyiniz"
-
-#: airtime_mvc/application/forms/AddShowWhat.php:30
-msgid "Untitled Show"
-msgstr "İsimsiz Show"
-
-#: airtime_mvc/application/forms/AddShowWhat.php:69
-msgid "Instance Description:"
-msgstr ""
-
-#: airtime_mvc/application/forms/DangerousPreferences.php:12
-msgid "Delete All Tracks in Library"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:39
-#: airtime_mvc/application/forms/SupportSettings.php:31
-msgid "Phone:"
-msgstr "Telefon:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:62
-#: airtime_mvc/application/forms/SupportSettings.php:54
-msgid "Station Web Site:"
-msgstr "Radyo Web Sitesi:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:73
-#: airtime_mvc/application/forms/BillingClient.php:102
-#: airtime_mvc/application/forms/SupportSettings.php:65
-msgid "Country:"
-msgstr "Ülke:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:84
-#: airtime_mvc/application/forms/BillingClient.php:70
-#: airtime_mvc/application/forms/SupportSettings.php:76
-msgid "City:"
-msgstr "Şehir:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:96
-#: airtime_mvc/application/forms/SupportSettings.php:88
-msgid "Station Description:"
-msgstr "Radyo Tanımı:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:116
-#: airtime_mvc/application/forms/SupportSettings.php:98
-#: airtime_mvc/application/controllers/LocaleController.php:341
-msgid "Send support feedback"
-msgstr "Destek Geribildirimi gönder"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:126
-#: airtime_mvc/application/forms/SupportSettings.php:108
-#, php-format
-msgid "Promote my station on %s"
-msgstr "Radyomu %s'da tanıt"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:151
-#: airtime_mvc/application/forms/SupportSettings.php:120
-#, php-format
-msgid "By checking this box, I agree to %s's %sprivacy policy%s."
-msgstr "Bu kutuyu işaretleyerek %s'un %sgizlilik politikası%s'nı onaylıyorum"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:169
-#: airtime_mvc/application/forms/SupportSettings.php:143
-msgid "You have to agree to privacy policy."
-msgstr "Gizlilik politikasını kabul etmeniz gerekmektedir."
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:10
-msgid "Link:"
-msgstr "Birbirine Bağla:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:16
-msgid "Repeat Type:"
-msgstr "Tekrar Türü:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:19
-msgid "weekly"
-msgstr "haftalık"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:20
-msgid "every 2 weeks"
-msgstr "2 haftada bir"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:21
-msgid "every 3 weeks"
-msgstr "3 haftada bir"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:22
-msgid "every 4 weeks"
-msgstr "4 haftada bir"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:23
-msgid "monthly"
-msgstr "aylık"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:32
-msgid "Select Days:"
-msgstr "Günleri Seçin:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:35
-#: airtime_mvc/application/controllers/LocaleController.php:256
-msgid "Sun"
-msgstr "Paz"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:36
-#: airtime_mvc/application/controllers/LocaleController.php:257
-msgid "Mon"
-msgstr "Pzt"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:37
-#: airtime_mvc/application/controllers/LocaleController.php:258
-msgid "Tue"
-msgstr "Sal"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:38
-#: airtime_mvc/application/controllers/LocaleController.php:259
-msgid "Wed"
-msgstr "Çar"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:39
-#: airtime_mvc/application/controllers/LocaleController.php:260
-msgid "Thu"
-msgstr "Per"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:40
-#: airtime_mvc/application/controllers/LocaleController.php:261
-msgid "Fri"
-msgstr "Cum"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:41
-#: airtime_mvc/application/controllers/LocaleController.php:262
-msgid "Sat"
-msgstr "Cmt"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:47
-msgid "Repeat By:"
-msgstr "Şuna göre tekrar et:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the month"
-msgstr "Ayın günü"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the week"
-msgstr "Haftanın günü"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:69
-msgid "No End?"
-msgstr "Sonu yok?"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:106
-msgid "End date must be after start date"
-msgstr "Bitiş tarihi başlangıç tarihinden sonra olmalı"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:113
-msgid "Please select a repeat day"
-msgstr "Lütfen tekrar edilmesini istediğiniz günleri seçiniz"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:10
-#, php-format
-msgid "Use %s Authentication:"
-msgstr "%s Kimlik Doğrulamasını Kullan"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:16
-msgid "Use Custom Authentication:"
-msgstr "Özel Kimlik Doğrulama Kullan"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:25
-msgid "Custom Username"
-msgstr "Özel Kullanıcı Adı"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:37
-msgid "Custom Password"
-msgstr "Özel Şifre"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:77
-msgid "Username field cannot be empty."
-msgstr "Kullanıcı adı kısmı boş bırakılamaz."
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:82
-msgid "Password field cannot be empty."
-msgstr "Şifre kısmı boş bırakılamaz."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
-msgid "Enabled:"
-msgstr "Etkin:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
-msgid "Mobile:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
-msgid "Stream Type:"
-msgstr "Yayın Türü:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
-msgid "Service Type:"
-msgstr "Servis Türü:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
-msgid "Channels:"
-msgstr "Kanallar:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "1 - Mono"
-msgstr "1 - Mono"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "2 - Stereo"
-msgstr "2 - Stereo"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
-msgid "Server"
-msgstr "Sunucu"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
-msgid "Port"
-msgstr "Port"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
-msgid "Only numbers are allowed."
-msgstr "Sadece rakam girebilirsiniz."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
-msgid "URL"
-msgstr "URL"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
-msgid "Mount Point"
-msgstr "Bağlama Noktası"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
-msgid "Admin User"
-msgstr "Yönetici Hesabı"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
-msgid "Admin Password"
-msgstr "Yönetici Şifresi"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
-#: airtime_mvc/application/controllers/LocaleController.php:173
-msgid "Getting information from the server..."
-msgstr "Sunucudan bilgiler getiriliyor..."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
-msgid "Server cannot be empty."
-msgstr "Sunucu değeri boş bırakılamaz."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
-msgid "Port cannot be empty."
-msgstr "Port değeri boş bırakılamaz."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
-msgid "Mount cannot be empty with Icecast server."
-msgstr "Icecast sunucusunu Bağlama noktası değeri boş olarak kullanamazsınız."
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
-msgid "'%value%' is no valid email address in the basic format local-part@hostname"
-msgstr "'%value%' kullanici@site.com yapısına uymayan geçersiz bir adres"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
-msgid "'%value%' does not fit the date format '%format%'"
-msgstr "'%value%' değeri '%format%' zaman formatına uymuyor"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
-msgid "'%value%' is less than %min% characters long"
-msgstr "'%value%' değeri olması gereken '%min%' karakterden daha az"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
-msgid "'%value%' is more than %max% characters long"
-msgstr "'%value%' değeri olması gereken '%max%' karakterden daha fazla"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
-msgid "'%value%' is not between '%min%' and '%max%', inclusively"
-msgstr "'%value%' değeri '%min%' ve '%max%' değerleri arasında değil"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
-msgid "Passwords do not match"
-msgstr "Girdiğiniz şifreler örtüşmüyor."
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
-msgid "hours"
-msgstr "saat"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
-msgid "minutes"
-msgstr "dakika"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
-msgid "Randomly"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
-msgid "Newest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
-msgid "Oldest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
-msgid "Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
-msgid "Static"
-msgstr "Sabit"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
-msgid "Dynamic"
-msgstr "Dinamik"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
-msgid "Allow Repeated Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
-msgid "Sort Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
-msgid "Limit to:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
-msgid "Generate playlist content and save criteria"
-msgstr "Çalma listesi içeriği oluştur ve kriterleri kaydet"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
-msgid "Generate"
-msgstr "Oluştur"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
-msgid "Shuffle playlist content"
-msgstr "Çalma listesi içeriğini karıştır"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
-msgid "Limit cannot be empty or smaller than 0"
-msgstr "Sınırlama boş veya 0'dan küçük olamaz"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
-msgid "Limit cannot be more than 24 hrs"
-msgstr "Sınırlama 24 saati geçemez"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
-msgid "The value should be an integer"
-msgstr "Değer tamsayı olmalıdır"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
-msgid "500 is the max item limit value you can set"
-msgstr "Ayarlayabileceğiniz azami parça sınırı 500'dür"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
-msgid "You must select Criteria and Modifier"
-msgstr "Kriter ve Değişken seçin"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
-msgid "'Length' should be in '00:00:00' format"
-msgstr "Uzunluk '00:00:00' türünde olmalıdır"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
-msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)"
-msgstr "Değer saat biçiminde girilmelidir (eör. 0000-00-00 veya 0000-00-00 00:00:00)"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:594
-msgid "The value has to be numeric"
-msgstr "Değer rakam cinsinden girilmelidir"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
-msgid "The value should be less then 2147483648"
-msgstr "Değer 2147483648'den küçük olmalıdır"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
-#, php-format
-msgid "The value should be less than %s characters"
-msgstr "Değer %s karakter'den az olmalıdır"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
-msgid "Value cannot be empty"
-msgstr "Değer boş bırakılamaz"
-
-#: airtime_mvc/application/forms/Login.php:102
-msgid "Type the characters you see in the picture below."
-msgstr "Aşağıdaki resimde gördüğünüz karakterleri girin."
-
-#: airtime_mvc/application/forms/StreamSetting.php:26
-msgid "Icecast Vorbis Metadata"
-msgstr "Icecast Vorbis Metadata"
-
-#: airtime_mvc/application/forms/StreamSetting.php:36
-msgid "Stream Label:"
-msgstr "Yayın Etiketi:"
-
-#: airtime_mvc/application/forms/StreamSetting.php:37
-msgid "Artist - Title"
-msgstr "Şarkıcı - Parça Adı"
-
-#: airtime_mvc/application/forms/StreamSetting.php:38
-msgid "Show - Artist - Title"
-msgstr "Show - Şarkıcı - Parça Adı"
-
-#: airtime_mvc/application/forms/StreamSetting.php:39
-msgid "Station name - Show name"
-msgstr "Radyo adı - Show adı"
-
-#: airtime_mvc/application/forms/StreamSetting.php:45
-msgid "Off Air Metadata"
-msgstr "Yayın Dışında Gösterilecek Etiket"
-
-#: airtime_mvc/application/forms/StreamSetting.php:51
-msgid "Enable Replay Gain"
-msgstr "ReplayGain'i aktif et"
-
-#: airtime_mvc/application/forms/StreamSetting.php:57
-msgid "Replay Gain Modifier"
-msgstr "ReplayGain Değeri"
-
-#: airtime_mvc/application/forms/StreamSetting.php:65
-msgid "Streaming Server:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Airtime Pro Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Custom / 3rd Party Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:95
-msgid "User Type:"
-msgstr "Kullanıcı Tipi:"
-
-#: airtime_mvc/application/forms/AddUser.php:99
-#: airtime_mvc/application/controllers/LocaleController.php:324
-msgid "Guest"
-msgstr "Ziyaretçi"
-
-#: airtime_mvc/application/forms/AddUser.php:100
-#: airtime_mvc/application/controllers/LocaleController.php:322
-msgid "DJ"
-msgstr "DJ"
-
-#: airtime_mvc/application/forms/AddUser.php:101
-#: airtime_mvc/application/controllers/LocaleController.php:323
-msgid "Program Manager"
-msgstr "Program Yöneticisi"
-
-#: airtime_mvc/application/forms/AddUser.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:321
-msgid "Admin"
-msgstr "Yönetici (Admin)"
-
-#: airtime_mvc/application/forms/BillingClient.php:17
-msgid "First Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:26
-msgid "Last Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:35
-msgid "Company Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:44
-msgid "Email Address:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:54
-msgid "Address 1:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:63
-msgid "Address 2:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:80
-msgid "State/Region:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:89
-msgid "Zip Code / Postal Code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:112
-msgid "Phone Number:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:121
-msgid "Please choose a security question:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:126
-msgid "What is the name of your favorite childhood friend?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:127
-msgid "What school did you attend for sixth grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:128
-msgid "In what city did you meet your spouse/significant other?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:129
-msgid "What street did you live on in third grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:130
-msgid "What is the first name of the boy or girl that you first kissed?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:131
-msgid "In what city or town was your first job?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:135
-msgid "Please enter an answer:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:152
-msgid "VAT/Tax ID (EU only)"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:162
-msgid "Subscribe to Sourcefabric newsletter"
-msgstr ""
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
-msgid "Import Folder:"
-msgstr "İçe Aktarım Klasörü"
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
-msgid "Watched Folders:"
-msgstr "İzlenen Klasörler:"
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
-msgid "Not a valid Directory"
-msgstr "Geçerli bir Klasör değil."
-
-#: airtime_mvc/application/forms/PasswordRestore.php:14
-msgid "Email"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordRestore.php:36
-msgid "Reset password"
-msgstr "Parolayı değiştir"
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
-msgid "Plan type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
-msgid "Billing cycle:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
-msgid "Payment method:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
-msgid "PayPal"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
-msgid "Credit Card via 2Checkout"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:213
-#, php-format
-msgid "The year %s must be within the range of 1753 - 9999"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:216
-#, php-format
-msgid "%s-%s-%s is not a valid date"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:240
-#, php-format
-msgid "%s:%s:%s is not a valid time"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:55
-msgid "Upload some tracks below to add them to your library!"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:57
-#, php-format
-msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:63
-msgid "Click the 'New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:65
-#, php-format
-msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:73
-msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:75
-#, php-format
-msgid ""
-"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
-" %sCreate an unlinked show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:80
-msgid "To start broadcasting, click on the current show and select 'Schedule Show'"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:82
-#, php-format
-msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:89
-msgid "Click on the show starting next and select 'Schedule Show'"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:91
-#, php-format
-msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+#: airtime_mvc/application/controllers/ApiController.php:791
+msgid "Bad request. 'mode' parameter is invalid"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:30
@@ -2906,11 +559,6 @@ msgstr ""
msgid "You can only add tracks to smart blocks."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:50
-#: airtime_mvc/application/controllers/PlaylistController.php:180
-msgid "You can only add tracks, smart blocks, and webstreams to playlists."
-msgstr ""
-
#: airtime_mvc/application/controllers/LocaleController.php:53
msgid "Please select a cursor position on timeline."
msgstr ""
@@ -2951,11 +599,6 @@ msgstr ""
msgid "Click 'New' to create one."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:66
-#: airtime_mvc/application/controllers/LibraryController.php:123
-msgid "Edit Metadata"
-msgstr ""
-
#: airtime_mvc/application/controllers/LocaleController.php:67
msgid "Add to selected show"
msgstr ""
@@ -2984,6 +627,12 @@ msgstr ""
msgid "Scheduled"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:74
+#: airtime_mvc/application/layouts/scripts/layout.phtml:78
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
+msgid "Tracks"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:75
#: airtime_mvc/application/layouts/scripts/layout.phtml:60
msgid "Playlist"
@@ -2993,18 +642,96 @@ msgstr ""
msgid "Bit Rate"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:80
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
+#: airtime_mvc/application/models/Block.php:1354
+msgid "BPM"
+msgstr "BPM"
+
+#: airtime_mvc/application/controllers/LocaleController.php:84
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
+#: airtime_mvc/application/models/Block.php:1361
+msgid "Encoded By"
+msgstr "Encode eden"
+
+#: airtime_mvc/application/controllers/LocaleController.php:89
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
+#: airtime_mvc/application/models/Block.php:1367
+msgid "Last Modified"
+msgstr "Son Değiştirilme Zamanı"
+
+#: airtime_mvc/application/controllers/LocaleController.php:90
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
+#: airtime_mvc/application/models/Block.php:1368
+msgid "Last Played"
+msgstr "Son Oynatma Zamanı"
+
+#: airtime_mvc/application/controllers/LocaleController.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
+#: airtime_mvc/application/models/Block.php:1370
+msgid "Mime"
+msgstr "Mime"
+
+#: airtime_mvc/application/controllers/LocaleController.php:94
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
+#: airtime_mvc/application/models/Block.php:1372
+msgid "Owner"
+msgstr "Sahibi"
+
+#: airtime_mvc/application/controllers/LocaleController.php:95
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
+#: airtime_mvc/application/models/Block.php:1373
+msgid "Replay Gain"
+msgstr "Replay Gain"
+
#: airtime_mvc/application/controllers/LocaleController.php:96
msgid "Sample Rate"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:97
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
+#: airtime_mvc/application/models/Block.php:1376
+msgid "Track Number"
+msgstr "Parça Numarası"
+
+#: airtime_mvc/application/controllers/LocaleController.php:98
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
+#: airtime_mvc/application/models/Block.php:1377
+msgid "Uploaded"
+msgstr "Yüklenme Tarihi"
+
+#: airtime_mvc/application/controllers/LocaleController.php:99
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
+#: airtime_mvc/application/models/Block.php:1378
+msgid "Website"
+msgstr "Website'si"
+
#: airtime_mvc/application/controllers/LocaleController.php:101
msgid "Loading..."
msgstr "Yükleniyor..."
+#: airtime_mvc/application/controllers/LocaleController.php:102
+#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
+msgid "All"
+msgstr "Tümü"
+
#: airtime_mvc/application/controllers/LocaleController.php:103
msgid "Files"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:104
+#: airtime_mvc/application/layouts/scripts/layout.phtml:80
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
+msgid "Playlists"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:105
+#: airtime_mvc/application/layouts/scripts/layout.phtml:82
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
+msgid "Smart Blocks"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:106
msgid "Web Streams"
msgstr ""
@@ -3149,6 +876,74 @@ msgstr ""
msgid "Processing..."
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:151
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
+#: airtime_mvc/application/models/Block.php:1383
+msgid "Select modifier"
+msgstr "Değişken seçin"
+
+#: airtime_mvc/application/controllers/LocaleController.php:152
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
+#: airtime_mvc/application/models/Block.php:1384
+msgid "contains"
+msgstr "içersin"
+
+#: airtime_mvc/application/controllers/LocaleController.php:153
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
+#: airtime_mvc/application/models/Block.php:1385
+msgid "does not contain"
+msgstr "içermesin"
+
+#: airtime_mvc/application/controllers/LocaleController.php:154
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
+#: airtime_mvc/application/models/Block.php:1386
+#: airtime_mvc/application/models/Block.php:1390
+msgid "is"
+msgstr "eşittir"
+
+#: airtime_mvc/application/controllers/LocaleController.php:155
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
+#: airtime_mvc/application/models/Block.php:1387
+#: airtime_mvc/application/models/Block.php:1391
+msgid "is not"
+msgstr "eşit değildir"
+
+#: airtime_mvc/application/controllers/LocaleController.php:156
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
+#: airtime_mvc/application/models/Block.php:1388
+msgid "starts with"
+msgstr "ile başlayan"
+
+#: airtime_mvc/application/controllers/LocaleController.php:157
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
+#: airtime_mvc/application/models/Block.php:1389
+msgid "ends with"
+msgstr "ile biten"
+
+#: airtime_mvc/application/controllers/LocaleController.php:158
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
+#: airtime_mvc/application/models/Block.php:1392
+msgid "is greater than"
+msgstr "büyüktür"
+
+#: airtime_mvc/application/controllers/LocaleController.php:159
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
+#: airtime_mvc/application/models/Block.php:1393
+msgid "is less than"
+msgstr "küçüktür"
+
+#: airtime_mvc/application/controllers/LocaleController.php:160
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
+#: airtime_mvc/application/models/Block.php:1394
+msgid "is in the range"
+msgstr "aralıkta"
+
#: airtime_mvc/application/controllers/LocaleController.php:162
msgid "Choose Storage Folder"
msgstr ""
@@ -3163,6 +958,11 @@ msgid ""
"This will remove the files from your Airtime library!"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:166
+#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
+msgid "Manage Media Folders"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:167
msgid "Are you sure you want to remove the watched folder?"
msgstr ""
@@ -3184,6 +984,11 @@ msgstr ""
msgid "The stream is disabled"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:173
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
+msgid "Getting information from the server..."
+msgstr "Sunucudan bilgiler getiriliyor..."
+
#: airtime_mvc/application/controllers/LocaleController.php:174
msgid "Can not connect to the streaming server"
msgstr ""
@@ -3411,6 +1216,76 @@ msgstr ""
msgid "Month"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:249
+#: airtime_mvc/application/forms/GeneralPreferences.php:158
+msgid "Sunday"
+msgstr "Pazar"
+
+#: airtime_mvc/application/controllers/LocaleController.php:250
+#: airtime_mvc/application/forms/GeneralPreferences.php:159
+msgid "Monday"
+msgstr "Pazartesi"
+
+#: airtime_mvc/application/controllers/LocaleController.php:251
+#: airtime_mvc/application/forms/GeneralPreferences.php:160
+msgid "Tuesday"
+msgstr "Salı"
+
+#: airtime_mvc/application/controllers/LocaleController.php:252
+#: airtime_mvc/application/forms/GeneralPreferences.php:161
+msgid "Wednesday"
+msgstr "Çarşamba"
+
+#: airtime_mvc/application/controllers/LocaleController.php:253
+#: airtime_mvc/application/forms/GeneralPreferences.php:162
+msgid "Thursday"
+msgstr "Perşembe"
+
+#: airtime_mvc/application/controllers/LocaleController.php:254
+#: airtime_mvc/application/forms/GeneralPreferences.php:163
+msgid "Friday"
+msgstr "Cuma"
+
+#: airtime_mvc/application/controllers/LocaleController.php:255
+#: airtime_mvc/application/forms/GeneralPreferences.php:164
+msgid "Saturday"
+msgstr "Cumartesi"
+
+#: airtime_mvc/application/controllers/LocaleController.php:256
+#: airtime_mvc/application/forms/AddShowRepeats.php:35
+msgid "Sun"
+msgstr "Paz"
+
+#: airtime_mvc/application/controllers/LocaleController.php:257
+#: airtime_mvc/application/forms/AddShowRepeats.php:36
+msgid "Mon"
+msgstr "Pzt"
+
+#: airtime_mvc/application/controllers/LocaleController.php:258
+#: airtime_mvc/application/forms/AddShowRepeats.php:37
+msgid "Tue"
+msgstr "Sal"
+
+#: airtime_mvc/application/controllers/LocaleController.php:259
+#: airtime_mvc/application/forms/AddShowRepeats.php:38
+msgid "Wed"
+msgstr "Çar"
+
+#: airtime_mvc/application/controllers/LocaleController.php:260
+#: airtime_mvc/application/forms/AddShowRepeats.php:39
+msgid "Thu"
+msgstr "Per"
+
+#: airtime_mvc/application/controllers/LocaleController.php:261
+#: airtime_mvc/application/forms/AddShowRepeats.php:40
+msgid "Fri"
+msgstr "Cum"
+
+#: airtime_mvc/application/controllers/LocaleController.php:262
+#: airtime_mvc/application/forms/AddShowRepeats.php:41
+msgid "Sat"
+msgstr "Cmt"
+
#: airtime_mvc/application/controllers/LocaleController.php:263
msgid "Shows longer than their scheduled time will be cut off by a following show."
msgstr ""
@@ -3420,7 +1295,7 @@ msgid "Cancel Current Show?"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:265
-#: airtime_mvc/application/controllers/LocaleController.php:309
+#: airtime_mvc/application/controllers/LocaleController.php:312
msgid "Stop recording current show?"
msgstr ""
@@ -3440,6 +1315,11 @@ msgstr ""
msgid "Delete selected item(s)?"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:273
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
+msgid "Start"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:274
msgid "End"
msgstr ""
@@ -3448,580 +1328,467 @@ msgstr ""
msgid "Duration"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:283
+#: airtime_mvc/application/controllers/LocaleController.php:276
+msgid "Filtering out "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:277
+msgid " of "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:278
+msgid " records"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/layouts/scripts/layout.phtml:140
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
+#: airtime_mvc/application/models/Block.php:1358
+msgid "Cue In"
+msgstr "Cue In"
+
+#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/layouts/scripts/layout.phtml:147
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
+#: airtime_mvc/application/models/Block.php:1359
+msgid "Cue Out"
+msgstr "Cue Out"
+
+#: airtime_mvc/application/controllers/LocaleController.php:286
#: airtime_mvc/application/layouts/scripts/layout.phtml:167
msgid "Fade In"
msgstr "Fade In"
-#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/controllers/LocaleController.php:287
#: airtime_mvc/application/layouts/scripts/layout.phtml:168
msgid "Fade Out"
msgstr "Fade Out"
-#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/controllers/LocaleController.php:288
msgid "Show Empty"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:286
+#: airtime_mvc/application/controllers/LocaleController.php:289
msgid "Recording From Line In"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:287
+#: airtime_mvc/application/controllers/LocaleController.php:290
msgid "Track preview"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:291
+#: airtime_mvc/application/controllers/LocaleController.php:294
msgid "Cannot schedule outside a show."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:292
+#: airtime_mvc/application/controllers/LocaleController.php:295
msgid "Moving 1 Item"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:293
+#: airtime_mvc/application/controllers/LocaleController.php:296
#, php-format
msgid "Moving %s Items"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:296
+#: airtime_mvc/application/controllers/LocaleController.php:297
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
+#: airtime_mvc/application/forms/Preferences.php:40
+#: airtime_mvc/application/forms/EditHistory.php:131
+#: airtime_mvc/application/forms/AddUser.php:110
+#: airtime_mvc/application/forms/PasswordChange.php:43
+#: airtime_mvc/application/forms/SupportSettings.php:131
+msgid "Save"
+msgstr "Kaydet"
+
+#: airtime_mvc/application/controllers/LocaleController.php:298
+#: airtime_mvc/application/controllers/LocaleController.php:321
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
+#: airtime_mvc/application/forms/EditHistory.php:141
+#: airtime_mvc/application/forms/EditAudioMD.php:186
+msgid "Cancel"
+msgstr "İptal"
+
+#: airtime_mvc/application/controllers/LocaleController.php:299
msgid "Fade Editor"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:297
+#: airtime_mvc/application/controllers/LocaleController.php:300
msgid "Cue Editor"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:298
+#: airtime_mvc/application/controllers/LocaleController.php:301
msgid "Waveform features are available in a browser supporting the Web Audio API"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:301
+#: airtime_mvc/application/controllers/LocaleController.php:304
msgid "Select all"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:302
+#: airtime_mvc/application/controllers/LocaleController.php:305
msgid "Select none"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:303
+#: airtime_mvc/application/controllers/LocaleController.php:306
msgid "Trim overbooked shows"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:304
+#: airtime_mvc/application/controllers/LocaleController.php:307
msgid "Remove selected scheduled items"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:305
+#: airtime_mvc/application/controllers/LocaleController.php:308
msgid "Jump to the current playing track"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:306
+#: airtime_mvc/application/controllers/LocaleController.php:309
msgid "Cancel current show"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:311
+#: airtime_mvc/application/controllers/LocaleController.php:314
msgid "Open library to add or remove content"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:312
+#: airtime_mvc/application/controllers/LocaleController.php:315
msgid "Add / Remove Content"
msgstr ""
#: airtime_mvc/application/controllers/LocaleController.php:317
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
+msgid "in use"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:318
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
+msgid "Disk"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:320
msgid "Look in"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:319
+#: airtime_mvc/application/controllers/LocaleController.php:322
msgid "Open"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:324
+#: airtime_mvc/application/forms/AddUser.php:102
+msgid "Admin"
+msgstr "Yönetici (Admin)"
+
#: airtime_mvc/application/controllers/LocaleController.php:325
+#: airtime_mvc/application/forms/AddUser.php:100
+msgid "DJ"
+msgstr "DJ"
+
+#: airtime_mvc/application/controllers/LocaleController.php:326
+#: airtime_mvc/application/forms/AddUser.php:101
+msgid "Program Manager"
+msgstr "Program Yöneticisi"
+
+#: airtime_mvc/application/controllers/LocaleController.php:327
+#: airtime_mvc/application/forms/AddUser.php:99
+msgid "Guest"
+msgstr "Ziyaretçi"
+
+#: airtime_mvc/application/controllers/LocaleController.php:328
msgid "Guests can do the following:"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:326
+#: airtime_mvc/application/controllers/LocaleController.php:329
msgid "View schedule"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:327
+#: airtime_mvc/application/controllers/LocaleController.php:330
msgid "View show content"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:328
+#: airtime_mvc/application/controllers/LocaleController.php:331
msgid "DJs can do the following:"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:329
+#: airtime_mvc/application/controllers/LocaleController.php:332
msgid "Manage assigned show content"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:330
+#: airtime_mvc/application/controllers/LocaleController.php:333
msgid "Import media files"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:331
+#: airtime_mvc/application/controllers/LocaleController.php:334
msgid "Create playlists, smart blocks, and webstreams"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:332
+#: airtime_mvc/application/controllers/LocaleController.php:335
msgid "Manage their own library content"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:333
+#: airtime_mvc/application/controllers/LocaleController.php:336
msgid "Progam Managers can do the following:"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:334
+#: airtime_mvc/application/controllers/LocaleController.php:337
msgid "View and manage show content"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:335
+#: airtime_mvc/application/controllers/LocaleController.php:338
msgid "Schedule shows"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:336
+#: airtime_mvc/application/controllers/LocaleController.php:339
msgid "Manage all library content"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:337
+#: airtime_mvc/application/controllers/LocaleController.php:340
msgid "Admins can do the following:"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:338
+#: airtime_mvc/application/controllers/LocaleController.php:341
msgid "Manage preferences"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:339
+#: airtime_mvc/application/controllers/LocaleController.php:342
msgid "Manage users"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:340
+#: airtime_mvc/application/controllers/LocaleController.php:343
msgid "Manage watched folders"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:342
+#: airtime_mvc/application/controllers/LocaleController.php:344
+#: airtime_mvc/application/forms/RegisterAirtime.php:116
+#: airtime_mvc/application/forms/SupportSettings.php:98
+msgid "Send support feedback"
+msgstr "Destek Geribildirimi gönder"
+
+#: airtime_mvc/application/controllers/LocaleController.php:345
msgid "View system status"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:343
+#: airtime_mvc/application/controllers/LocaleController.php:346
msgid "Access playout history"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:344
+#: airtime_mvc/application/controllers/LocaleController.php:347
msgid "View listener stats"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:346
+#: airtime_mvc/application/controllers/LocaleController.php:349
msgid "Show / hide columns"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:348
+#: airtime_mvc/application/controllers/LocaleController.php:351
msgid "From {from} to {to}"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:349
+#: airtime_mvc/application/controllers/LocaleController.php:352
msgid "kbps"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:350
+#: airtime_mvc/application/controllers/LocaleController.php:353
msgid "yyyy-mm-dd"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:351
+#: airtime_mvc/application/controllers/LocaleController.php:354
msgid "hh:mm:ss.t"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:352
+#: airtime_mvc/application/controllers/LocaleController.php:355
msgid "kHz"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:355
+#: airtime_mvc/application/controllers/LocaleController.php:358
msgid "Su"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:356
+#: airtime_mvc/application/controllers/LocaleController.php:359
msgid "Mo"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:357
+#: airtime_mvc/application/controllers/LocaleController.php:360
msgid "Tu"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:358
+#: airtime_mvc/application/controllers/LocaleController.php:361
msgid "We"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:359
+#: airtime_mvc/application/controllers/LocaleController.php:362
msgid "Th"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:360
+#: airtime_mvc/application/controllers/LocaleController.php:363
msgid "Fr"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:361
+#: airtime_mvc/application/controllers/LocaleController.php:364
msgid "Sa"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:364
+#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
+msgid "Close"
+msgstr "Kapat"
+
+#: airtime_mvc/application/controllers/LocaleController.php:367
msgid "Hour"
msgstr "Cmt"
-#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:368
msgid "Minute"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:366
+#: airtime_mvc/application/controllers/LocaleController.php:369
msgid "Done"
msgstr "OK"
-#: airtime_mvc/application/controllers/LocaleController.php:369
+#: airtime_mvc/application/controllers/LocaleController.php:372
msgid "Select files"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:370
-#: airtime_mvc/application/controllers/LocaleController.php:371
+#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:374
msgid "Add files to the upload queue and click the start button."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:372
-#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:376
msgid "Status"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:374
+#: airtime_mvc/application/controllers/LocaleController.php:377
msgid "Add Files"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:378
msgid "Stop Upload"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:376
+#: airtime_mvc/application/controllers/LocaleController.php:379
msgid "Start upload"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:377
+#: airtime_mvc/application/controllers/LocaleController.php:380
msgid "Add files"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:378
+#: airtime_mvc/application/controllers/LocaleController.php:381
#, php-format
msgid "Uploaded %d/%d files"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:379
+#: airtime_mvc/application/controllers/LocaleController.php:382
msgid "N/A"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:380
+#: airtime_mvc/application/controllers/LocaleController.php:383
msgid "Drag files here."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:381
+#: airtime_mvc/application/controllers/LocaleController.php:384
msgid "File extension error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:382
+#: airtime_mvc/application/controllers/LocaleController.php:385
msgid "File size error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:383
+#: airtime_mvc/application/controllers/LocaleController.php:386
msgid "File count error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:384
+#: airtime_mvc/application/controllers/LocaleController.php:387
msgid "Init error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:385
+#: airtime_mvc/application/controllers/LocaleController.php:388
msgid "HTTP Error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:386
+#: airtime_mvc/application/controllers/LocaleController.php:389
msgid "Security error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:387
+#: airtime_mvc/application/controllers/LocaleController.php:390
msgid "Generic error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:388
+#: airtime_mvc/application/controllers/LocaleController.php:391
msgid "IO error."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:389
+#: airtime_mvc/application/controllers/LocaleController.php:392
#, php-format
msgid "File: %s"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:391
+#: airtime_mvc/application/controllers/LocaleController.php:394
#, php-format
msgid "%d files queued"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:392
+#: airtime_mvc/application/controllers/LocaleController.php:395
msgid "File: %f, size: %s, max file size: %m"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/controllers/LocaleController.php:396
msgid "Upload URL might be wrong or doesn't exist"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:394
+#: airtime_mvc/application/controllers/LocaleController.php:397
msgid "Error: File too large: "
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:395
+#: airtime_mvc/application/controllers/LocaleController.php:398
msgid "Error: Invalid file extension: "
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:398
+#: airtime_mvc/application/controllers/LocaleController.php:400
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
+msgid "Set Default"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:401
msgid "Create Entry"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:399
+#: airtime_mvc/application/controllers/LocaleController.php:402
msgid "Edit History Record"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:402
+#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
+#: airtime_mvc/application/forms/EditHistoryItem.php:57
+msgid "No Show"
+msgstr "Show Yok"
+
+#: airtime_mvc/application/controllers/LocaleController.php:405
#, php-format
msgid "Copied %s row%s to the clipboard"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/controllers/LocaleController.php:406
#, php-format
msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/controllers/LocaleController.php:407
msgid "New Show"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:405
+#: airtime_mvc/application/controllers/LocaleController.php:408
msgid "New Log Entry"
msgstr ""
-#: airtime_mvc/application/controllers/ScheduleController.php:389
-#, php-format
-msgid "Rebroadcast of show %s from %s at %s"
-msgstr ""
-
-#: airtime_mvc/application/controllers/ScheduleController.php:712
-#: airtime_mvc/application/controllers/LibraryController.php:131
-msgid "Download"
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:78
-msgid "Page not found."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:87
-msgid "The requested action is not supported."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:98
-msgid "You do not have permission to access this resource."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:109
-msgid "An internal application error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ListenerstatController.php:51
-msgid "Please make sure admin user/password is correct on System->Streams page."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:53
-#, php-format
-msgid "You are viewing an older version of %s"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:140
-msgid "You cannot add tracks to dynamic blocks."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:147
-#: airtime_mvc/application/controllers/LibraryController.php:31
-#, php-format
-msgid "%s not found"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:161
-#, php-format
-msgid "You don't have permission to delete selected %s(s)."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:168
-#: airtime_mvc/application/controllers/LibraryController.php:40
-msgid "Something went wrong."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:174
-msgid "You can only add tracks to smart block."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:192
-msgid "Untitled Playlist"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:194
-msgid "Untitled Smart Block"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PlaylistController.php:522
-msgid "Unknown Playlist"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:43
-msgid "Please enter your username and password."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:93
-msgid "Wrong username or password provided. Please try again."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:167
-msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:173
-msgid "There was a problem with the username or email address you entered."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:35
-#: airtime_mvc/application/controllers/DashboardController.php:84
-msgid "You don't have permission to disconnect source."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:37
-#: airtime_mvc/application/controllers/DashboardController.php:86
-msgid "There is no source connected to this input."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:81
-msgid "You don't have permission to switch source."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:72
-msgid "Preferences updated."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:115
-msgid "Support setting updated."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:123
-msgid "Support Feedback"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:251
-msgid "Stream Setting Updated."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:342
-msgid "path should be specified"
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:437
-msgid "Problem with Liquidsoap..."
-msgstr ""
-
-#: airtime_mvc/application/controllers/PreferenceController.php:493
-msgid "Request method not accepted"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:86
-msgid "User added successfully!"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:88
-msgid "User updated successfully!"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:187
-msgid "Settings updated successfully!"
-msgstr ""
-
-#: airtime_mvc/application/controllers/WebstreamController.php:28
-#: airtime_mvc/application/controllers/WebstreamController.php:32
-msgid "Untitled Webstream"
-msgstr ""
-
-#: airtime_mvc/application/controllers/WebstreamController.php:150
-msgid "Webstream saved."
-msgstr ""
-
-#: airtime_mvc/application/controllers/WebstreamController.php:158
-msgid "Invalid form values."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:95
-#: airtime_mvc/application/controllers/ShowbuilderController.php:136
-msgid "Preview"
-msgstr "Ön izleme"
-
-#: airtime_mvc/application/controllers/LibraryController.php:115
-#: airtime_mvc/application/controllers/LibraryController.php:177
-#: airtime_mvc/application/controllers/LibraryController.php:200
-msgid "Add to Playlist"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:117
-msgid "Add to Smart Block"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:147
-msgid "View track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:148
-msgid "Remove track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:154
-#: airtime_mvc/application/controllers/LibraryController.php:159
-msgid "Upload track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:169
-msgid "Duplicate Playlist"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:213
-msgid "No action available"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:233
-msgid "You don't have permission to delete selected items."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:279
-msgid "Could not delete file because it is scheduled in the future."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:282
-msgid "Could not delete file(s)."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:322
-#, php-format
-msgid "Copy of %s"
-msgstr ""
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
-msgid ""
-"To configure and use the embeddable player you must:
\n"
-" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
-" 2. Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
-msgid ""
-"To use the embeddable weekly schedule widget you must:
\n"
-" Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
#: airtime_mvc/application/controllers/ShowbuilderController.php:138
msgid "Select cursor"
msgstr ""
@@ -4034,39 +1801,78 @@ msgstr ""
msgid "show does not exist"
msgstr ""
-#: airtime_mvc/application/controllers/ApiController.php:79
-msgid "You are not allowed to access this resource."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ApiController.php:244
-#: airtime_mvc/application/controllers/ApiController.php:317
-#: airtime_mvc/application/controllers/ApiController.php:392
-#: airtime_mvc/application/controllers/ApiController.php:435
-#: airtime_mvc/application/controllers/ApiController.php:474
-#: airtime_mvc/application/controllers/ApiController.php:507
-msgid "You are not allowed to access this resource. "
-msgstr ""
-
-#: airtime_mvc/application/controllers/ApiController.php:698
-#: airtime_mvc/application/controllers/ApiController.php:718
-#: airtime_mvc/application/controllers/ApiController.php:730
+#: airtime_mvc/application/controllers/ScheduleController.php:389
#, php-format
-msgid "File does not exist in %s"
+msgid "Rebroadcast of show %s from %s at %s"
msgstr ""
-#: airtime_mvc/application/controllers/ApiController.php:781
-msgid "Bad request. no 'mode' parameter passed."
+#: airtime_mvc/application/common/UsabilityHints.php:55
+msgid "Upload some tracks below to add them to your library!"
msgstr ""
-#: airtime_mvc/application/controllers/ApiController.php:791
-msgid "Bad request. 'mode' parameter is invalid"
-msgstr ""
-
-#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#: airtime_mvc/application/common/UsabilityHints.php:57
#, php-format
-msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
msgstr ""
+#: airtime_mvc/application/common/UsabilityHints.php:63
+msgid "Click the 'New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:65
+#, php-format
+msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:73
+msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:75
+#, php-format
+msgid ""
+"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
+" %sCreate an unlinked show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:80
+msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:82
+#, php-format
+msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:89
+msgid "Click on the show starting next and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:91
+#, php-format
+msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/DateHelper.php:213
+#, php-format
+msgid "The year %s must be within the range of 1753 - 9999"
+msgstr ""
+
+#: airtime_mvc/application/common/DateHelper.php:216
+#, php-format
+msgid "%s-%s-%s is not a valid date"
+msgstr ""
+
+#: airtime_mvc/application/common/DateHelper.php:240
+#, php-format
+msgid "%s:%s:%s is not a valid time"
+msgstr ""
+
+#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
+msgid "Live stream"
+msgstr "Canlı yayın"
+
#: airtime_mvc/application/layouts/scripts/layout.phtml:63
msgid "Smart Block"
msgstr ""
@@ -4079,6 +1885,17 @@ msgstr ""
msgid "Upload"
msgstr ""
+#: airtime_mvc/application/layouts/scripts/layout.phtml:76
+#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
+msgid "Dashboard"
+msgstr ""
+
+#: airtime_mvc/application/layouts/scripts/layout.phtml:84
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
+msgid "Webstreams"
+msgstr ""
+
#: airtime_mvc/application/layouts/scripts/layout.phtml:135
#: airtime_mvc/application/layouts/scripts/layout.phtml:161
msgid "Play"
@@ -4101,161 +1918,2123 @@ msgstr "Cue Out değerini ayarla"
msgid "Cursor"
msgstr "Cursor"
-#~ msgid "%1$s copyright © %2$s All rights reserved.%3$sMaintained and distributed under the %4$s by %5$s"
-#~ msgstr "%1$s copyright © %2$s Tüm hakları saklıdır.%3$s%4$s lisansı altında %5$s tarafından geliştirmekte ve dağıtılmaktadır."
+#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#, php-format
+msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgstr ""
-#~ msgid "Show:"
-#~ msgstr "Show:"
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
+msgid "Drop files here or click to browse your computer."
+msgstr ""
-#~ msgid "enter a time in seconds 0{.0}"
-#~ msgstr "saniye olarak bir zaman giriniz 0{.0}"
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
+msgid "Failed"
+msgstr ""
-#~ msgid "Allow Remote Websites To Access \"Schedule\" Info?%s (Enable this to make front-end widgets work.)"
-#~ msgstr "Harici Websitelerinin \"Yayın Akışı\" Bilgilerine Erişmesine İzin Ver?%s (Anasayfa Widget'ları Kullanabilmek İçin Bunu Aktifleştirin)"
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
+msgid "Pending"
+msgstr ""
-#~ msgid "Default Interface Language"
-#~ msgstr "Varsayılan Arabirim Dili"
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
+msgid "Recent Uploads"
+msgstr ""
-#~ msgid "Get new password"
-#~ msgstr "Yeni şifre al"
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
+msgid "Share"
+msgstr "Paylaş"
-#~ msgid "Set smart block type:"
-#~ msgstr "Akıllı blok türünü seçin"
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
+msgid "Select stream:"
+msgstr ""
-#~ msgid "Allow Repeat Tracks:"
-#~ msgstr "Parçalar tekrar etsin mi?"
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
+msgid "mute"
+msgstr ""
-#~ msgid "Limit to"
-#~ msgstr "Sınırla"
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
+msgid "unmute"
+msgstr ""
-#~ msgid "Auto Switch Off"
-#~ msgstr "Otomatik Devre Dışı Bırak"
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
+msgid "About"
+msgstr ""
-#~ msgid "Auto Switch On"
-#~ msgstr "Otomatik Devreye Sok"
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
+#, php-format
+msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
+msgstr ""
-#~ msgid "Switch Transition Fade (s)"
-#~ msgstr "Geçiş Transition Fade'i [Switch Transition Fade]"
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
+#, php-format
+msgid "%1$s %2$s is distributed under the %3$s"
+msgstr ""
-#~ msgid "enter a time in seconds 00{.000000}"
-#~ msgstr "saniye olarak bir değer giriniz 00{.000000}"
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
+#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
+#, php-format
+msgid "Welcome to %s!"
+msgstr ""
-#~ msgid "Master Username"
-#~ msgstr "Master Kullanıcı adı"
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
+#, php-format
+msgid "Here's how you can get started using %s to automate your broadcasts: "
+msgstr ""
-#~ msgid "Master Password"
-#~ msgstr "Master Şifre"
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
+msgid "Upload audio tracks"
+msgstr ""
-#~ msgid "Master Source Connection URL"
-#~ msgstr "Master Source Bağlantı URL"
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
+msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
+msgstr ""
-#~ msgid "Show Source Connection URL"
-#~ msgstr "Source Bağlantı URL'sini göster"
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
+msgid "Schedule a show"
+msgstr ""
-#~ msgid "Master Source Port"
-#~ msgstr "Master Source Port'u"
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
+msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
+msgstr ""
-#~ msgid "Master Source Mount Point"
-#~ msgstr "Master Source Mount Adresi"
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
+msgid "Add tracks to your show"
+msgstr ""
-#~ msgid "Show Source Port"
-#~ msgstr "Source Port'unu Göster"
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
+msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
+msgstr ""
-#~ msgid "Show Source Mount Point"
-#~ msgstr "Source Mount Adresini Göster"
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
+msgid "Now you're good to go!"
+msgstr ""
-#~ msgid "You cannot use same port as Master DJ port."
-#~ msgstr "Master DJ Port'u ile aynı portu kullanamazsınız"
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
+#, php-format
+msgid "For more detailed help, read the %suser manual%s."
+msgstr ""
-#~ msgid "Port %s is not available"
-#~ msgstr "Port %s kullanılamaz"
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
+#: airtime_mvc/application/configs/navigation.php:40
+msgid "Weekly Schedule"
+msgstr ""
-#~ msgid "E-mail"
-#~ msgstr "E-posta"
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
+#: airtime_mvc/application/forms/Player.php:77
+msgid "Preview:"
+msgstr ""
-#~ msgid "Restore password"
-#~ msgstr "Şifreyi geri al"
+#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
+#: airtime_mvc/application/configs/navigation.php:34
+msgid "Player"
+msgstr ""
-#~ msgid "Hardware Audio Output"
-#~ msgstr "Donanımsal Ses Çıkışı"
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:97
+msgid "Playout History"
+msgstr ""
-#~ msgid "Output Type"
-#~ msgstr "Ses Çıkış Türü"
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
+msgid "Log Sheet"
+msgstr ""
-#~ msgid "Date/Time Start:"
-#~ msgstr "Başlangıç Tarih/Saat'i:"
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
+msgid "File Summary"
+msgstr ""
-#~ msgid "Date/Time End:"
-#~ msgstr "Bitiş Tarih/Saat'i:"
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
+msgid "Show Summary"
+msgstr ""
-#~ msgid "Automatically Upload Recorded Shows"
-#~ msgstr "Kaydedilen Show'ları Otomatik olarak Karşıya Yükle"
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
+msgid "Expand Static Block"
+msgstr ""
-#~ msgid "Enable SoundCloud Upload"
-#~ msgstr "SoundCloud'a Yüklemeyi Aktifleştir"
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
+msgid "Expand Dynamic Block"
+msgstr ""
-#~ msgid "Automatically Mark Files \"Downloadable\" on SoundCloud"
-#~ msgstr "SoundCloud'da dosyaları otomatik olarak \"İndirilebilir\" olarak işaretle"
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
+msgid "Choose some search criteria above and click Generate to create this playlist."
+msgstr ""
-#~ msgid "SoundCloud Email"
-#~ msgstr "SoundCloud Email Adresi"
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
+msgid "A track list will be generated when you schedule this smart block into a show."
+msgstr ""
-#~ msgid "SoundCloud Password"
-#~ msgstr "SoundCloud Şifreniz"
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
+msgid "Drag tracks here from your library to add them to the playlist"
+msgstr ""
-#~ msgid "SoundCloud Tags: (separate tags with spaces)"
-#~ msgstr "SoundCloud Etiketleri: (boşluklarla ayırınız)"
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
+msgid "Editing "
+msgstr ""
-#~ msgid "Default Genre:"
-#~ msgstr "Varsayılan Tür:"
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:26
+msgid "Name:"
+msgstr "İsim:"
-#~ msgid "Default Track Type:"
-#~ msgstr "Varsayılan Parça Türü:"
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
+#: airtime_mvc/application/forms/AddShowWhat.php:54
+msgid "Description:"
+msgstr "Açıklama:"
-#~ msgid "Original"
-#~ msgstr "Orjinal"
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
+#: airtime_mvc/application/forms/AddShowWhen.php:89
+msgid "Duration:"
+msgstr "Uzunluğu:"
-#~ msgid "Remix"
-#~ msgstr "Remix"
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
+msgid "Toggle Details"
+msgstr ""
-#~ msgid "Live"
-#~ msgstr "Canlı"
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+msgid "Shuffle playlist"
+msgstr ""
-#~ msgid "Recording"
-#~ msgstr "Kayıt"
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
+msgid "Shuffle"
+msgstr "Karıştır"
-#~ msgid "Spoken"
-#~ msgstr "Sözlü"
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
+msgid "Playlist crossfade"
+msgstr ""
-#~ msgid "Podcast"
-#~ msgstr "Podcast"
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+msgid "Empty playlist content"
+msgstr ""
-#~ msgid "Demo"
-#~ msgstr "Demo"
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Clear"
+msgstr ""
-#~ msgid "Work in progress"
-#~ msgstr "Halen Devam Eden"
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+msgid "Fade in: "
+msgstr ""
-#~ msgid "Stem"
-#~ msgstr "Stem"
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "Fade out: "
+msgstr ""
-#~ msgid "Loop"
-#~ msgstr "Tekrar Et"
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+msgid "Save playlist"
+msgstr ""
-#~ msgid "Sound Effect"
-#~ msgstr "Ses Efekti"
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
+msgid "No open playlist"
+msgstr ""
-#~ msgid "Other"
-#~ msgstr "Diğer"
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
+msgid "Show Waveform"
+msgstr ""
-#~ msgid "Enable System Emails (Password Reset)"
-#~ msgstr "Sistem Epostalarını Aktif Et (Şifre Sıfırlama)"
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "(ss.t)"
+msgstr ""
-#~ msgid "Reset Password 'From' Email"
-#~ msgstr "Şifre Sıfırlama epostası 'Kimden' kısmı"
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Remove all content from this smart block"
+msgstr ""
-#~ msgid "Configure Mail Server"
-#~ msgstr "Posta Sunucusu Ayarları"
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
+msgid "No smart block currently open"
+msgstr ""
-#~ msgid "History"
-#~ msgstr "Geçmiş"
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+msgid "Cue In: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "(hh:mm:ss.t)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "Cue Out: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
+msgid "Original Length:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:56
+msgid "General"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
+msgid "Stream Settings"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
+msgid "Global"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
+msgid "dB"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
+msgid "Output Streams"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:3
+#: airtime_mvc/application/forms/Login.php:83
+msgid "Login"
+msgstr "Giriş yap"
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:7
+#, php-format
+msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
+msgid "Email Sent!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
+msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
+msgid "Back"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
+msgid "Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
+msgid "New password"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
+msgid "Please enter and confirm your new password in the fields below."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
+msgid "Manage Users"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
+msgid "New User"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
+msgid "id"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
+#: airtime_mvc/application/forms/PasswordRestore.php:25
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
+msgid "Username"
+msgstr "Kullanıcı adı"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
+msgid "First Name"
+msgstr "İsim"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
+msgid "Last Name"
+msgstr "Soyisim"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
+msgid "User Type"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
+#, php-format
+msgid "Super Admin details can be changed in your Billing Settings."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
+msgid "Find Shows"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
+msgid "Choose Show Instance"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
+msgid "Find"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
+#: airtime_mvc/application/configs/navigation.php:61
+msgid "My Profile"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
+#, php-format
+msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
+msgid "Repeat Days:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
+#: airtime_mvc/application/forms/GeneralPreferences.php:53
+#: airtime_mvc/application/forms/AddShowStyle.php:64
+msgid "Remove"
+msgstr "Kaldır"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
+msgid "Add"
+msgstr "Ekle"
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
+msgid "Show Source"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
+msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
+msgid "Register Airtime"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
+#, php-format
+msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
+#, php-format
+msgid "Click the box below to promote your station on %s."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
+msgid "(Required)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
+msgid "(for verification purposes only, will not be published)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
+#: airtime_mvc/application/forms/GeneralPreferences.php:43
+msgid "Note: Anything larger than 600x600 will be resized."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
+msgid "Show me what I am sending "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
+msgid "Terms and Conditions"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
+msgid "Choose Days:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
+msgid "Search Criteria:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
+msgid "New Criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
+msgid "or"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
+msgid "and"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
+msgid "New Modifier"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
+msgid " to "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
+msgid "files meet the criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
+msgid "file meets the criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
+msgid "Filter History"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/login.phtml:41
+msgid "Forgot your password?"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
+msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
+msgid "Stream "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
+msgid "Additional Options"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
+msgid "The following info will be displayed to listeners in their media player:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
+msgid "(Your radio station website)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
+msgid "Stream URL: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
+msgid "Choose folder"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
+msgid "Set"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
+msgid "Current Import Folder:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
+#, php-format
+msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
+msgid "Remove watched directory"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
+msgid "You are not watching any media folders."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
+msgid "Live Broadcasting"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
+msgid "Master Source"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
+msgid "Use these settings in your broadcasting software to stream live at any time."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
+msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
+msgid "TuneIn Settings"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
+msgid "SoundCloud Settings"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
+msgid "Dangerous Options"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Add this show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Update show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
+msgid "What"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
+msgid "When"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
+msgid "Live Stream Input"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
+msgid "Who"
+msgstr "DJ"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
+msgid "Style"
+msgstr "Stil"
+
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
+msgid "Disk Space"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:3
+msgid "File import in progress..."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:10
+#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
+msgid "Advanced Search Options"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
+#: airtime_mvc/application/forms/EditAudioMD.php:24
+#: airtime_mvc/application/forms/Player.php:15
+msgid "Title:"
+msgstr "Parça Adı:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
+#: airtime_mvc/application/forms/EditAudioMD.php:34
+msgid "Creator:"
+msgstr "Oluşturan:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
+#: airtime_mvc/application/forms/EditAudioMD.php:44
+msgid "Album:"
+msgstr "Albüm:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
+msgid "Track:"
+msgstr "Parça Numarası:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
+msgid "Length:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
+msgid "Sample Rate:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
+msgid "Bit Rate:"
+msgstr "Bit Değeri:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
+#: airtime_mvc/application/forms/EditAudioMD.php:115
+msgid "Mood:"
+msgstr "Ruh Hali:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:45
+#: airtime_mvc/application/forms/EditAudioMD.php:62
+msgid "Genre:"
+msgstr "Tür:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
+#: airtime_mvc/application/forms/EditAudioMD.php:72
+msgid "Year:"
+msgstr "Yıl:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
+#: airtime_mvc/application/forms/EditAudioMD.php:85
+msgid "Label:"
+msgstr "Plak Şirketi:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
+#: airtime_mvc/application/forms/EditAudioMD.php:125
+msgid "BPM:"
+msgstr "BPM:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
+#: airtime_mvc/application/forms/EditAudioMD.php:95
+msgid "Composer:"
+msgstr "Besteleyen:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
+#: airtime_mvc/application/forms/EditAudioMD.php:105
+msgid "Conductor:"
+msgstr "Orkestra Şefi:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
+#: airtime_mvc/application/forms/EditAudioMD.php:135
+msgid "Copyright:"
+msgstr "Telif Hakkı:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
+msgid "Isrc Number:"
+msgstr "ISRC No:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
+#: airtime_mvc/application/forms/EditAudioMD.php:155
+msgid "Website:"
+msgstr "Websitesi:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
+#: airtime_mvc/application/forms/EditAudioMD.php:165
+#: airtime_mvc/application/forms/EditUser.php:119
+#: airtime_mvc/application/forms/Login.php:68
+msgid "Language:"
+msgstr "Dil:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
+msgid "File Path:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
+msgid "Web Stream"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
+msgid "Dynamic Smart Block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
+msgid "Static Smart Block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
+msgid "Audio Track"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
+msgid "Playlist Contents: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
+msgid "Static Smart Block Contents: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
+msgid "Dynamic Smart Block Criteria: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
+msgid "Limit to "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
+#: airtime_mvc/application/forms/AddShowWhat.php:36
+msgid "URL:"
+msgstr "URL"
+
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
+msgid "Viewing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
+msgid "Listeners"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
+msgid "Stream Data Collection Status"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
+msgid "Your trial expires in"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
+msgid "days"
+msgstr "gün"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
+msgid "Previous:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
+msgid "Next:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
+msgid "Source Streams"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
+msgid "ON AIR"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
+msgid "Listen"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
+msgid "Logout"
+msgstr "Oturumu kapat"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
+msgid "Playout History Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
+msgid "Log Sheet Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
+msgid "New Log Sheet Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
+msgid "No Log Sheet Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
+msgid "File Summary Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
+msgid "New File Summary Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
+msgid "No File Summary Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
+msgid "Creating File Summary Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
+msgid "Creating Log Sheet Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
+msgid "Name"
+msgstr "İsim"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
+msgid "Add more elements"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
+msgid "Add New Field"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
+msgid "Set Default Template"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
+msgid "Description"
+msgstr "Tanım"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
+msgid "Stream URL:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
+msgid "Default Length:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
+msgid "No webstream"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
+#: airtime_mvc/application/views/scripts/error/error.phtml:6
+msgid "An error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
+msgid "Access Denied!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
+msgid "You do not have permission to access this page!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
+#: airtime_mvc/application/views/scripts/error/error.phtml:14
+#: airtime_mvc/application/configs/navigation.php:143
+msgid "Help"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
+msgid "Oops!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
+msgid "Something went wrong!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
+msgid "Bad Request!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
+msgid "The requested action is not supported!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
+msgid "Page not found!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
+msgid "We couldn't find the page you were looking for."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error.phtml:12
+msgid "Looks like the page you were looking for doesn't exist!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
+msgid "previous"
+msgstr "önceki"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
+msgid "play"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
+msgid "pause"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
+msgid "next"
+msgstr "sonraki"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
+msgid "stop"
+msgstr "Durdur"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
+msgid "max volume"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
+msgid "Update Required"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
+#, php-format
+msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
+msgid "Plan type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
+msgid "Billing cycle:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
+msgid "Payment method:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
+msgid "PayPal"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
+msgid "Credit Card via 2Checkout"
+msgstr ""
+
+#: airtime_mvc/application/forms/DateRange.php:16
+#: airtime_mvc/application/forms/ShowBuilder.php:18
+msgid "Date Start:"
+msgstr "Tarih Başlangıcı:"
+
+#: airtime_mvc/application/forms/DateRange.php:35
+#: airtime_mvc/application/forms/DateRange.php:63
+#: airtime_mvc/application/forms/ShowBuilder.php:37
+#: airtime_mvc/application/forms/ShowBuilder.php:65
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
+msgid "Invalid character entered"
+msgstr "Yanlış karakter girdiniz"
+
+#: airtime_mvc/application/forms/DateRange.php:44
+#: airtime_mvc/application/forms/ShowBuilder.php:46
+#: airtime_mvc/application/forms/AddShowRepeats.php:56
+msgid "Date End:"
+msgstr "Tarih Bitişi:"
+
+#: airtime_mvc/application/forms/ShowBuilder.php:72
+#: airtime_mvc/application/forms/ShowBuilder.php:88
+msgid "Filter by Show"
+msgstr ""
+
+#: airtime_mvc/application/forms/ShowBuilder.php:80
+msgid "All My Shows:"
+msgstr "Tüm Show'larım:"
+
+#: airtime_mvc/application/forms/AddShowWho.php:10
+msgid "Search Users:"
+msgstr "Kullanıcıları Ara:"
+
+#: airtime_mvc/application/forms/AddShowWho.php:24
+msgid "DJs:"
+msgstr "DJ'ler:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:30
+#: airtime_mvc/application/forms/GeneralPreferences.php:25
+#: airtime_mvc/application/forms/SupportSettings.php:18
+msgid "Station Name"
+msgstr "Radyo Adı"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:39
+#: airtime_mvc/application/forms/SupportSettings.php:31
+msgid "Phone:"
+msgstr "Telefon:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:51
+#: airtime_mvc/application/forms/AddUser.php:67
+#: airtime_mvc/application/forms/EditUser.php:83
+#: airtime_mvc/application/forms/SupportSettings.php:43
+msgid "Email:"
+msgstr "Eposta:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:62
+#: airtime_mvc/application/forms/SupportSettings.php:54
+msgid "Station Web Site:"
+msgstr "Radyo Web Sitesi:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:73
+#: airtime_mvc/application/forms/SupportSettings.php:65
+msgid "Country:"
+msgstr "Ülke:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:84
+#: airtime_mvc/application/forms/SupportSettings.php:76
+msgid "City:"
+msgstr "Şehir:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:96
+#: airtime_mvc/application/forms/SupportSettings.php:88
+msgid "Station Description:"
+msgstr "Radyo Tanımı:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:106
+#: airtime_mvc/application/forms/GeneralPreferences.php:42
+msgid "Station Logo:"
+msgstr "Radyo Logosu:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:126
+#: airtime_mvc/application/forms/SupportSettings.php:108
+#, php-format
+msgid "Promote my station on %s"
+msgstr "Radyomu %s'da tanıt"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:151
+#: airtime_mvc/application/forms/SupportSettings.php:120
+#, php-format
+msgid "By checking this box, I agree to %s's %sprivacy policy%s."
+msgstr "Bu kutuyu işaretleyerek %s'un %sgizlilik politikası%s'nı onaylıyorum"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:169
+#: airtime_mvc/application/forms/SupportSettings.php:143
+msgid "You have to agree to privacy policy."
+msgstr "Gizlilik politikasını kabul etmeniz gerekmektedir."
+
+#: airtime_mvc/application/forms/AddShowRR.php:10
+msgid "Record from Line In?"
+msgstr "Line In'den Kaydet?"
+
+#: airtime_mvc/application/forms/AddShowRR.php:16
+msgid "Rebroadcast?"
+msgstr "Tekrar yayınla?"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
+#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
+msgid "Value is required and can't be empty"
+msgstr "Değer gerekli ve boş bırakılamaz"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
+msgid "'%value%' is no valid email address in the basic format local-part@hostname"
+msgstr "'%value%' kullanici@site.com yapısına uymayan geçersiz bir adres"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
+msgid "'%value%' does not fit the date format '%format%'"
+msgstr "'%value%' değeri '%format%' zaman formatına uymuyor"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
+msgid "'%value%' is less than %min% characters long"
+msgstr "'%value%' değeri olması gereken '%min%' karakterden daha az"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
+msgid "'%value%' is more than %max% characters long"
+msgstr "'%value%' değeri olması gereken '%max%' karakterden daha fazla"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
+msgid "'%value%' is not between '%min%' and '%max%', inclusively"
+msgstr "'%value%' değeri '%min%' ve '%max%' değerleri arasında değil"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
+msgid "Passwords do not match"
+msgstr "Girdiğiniz şifreler örtüşmüyor."
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
+msgid "Day must be specified"
+msgstr "Günü belirtmelisiniz"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
+msgid "Time must be specified"
+msgstr "Zamanı belirtmelisiniz"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
+msgid "Must wait at least 1 hour to rebroadcast"
+msgstr "Tekrar yayın yapmak için en az bir saat bekleyiniz"
+
+#: airtime_mvc/application/forms/PasswordRestore.php:14
+msgid "Email"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordRestore.php:36
+msgid "Reset password"
+msgstr "Parolayı değiştir"
+
+#: airtime_mvc/application/forms/AddShowWhat.php:30
+msgid "Untitled Show"
+msgstr "İsimsiz Show"
+
+#: airtime_mvc/application/forms/AddShowWhat.php:69
+msgid "Instance Description:"
+msgstr ""
+
+#: airtime_mvc/application/forms/DangerousPreferences.php:12
+msgid "Delete All Tracks in Library"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditAudioMD.php:145
+msgid "ISRC Number:"
+msgstr "ISRC No:"
+
+#: airtime_mvc/application/forms/EditAudioMD.php:176
+msgid "OK"
+msgstr "OK"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:33
+msgid "Station Description"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:62
+msgid "Default Crossfade Duration (s):"
+msgstr "Varsayılan Çarpraz Geçiş Süresi:"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:68
+#: airtime_mvc/application/forms/GeneralPreferences.php:82
+#: airtime_mvc/application/forms/GeneralPreferences.php:96
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
+msgid "Please enter a time in seconds (eg. 0.5)"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:76
+msgid "Default Fade In (s):"
+msgstr "Varsayılan Fade In geçişi (s)"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:90
+msgid "Default Fade Out (s):"
+msgstr "Varsayılan Fade Out geçişi (s)"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:102
+msgid "Public Airtime API"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:103
+msgid "Required for embeddable schedule widget."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:105
+msgid "Disabled"
+msgstr "Devre dışı"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:106
+msgid "Enabled"
+msgstr "Aktif"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:109
+msgid ""
+"Enabling this feature will allow Airtime to provide schedule data\n"
+" to external widgets that can be embedded in your website."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:120
+msgid "Default Language"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:127
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
+msgid "Station Timezone"
+msgstr "Radyo Saat Dilimi"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:134
+msgid "Week Starts On"
+msgstr "Hafta Başlangıcı"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:150
+msgid "Display login button on your Radio Page?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:29
+#: airtime_mvc/application/forms/EditUser.php:37
+#: airtime_mvc/application/forms/Login.php:41
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
+msgid "Username:"
+msgstr "Kullanıcı Adı:"
+
+#: airtime_mvc/application/forms/AddUser.php:38
+#: airtime_mvc/application/forms/EditUser.php:48
+#: airtime_mvc/application/forms/Login.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
+msgid "Password:"
+msgstr "Şifre:"
+
+#: airtime_mvc/application/forms/AddUser.php:46
+#: airtime_mvc/application/forms/EditUser.php:57
+msgid "Verify Password:"
+msgstr "Şifre Onayı:"
+
+#: airtime_mvc/application/forms/AddUser.php:55
+#: airtime_mvc/application/forms/EditUser.php:67
+msgid "Firstname:"
+msgstr "İsim:"
+
+#: airtime_mvc/application/forms/AddUser.php:61
+#: airtime_mvc/application/forms/EditUser.php:75
+msgid "Lastname:"
+msgstr "Soyisim:"
+
+#: airtime_mvc/application/forms/AddUser.php:76
+#: airtime_mvc/application/forms/EditUser.php:94
+msgid "Mobile Phone:"
+msgstr "Cep Telefonu:"
+
+#: airtime_mvc/application/forms/AddUser.php:82
+#: airtime_mvc/application/forms/EditUser.php:102
+msgid "Skype:"
+msgstr "Skype:"
+
+#: airtime_mvc/application/forms/AddUser.php:88
+#: airtime_mvc/application/forms/EditUser.php:110
+msgid "Jabber:"
+msgstr "Jabber:"
+
+#: airtime_mvc/application/forms/AddUser.php:95
+msgid "User Type:"
+msgstr "Kullanıcı Tipi:"
+
+#: airtime_mvc/application/forms/AddUser.php:120
+#: airtime_mvc/application/forms/EditUser.php:155
+msgid "Login name is not unique."
+msgstr "Kullanıcı adı eşsiz değil."
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
+msgid "Import Folder:"
+msgstr "İçe Aktarım Klasörü"
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
+msgid "Watched Folders:"
+msgstr "İzlenen Klasörler:"
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
+msgid "Not a valid Directory"
+msgstr "Geçerli bir Klasör değil."
+
+#: airtime_mvc/application/forms/BillingClient.php:126
+msgid "What is the name of your favorite childhood friend?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:127
+msgid "What school did you attend for sixth grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:128
+msgid "In what city did you meet your spouse/significant other?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:129
+msgid "What street did you live on in third grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:130
+msgid "What is the first name of the boy or girl that you first kissed?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:131
+msgid "In what city or town was your first job?"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
+msgid "Default License:"
+msgstr "Varsayılan Lisans Türü:"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
+msgid "All rights are reserved"
+msgstr "Tüm Hakları Saklıdır"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
+msgid "The work is in the public domain"
+msgstr "Eser halka açık olarak kayıtlı"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
+msgid "Creative Commons Attribution"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
+msgid "Creative Commons Attribution Noncommercial"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
+msgid "Creative Commons Attribution No Derivative Works"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
+msgid "Creative Commons Attribution Share Alike"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
+msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
+msgid "Creative Commons Attribution Noncommercial Share Alike"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
+msgid "Default Sharing Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
+msgid "Public"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
+msgid "Private"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditUser.php:129
+msgid "Interface Timezone:"
+msgstr "Arayüz Zaman Dilimi"
+
+#: airtime_mvc/application/forms/Player.php:14
+msgid "Now Playing"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:25
+msgid "Select Stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:28
+msgid "Auto detect the most appropriate stream to use."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:29
+msgid "Select a stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:41
+msgid " - Mobile friendly"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:45
+msgid " - The player does not support Opus streams."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:71
+msgid "Embeddable code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:72
+msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
+#: airtime_mvc/application/models/Block.php:1351
+msgid "Select criteria"
+msgstr "Kriter seçiniz"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
+#: airtime_mvc/application/models/Block.php:1353
+msgid "Bit Rate (Kbps)"
+msgstr "Bit Oranı (Kbps)"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
+#: airtime_mvc/application/models/Block.php:1374
+msgid "Sample Rate (kHz)"
+msgstr "Örnekleme Oranı (kHz)"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
+msgid "hours"
+msgstr "saat"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
+msgid "minutes"
+msgstr "dakika"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
+#: airtime_mvc/application/models/Block.php:333
+msgid "items"
+msgstr "parça"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
+msgid "Randomly"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
+msgid "Newest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
+msgid "Oldest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
+msgid "Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
+msgid "Static"
+msgstr "Sabit"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
+msgid "Dynamic"
+msgstr "Dinamik"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
+msgid "Allow Repeated Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
+msgid "Sort Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
+msgid "Limit to:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
+msgid "Generate playlist content and save criteria"
+msgstr "Çalma listesi içeriği oluştur ve kriterleri kaydet"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
+msgid "Generate"
+msgstr "Oluştur"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
+msgid "Shuffle playlist content"
+msgstr "Çalma listesi içeriğini karıştır"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
+msgid "Limit cannot be empty or smaller than 0"
+msgstr "Sınırlama boş veya 0'dan küçük olamaz"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
+msgid "Limit cannot be more than 24 hrs"
+msgstr "Sınırlama 24 saati geçemez"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
+msgid "The value should be an integer"
+msgstr "Değer tamsayı olmalıdır"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
+msgid "500 is the max item limit value you can set"
+msgstr "Ayarlayabileceğiniz azami parça sınırı 500'dür"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
+msgid "You must select Criteria and Modifier"
+msgstr "Kriter ve Değişken seçin"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
+msgid "'Length' should be in '00:00:00' format"
+msgstr "Uzunluk '00:00:00' türünde olmalıdır"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
+msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)"
+msgstr "Değer saat biçiminde girilmelidir (eör. 0000-00-00 veya 0000-00-00 00:00:00)"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:594
+msgid "The value has to be numeric"
+msgstr "Değer rakam cinsinden girilmelidir"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
+msgid "The value should be less then 2147483648"
+msgstr "Değer 2147483648'den küçük olmalıdır"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
+#, php-format
+msgid "The value should be less than %s characters"
+msgstr "Değer %s karakter'den az olmalıdır"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
+msgid "Value cannot be empty"
+msgstr "Değer boş bırakılamaz"
+
+#: airtime_mvc/application/forms/StreamSetting.php:26
+msgid "Icecast Vorbis Metadata"
+msgstr "Icecast Vorbis Metadata"
+
+#: airtime_mvc/application/forms/StreamSetting.php:36
+msgid "Stream Label:"
+msgstr "Yayın Etiketi:"
+
+#: airtime_mvc/application/forms/StreamSetting.php:37
+msgid "Artist - Title"
+msgstr "Şarkıcı - Parça Adı"
+
+#: airtime_mvc/application/forms/StreamSetting.php:38
+msgid "Show - Artist - Title"
+msgstr "Show - Şarkıcı - Parça Adı"
+
+#: airtime_mvc/application/forms/StreamSetting.php:39
+msgid "Station name - Show name"
+msgstr "Radyo adı - Show adı"
+
+#: airtime_mvc/application/forms/StreamSetting.php:45
+msgid "Off Air Metadata"
+msgstr "Yayın Dışında Gösterilecek Etiket"
+
+#: airtime_mvc/application/forms/StreamSetting.php:51
+msgid "Enable Replay Gain"
+msgstr "ReplayGain'i aktif et"
+
+#: airtime_mvc/application/forms/StreamSetting.php:57
+msgid "Replay Gain Modifier"
+msgstr "ReplayGain Değeri"
+
+#: airtime_mvc/application/forms/StreamSetting.php:65
+msgid "Streaming Server:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Airtime Pro Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Custom / 3rd Party Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordChange.php:17
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
+msgid "Password"
+msgstr "Şifre"
+
+#: airtime_mvc/application/forms/PasswordChange.php:28
+msgid "Confirm new password"
+msgstr "Yeni şifreyi onayla"
+
+#: airtime_mvc/application/forms/PasswordChange.php:36
+msgid "Password confirmation does not match your password."
+msgstr "Onay şifresiyle şifreniz aynı değil."
+
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
+msgid "Station Language"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
+msgid "Enabled:"
+msgstr "Etkin:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
+msgid "Mobile:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
+msgid "Stream Type:"
+msgstr "Yayın Türü:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
+msgid "Service Type:"
+msgstr "Servis Türü:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
+msgid "Channels:"
+msgstr "Kanallar:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "1 - Mono"
+msgstr "1 - Mono"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "2 - Stereo"
+msgstr "2 - Stereo"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
+msgid "Server"
+msgstr "Sunucu"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
+msgid "Port"
+msgstr "Port"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
+msgid "Only numbers are allowed."
+msgstr "Sadece rakam girebilirsiniz."
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
+msgid "URL"
+msgstr "URL"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
+msgid "Mount Point"
+msgstr "Bağlama Noktası"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
+msgid "Admin User"
+msgstr "Yönetici Hesabı"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
+msgid "Admin Password"
+msgstr "Yönetici Şifresi"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
+msgid "Server cannot be empty."
+msgstr "Sunucu değeri boş bırakılamaz."
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
+msgid "Port cannot be empty."
+msgstr "Port değeri boş bırakılamaz."
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
+msgid "Mount cannot be empty with Icecast server."
+msgstr "Icecast sunucusunu Bağlama noktası değeri boş olarak kullanamazsınız."
+
+#: airtime_mvc/application/forms/AddShowWhen.php:16
+msgid "'%value%' does not fit the time format 'HH:mm'"
+msgstr "'%value%' değeri 'HH:mm' saat formatına uymuyor"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:22
+msgid "Start Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:37
+msgid "In the Future:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:64
+msgid "End Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:98
+msgid "Timezone:"
+msgstr "Zaman Dilimi:"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:107
+msgid "Repeats?"
+msgstr "Tekrar Ediyor mu?"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:139
+msgid "Cannot create show in the past"
+msgstr "Geçmiş tarihli bir show oluşturamazsınız"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:147
+msgid "Cannot modify start date/time of the show that is already started"
+msgstr "Başlamış olan bir yayının tarih/saat bilgilerini değiştiremezsiniz"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:156
+#: airtime_mvc/application/models/Show.php:282
+msgid "End date/time cannot be in the past"
+msgstr "Bitiş tarihi geçmişte olamaz"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:164
+msgid "Cannot have duration < 0m"
+msgstr "Uzunluk < 0dk'dan kısa olamaz"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:168
+msgid "Cannot have duration 00h 00m"
+msgstr "00s 00dk Uzunluk olamaz"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:175
+msgid "Cannot have duration greater than 24h"
+msgstr "Yayın süresi 24 saati geçemez"
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:19
+msgid "Push metadata to your station on TuneIn?"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:24
+msgid "Station ID:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:30
+msgid "Partner Key:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:36
+msgid "Partner Id:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:77
+#: airtime_mvc/application/forms/TuneInPreferences.php:86
+msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:10
+#, php-format
+msgid "Use %s Authentication:"
+msgstr "%s Kimlik Doğrulamasını Kullan"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:16
+msgid "Use Custom Authentication:"
+msgstr "Özel Kimlik Doğrulama Kullan"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:25
+msgid "Custom Username"
+msgstr "Özel Kullanıcı Adı"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:37
+msgid "Custom Password"
+msgstr "Özel Şifre"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:48
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
+msgid "Host:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
+msgid "Port:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:60
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
+msgid "Mount:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:77
+msgid "Username field cannot be empty."
+msgstr "Kullanıcı adı kısmı boş bırakılamaz."
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:82
+msgid "Password field cannot be empty."
+msgstr "Şifre kısmı boş bırakılamaz."
+
+#: airtime_mvc/application/forms/AddShowStyle.php:12
+msgid "Background Colour:"
+msgstr "Arkaplan Rengi"
+
+#: airtime_mvc/application/forms/AddShowStyle.php:31
+msgid "Text Colour:"
+msgstr "Metin Rengi:"
+
+#: airtime_mvc/application/forms/AddShowStyle.php:49
+msgid "Current Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:72
+msgid "Show Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:87
+msgid "Logo Preview:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Login.php:102
+msgid "Type the characters you see in the picture below."
+msgstr "Aşağıdaki resimde gördüğünüz karakterleri girin."
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
+msgid "Auto Switch Off:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
+msgid "Auto Switch On:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
+msgid "Switch Transition Fade (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:10
+msgid "Link:"
+msgstr "Birbirine Bağla:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:16
+msgid "Repeat Type:"
+msgstr "Tekrar Türü:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:19
+msgid "weekly"
+msgstr "haftalık"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:20
+msgid "every 2 weeks"
+msgstr "2 haftada bir"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:21
+msgid "every 3 weeks"
+msgstr "3 haftada bir"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:22
+msgid "every 4 weeks"
+msgstr "4 haftada bir"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:23
+msgid "monthly"
+msgstr "aylık"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:32
+msgid "Select Days:"
+msgstr "Günleri Seçin:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:47
+msgid "Repeat By:"
+msgstr "Şuna göre tekrar et:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the month"
+msgstr "Ayın günü"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the week"
+msgstr "Haftanın günü"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:69
+msgid "No End?"
+msgstr "Sonu yok?"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:106
+msgid "End date must be after start date"
+msgstr "Bitiş tarihi başlangıç tarihinden sonra olmalı"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:113
+msgid "Please select a repeat day"
+msgstr "Lütfen tekrar edilmesini istediğiniz günleri seçiniz"
+
+#: airtime_mvc/application/configs/navigation.php:12
+msgid "Radio Page"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:19
+msgid "Calendar"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:26
+msgid "Widgets"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:48
+msgid "Settings"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:67
+msgid "Users"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:74
+msgid "Streams"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:82
+msgid "Analytics"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:90
+msgid "Listener Stats"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:104
+msgid "History Templates"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:113
+msgid "Billing"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:120
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:127
+msgid "Account Details"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:134
+msgid "View Invoices"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:150
+msgid "Getting Started"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:157
+msgid "FAQ"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:162
+msgid "User Manual"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:167
+msgid "File a Support Ticket"
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:833
+#: airtime_mvc/application/models/Playlist.php:812
+msgid "Cue in and cue out are null."
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:868
+#: airtime_mvc/application/models/Block.php:924
+#: airtime_mvc/application/models/Playlist.php:851
+#: airtime_mvc/application/models/Playlist.php:895
+msgid "Can't set cue out to be greater than file length."
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:879
+#: airtime_mvc/application/models/Block.php:900
+#: airtime_mvc/application/models/Playlist.php:843
+#: airtime_mvc/application/models/Playlist.php:868
+msgid "Can't set cue in to be larger than cue out."
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:935
+#: airtime_mvc/application/models/Playlist.php:887
+msgid "Can't set cue out to be smaller than cue in."
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:1366
+msgid "Upload Time"
+msgstr ""
+
+#: airtime_mvc/application/models/ShowBuilder.php:212
+#, php-format
+msgid "Rebroadcast of %s from %s"
+msgstr ""
+
+#: airtime_mvc/application/models/Preference.php:460
+#, php-format
+msgid "Powered by %s"
+msgstr ""
+
+#: airtime_mvc/application/models/Preference.php:588
+msgid "Select Country"
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:160
+#, php-format
+msgid "%s is already watched."
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:164
+#, php-format
+msgid "%s contains nested watched directory: %s"
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:168
+#, php-format
+msgid "%s is nested within existing watched directory: %s"
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:189
+#: airtime_mvc/application/models/MusicDir.php:370
+#, php-format
+msgid "%s is not a valid directory."
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:232
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list"
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:388
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list."
+msgstr ""
+
+#: airtime_mvc/application/models/MusicDir.php:431
+#, php-format
+msgid "%s doesn't exist in the watched list."
+msgstr ""
+
+#: airtime_mvc/application/models/Auth.php:33
+#, php-format
+msgid ""
+"Hi %s, \n"
+"\n"
+"Please click this link to reset your password: "
+msgstr ""
+
+#: airtime_mvc/application/models/Auth.php:38
+#, php-format
+msgid "%s Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/models/Show.php:184
+msgid "Shows can have a max length of 24 hours."
+msgstr ""
+
+#: airtime_mvc/application/models/Show.php:293
+msgid ""
+"Cannot schedule overlapping shows.\n"
+"Note: Resizing a repeating show affects all of its repeats."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:73
+msgid "Cannot move items out of linked shows"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:119
+msgid "The schedule you're viewing is out of date! (sched mismatch)"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:124
+msgid "The schedule you're viewing is out of date! (instance mismatch)"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:132
+#: airtime_mvc/application/models/Scheduler.php:458
+#: airtime_mvc/application/models/Scheduler.php:490
+msgid "The schedule you're viewing is out of date!"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:142
+#, php-format
+msgid "You are not allowed to schedule show %s."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:146
+msgid "You cannot add files to recording shows."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:152
+#, php-format
+msgid "The show %s is over and cannot be scheduled."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:159
+#, php-format
+msgid "The show %s has been previously updated!"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:178
+msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:195
+msgid "Cannot schedule a playlist that contains missing files."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:216
+#: airtime_mvc/application/models/Scheduler.php:305
+msgid "A selected File does not exist!"
+msgstr ""
+
+#: airtime_mvc/application/models/Schedule.php:206
+msgid "livestream"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:166
+msgid "Length needs to be greater than 0 minutes"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:171
+msgid "Length should be of form \"00h 00m\""
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:184
+msgid "URL should be of form \"http://domain\""
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:187
+msgid "URL should be 512 characters or less"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:193
+msgid "No MIME type found for webstream."
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:209
+msgid "Webstream name cannot be empty"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:278
+msgid "Could not parse XSPF playlist"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:298
+msgid "Could not parse PLS playlist"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:318
+msgid "Could not parse M3U playlist"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:332
+msgid "Invalid webstream - This appears to be a file download."
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:336
+#, php-format
+msgid "Unrecognized stream type: %s"
+msgstr ""
+
+#: airtime_mvc/public/setup/rabbitmq-setup.php:78
+msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
+msgstr ""
diff --git a/airtime_mvc/locale/zh_CN/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/zh_CN/LC_MESSAGES/airtime.mo
index 91bb2d26b..3d6677533 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 241d3acca..20beef0c6 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 @@ msgid ""
msgstr ""
"Project-Id-Version: Airtime\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-09-03 10:24-0400\n"
-"PO-Revision-Date: 2014-11-14 09:58+0000\n"
+"POT-Creation-Date: 2015-09-04 11:17-0400\n"
+"PO-Revision-Date: 2015-09-04 08:15+0000\n"
"Last-Translator: Daniel James \n"
"Language-Team: Chinese (China) (http://www.transifex.com/sourcefabric/airtime/language/zh_CN/)\n"
"Language: zh_CN\n"
@@ -18,132 +18,6 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-#: airtime_mvc/public/setup/rabbitmq-setup.php:78
-msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
-msgstr ""
-
-#: airtime_mvc/application/services/HistoryService.php:1117
-#: airtime_mvc/application/services/HistoryService.php:1157
-#: airtime_mvc/application/services/HistoryService.php:1174
-#: airtime_mvc/application/models/Block.php:1375
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
-#: airtime_mvc/application/controllers/LocaleController.php:76
-msgid "Title"
-msgstr "标题"
-
-#: airtime_mvc/application/services/HistoryService.php:1118
-#: airtime_mvc/application/services/HistoryService.php:1158
-#: airtime_mvc/application/services/HistoryService.php:1175
-#: airtime_mvc/application/models/Block.php:1360
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
-#: airtime_mvc/application/controllers/LocaleController.php:77
-msgid "Creator"
-msgstr "作者"
-
-#: airtime_mvc/application/services/HistoryService.php:1119
-#: airtime_mvc/application/models/Block.php:1352
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
-#: airtime_mvc/application/controllers/LocaleController.php:78
-msgid "Album"
-msgstr "专辑"
-
-#: airtime_mvc/application/services/HistoryService.php:1120
-#: airtime_mvc/application/services/HistoryService.php:1177
-#: airtime_mvc/application/models/Block.php:1369
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
-#: airtime_mvc/application/controllers/LocaleController.php:91
-msgid "Length"
-msgstr "时长"
-
-#: airtime_mvc/application/services/HistoryService.php:1121
-#: airtime_mvc/application/models/Block.php:1362
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
-#: airtime_mvc/application/controllers/LocaleController.php:85
-msgid "Genre"
-msgstr "风格"
-
-#: airtime_mvc/application/services/HistoryService.php:1122
-#: airtime_mvc/application/models/Block.php:1371
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
-#: airtime_mvc/application/controllers/LocaleController.php:93
-msgid "Mood"
-msgstr "风格"
-
-#: airtime_mvc/application/services/HistoryService.php:1123
-#: airtime_mvc/application/models/Block.php:1364
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
-#: airtime_mvc/application/controllers/LocaleController.php:87
-msgid "Label"
-msgstr "标签"
-
-#: airtime_mvc/application/services/HistoryService.php:1124
-#: airtime_mvc/application/services/HistoryService.php:1178
-#: airtime_mvc/application/models/Block.php:1355
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
-#: airtime_mvc/application/controllers/LocaleController.php:81
-msgid "Composer"
-msgstr "作曲"
-
-#: airtime_mvc/application/services/HistoryService.php:1125
-#: airtime_mvc/application/models/Block.php:1363
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
-#: airtime_mvc/application/controllers/LocaleController.php:86
-msgid "ISRC"
-msgstr "ISRC码"
-
-#: airtime_mvc/application/services/HistoryService.php:1126
-#: airtime_mvc/application/services/HistoryService.php:1179
-#: airtime_mvc/application/models/Block.php:1357
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
-#: airtime_mvc/application/controllers/LocaleController.php:83
-msgid "Copyright"
-msgstr "版权"
-
-#: airtime_mvc/application/services/HistoryService.php:1127
-#: airtime_mvc/application/models/Block.php:1379
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
-#: airtime_mvc/application/controllers/LocaleController.php:100
-msgid "Year"
-msgstr "年代"
-
-#: airtime_mvc/application/services/HistoryService.php:1128
-msgid "Track"
-msgstr "曲目"
-
-#: airtime_mvc/application/services/HistoryService.php:1129
-#: airtime_mvc/application/models/Block.php:1356
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
-#: airtime_mvc/application/controllers/LocaleController.php:82
-msgid "Conductor"
-msgstr "指挥"
-
-#: airtime_mvc/application/services/HistoryService.php:1130
-#: airtime_mvc/application/models/Block.php:1365
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
-#: airtime_mvc/application/controllers/LocaleController.php:88
-msgid "Language"
-msgstr "语种"
-
-#: airtime_mvc/application/services/HistoryService.php:1155
-#: airtime_mvc/application/forms/EditHistoryItem.php:32
-msgid "Start Time"
-msgstr "开始时间"
-
-#: airtime_mvc/application/services/HistoryService.php:1156
-#: airtime_mvc/application/forms/EditHistoryItem.php:44
-msgid "End Time"
-msgstr "结束时间"
-
-#: airtime_mvc/application/services/HistoryService.php:1176
-msgid "Played"
-msgstr "已播放"
-
#: airtime_mvc/application/services/CalendarService.php:50
msgid "Record file doesn't exist"
msgstr "录制文件不存在"
@@ -239,2605 +113,382 @@ msgstr "录音节目不存在,节目已删除!"
msgid "Must wait 1 hour to rebroadcast."
msgstr "重播节目必须设置于1小时之后。"
-#: airtime_mvc/application/models/Schedule.php:206
-msgid "livestream"
-msgstr ""
-
-#: airtime_mvc/application/models/ShowBuilder.php:212
-#, php-format
-msgid "Rebroadcast of %s from %s"
-msgstr "%s是%s的重播"
-
-#: airtime_mvc/application/models/Webstream.php:166
-msgid "Length needs to be greater than 0 minutes"
-msgstr "节目时长必须大于0分钟"
-
-#: airtime_mvc/application/models/Webstream.php:171
-msgid "Length should be of form \"00h 00m\""
-msgstr "时间的格式应该是 \"00h 00m\""
-
-#: airtime_mvc/application/models/Webstream.php:184
-msgid "URL should be of form \"http://domain\""
-msgstr "地址的格式应该是 \"http://domain\""
-
-#: airtime_mvc/application/models/Webstream.php:187
-msgid "URL should be 512 characters or less"
-msgstr "地址的最大长度不能超过512字节"
-
-#: airtime_mvc/application/models/Webstream.php:193
-msgid "No MIME type found for webstream."
-msgstr "这个媒体流不存在MIME属性,无法添加"
-
-#: airtime_mvc/application/models/Webstream.php:209
-msgid "Webstream name cannot be empty"
-msgstr "媒体流的名字不能为空"
-
-#: airtime_mvc/application/models/Webstream.php:278
-msgid "Could not parse XSPF playlist"
-msgstr "发现XSPF格式的播放列表,但是格式错误"
-
-#: airtime_mvc/application/models/Webstream.php:298
-msgid "Could not parse PLS playlist"
-msgstr "发现PLS格式的播放列表,但是格式错误"
-
-#: airtime_mvc/application/models/Webstream.php:318
-msgid "Could not parse M3U playlist"
-msgstr "发现M3U格式的播放列表,但是格式错误"
-
-#: airtime_mvc/application/models/Webstream.php:332
-msgid "Invalid webstream - This appears to be a file download."
-msgstr "媒体流格式错误,当前“媒体流”只是一个可下载的文件"
-
-#: airtime_mvc/application/models/Webstream.php:336
-#, php-format
-msgid "Unrecognized stream type: %s"
-msgstr "未知的媒体流格式: %s"
-
-#: airtime_mvc/application/models/Preference.php:460
-#, php-format
-msgid "Powered by %s"
-msgstr ""
-
-#: airtime_mvc/application/models/Preference.php:588
-msgid "Select Country"
-msgstr "选择国家"
-
-#: airtime_mvc/application/models/MusicDir.php:160
-#, php-format
-msgid "%s is already watched."
-msgstr "%s 已经监控"
-
-#: airtime_mvc/application/models/MusicDir.php:164
-#, php-format
-msgid "%s contains nested watched directory: %s"
-msgstr "%s 所含的子文件夹 %s 已经被监控"
-
-#: airtime_mvc/application/models/MusicDir.php:168
-#, php-format
-msgid "%s is nested within existing watched directory: %s"
-msgstr "%s 无法监控,因为父文件夹 %s 已经监控"
-
-#: airtime_mvc/application/models/MusicDir.php:189
-#: airtime_mvc/application/models/MusicDir.php:370
-#, php-format
-msgid "%s is not a valid directory."
-msgstr "%s 不是文件夹。"
-
-#: airtime_mvc/application/models/MusicDir.php:232
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list"
-msgstr "%s 已经设置成媒体存储文件夹,或者监控文件夹。"
-
-#: airtime_mvc/application/models/MusicDir.php:388
-#, php-format
-msgid "%s is already set as the current storage dir or in the watched folders list."
-msgstr "%s 已经设置成媒体存储文件夹,或者监控文件夹。"
-
-#: airtime_mvc/application/models/MusicDir.php:431
-#, php-format
-msgid "%s doesn't exist in the watched list."
-msgstr "监控文件夹名单里不存在 %s "
-
-#: airtime_mvc/application/models/Show.php:184
-msgid "Shows can have a max length of 24 hours."
-msgstr "节目时长只能设置在24小时以内"
-
-#: airtime_mvc/application/models/Show.php:282
-#: airtime_mvc/application/forms/AddShowWhen.php:156
-msgid "End date/time cannot be in the past"
-msgstr "节目结束的时间或日期不能设置为过去的时间"
-
-#: airtime_mvc/application/models/Show.php:293
-msgid ""
-"Cannot schedule overlapping shows.\n"
-"Note: Resizing a repeating show affects all of its repeats."
-msgstr ""
-"节目时间设置于其他的节目有冲突。\n"
-"提示:修改系列节目中的一个,将影响整个节目系列"
-
-#: airtime_mvc/application/models/Auth.php:33
-#, php-format
-msgid ""
-"Hi %s, \n"
-"\n"
-"Please click this link to reset your password: "
-msgstr ""
-
-#: airtime_mvc/application/models/Auth.php:38
-#, php-format
-msgid "%s Password Reset"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:333
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
-msgid "items"
-msgstr "个数"
-
-#: airtime_mvc/application/models/Block.php:833
-#: airtime_mvc/application/models/Playlist.php:812
-msgid "Cue in and cue out are null."
-msgstr "切入点和切出点均为空"
-
-#: airtime_mvc/application/models/Block.php:868
-#: airtime_mvc/application/models/Block.php:924
-#: airtime_mvc/application/models/Playlist.php:851
-#: airtime_mvc/application/models/Playlist.php:895
-msgid "Can't set cue out to be greater than file length."
-msgstr "切出点不能超出文件原长度"
-
-#: airtime_mvc/application/models/Block.php:879
-#: airtime_mvc/application/models/Block.php:900
-#: airtime_mvc/application/models/Playlist.php:843
-#: airtime_mvc/application/models/Playlist.php:868
-msgid "Can't set cue in to be larger than cue out."
-msgstr "切入点不能晚于切出点"
-
-#: airtime_mvc/application/models/Block.php:935
-#: airtime_mvc/application/models/Playlist.php:887
-msgid "Can't set cue out to be smaller than cue in."
-msgstr "切出点不能早于切入点"
-
-#: airtime_mvc/application/models/Block.php:1351
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
-msgid "Select criteria"
-msgstr "选择属性"
-
-#: airtime_mvc/application/models/Block.php:1353
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
-msgid "Bit Rate (Kbps)"
-msgstr "比特率(Kbps)"
-
-#: airtime_mvc/application/models/Block.php:1354
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
-#: airtime_mvc/application/controllers/LocaleController.php:80
-msgid "BPM"
-msgstr "每分钟拍子数"
-
-#: airtime_mvc/application/models/Block.php:1358
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
-#: airtime_mvc/application/controllers/LocaleController.php:281
-#: airtime_mvc/application/layouts/scripts/layout.phtml:140
-msgid "Cue In"
-msgstr "切入"
-
-#: airtime_mvc/application/models/Block.php:1359
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:282
-#: airtime_mvc/application/layouts/scripts/layout.phtml:147
-msgid "Cue Out"
-msgstr "切出"
-
-#: airtime_mvc/application/models/Block.php:1361
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
-#: airtime_mvc/application/controllers/LocaleController.php:84
-msgid "Encoded By"
-msgstr "编曲"
-
-#: airtime_mvc/application/models/Block.php:1366
-msgid "Upload Time"
-msgstr ""
-
-#: airtime_mvc/application/models/Block.php:1367
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
-#: airtime_mvc/application/controllers/LocaleController.php:89
-msgid "Last Modified"
-msgstr "最近更新于"
-
-#: airtime_mvc/application/models/Block.php:1368
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
-#: airtime_mvc/application/controllers/LocaleController.php:90
-msgid "Last Played"
-msgstr "上次播放于"
-
-#: airtime_mvc/application/models/Block.php:1370
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
-#: airtime_mvc/application/controllers/LocaleController.php:92
-msgid "Mime"
-msgstr "MIME信息"
-
-#: airtime_mvc/application/models/Block.php:1372
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
-#: airtime_mvc/application/controllers/LocaleController.php:94
-msgid "Owner"
-msgstr "所有者"
-
-#: airtime_mvc/application/models/Block.php:1373
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
-#: airtime_mvc/application/controllers/LocaleController.php:95
-msgid "Replay Gain"
-msgstr "回放增益"
-
-#: airtime_mvc/application/models/Block.php:1374
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
-msgid "Sample Rate (kHz)"
-msgstr "样本率(KHz)"
-
-#: airtime_mvc/application/models/Block.php:1376
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
-#: airtime_mvc/application/controllers/LocaleController.php:97
-msgid "Track Number"
-msgstr "曲目"
-
-#: airtime_mvc/application/models/Block.php:1377
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
-#: airtime_mvc/application/controllers/LocaleController.php:98
-msgid "Uploaded"
-msgstr "上传于"
-
-#: airtime_mvc/application/models/Block.php:1378
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
-#: airtime_mvc/application/controllers/LocaleController.php:99
-msgid "Website"
-msgstr "网址"
-
-#: airtime_mvc/application/models/Block.php:1383
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
-#: airtime_mvc/application/controllers/LocaleController.php:151
-msgid "Select modifier"
-msgstr "选择操作符"
-
-#: airtime_mvc/application/models/Block.php:1384
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
-#: airtime_mvc/application/controllers/LocaleController.php:152
-msgid "contains"
-msgstr "包含"
-
-#: airtime_mvc/application/models/Block.php:1385
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
-#: airtime_mvc/application/controllers/LocaleController.php:153
-msgid "does not contain"
-msgstr "不包含"
-
-#: airtime_mvc/application/models/Block.php:1386
-#: airtime_mvc/application/models/Block.php:1390
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
-#: airtime_mvc/application/controllers/LocaleController.php:154
-msgid "is"
-msgstr "是"
-
-#: airtime_mvc/application/models/Block.php:1387
-#: airtime_mvc/application/models/Block.php:1391
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
-#: airtime_mvc/application/controllers/LocaleController.php:155
-msgid "is not"
-msgstr "不是"
-
-#: airtime_mvc/application/models/Block.php:1388
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
-#: airtime_mvc/application/controllers/LocaleController.php:156
-msgid "starts with"
-msgstr "起始于"
-
-#: airtime_mvc/application/models/Block.php:1389
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
-#: airtime_mvc/application/controllers/LocaleController.php:157
-msgid "ends with"
-msgstr "结束于"
-
-#: airtime_mvc/application/models/Block.php:1392
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
-#: airtime_mvc/application/controllers/LocaleController.php:158
-msgid "is greater than"
-msgstr "大于"
-
-#: airtime_mvc/application/models/Block.php:1393
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
-#: airtime_mvc/application/controllers/LocaleController.php:159
-msgid "is less than"
-msgstr "小于"
-
-#: airtime_mvc/application/models/Block.php:1394
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
-#: airtime_mvc/application/controllers/LocaleController.php:160
-msgid "is in the range"
-msgstr "处于"
-
-#: airtime_mvc/application/models/Scheduler.php:73
-msgid "Cannot move items out of linked shows"
-msgstr "不能从绑定的节目系列里移出项目"
-
-#: airtime_mvc/application/models/Scheduler.php:119
-msgid "The schedule you're viewing is out of date! (sched mismatch)"
-msgstr "当前节目内容表(内容部分)需要刷新"
-
-#: airtime_mvc/application/models/Scheduler.php:124
-msgid "The schedule you're viewing is out of date! (instance mismatch)"
-msgstr "当前节目内容表(节目已更改)需要刷新"
-
-#: airtime_mvc/application/models/Scheduler.php:132
-#: airtime_mvc/application/models/Scheduler.php:458
-#: airtime_mvc/application/models/Scheduler.php:490
-msgid "The schedule you're viewing is out of date!"
-msgstr "当前节目内容需要刷新!"
-
-#: airtime_mvc/application/models/Scheduler.php:142
-#, php-format
-msgid "You are not allowed to schedule show %s."
-msgstr "没有赋予修改节目 %s 的权限。"
-
-#: airtime_mvc/application/models/Scheduler.php:146
-msgid "You cannot add files to recording shows."
-msgstr "录音节目不能添加别的内容。"
-
-#: airtime_mvc/application/models/Scheduler.php:152
-#, php-format
-msgid "The show %s is over and cannot be scheduled."
-msgstr "节目%s已结束,不能在添加任何内容。"
-
-#: airtime_mvc/application/models/Scheduler.php:159
-#, php-format
-msgid "The show %s has been previously updated!"
-msgstr "节目%s已经更改,需要刷新后再尝试。"
-
-#: airtime_mvc/application/models/Scheduler.php:178
-msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
-msgstr "绑定的节目要么提前设置好,要么等待其中的任何一个节目结束后才能编辑内容"
-
-#: airtime_mvc/application/models/Scheduler.php:195
-msgid "Cannot schedule a playlist that contains missing files."
-msgstr ""
-
-#: airtime_mvc/application/models/Scheduler.php:216
-#: airtime_mvc/application/models/Scheduler.php:305
-msgid "A selected File does not exist!"
-msgstr "某个选中的文件不存在。"
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
-#: airtime_mvc/application/configs/navigation.php:40
-msgid "Weekly Schedule"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
-#: airtime_mvc/application/forms/Player.php:77
-msgid "Preview:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
-#: airtime_mvc/application/configs/navigation.php:34
-msgid "Player"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
-#: airtime_mvc/application/controllers/LocaleController.php:362
-#: airtime_mvc/application/controllers/LocaleController.php:390
-msgid "Close"
-msgstr "关闭"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Add this show"
-msgstr "添加此节目"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
-msgid "Update show"
-msgstr "更新节目"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
-msgid "What"
-msgstr "名称"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
-msgid "When"
-msgstr "时间"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
-msgid "Live Stream Input"
-msgstr "输入流设置"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
-msgid "Who"
-msgstr "管理和编辑"
-
-#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
-msgid "Style"
+#: airtime_mvc/application/services/HistoryService.php:1117
+#: airtime_mvc/application/services/HistoryService.php:1157
+#: airtime_mvc/application/services/HistoryService.php:1174
+#: airtime_mvc/application/controllers/LocaleController.php:76
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:72
+#: airtime_mvc/application/models/Block.php:1375
+msgid "Title"
+msgstr "标题"
+
+#: airtime_mvc/application/services/HistoryService.php:1118
+#: airtime_mvc/application/services/HistoryService.php:1158
+#: airtime_mvc/application/services/HistoryService.php:1175
+#: airtime_mvc/application/controllers/LocaleController.php:77
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:58
+#: airtime_mvc/application/models/Block.php:1360
+msgid "Creator"
+msgstr "作者"
+
+#: airtime_mvc/application/services/HistoryService.php:1119
+#: airtime_mvc/application/controllers/LocaleController.php:78
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:50
+#: airtime_mvc/application/models/Block.php:1352
+msgid "Album"
+msgstr "专辑"
+
+#: airtime_mvc/application/services/HistoryService.php:1120
+#: airtime_mvc/application/services/HistoryService.php:1177
+#: airtime_mvc/application/controllers/LocaleController.php:91
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:66
+#: airtime_mvc/application/models/Block.php:1369
+msgid "Length"
+msgstr "时长"
+
+#: airtime_mvc/application/services/HistoryService.php:1121
+#: airtime_mvc/application/controllers/LocaleController.php:85
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:60
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:127
+#: airtime_mvc/application/models/Block.php:1362
+msgid "Genre"
msgstr "风格"
-#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
-#: airtime_mvc/application/controllers/LocaleController.php:273
-msgid "Start"
-msgstr "开始"
+#: airtime_mvc/application/services/HistoryService.php:1122
+#: airtime_mvc/application/controllers/LocaleController.php:93
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:68
+#: airtime_mvc/application/models/Block.php:1371
+msgid "Mood"
+msgstr "风格"
-#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
-msgid "Password Reset"
-msgstr ""
+#: airtime_mvc/application/services/HistoryService.php:1123
+#: airtime_mvc/application/controllers/LocaleController.php:87
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:62
+#: airtime_mvc/application/models/Block.php:1364
+msgid "Label"
+msgstr "标签"
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
-msgid "Email Sent!"
-msgstr ""
+#: airtime_mvc/application/services/HistoryService.php:1124
+#: airtime_mvc/application/services/HistoryService.php:1178
+#: airtime_mvc/application/controllers/LocaleController.php:81
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:53
+#: airtime_mvc/application/models/Block.php:1355
+msgid "Composer"
+msgstr "作曲"
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
-msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
-msgstr ""
+#: airtime_mvc/application/services/HistoryService.php:1125
+#: airtime_mvc/application/controllers/LocaleController.php:86
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:61
+#: airtime_mvc/application/models/Block.php:1363
+msgid "ISRC"
+msgstr "ISRC码"
-#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
-msgid "Back"
-msgstr ""
+#: airtime_mvc/application/services/HistoryService.php:1126
+#: airtime_mvc/application/services/HistoryService.php:1179
+#: airtime_mvc/application/controllers/LocaleController.php:83
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:55
+#: airtime_mvc/application/models/Block.php:1357
+msgid "Copyright"
+msgstr "版权"
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
-msgid "New password"
-msgstr "新密码"
+#: airtime_mvc/application/services/HistoryService.php:1127
+#: airtime_mvc/application/controllers/LocaleController.php:100
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:76
+#: airtime_mvc/application/models/Block.php:1379
+msgid "Year"
+msgstr "年代"
-#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
-msgid "Please enter and confirm your new password in the fields below."
-msgstr "请再次输入你的新密码。"
+#: airtime_mvc/application/services/HistoryService.php:1128
+msgid "Track"
+msgstr "曲目"
-#: airtime_mvc/application/views/scripts/login/index.phtml:3
-#: airtime_mvc/application/forms/Login.php:83
-msgid "Login"
-msgstr "登录"
+#: airtime_mvc/application/services/HistoryService.php:1129
+#: airtime_mvc/application/controllers/LocaleController.php:82
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:54
+#: airtime_mvc/application/models/Block.php:1356
+msgid "Conductor"
+msgstr "指挥"
-#: airtime_mvc/application/views/scripts/login/index.phtml:7
+#: airtime_mvc/application/services/HistoryService.php:1130
+#: airtime_mvc/application/controllers/LocaleController.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:63
+#: airtime_mvc/application/models/Block.php:1365
+msgid "Language"
+msgstr "语种"
+
+#: airtime_mvc/application/services/HistoryService.php:1155
+#: airtime_mvc/application/forms/EditHistoryItem.php:32
+msgid "Start Time"
+msgstr "开始时间"
+
+#: airtime_mvc/application/services/HistoryService.php:1156
+#: airtime_mvc/application/forms/EditHistoryItem.php:44
+msgid "End Time"
+msgstr "结束时间"
+
+#: airtime_mvc/application/services/HistoryService.php:1176
+msgid "Played"
+msgstr "已播放"
+
+#: airtime_mvc/application/controllers/LibraryController.php:31
+#: airtime_mvc/application/controllers/PlaylistController.php:147
#, php-format
-msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
+msgid "%s not found"
+msgstr "%s不存在"
+
+#: airtime_mvc/application/controllers/LibraryController.php:40
+#: airtime_mvc/application/controllers/PlaylistController.php:168
+msgid "Something went wrong."
+msgstr "未知错误。"
+
+#: airtime_mvc/application/controllers/LibraryController.php:95
+#: airtime_mvc/application/controllers/ShowbuilderController.php:136
+msgid "Preview"
+msgstr "预览"
+
+#: airtime_mvc/application/controllers/LibraryController.php:115
+#: airtime_mvc/application/controllers/LibraryController.php:177
+#: airtime_mvc/application/controllers/LibraryController.php:200
+msgid "Add to Playlist"
+msgstr "添加到播放列表"
+
+#: airtime_mvc/application/controllers/LibraryController.php:117
+msgid "Add to Smart Block"
+msgstr "添加到智能模块"
+
+#: airtime_mvc/application/controllers/LibraryController.php:123
+#: airtime_mvc/application/controllers/LocaleController.php:66
+msgid "Edit Metadata"
+msgstr "编辑元数据"
+
+#: airtime_mvc/application/controllers/LibraryController.php:131
+#: airtime_mvc/application/controllers/ScheduleController.php:712
+msgid "Download"
+msgstr "下载"
+
+#: airtime_mvc/application/controllers/LibraryController.php:147
+msgid "View track"
msgstr ""
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:97
-msgid "Playout History"
-msgstr "播出历史"
+#: airtime_mvc/application/controllers/LibraryController.php:148
+msgid "Remove track"
+msgstr ""
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
-msgid "Log Sheet"
-msgstr "历史记录表单"
+#: airtime_mvc/application/controllers/LibraryController.php:154
+#: airtime_mvc/application/controllers/LibraryController.php:159
+msgid "Upload track"
+msgstr ""
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
-msgid "File Summary"
-msgstr "文件播放记录"
+#: airtime_mvc/application/controllers/LibraryController.php:169
+msgid "Duplicate Playlist"
+msgstr "复制播放列表"
-#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
-msgid "Show Summary"
-msgstr "节目播放记录"
+#: airtime_mvc/application/controllers/LibraryController.php:213
+msgid "No action available"
+msgstr "没有操作选择"
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
-msgid "Your trial expires in"
-msgstr "你的试用天数还剩"
+#: airtime_mvc/application/controllers/LibraryController.php:233
+msgid "You don't have permission to delete selected items."
+msgstr "你没有删除选定项目的权限。"
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
-msgid "days"
-msgstr "天"
+#: airtime_mvc/application/controllers/LibraryController.php:279
+msgid "Could not delete file because it is scheduled in the future."
+msgstr ""
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+#: airtime_mvc/application/controllers/LibraryController.php:282
+msgid "Could not delete file(s)."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LibraryController.php:322
#, php-format
-msgid "Purchase an %s Pro plan!"
-msgstr ""
+msgid "Copy of %s"
+msgstr "%s的副本"
-#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
-msgid "My Account"
-msgstr "我的账户"
+#: airtime_mvc/application/controllers/WebstreamController.php:28
+#: airtime_mvc/application/controllers/WebstreamController.php:32
+msgid "Untitled Webstream"
+msgstr "未命名的网络流媒体"
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
-msgid "Previous:"
-msgstr "之前的:"
+#: airtime_mvc/application/controllers/WebstreamController.php:150
+msgid "Webstream saved."
+msgstr "网络流媒体已保存。"
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
-msgid "Next:"
-msgstr "之后的:"
+#: airtime_mvc/application/controllers/WebstreamController.php:158
+msgid "Invalid form values."
+msgstr "无效的表格内容。"
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
-msgid "Source Streams"
-msgstr "输入流"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
-msgid "Master Source"
-msgstr "主输入流"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
-msgid "Show Source"
-msgstr "节目定制的输入流"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
-msgid "ON AIR"
-msgstr "直播中"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
-msgid "Listen"
-msgstr "收听"
-
-#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
-msgid "Logout"
-msgstr "登出"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
-msgid "Drop files here or click to browse your computer."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
-#: airtime_mvc/application/controllers/LocaleController.php:314
-msgid "in use"
-msgstr "使用中"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
-#: airtime_mvc/application/controllers/LocaleController.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:401
-msgid "All"
-msgstr "全部"
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
-msgid "Failed"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
-msgid "Pending"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
-msgid "Recent Uploads"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
-#: airtime_mvc/application/configs/navigation.php:120
-msgid "Account Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
-msgid "Upgrade today to get more listeners and storage space!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
-msgid "View Plans"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
-msgid "About"
-msgstr "关于"
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
-#, php-format
-msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
-#, php-format
-msgid "%1$s %2$s is distributed under the %3$s"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
-#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
-msgid "Live stream"
-msgstr "插播流"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
-msgid "Share"
-msgstr "共享"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
-msgid "Select stream:"
-msgstr "选择流:"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
-msgid "mute"
-msgstr "静音"
-
-#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
-msgid "unmute"
-msgstr "取消静音"
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
-#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
-#, php-format
-msgid "Welcome to %s!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
-#, php-format
-msgid "Here's how you can get started using %s to automate your broadcasts: "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
-msgid "Upload audio tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
-msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
-msgid "Schedule a show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
-msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
-msgid "Add tracks to your show"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
-msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
-msgid "Now you're good to go!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
-#, php-format
-msgid "For more detailed help, read the %suser manual%s."
-msgstr "详细的指导,可以参考%s用户手册%s。"
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
-msgid "Listeners"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
-msgid "Stream Data Collection Status"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
-#: airtime_mvc/application/views/scripts/error/error.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
-msgid "An error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
-msgid "Access Denied!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
-msgid "You do not have permission to access this page!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
-#: airtime_mvc/application/views/scripts/error/error.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
-#: airtime_mvc/application/configs/navigation.php:143
-msgid "Help"
-msgstr "帮助"
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
-msgid "Page not found!"
-msgstr "页面不存在!"
-
-#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
-msgid "We couldn't find the page you were looking for."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error.phtml:12
-msgid "Looks like the page you were looking for doesn't exist!"
-msgstr "你所寻找的页面不存在!"
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
-msgid "Oops!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
-msgid "Something went wrong!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
-msgid "Bad Request!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
-msgid "The requested action is not supported!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
-msgid "Viewing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
-msgid "Editing "
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:3
-msgid "File import in progress..."
-msgstr "导入文件进行中..."
-
-#: airtime_mvc/application/views/scripts/library/library.phtml:10
-#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
-msgid "Advanced Search Options"
-msgstr "高级查询选项"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
-#: airtime_mvc/application/forms/Player.php:15
-#: airtime_mvc/application/forms/EditAudioMD.php:24
-msgid "Title:"
-msgstr "歌曲名:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
-#: airtime_mvc/application/forms/EditAudioMD.php:34
-msgid "Creator:"
-msgstr "作者:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
-#: airtime_mvc/application/forms/EditAudioMD.php:44
-msgid "Album:"
-msgstr "专辑名:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
-msgid "Track:"
-msgstr "曲目编号:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
-msgid "Length:"
-msgstr "长度:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
-msgid "Sample Rate:"
-msgstr "样本率:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
-msgid "Bit Rate:"
-msgstr "比特率:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
-#: airtime_mvc/application/forms/EditAudioMD.php:115
-msgid "Mood:"
-msgstr "情怀:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
-#: airtime_mvc/application/forms/EditAudioMD.php:62
-#: airtime_mvc/application/forms/AddShowWhat.php:45
-msgid "Genre:"
-msgstr "风格:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
-#: airtime_mvc/application/forms/EditAudioMD.php:72
-msgid "Year:"
-msgstr "年份:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
-#: airtime_mvc/application/forms/EditAudioMD.php:85
-msgid "Label:"
-msgstr "标签:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
-#: airtime_mvc/application/forms/EditAudioMD.php:125
-msgid "BPM:"
-msgstr "拍子(BPM):"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
-#: airtime_mvc/application/forms/EditAudioMD.php:95
-msgid "Composer:"
-msgstr "编曲:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
-#: airtime_mvc/application/forms/EditAudioMD.php:105
-msgid "Conductor:"
-msgstr "制作:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
-#: airtime_mvc/application/forms/EditAudioMD.php:135
-msgid "Copyright:"
-msgstr "版权:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
-msgid "Isrc Number:"
-msgstr "ISRC编号:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
-#: airtime_mvc/application/forms/EditAudioMD.php:155
-msgid "Website:"
-msgstr "网站:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
-#: airtime_mvc/application/forms/EditUser.php:119
-#: airtime_mvc/application/forms/EditAudioMD.php:165
-#: airtime_mvc/application/forms/Login.php:68
-msgid "Language:"
-msgstr "语言:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
-msgid "File Path:"
-msgstr "文件路径:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
-#: airtime_mvc/application/forms/AddShowWhat.php:26
-msgid "Name:"
-msgstr "名字:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
-#: airtime_mvc/application/forms/AddShowWhat.php:54
-msgid "Description:"
-msgstr "描述:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
-msgid "Web Stream"
-msgstr "网络流媒体"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
-msgid "Dynamic Smart Block"
-msgstr "动态智能模块"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
-msgid "Static Smart Block"
-msgstr "静态智能模块"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
-msgid "Audio Track"
-msgstr "音频文件"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
-msgid "Playlist Contents: "
-msgstr "播放列表内容:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
-msgid "Static Smart Block Contents: "
-msgstr "静态智能模块条件:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
-msgid "Dynamic Smart Block Criteria: "
-msgstr "动态智能模块条件:"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
-msgid "Limit to "
-msgstr "限制到"
-
-#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
-#: airtime_mvc/application/forms/AddShowWhat.php:36
-msgid "URL:"
-msgstr "链接地址:"
-
-#: airtime_mvc/application/views/scripts/form/login.phtml:41
-msgid "Forgot your password?"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
-#, php-format
-msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
-#, php-format
-msgid "Click the box below to promote your station on %s."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
-msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
-msgstr "(为了推广您的电台,请启用‘发送支持反馈’)"
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
-msgid "(Required)"
-msgstr "(必填)"
-
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
-#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
-msgid "(for verification purposes only, will not be published)"
-msgstr "(仅作为验证目的使用,不会用于发布)"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
-msgid "Choose folder"
-msgstr "选择文件夹"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
-msgid "Set"
-msgstr "设置"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
-msgid "Current Import Folder:"
-msgstr "当前的导入文件夹:"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
-msgid "Add"
-msgstr "添加"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
-#, php-format
-msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
-msgid "Remove watched directory"
-msgstr "移除监控文件夹"
-
-#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
-msgid "You are not watching any media folders."
-msgstr "你没有正在监控的文件夹。"
-
-#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
-msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
-msgid "Live Broadcasting"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
-msgid "Use these settings in your broadcasting software to stream live at any time."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
-msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
-msgid "Choose Show Instance"
-msgstr "选择节目项"
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
-#: airtime_mvc/application/forms/EditHistoryItem.php:57
-#: airtime_mvc/application/controllers/LocaleController.php:400
-msgid "No Show"
-msgstr "无节目"
-
-#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
-msgid "Find"
-msgstr "查找"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
-msgid "Choose Days:"
-msgstr "选择天数:"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
-#: airtime_mvc/application/forms/AddShowStyle.php:64
-#: airtime_mvc/application/forms/GeneralPreferences.php:53
-msgid "Remove"
-msgstr "移除"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
-msgid "Stream "
-msgstr "流"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
-msgid "Additional Options"
-msgstr "附属选项"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
-msgid "The following info will be displayed to listeners in their media player:"
-msgstr "以下内容将会在听众的媒体播放器上显示:"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
-msgid "(Your radio station website)"
-msgstr "(你电台的网站)"
-
-#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
-msgid "Stream URL: "
-msgstr "流的链接地址:"
-
-#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
-msgid "Find Shows"
-msgstr "查找节目"
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
-msgid "TuneIn Settings"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
-msgid "SoundCloud Settings"
-msgstr "SoundCloud设置"
-
-#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
-msgid "Dangerous Options"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
-msgid "Search Criteria:"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
-msgid "New Criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
-msgid "or"
-msgstr "或"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
-msgid "and"
-msgstr "和"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
-msgid "New Modifier"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
-msgid " to "
-msgstr "到"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
-msgid "files meet the criteria"
-msgstr "个文件符合条件"
-
-#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
-msgid "file meets the criteria"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
-#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
-msgid "Filter History"
-msgstr "历史记录过滤"
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
-#: airtime_mvc/application/configs/navigation.php:61
-msgid "My Profile"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
-#, php-format
-msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
-#: airtime_mvc/application/forms/Preferences.php:40
-#: airtime_mvc/application/forms/PasswordChange.php:43
-#: airtime_mvc/application/forms/AddUser.php:110
-#: airtime_mvc/application/forms/BillingClient.php:193
-#: airtime_mvc/application/forms/SupportSettings.php:131
-#: airtime_mvc/application/forms/EditHistory.php:131
-#: airtime_mvc/application/controllers/LocaleController.php:294
-msgid "Save"
-msgstr "保存"
-
-#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
-msgid "Repeat Days:"
-msgstr "重复天数:"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
-msgid "Register Airtime"
-msgstr "注册Airtime"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
-#: airtime_mvc/application/forms/GeneralPreferences.php:43
-msgid "Note: Anything larger than 600x600 will be resized."
-msgstr "注意:大于600x600的图片将会被缩放"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
-msgid "Show me what I am sending "
-msgstr "显示我所发送的信息"
-
-#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
-msgid "Terms and Conditions"
-msgstr "使用条款"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
-msgid "Creating File Summary Template"
-msgstr "创建文件播放记录模板"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
-msgid "Creating Log Sheet Template"
-msgstr "创建历史记录表单模板"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
-msgid "Name"
-msgstr "名字"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
-msgid "Add more elements"
-msgstr "增加更多元素"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
-msgid "Add New Field"
-msgstr "添加新项目"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
-msgid "Set Default Template"
-msgstr "设为默认模板"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
-msgid "Playout History Templates"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
-msgid "Log Sheet Templates"
-msgstr "历史记录表单模板"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
-msgid "New Log Sheet Template"
-msgstr "新建历史记录模板"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
-msgid "No Log Sheet Templates"
-msgstr "无历史记录表单模板"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
-#: airtime_mvc/application/controllers/LocaleController.php:397
-msgid "Set Default"
-msgstr "设为默认"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
-msgid "File Summary Templates"
-msgstr "文件播放记录模板列表"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
-msgid "New File Summary Template"
-msgstr "新建文件播放记录模板"
-
-#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
-msgid "No File Summary Templates"
-msgstr "无文件播放记录模板"
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
-msgid "Disk Space"
-msgstr "磁盘空间"
-
-#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
-#: airtime_mvc/application/controllers/LocaleController.php:315
-msgid "Disk"
-msgstr "磁盘"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
-#: airtime_mvc/application/forms/AddShowWhen.php:89
-msgid "Duration:"
-msgstr "时长:"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
-msgid "Toggle Details"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
-msgid "Playlist crossfade"
-msgstr "播放列表交错淡入淡出效果"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-msgid "Remove all content from this smart block"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Clear"
-msgstr "清除"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "Fade in: "
-msgstr "淡入:"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
-msgid "(ss.t)"
-msgstr "(秒.分秒)"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
-msgid "Fade out: "
-msgstr "淡出:"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
-#: airtime_mvc/application/forms/EditAudioMD.php:186
-#: airtime_mvc/application/forms/EditHistory.php:141
-#: airtime_mvc/application/controllers/LocaleController.php:295
-#: airtime_mvc/application/controllers/LocaleController.php:318
-msgid "Cancel"
-msgstr "取消"
-
-#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
-msgid "No smart block currently open"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
-#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
-msgid "Show Waveform"
-msgstr "显示波形图"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-msgid "Cue In: "
-msgstr "切入:"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "(hh:mm:ss.t)"
-msgstr "(时:分:秒.分秒)"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
-msgid "Cue Out: "
-msgstr "切出:"
-
-#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
-msgid "Original Length:"
-msgstr "原始长度:"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
-msgid "Expand Static Block"
-msgstr "展开静态智能模块"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
-msgid "Expand Dynamic Block"
-msgstr "展开动态智能模块"
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
-msgid "Choose some search criteria above and click Generate to create this playlist."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
-msgid "A track list will be generated when you schedule this smart block into a show."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
-msgid "Drag tracks here from your library to add them to the playlist"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-msgid "Shuffle playlist"
-msgstr "随机打乱播放列表"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
-msgid "Shuffle"
-msgstr "随机"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
-msgid "Empty playlist content"
-msgstr "播放列表无内容"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
-msgid "Save playlist"
-msgstr "保存播放列表"
-
-#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
-msgid "No open playlist"
-msgstr "没有打开的播放列表"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
-msgid "previous"
-msgstr "往前"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
-msgid "play"
-msgstr "播放"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
-msgid "pause"
-msgstr "暂停"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
-msgid "next"
-msgstr "往后"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
-msgid "stop"
-msgstr "停止"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
-msgid "max volume"
-msgstr "最大音量"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
-msgid "Update Required"
-msgstr "需要更新升级"
-
-#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
-#, php-format
-msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
-msgstr "想要播放媒体,需要更新你的浏览器到最新的版本,或者更新你的%sFalsh插件%s。"
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
-msgid "Stream Settings"
-msgstr "流设定"
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
-msgid "Global"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
-msgid "dB"
-msgstr "分贝"
-
-#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
-msgid "Output Streams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
-#: airtime_mvc/application/controllers/LocaleController.php:166
-msgid "Manage Media Folders"
-msgstr "管理媒体文件夹"
-
-#: airtime_mvc/application/views/scripts/preference/index.phtml:2
-#: airtime_mvc/application/configs/navigation.php:56
-msgid "General"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
-msgid "Description"
-msgstr "描述"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
-msgid "Stream URL:"
-msgstr "流的链接地址:"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
-msgid "Default Length:"
-msgstr "默认长度:"
-
-#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
-msgid "No webstream"
-msgstr "没有网络流媒体"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
-msgid "Manage Users"
-msgstr "用户管理"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
-msgid "New User"
-msgstr "新建用户"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
-msgid "id"
-msgstr "编号"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
-#: airtime_mvc/application/forms/PasswordRestore.php:25
-msgid "Username"
-msgstr "用户名"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
-msgid "First Name"
-msgstr "名"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
-msgid "Last Name"
-msgstr "姓"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
-msgid "User Type"
-msgstr "用户类型"
-
-#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
-#, php-format
-msgid "Super Admin details can be changed in your Billing Settings."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
-#: airtime_mvc/application/controllers/LocaleController.php:74
-#: airtime_mvc/application/layouts/scripts/layout.phtml:78
-msgid "Tracks"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
-#: airtime_mvc/application/controllers/LocaleController.php:104
-#: airtime_mvc/application/layouts/scripts/layout.phtml:80
-msgid "Playlists"
-msgstr "播放列表"
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
-#: airtime_mvc/application/controllers/LocaleController.php:105
-#: airtime_mvc/application/layouts/scripts/layout.phtml:82
-msgid "Smart Blocks"
-msgstr "智能模块"
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
-#: airtime_mvc/application/layouts/scripts/layout.phtml:84
-msgid "Webstreams"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
-#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
-#: airtime_mvc/application/layouts/scripts/layout.phtml:76
-msgid "Dashboard"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:12
-msgid "Radio Page"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:19
-msgid "Calendar"
-msgstr "节目日程"
-
-#: airtime_mvc/application/configs/navigation.php:26
-msgid "Widgets"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:48
-msgid "Settings"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:67
-msgid "Users"
-msgstr "用户管理"
-
-#: airtime_mvc/application/configs/navigation.php:74
-msgid "Streams"
-msgstr "媒体流设置"
-
-#: airtime_mvc/application/configs/navigation.php:82
-msgid "Analytics"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:90
-msgid "Listener Stats"
-msgstr "收听状态"
-
-#: airtime_mvc/application/configs/navigation.php:104
-msgid "History Templates"
-msgstr "历史记录模板"
-
-#: airtime_mvc/application/configs/navigation.php:113
-msgid "Billing"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:127
-msgid "Account Details"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:134
-msgid "View Invoices"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:150
-msgid "Getting Started"
-msgstr "基本用法"
-
-#: airtime_mvc/application/configs/navigation.php:157
-msgid "FAQ"
-msgstr ""
-
-#: airtime_mvc/application/configs/navigation.php:162
-msgid "User Manual"
-msgstr "用户手册"
-
-#: airtime_mvc/application/configs/navigation.php:167
-msgid "File a Support Ticket"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:12
-msgid "Background Colour:"
-msgstr "背景色:"
-
-#: airtime_mvc/application/forms/AddShowStyle.php:31
-msgid "Text Colour:"
-msgstr "文字颜色:"
-
-#: airtime_mvc/application/forms/AddShowStyle.php:49
-msgid "Current Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:72
-msgid "Show Logo:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowStyle.php:87
-msgid "Logo Preview:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:19
-msgid "Push metadata to your station on TuneIn?"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:24
-msgid "Station ID:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:30
-msgid "Partner Key:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:36
-msgid "Partner Id:"
-msgstr ""
-
-#: airtime_mvc/application/forms/TuneInPreferences.php:77
-#: airtime_mvc/application/forms/TuneInPreferences.php:86
-msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:14
-msgid "Now Playing"
-msgstr "直播室"
-
-#: airtime_mvc/application/forms/Player.php:25
-msgid "Select Stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:28
-msgid "Auto detect the most appropriate stream to use."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:29
-msgid "Select a stream:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:41
-msgid " - Mobile friendly"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:45
-msgid " - The player does not support Opus streams."
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:71
-msgid "Embeddable code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/Player.php:72
-msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
-msgstr ""
-
-#: airtime_mvc/application/forms/EditUser.php:37
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
-#: airtime_mvc/application/forms/Login.php:41
-#: airtime_mvc/application/forms/AddUser.php:29
-msgid "Username:"
-msgstr "用户名:"
-
-#: airtime_mvc/application/forms/EditUser.php:48
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
-#: airtime_mvc/application/forms/Login.php:54
-#: airtime_mvc/application/forms/AddUser.php:38
-#: airtime_mvc/application/forms/BillingClient.php:172
-msgid "Password:"
-msgstr "密码:"
-
-#: airtime_mvc/application/forms/EditUser.php:57
-#: airtime_mvc/application/forms/AddUser.php:46
-#: airtime_mvc/application/forms/BillingClient.php:181
-msgid "Verify Password:"
-msgstr "再次输入密码:"
-
-#: airtime_mvc/application/forms/EditUser.php:67
-#: airtime_mvc/application/forms/AddUser.php:55
-msgid "Firstname:"
-msgstr "名:"
-
-#: airtime_mvc/application/forms/EditUser.php:75
-#: airtime_mvc/application/forms/AddUser.php:61
-msgid "Lastname:"
-msgstr "姓:"
-
-#: airtime_mvc/application/forms/EditUser.php:83
-#: airtime_mvc/application/forms/RegisterAirtime.php:51
-#: airtime_mvc/application/forms/AddUser.php:67
-#: airtime_mvc/application/forms/SupportSettings.php:43
-msgid "Email:"
-msgstr "电邮:"
-
-#: airtime_mvc/application/forms/EditUser.php:94
-#: airtime_mvc/application/forms/AddUser.php:76
-msgid "Mobile Phone:"
-msgstr "手机:"
-
-#: airtime_mvc/application/forms/EditUser.php:102
-#: airtime_mvc/application/forms/AddUser.php:82
-msgid "Skype:"
-msgstr "Skype帐号:"
-
-#: airtime_mvc/application/forms/EditUser.php:110
-#: airtime_mvc/application/forms/AddUser.php:88
-msgid "Jabber:"
-msgstr "Jabber帐号:"
-
-#: airtime_mvc/application/forms/EditUser.php:129
-msgid "Interface Timezone:"
-msgstr "用户界面使用的时区:"
-
-#: airtime_mvc/application/forms/EditUser.php:155
-#: airtime_mvc/application/forms/AddUser.php:120
-msgid "Login name is not unique."
-msgstr "帐号重名。"
-
-#: airtime_mvc/application/forms/AddShowRR.php:10
-msgid "Record from Line In?"
-msgstr "从线路输入录制?"
-
-#: airtime_mvc/application/forms/AddShowRR.php:16
-msgid "Rebroadcast?"
-msgstr "重播?"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:16
-msgid "'%value%' does not fit the time format 'HH:mm'"
-msgstr "'%value%' 不符合形如 '小时:分'的格式要求,例如,‘01:59’"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:22
-msgid "Start Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:37
-msgid "In the Future:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:64
-msgid "End Time:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowWhen.php:98
-msgid "Timezone:"
-msgstr "时区"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:107
-msgid "Repeats?"
-msgstr "是否设置为系列节目?"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:139
-msgid "Cannot create show in the past"
-msgstr "节目不能设置为过去的时间"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:147
-msgid "Cannot modify start date/time of the show that is already started"
-msgstr "节目已经启动,无法修改开始时间/日期"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:164
-msgid "Cannot have duration < 0m"
-msgstr "节目时长不能小于0"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:168
-msgid "Cannot have duration 00h 00m"
-msgstr "节目时长不能为0"
-
-#: airtime_mvc/application/forms/AddShowWhen.php:175
-msgid "Cannot have duration greater than 24h"
-msgstr "节目时长不能超过24小时"
-
-#: airtime_mvc/application/forms/AddShowWho.php:10
-msgid "Search Users:"
-msgstr "查找用户:"
-
-#: airtime_mvc/application/forms/AddShowWho.php:24
-msgid "DJs:"
-msgstr "选择节目编辑:"
-
-#: airtime_mvc/application/forms/PasswordChange.php:17
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
-msgid "Password"
-msgstr "密码"
-
-#: airtime_mvc/application/forms/PasswordChange.php:28
-msgid "Confirm new password"
-msgstr "确认新密码"
-
-#: airtime_mvc/application/forms/PasswordChange.php:36
-msgid "Password confirmation does not match your password."
-msgstr "新密码不匹配"
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
-msgid "Station Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
-#: airtime_mvc/application/forms/GeneralPreferences.php:127
-msgid "Station Timezone"
-msgstr "系统使用的时区"
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
-msgid "Auto Switch Off:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
-msgid "Auto Switch On:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
-msgid "Switch Transition Fade (s):"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
-#: airtime_mvc/application/forms/GeneralPreferences.php:68
-#: airtime_mvc/application/forms/GeneralPreferences.php:82
-#: airtime_mvc/application/forms/GeneralPreferences.php:96
-msgid "Please enter a time in seconds (eg. 0.5)"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
-#: airtime_mvc/application/forms/AddShowLiveStream.php:48
-msgid "Host:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
-#: airtime_mvc/application/forms/AddShowLiveStream.php:54
-msgid "Port:"
-msgstr ""
-
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
-#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
-#: airtime_mvc/application/forms/AddShowLiveStream.php:60
-msgid "Mount:"
-msgstr ""
-
-#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
-msgid "Value is required and can't be empty"
-msgstr "不能为空"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:25
-#: airtime_mvc/application/forms/RegisterAirtime.php:30
-#: airtime_mvc/application/forms/SupportSettings.php:18
-msgid "Station Name"
-msgstr "电台名称"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:33
-msgid "Station Description"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:42
-#: airtime_mvc/application/forms/RegisterAirtime.php:106
-msgid "Station Logo:"
-msgstr "电台标志:"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:62
-msgid "Default Crossfade Duration (s):"
-msgstr "默认混合淡入淡出效果(秒):"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:76
-msgid "Default Fade In (s):"
-msgstr "默认淡入效果(秒):"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:90
-msgid "Default Fade Out (s):"
-msgstr "默认淡出效果(秒):"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:102
-msgid "Public Airtime API"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:103
-msgid "Required for embeddable schedule widget."
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:105
-msgid "Disabled"
-msgstr "禁用"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:106
-msgid "Enabled"
-msgstr "启用"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:109
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
msgid ""
-"Enabling this feature will allow Airtime to provide schedule data\n"
-" to external widgets that can be embedded in your website."
+"To configure and use the embeddable player you must:
\n"
+" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
+" 2. Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/forms/GeneralPreferences.php:120
-msgid "Default Language"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:134
-msgid "Week Starts On"
-msgstr "一周开始于"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:150
-msgid "Display login button on your Radio Page?"
-msgstr ""
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:158
-#: airtime_mvc/application/controllers/LocaleController.php:249
-msgid "Sunday"
-msgstr "周日"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:159
-#: airtime_mvc/application/controllers/LocaleController.php:250
-msgid "Monday"
-msgstr "周一"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:160
-#: airtime_mvc/application/controllers/LocaleController.php:251
-msgid "Tuesday"
-msgstr "周二"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:161
-#: airtime_mvc/application/controllers/LocaleController.php:252
-msgid "Wednesday"
-msgstr "周三"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:162
-#: airtime_mvc/application/controllers/LocaleController.php:253
-msgid "Thursday"
-msgstr "周四"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:163
-#: airtime_mvc/application/controllers/LocaleController.php:254
-msgid "Friday"
-msgstr "周五"
-
-#: airtime_mvc/application/forms/GeneralPreferences.php:164
-#: airtime_mvc/application/controllers/LocaleController.php:255
-msgid "Saturday"
-msgstr "周六"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
-msgid "Default License:"
-msgstr "默认版权策略:"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
-msgid "All rights are reserved"
-msgstr "版权所有"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
-msgid "The work is in the public domain"
-msgstr "公开"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
-msgid "Creative Commons Attribution"
-msgstr "知识共享署名"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
-msgid "Creative Commons Attribution Noncommercial"
-msgstr "知识共享署名-非商业应用"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
-msgid "Creative Commons Attribution No Derivative Works"
-msgstr "知识共享署名-不允许衍生"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
-msgid "Creative Commons Attribution Share Alike"
-msgstr "知识共享署名-相同方式共享"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
-msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
-msgstr "知识共享署名-非商业应用且不允许衍生"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
-msgid "Creative Commons Attribution Noncommercial Share Alike"
-msgstr "知识共享署名-非商业应用且相同方式共享"
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
-msgid "Default Sharing Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
-msgid "Public"
-msgstr ""
-
-#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
-msgid "Private"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:18
-#: airtime_mvc/application/forms/DateRange.php:16
-msgid "Date Start:"
-msgstr "开始日期:"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:37
-#: airtime_mvc/application/forms/ShowBuilder.php:65
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
-#: airtime_mvc/application/forms/DateRange.php:35
-#: airtime_mvc/application/forms/DateRange.php:63
-msgid "Invalid character entered"
-msgstr "输入的字符不合要求"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:46
-#: airtime_mvc/application/forms/AddShowRepeats.php:56
-#: airtime_mvc/application/forms/DateRange.php:44
-msgid "Date End:"
-msgstr "结束日期:"
-
-#: airtime_mvc/application/forms/ShowBuilder.php:72
-#: airtime_mvc/application/forms/ShowBuilder.php:88
-msgid "Filter by Show"
-msgstr ""
-
-#: airtime_mvc/application/forms/ShowBuilder.php:80
-msgid "All My Shows:"
-msgstr "我的全部节目:"
-
-#: airtime_mvc/application/forms/EditAudioMD.php:145
-msgid "ISRC Number:"
-msgstr "ISRC编号:"
-
-#: airtime_mvc/application/forms/EditAudioMD.php:176
-msgid "OK"
-msgstr "确定"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
-msgid "Day must be specified"
-msgstr "请指定天"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
-msgid "Time must be specified"
-msgstr "请指定时间"
-
-#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
-#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
-msgid "Must wait at least 1 hour to rebroadcast"
-msgstr "至少间隔一个小时"
-
-#: airtime_mvc/application/forms/AddShowWhat.php:30
-msgid "Untitled Show"
-msgstr "未命名节目"
-
-#: airtime_mvc/application/forms/AddShowWhat.php:69
-msgid "Instance Description:"
-msgstr ""
-
-#: airtime_mvc/application/forms/DangerousPreferences.php:12
-msgid "Delete All Tracks in Library"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:39
-#: airtime_mvc/application/forms/SupportSettings.php:31
-msgid "Phone:"
-msgstr "电话:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:62
-#: airtime_mvc/application/forms/SupportSettings.php:54
-msgid "Station Web Site:"
-msgstr "电台网址:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:73
-#: airtime_mvc/application/forms/BillingClient.php:102
-#: airtime_mvc/application/forms/SupportSettings.php:65
-msgid "Country:"
-msgstr "国家:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:84
-#: airtime_mvc/application/forms/BillingClient.php:70
-#: airtime_mvc/application/forms/SupportSettings.php:76
-msgid "City:"
-msgstr "城市:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:96
-#: airtime_mvc/application/forms/SupportSettings.php:88
-msgid "Station Description:"
-msgstr "电台描述:"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:116
-#: airtime_mvc/application/forms/SupportSettings.php:98
-#: airtime_mvc/application/controllers/LocaleController.php:341
-msgid "Send support feedback"
-msgstr "提交反馈意见"
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:126
-#: airtime_mvc/application/forms/SupportSettings.php:108
-#, php-format
-msgid "Promote my station on %s"
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:151
-#: airtime_mvc/application/forms/SupportSettings.php:120
-#, php-format
-msgid "By checking this box, I agree to %s's %sprivacy policy%s."
-msgstr ""
-
-#: airtime_mvc/application/forms/RegisterAirtime.php:169
-#: airtime_mvc/application/forms/SupportSettings.php:143
-msgid "You have to agree to privacy policy."
-msgstr "请先接受隐私策略"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:10
-msgid "Link:"
-msgstr "绑定:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:16
-msgid "Repeat Type:"
-msgstr "类型:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:19
-msgid "weekly"
-msgstr "每周"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:20
-msgid "every 2 weeks"
-msgstr "每隔2周"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:21
-msgid "every 3 weeks"
-msgstr "每隔3周"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:22
-msgid "every 4 weeks"
-msgstr "每隔4周"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:23
-msgid "monthly"
-msgstr "每月"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:32
-msgid "Select Days:"
-msgstr "选择天数:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:35
-#: airtime_mvc/application/controllers/LocaleController.php:256
-msgid "Sun"
-msgstr "周日"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:36
-#: airtime_mvc/application/controllers/LocaleController.php:257
-msgid "Mon"
-msgstr "周一"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:37
-#: airtime_mvc/application/controllers/LocaleController.php:258
-msgid "Tue"
-msgstr "周二"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:38
-#: airtime_mvc/application/controllers/LocaleController.php:259
-msgid "Wed"
-msgstr "周三"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:39
-#: airtime_mvc/application/controllers/LocaleController.php:260
-msgid "Thu"
-msgstr "周四"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:40
-#: airtime_mvc/application/controllers/LocaleController.php:261
-msgid "Fri"
-msgstr "周五"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:41
-#: airtime_mvc/application/controllers/LocaleController.php:262
-msgid "Sat"
-msgstr "周六"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:47
-msgid "Repeat By:"
-msgstr "重复类型:"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the month"
-msgstr "按月的同一日期"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:50
-msgid "day of the week"
-msgstr "一个星期的同一日子"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:69
-msgid "No End?"
-msgstr "无休止?"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:106
-msgid "End date must be after start date"
-msgstr "结束日期应晚于开始日期"
-
-#: airtime_mvc/application/forms/AddShowRepeats.php:113
-msgid "Please select a repeat day"
-msgstr "请选择在哪一天重复"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:10
-#, php-format
-msgid "Use %s Authentication:"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:16
-msgid "Use Custom Authentication:"
-msgstr "使用自定义的用户认证:"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:25
-msgid "Custom Username"
-msgstr "自定义用户名"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:37
-msgid "Custom Password"
-msgstr "自定义密码"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:77
-msgid "Username field cannot be empty."
-msgstr "请填写用户名"
-
-#: airtime_mvc/application/forms/AddShowLiveStream.php:82
-msgid "Password field cannot be empty."
-msgstr "请填写密码"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
-msgid "Enabled:"
-msgstr "启用:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
-msgid "Mobile:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
-msgid "Stream Type:"
-msgstr "流格式:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
-msgid "Service Type:"
-msgstr "服务类型:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
-msgid "Channels:"
-msgstr "声道:"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "1 - Mono"
-msgstr "1 - 单声道"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
-msgid "2 - Stereo"
-msgstr "2 - 立体声"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
-msgid "Server"
-msgstr "服务器"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
-msgid "Port"
-msgstr "端口号"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
-msgid "Only numbers are allowed."
-msgstr "只允许输入数字"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
-msgid "URL"
-msgstr "链接地址"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
-msgid "Mount Point"
-msgstr "加载点"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
-msgid "Admin User"
-msgstr "管理员用户名"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
-msgid "Admin Password"
-msgstr "管理员密码"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
-#: airtime_mvc/application/controllers/LocaleController.php:173
-msgid "Getting information from the server..."
-msgstr "从服务器加载中..."
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
-msgid "Server cannot be empty."
-msgstr "请填写“服务器”。"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
-msgid "Port cannot be empty."
-msgstr "请填写“端口”。"
-
-#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
-msgid "Mount cannot be empty with Icecast server."
-msgstr "请填写“加载点”。"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
-msgid "'%value%' is no valid email address in the basic format local-part@hostname"
-msgstr "'%value%' 不是合法的电邮地址,应该类似于 local-part@hostname"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
-msgid "'%value%' does not fit the date format '%format%'"
-msgstr "'%value%' 不符合格式要求: '%format%'"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
-msgid "'%value%' is less than %min% characters long"
-msgstr "'%value%' 小于最小长度要求 %min% "
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
-msgid "'%value%' is more than %max% characters long"
-msgstr "'%value%' 大于最大长度要求 %max%"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
-msgid "'%value%' is not between '%min%' and '%max%', inclusively"
-msgstr "'%value%' 应该介于 '%min%' 和 '%max%'之间"
-
-#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
-msgid "Passwords do not match"
-msgstr "两次密码输入不匹配"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
-msgid "hours"
-msgstr "小时"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
-msgid "minutes"
-msgstr "分钟"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
-msgid "Randomly"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
-msgid "Newest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
-msgid "Oldest"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
-msgid "Type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
-msgid "Static"
-msgstr "静态"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
-msgid "Dynamic"
-msgstr "动态"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
-msgid "Allow Repeated Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
-msgid "Sort Tracks:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
-msgid "Limit to:"
-msgstr ""
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
-msgid "Generate playlist content and save criteria"
-msgstr "保存条件设置并生成播放列表内容"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
-msgid "Generate"
-msgstr "开始生成"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
-msgid "Shuffle playlist content"
-msgstr "随机打乱歌曲次序"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
-msgid "Limit cannot be empty or smaller than 0"
-msgstr "限制的设置不能比0小"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
-msgid "Limit cannot be more than 24 hrs"
-msgstr "限制的设置不能大于24小时"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
-msgid "The value should be an integer"
-msgstr "值只能为整数"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
-msgid "500 is the max item limit value you can set"
-msgstr "最多只能允许500条内容"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
-msgid "You must select Criteria and Modifier"
-msgstr "条件和操作符不能为空"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
-msgid "'Length' should be in '00:00:00' format"
-msgstr "‘长度’格式应该为‘00:00:00’"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
-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:594
-msgid "The value has to be numeric"
-msgstr "应该为数字"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
-msgid "The value should be less then 2147483648"
-msgstr "不能大于2147483648"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
-#, php-format
-msgid "The value should be less than %s characters"
-msgstr "不能小于%s个字符"
-
-#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
-msgid "Value cannot be empty"
-msgstr "不能为空"
-
-#: airtime_mvc/application/forms/Login.php:102
-msgid "Type the characters you see in the picture below."
-msgstr "请输入图像里的字符。"
-
-#: airtime_mvc/application/forms/StreamSetting.php:26
-msgid "Icecast Vorbis Metadata"
-msgstr "Icecast的Vorbis元数据"
-
-#: airtime_mvc/application/forms/StreamSetting.php:36
-msgid "Stream Label:"
-msgstr "流标签:"
-
-#: airtime_mvc/application/forms/StreamSetting.php:37
-msgid "Artist - Title"
-msgstr "歌手 - 歌名"
-
-#: airtime_mvc/application/forms/StreamSetting.php:38
-msgid "Show - Artist - Title"
-msgstr "节目 - 歌手 - 歌名"
-
-#: airtime_mvc/application/forms/StreamSetting.php:39
-msgid "Station name - Show name"
-msgstr "电台名 - 节目名"
-
-#: airtime_mvc/application/forms/StreamSetting.php:45
-msgid "Off Air Metadata"
-msgstr "非直播状态下的输出流元数据"
-
-#: airtime_mvc/application/forms/StreamSetting.php:51
-msgid "Enable Replay Gain"
-msgstr "启用回放增益"
-
-#: airtime_mvc/application/forms/StreamSetting.php:57
-msgid "Replay Gain Modifier"
-msgstr "回放增益调整"
-
-#: airtime_mvc/application/forms/StreamSetting.php:65
-msgid "Streaming Server:"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Airtime Pro Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/StreamSetting.php:66
-msgid "Custom / 3rd Party Streaming"
-msgstr ""
-
-#: airtime_mvc/application/forms/AddUser.php:95
-msgid "User Type:"
-msgstr "用户类型:"
-
-#: airtime_mvc/application/forms/AddUser.php:99
-#: airtime_mvc/application/controllers/LocaleController.php:324
-msgid "Guest"
-msgstr "游客"
-
-#: airtime_mvc/application/forms/AddUser.php:100
-#: airtime_mvc/application/controllers/LocaleController.php:322
-msgid "DJ"
-msgstr "节目编辑"
-
-#: airtime_mvc/application/forms/AddUser.php:101
-#: airtime_mvc/application/controllers/LocaleController.php:323
-msgid "Program Manager"
-msgstr "节目主管"
-
-#: airtime_mvc/application/forms/AddUser.php:102
-#: airtime_mvc/application/controllers/LocaleController.php:321
-msgid "Admin"
-msgstr "系统管理员"
-
-#: airtime_mvc/application/forms/BillingClient.php:17
-msgid "First Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:26
-msgid "Last Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:35
-msgid "Company Name:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:44
-msgid "Email Address:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:54
-msgid "Address 1:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:63
-msgid "Address 2:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:80
-msgid "State/Region:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:89
-msgid "Zip Code / Postal Code:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:112
-msgid "Phone Number:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:121
-msgid "Please choose a security question:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:126
-msgid "What is the name of your favorite childhood friend?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:127
-msgid "What school did you attend for sixth grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:128
-msgid "In what city did you meet your spouse/significant other?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:129
-msgid "What street did you live on in third grade?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:130
-msgid "What is the first name of the boy or girl that you first kissed?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:131
-msgid "In what city or town was your first job?"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:135
-msgid "Please enter an answer:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:152
-msgid "VAT/Tax ID (EU only)"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingClient.php:162
-msgid "Subscribe to Sourcefabric newsletter"
-msgstr ""
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
-msgid "Import Folder:"
-msgstr "导入文件夹:"
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
-msgid "Watched Folders:"
-msgstr "监控文件夹:"
-
-#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
-msgid "Not a valid Directory"
-msgstr "无效的路径"
-
-#: airtime_mvc/application/forms/PasswordRestore.php:14
-msgid "Email"
-msgstr ""
-
-#: airtime_mvc/application/forms/PasswordRestore.php:36
-msgid "Reset password"
-msgstr "重置密码"
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
-msgid "Plan type:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
-msgid "Billing cycle:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
-msgid "Payment method:"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
-msgid "PayPal"
-msgstr ""
-
-#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
-msgid "Credit Card via 2Checkout"
-msgstr ""
-
-#: airtime_mvc/application/common/DateHelper.php:213
-#, php-format
-msgid "The year %s must be within the range of 1753 - 9999"
-msgstr "1753 - 9999 是可以接受的年代值,而不是“%s”"
-
-#: airtime_mvc/application/common/DateHelper.php:216
-#, php-format
-msgid "%s-%s-%s is not a valid date"
-msgstr "%s-%s-%s采用了错误的日期格式"
-
-#: airtime_mvc/application/common/DateHelper.php:240
-#, php-format
-msgid "%s:%s:%s is not a valid time"
-msgstr "%s:%s:%s 采用了错误的时间格式"
-
-#: airtime_mvc/application/common/UsabilityHints.php:55
-msgid "Upload some tracks below to add them to your library!"
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:57
-#, php-format
-msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:63
-msgid "Click the 'New Show' button and fill out the required fields."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:65
-#, php-format
-msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:73
-msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
-msgstr ""
-
-#: airtime_mvc/application/common/UsabilityHints.php:75
-#, php-format
+#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
msgid ""
-"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
-" %sCreate an unlinked show now%s."
+"To use the embeddable weekly schedule widget you must:
\n"
+" Enable the Public Airtime API under System -> Preferences"
msgstr ""
-#: airtime_mvc/application/common/UsabilityHints.php:80
-msgid "To start broadcasting, click on the current show and select 'Schedule Show'"
-msgstr ""
+#: airtime_mvc/application/controllers/ListenerstatController.php:51
+msgid "Please make sure admin user/password is correct on System->Streams page."
+msgstr "请检查系统->媒体流设置中,管理员用户/密码的设置是否正确。"
-#: airtime_mvc/application/common/UsabilityHints.php:82
+#: airtime_mvc/application/controllers/UserController.php:86
+msgid "User added successfully!"
+msgstr "用户已添加成功!"
+
+#: airtime_mvc/application/controllers/UserController.php:88
+msgid "User updated successfully!"
+msgstr "用于已成功更新!"
+
+#: airtime_mvc/application/controllers/UserController.php:187
+msgid "Settings updated successfully!"
+msgstr "设置更新成功!"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:53
#, php-format
-msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
-msgstr ""
+msgid "You are viewing an older version of %s"
+msgstr "你所查看的%s已更改"
-#: airtime_mvc/application/common/UsabilityHints.php:89
-msgid "Click on the show starting next and select 'Schedule Show'"
-msgstr ""
+#: airtime_mvc/application/controllers/PlaylistController.php:140
+msgid "You cannot add tracks to dynamic blocks."
+msgstr "动态智能模块不能添加声音文件。"
-#: airtime_mvc/application/common/UsabilityHints.php:91
+#: airtime_mvc/application/controllers/PlaylistController.php:161
#, php-format
-msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+msgid "You don't have permission to delete selected %s(s)."
+msgstr "你没有删除所选%s的权限。"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:174
+msgid "You can only add tracks to smart block."
+msgstr "智能模块只能添加媒体文件。"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:180
+#: airtime_mvc/application/controllers/LocaleController.php:50
+msgid "You can only add tracks, smart blocks, and webstreams to playlists."
+msgstr "播放列表只能添加声音文件,只能模块和网络流媒体。"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:192
+msgid "Untitled Playlist"
+msgstr "未命名的播放列表"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:194
+msgid "Untitled Smart Block"
+msgstr "未命名的智能模块"
+
+#: airtime_mvc/application/controllers/PlaylistController.php:522
+msgid "Unknown Playlist"
+msgstr "位置播放列表"
+
+#: airtime_mvc/application/controllers/ErrorController.php:78
+msgid "Page not found."
msgstr ""
+#: airtime_mvc/application/controllers/ErrorController.php:87
+msgid "The requested action is not supported."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:98
+msgid "You do not have permission to access this resource."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ErrorController.php:109
+msgid "An internal application error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/controllers/Apiv2Controller.php:77
+#: airtime_mvc/application/controllers/ApiController.php:79
+msgid "You are not allowed to access this resource."
+msgstr "你没有访问该资源的权限"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:72
+msgid "Preferences updated."
+msgstr "属性已更新。"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:115
+msgid "Support setting updated."
+msgstr "支持设定已更新。"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:123
+msgid "Support Feedback"
+msgstr "意见反馈"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:251
+msgid "Stream Setting Updated."
+msgstr "流设置已更新。"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:342
+msgid "path should be specified"
+msgstr "请指定路径"
+
+#: airtime_mvc/application/controllers/PreferenceController.php:437
+msgid "Problem with Liquidsoap..."
+msgstr "Liquidsoap出错..."
+
+#: airtime_mvc/application/controllers/PreferenceController.php:493
+msgid "Request method not accepted"
+msgstr ""
+
+#: airtime_mvc/application/controllers/DashboardController.php:35
+#: airtime_mvc/application/controllers/DashboardController.php:84
+msgid "You don't have permission to disconnect source."
+msgstr "你没有断开输入源的权限。"
+
+#: airtime_mvc/application/controllers/DashboardController.php:37
+#: airtime_mvc/application/controllers/DashboardController.php:86
+msgid "There is no source connected to this input."
+msgstr "没有连接上的输入源。"
+
+#: airtime_mvc/application/controllers/DashboardController.php:81
+msgid "You don't have permission to switch source."
+msgstr "你没有切换的权限。"
+
+#: airtime_mvc/application/controllers/LoginController.php:43
+msgid "Please enter your username and password."
+msgstr ""
+
+#: airtime_mvc/application/controllers/LoginController.php:93
+msgid "Wrong username or password provided. Please try again."
+msgstr "用户名或密码错误,请重试。"
+
+#: airtime_mvc/application/controllers/LoginController.php:167
+msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
+msgstr "邮件发送失败。请检查邮件服务器设置,并确定设置无误。"
+
+#: airtime_mvc/application/controllers/LoginController.php:173
+msgid "There was a problem with the username or email address you entered."
+msgstr ""
+
+#: airtime_mvc/application/controllers/ApiController.php:244
+#: airtime_mvc/application/controllers/ApiController.php:317
+#: airtime_mvc/application/controllers/ApiController.php:392
+#: airtime_mvc/application/controllers/ApiController.php:435
+#: airtime_mvc/application/controllers/ApiController.php:474
+#: airtime_mvc/application/controllers/ApiController.php:507
+msgid "You are not allowed to access this resource. "
+msgstr "你没有访问该资源的权限"
+
+#: airtime_mvc/application/controllers/ApiController.php:698
+#: airtime_mvc/application/controllers/ApiController.php:718
+#: airtime_mvc/application/controllers/ApiController.php:730
+#, php-format
+msgid "File does not exist in %s"
+msgstr ""
+
+#: airtime_mvc/application/controllers/ApiController.php:781
+msgid "Bad request. no 'mode' parameter passed."
+msgstr "请求错误。没有提供‘模式’参数。"
+
+#: airtime_mvc/application/controllers/ApiController.php:791
+msgid "Bad request. 'mode' parameter is invalid"
+msgstr "请求错误。提供的‘模式’参数无效。"
+
#: airtime_mvc/application/controllers/LocaleController.php:30
#: airtime_mvc/application/layouts/scripts/audio-player.phtml:5
msgid "Audio Player"
@@ -2908,11 +559,6 @@ msgstr "添加%s项"
msgid "You can only add tracks to smart blocks."
msgstr "智能模块只能添加声音文件。"
-#: airtime_mvc/application/controllers/LocaleController.php:50
-#: airtime_mvc/application/controllers/PlaylistController.php:180
-msgid "You can only add tracks, smart blocks, and webstreams to playlists."
-msgstr "播放列表只能添加声音文件,只能模块和网络流媒体。"
-
#: airtime_mvc/application/controllers/LocaleController.php:53
msgid "Please select a cursor position on timeline."
msgstr "请在右部的时间表视图中选择一个游标位置。"
@@ -2953,11 +599,6 @@ msgstr ""
msgid "Click 'New' to create one."
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:66
-#: airtime_mvc/application/controllers/LibraryController.php:123
-msgid "Edit Metadata"
-msgstr "编辑元数据"
-
#: airtime_mvc/application/controllers/LocaleController.php:67
msgid "Add to selected show"
msgstr "添加到所选的节目"
@@ -2986,6 +627,12 @@ msgstr "确定删除选择的项?"
msgid "Scheduled"
msgstr "已安排进日程"
+#: airtime_mvc/application/controllers/LocaleController.php:74
+#: airtime_mvc/application/layouts/scripts/layout.phtml:78
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:7
+msgid "Tracks"
+msgstr ""
+
#: airtime_mvc/application/controllers/LocaleController.php:75
#: airtime_mvc/application/layouts/scripts/layout.phtml:60
msgid "Playlist"
@@ -2995,18 +642,96 @@ msgstr ""
msgid "Bit Rate"
msgstr "比特率"
+#: airtime_mvc/application/controllers/LocaleController.php:80
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:52
+#: airtime_mvc/application/models/Block.php:1354
+msgid "BPM"
+msgstr "每分钟拍子数"
+
+#: airtime_mvc/application/controllers/LocaleController.php:84
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:59
+#: airtime_mvc/application/models/Block.php:1361
+msgid "Encoded By"
+msgstr "编曲"
+
+#: airtime_mvc/application/controllers/LocaleController.php:89
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:64
+#: airtime_mvc/application/models/Block.php:1367
+msgid "Last Modified"
+msgstr "最近更新于"
+
+#: airtime_mvc/application/controllers/LocaleController.php:90
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:65
+#: airtime_mvc/application/models/Block.php:1368
+msgid "Last Played"
+msgstr "上次播放于"
+
+#: airtime_mvc/application/controllers/LocaleController.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:67
+#: airtime_mvc/application/models/Block.php:1370
+msgid "Mime"
+msgstr "MIME信息"
+
+#: airtime_mvc/application/controllers/LocaleController.php:94
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:69
+#: airtime_mvc/application/models/Block.php:1372
+msgid "Owner"
+msgstr "所有者"
+
+#: airtime_mvc/application/controllers/LocaleController.php:95
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:70
+#: airtime_mvc/application/models/Block.php:1373
+msgid "Replay Gain"
+msgstr "回放增益"
+
#: airtime_mvc/application/controllers/LocaleController.php:96
msgid "Sample Rate"
msgstr "样本率"
+#: airtime_mvc/application/controllers/LocaleController.php:97
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:73
+#: airtime_mvc/application/models/Block.php:1376
+msgid "Track Number"
+msgstr "曲目"
+
+#: airtime_mvc/application/controllers/LocaleController.php:98
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:74
+#: airtime_mvc/application/models/Block.php:1377
+msgid "Uploaded"
+msgstr "上传于"
+
+#: airtime_mvc/application/controllers/LocaleController.php:99
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:75
+#: airtime_mvc/application/models/Block.php:1378
+msgid "Website"
+msgstr "网址"
+
#: airtime_mvc/application/controllers/LocaleController.php:101
msgid "Loading..."
msgstr "加载中..."
+#: airtime_mvc/application/controllers/LocaleController.php:102
+#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:65
+msgid "All"
+msgstr "全部"
+
#: airtime_mvc/application/controllers/LocaleController.php:103
msgid "Files"
msgstr "文件"
+#: airtime_mvc/application/controllers/LocaleController.php:104
+#: airtime_mvc/application/layouts/scripts/layout.phtml:80
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:13
+msgid "Playlists"
+msgstr "播放列表"
+
+#: airtime_mvc/application/controllers/LocaleController.php:105
+#: airtime_mvc/application/layouts/scripts/layout.phtml:82
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:19
+msgid "Smart Blocks"
+msgstr "智能模块"
+
#: airtime_mvc/application/controllers/LocaleController.php:106
msgid "Web Streams"
msgstr "网络流媒体"
@@ -3151,6 +876,74 @@ msgstr "智能模块已经保存"
msgid "Processing..."
msgstr "加载中..."
+#: airtime_mvc/application/controllers/LocaleController.php:151
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:88
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:104
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:263
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:392
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:430
+#: airtime_mvc/application/models/Block.php:1383
+msgid "Select modifier"
+msgstr "选择操作符"
+
+#: airtime_mvc/application/controllers/LocaleController.php:152
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:89
+#: airtime_mvc/application/models/Block.php:1384
+msgid "contains"
+msgstr "包含"
+
+#: airtime_mvc/application/controllers/LocaleController.php:153
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:90
+#: airtime_mvc/application/models/Block.php:1385
+msgid "does not contain"
+msgstr "不包含"
+
+#: airtime_mvc/application/controllers/LocaleController.php:154
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:91
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:105
+#: airtime_mvc/application/models/Block.php:1386
+#: airtime_mvc/application/models/Block.php:1390
+msgid "is"
+msgstr "是"
+
+#: airtime_mvc/application/controllers/LocaleController.php:155
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:92
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:106
+#: airtime_mvc/application/models/Block.php:1387
+#: airtime_mvc/application/models/Block.php:1391
+msgid "is not"
+msgstr "不是"
+
+#: airtime_mvc/application/controllers/LocaleController.php:156
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:93
+#: airtime_mvc/application/models/Block.php:1388
+msgid "starts with"
+msgstr "起始于"
+
+#: airtime_mvc/application/controllers/LocaleController.php:157
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:94
+#: airtime_mvc/application/models/Block.php:1389
+msgid "ends with"
+msgstr "结束于"
+
+#: airtime_mvc/application/controllers/LocaleController.php:158
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:107
+#: airtime_mvc/application/models/Block.php:1392
+msgid "is greater than"
+msgstr "大于"
+
+#: airtime_mvc/application/controllers/LocaleController.php:159
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:108
+#: airtime_mvc/application/models/Block.php:1393
+msgid "is less than"
+msgstr "小于"
+
+#: airtime_mvc/application/controllers/LocaleController.php:160
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:109
+#: airtime_mvc/application/models/Block.php:1394
+msgid "is in the range"
+msgstr "处于"
+
#: airtime_mvc/application/controllers/LocaleController.php:162
msgid "Choose Storage Folder"
msgstr "选择存储文件夹"
@@ -3167,6 +960,11 @@ msgstr ""
"确定更改存储路径?\n"
"这项操作将从媒体库中删除所有文件!"
+#: airtime_mvc/application/controllers/LocaleController.php:166
+#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2
+msgid "Manage Media Folders"
+msgstr "管理媒体文件夹"
+
#: airtime_mvc/application/controllers/LocaleController.php:167
msgid "Are you sure you want to remove the watched folder?"
msgstr "确定取消该文件夹的监控?"
@@ -3188,6 +986,11 @@ msgstr "流服务器已连接"
msgid "The stream is disabled"
msgstr "输出流已禁用"
+#: airtime_mvc/application/controllers/LocaleController.php:173
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:191
+msgid "Getting information from the server..."
+msgstr "从服务器加载中..."
+
#: airtime_mvc/application/controllers/LocaleController.php:174
msgid "Can not connect to the streaming server"
msgstr "无法连接流服务器"
@@ -3415,6 +1218,76 @@ msgstr ""
msgid "Month"
msgstr ""
+#: airtime_mvc/application/controllers/LocaleController.php:249
+#: airtime_mvc/application/forms/GeneralPreferences.php:158
+msgid "Sunday"
+msgstr "周日"
+
+#: airtime_mvc/application/controllers/LocaleController.php:250
+#: airtime_mvc/application/forms/GeneralPreferences.php:159
+msgid "Monday"
+msgstr "周一"
+
+#: airtime_mvc/application/controllers/LocaleController.php:251
+#: airtime_mvc/application/forms/GeneralPreferences.php:160
+msgid "Tuesday"
+msgstr "周二"
+
+#: airtime_mvc/application/controllers/LocaleController.php:252
+#: airtime_mvc/application/forms/GeneralPreferences.php:161
+msgid "Wednesday"
+msgstr "周三"
+
+#: airtime_mvc/application/controllers/LocaleController.php:253
+#: airtime_mvc/application/forms/GeneralPreferences.php:162
+msgid "Thursday"
+msgstr "周四"
+
+#: airtime_mvc/application/controllers/LocaleController.php:254
+#: airtime_mvc/application/forms/GeneralPreferences.php:163
+msgid "Friday"
+msgstr "周五"
+
+#: airtime_mvc/application/controllers/LocaleController.php:255
+#: airtime_mvc/application/forms/GeneralPreferences.php:164
+msgid "Saturday"
+msgstr "周六"
+
+#: airtime_mvc/application/controllers/LocaleController.php:256
+#: airtime_mvc/application/forms/AddShowRepeats.php:35
+msgid "Sun"
+msgstr "周日"
+
+#: airtime_mvc/application/controllers/LocaleController.php:257
+#: airtime_mvc/application/forms/AddShowRepeats.php:36
+msgid "Mon"
+msgstr "周一"
+
+#: airtime_mvc/application/controllers/LocaleController.php:258
+#: airtime_mvc/application/forms/AddShowRepeats.php:37
+msgid "Tue"
+msgstr "周二"
+
+#: airtime_mvc/application/controllers/LocaleController.php:259
+#: airtime_mvc/application/forms/AddShowRepeats.php:38
+msgid "Wed"
+msgstr "周三"
+
+#: airtime_mvc/application/controllers/LocaleController.php:260
+#: airtime_mvc/application/forms/AddShowRepeats.php:39
+msgid "Thu"
+msgstr "周四"
+
+#: airtime_mvc/application/controllers/LocaleController.php:261
+#: airtime_mvc/application/forms/AddShowRepeats.php:40
+msgid "Fri"
+msgstr "周五"
+
+#: airtime_mvc/application/controllers/LocaleController.php:262
+#: airtime_mvc/application/forms/AddShowRepeats.php:41
+msgid "Sat"
+msgstr "周六"
+
#: airtime_mvc/application/controllers/LocaleController.php:263
msgid "Shows longer than their scheduled time will be cut off by a following show."
msgstr "超出的节目内容将被随后的节目所取代。"
@@ -3424,7 +1297,7 @@ msgid "Cancel Current Show?"
msgstr "取消当前的节目?"
#: airtime_mvc/application/controllers/LocaleController.php:265
-#: airtime_mvc/application/controllers/LocaleController.php:309
+#: airtime_mvc/application/controllers/LocaleController.php:312
msgid "Stop recording current show?"
msgstr "停止录制当前的节目?"
@@ -3444,6 +1317,11 @@ msgstr "清空全部内容?"
msgid "Delete selected item(s)?"
msgstr "删除选定的项目?"
+#: airtime_mvc/application/controllers/LocaleController.php:273
+#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5
+msgid "Start"
+msgstr "开始"
+
#: airtime_mvc/application/controllers/LocaleController.php:274
msgid "End"
msgstr "结束"
@@ -3452,580 +1330,467 @@ msgstr "结束"
msgid "Duration"
msgstr "时长"
-#: airtime_mvc/application/controllers/LocaleController.php:283
+#: airtime_mvc/application/controllers/LocaleController.php:276
+msgid "Filtering out "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:277
+msgid " of "
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:278
+msgid " records"
+msgstr ""
+
+#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/layouts/scripts/layout.phtml:140
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:56
+#: airtime_mvc/application/models/Block.php:1358
+msgid "Cue In"
+msgstr "切入"
+
+#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/layouts/scripts/layout.phtml:147
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:57
+#: airtime_mvc/application/models/Block.php:1359
+msgid "Cue Out"
+msgstr "切出"
+
+#: airtime_mvc/application/controllers/LocaleController.php:286
#: airtime_mvc/application/layouts/scripts/layout.phtml:167
msgid "Fade In"
msgstr "淡入"
-#: airtime_mvc/application/controllers/LocaleController.php:284
+#: airtime_mvc/application/controllers/LocaleController.php:287
#: airtime_mvc/application/layouts/scripts/layout.phtml:168
msgid "Fade Out"
msgstr "淡出"
-#: airtime_mvc/application/controllers/LocaleController.php:285
+#: airtime_mvc/application/controllers/LocaleController.php:288
msgid "Show Empty"
msgstr "节目无内容"
-#: airtime_mvc/application/controllers/LocaleController.php:286
+#: airtime_mvc/application/controllers/LocaleController.php:289
msgid "Recording From Line In"
msgstr "从线路输入录制"
-#: airtime_mvc/application/controllers/LocaleController.php:287
+#: airtime_mvc/application/controllers/LocaleController.php:290
msgid "Track preview"
msgstr "试听媒体"
-#: airtime_mvc/application/controllers/LocaleController.php:291
+#: airtime_mvc/application/controllers/LocaleController.php:294
msgid "Cannot schedule outside a show."
msgstr "没有指定节目,无法凭空安排内容。"
-#: airtime_mvc/application/controllers/LocaleController.php:292
+#: airtime_mvc/application/controllers/LocaleController.php:295
msgid "Moving 1 Item"
msgstr "移动1个项目"
-#: airtime_mvc/application/controllers/LocaleController.php:293
+#: airtime_mvc/application/controllers/LocaleController.php:296
#, php-format
msgid "Moving %s Items"
msgstr "移动%s个项目"
-#: airtime_mvc/application/controllers/LocaleController.php:296
+#: airtime_mvc/application/controllers/LocaleController.php:297
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:86
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:5
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:118
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:173
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:48
+#: airtime_mvc/application/forms/Preferences.php:40
+#: airtime_mvc/application/forms/EditHistory.php:131
+#: airtime_mvc/application/forms/AddUser.php:110
+#: airtime_mvc/application/forms/PasswordChange.php:43
+#: airtime_mvc/application/forms/SupportSettings.php:131
+msgid "Save"
+msgstr "保存"
+
+#: airtime_mvc/application/controllers/LocaleController.php:298
+#: airtime_mvc/application/controllers/LocaleController.php:321
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:75
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:83
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:45
+#: airtime_mvc/application/forms/EditHistory.php:141
+#: airtime_mvc/application/forms/EditAudioMD.php:186
+msgid "Cancel"
+msgstr "取消"
+
+#: airtime_mvc/application/controllers/LocaleController.php:299
msgid "Fade Editor"
msgstr "淡入淡出编辑器"
-#: airtime_mvc/application/controllers/LocaleController.php:297
+#: airtime_mvc/application/controllers/LocaleController.php:300
msgid "Cue Editor"
msgstr "切入切出编辑器"
-#: airtime_mvc/application/controllers/LocaleController.php:298
+#: airtime_mvc/application/controllers/LocaleController.php:301
msgid "Waveform features are available in a browser supporting the Web Audio API"
msgstr "想要启用波形图功能,需要支持Web Audio API的浏览器。"
-#: airtime_mvc/application/controllers/LocaleController.php:301
+#: airtime_mvc/application/controllers/LocaleController.php:304
msgid "Select all"
msgstr "全选"
-#: airtime_mvc/application/controllers/LocaleController.php:302
+#: airtime_mvc/application/controllers/LocaleController.php:305
msgid "Select none"
msgstr "全不选"
-#: airtime_mvc/application/controllers/LocaleController.php:303
+#: airtime_mvc/application/controllers/LocaleController.php:306
msgid "Trim overbooked shows"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:304
+#: airtime_mvc/application/controllers/LocaleController.php:307
msgid "Remove selected scheduled items"
msgstr "移除所选的项目"
-#: airtime_mvc/application/controllers/LocaleController.php:305
+#: airtime_mvc/application/controllers/LocaleController.php:308
msgid "Jump to the current playing track"
msgstr "跳转到当前播放的项目"
-#: airtime_mvc/application/controllers/LocaleController.php:306
+#: airtime_mvc/application/controllers/LocaleController.php:309
msgid "Cancel current show"
msgstr "取消当前的节目"
-#: airtime_mvc/application/controllers/LocaleController.php:311
+#: airtime_mvc/application/controllers/LocaleController.php:314
msgid "Open library to add or remove content"
msgstr "打开媒体库,添加或者删除节目内容"
-#: airtime_mvc/application/controllers/LocaleController.php:312
+#: airtime_mvc/application/controllers/LocaleController.php:315
msgid "Add / Remove Content"
msgstr "添加 / 删除内容"
#: airtime_mvc/application/controllers/LocaleController.php:317
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:49
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:203
+msgid "in use"
+msgstr "使用中"
+
+#: airtime_mvc/application/controllers/LocaleController.php:318
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:189
+msgid "Disk"
+msgstr "磁盘"
+
+#: airtime_mvc/application/controllers/LocaleController.php:320
msgid "Look in"
msgstr "查询"
-#: airtime_mvc/application/controllers/LocaleController.php:319
+#: airtime_mvc/application/controllers/LocaleController.php:322
msgid "Open"
msgstr "打开"
+#: airtime_mvc/application/controllers/LocaleController.php:324
+#: airtime_mvc/application/forms/AddUser.php:102
+msgid "Admin"
+msgstr "系统管理员"
+
#: airtime_mvc/application/controllers/LocaleController.php:325
+#: airtime_mvc/application/forms/AddUser.php:100
+msgid "DJ"
+msgstr "节目编辑"
+
+#: airtime_mvc/application/controllers/LocaleController.php:326
+#: airtime_mvc/application/forms/AddUser.php:101
+msgid "Program Manager"
+msgstr "节目主管"
+
+#: airtime_mvc/application/controllers/LocaleController.php:327
+#: airtime_mvc/application/forms/AddUser.php:99
+msgid "Guest"
+msgstr "游客"
+
+#: airtime_mvc/application/controllers/LocaleController.php:328
msgid "Guests can do the following:"
msgstr "游客的权限包括:"
-#: airtime_mvc/application/controllers/LocaleController.php:326
+#: airtime_mvc/application/controllers/LocaleController.php:329
msgid "View schedule"
msgstr "显示节目日程"
-#: airtime_mvc/application/controllers/LocaleController.php:327
+#: airtime_mvc/application/controllers/LocaleController.php:330
msgid "View show content"
msgstr "显示节目内容"
-#: airtime_mvc/application/controllers/LocaleController.php:328
+#: airtime_mvc/application/controllers/LocaleController.php:331
msgid "DJs can do the following:"
msgstr "节目编辑的权限包括:"
-#: airtime_mvc/application/controllers/LocaleController.php:329
+#: airtime_mvc/application/controllers/LocaleController.php:332
msgid "Manage assigned show content"
msgstr "为指派的节目管理节目内容"
-#: airtime_mvc/application/controllers/LocaleController.php:330
+#: airtime_mvc/application/controllers/LocaleController.php:333
msgid "Import media files"
msgstr "导入媒体文件"
-#: airtime_mvc/application/controllers/LocaleController.php:331
+#: airtime_mvc/application/controllers/LocaleController.php:334
msgid "Create playlists, smart blocks, and webstreams"
msgstr "创建播放列表,智能模块和网络流媒体"
-#: airtime_mvc/application/controllers/LocaleController.php:332
+#: airtime_mvc/application/controllers/LocaleController.php:335
msgid "Manage their own library content"
msgstr "管理媒体库中属于自己的内容"
-#: airtime_mvc/application/controllers/LocaleController.php:333
+#: airtime_mvc/application/controllers/LocaleController.php:336
msgid "Progam Managers can do the following:"
msgstr "节目主管的权限是:"
-#: airtime_mvc/application/controllers/LocaleController.php:334
+#: airtime_mvc/application/controllers/LocaleController.php:337
msgid "View and manage show content"
msgstr "查看和管理节目内容"
-#: airtime_mvc/application/controllers/LocaleController.php:335
+#: airtime_mvc/application/controllers/LocaleController.php:338
msgid "Schedule shows"
msgstr "安排节目日程"
-#: airtime_mvc/application/controllers/LocaleController.php:336
+#: airtime_mvc/application/controllers/LocaleController.php:339
msgid "Manage all library content"
msgstr "管理媒体库的所有内容"
-#: airtime_mvc/application/controllers/LocaleController.php:337
+#: airtime_mvc/application/controllers/LocaleController.php:340
msgid "Admins can do the following:"
msgstr "管理员的权限包括:"
-#: airtime_mvc/application/controllers/LocaleController.php:338
+#: airtime_mvc/application/controllers/LocaleController.php:341
msgid "Manage preferences"
msgstr "属性管理"
-#: airtime_mvc/application/controllers/LocaleController.php:339
+#: airtime_mvc/application/controllers/LocaleController.php:342
msgid "Manage users"
msgstr "管理用户"
-#: airtime_mvc/application/controllers/LocaleController.php:340
+#: airtime_mvc/application/controllers/LocaleController.php:343
msgid "Manage watched folders"
msgstr "管理监控文件夹"
-#: airtime_mvc/application/controllers/LocaleController.php:342
+#: airtime_mvc/application/controllers/LocaleController.php:344
+#: airtime_mvc/application/forms/RegisterAirtime.php:116
+#: airtime_mvc/application/forms/SupportSettings.php:98
+msgid "Send support feedback"
+msgstr "提交反馈意见"
+
+#: airtime_mvc/application/controllers/LocaleController.php:345
msgid "View system status"
msgstr "显示系统状态"
-#: airtime_mvc/application/controllers/LocaleController.php:343
+#: airtime_mvc/application/controllers/LocaleController.php:346
msgid "Access playout history"
msgstr "查看播放历史"
-#: airtime_mvc/application/controllers/LocaleController.php:344
+#: airtime_mvc/application/controllers/LocaleController.php:347
msgid "View listener stats"
msgstr "显示收听统计数据"
-#: airtime_mvc/application/controllers/LocaleController.php:346
+#: airtime_mvc/application/controllers/LocaleController.php:349
msgid "Show / hide columns"
msgstr "显示/隐藏栏"
-#: airtime_mvc/application/controllers/LocaleController.php:348
+#: airtime_mvc/application/controllers/LocaleController.php:351
msgid "From {from} to {to}"
msgstr "从{from}到{to}"
-#: airtime_mvc/application/controllers/LocaleController.php:349
+#: airtime_mvc/application/controllers/LocaleController.php:352
msgid "kbps"
msgstr "千比特每秒"
-#: airtime_mvc/application/controllers/LocaleController.php:350
+#: airtime_mvc/application/controllers/LocaleController.php:353
msgid "yyyy-mm-dd"
msgstr "年-月-日"
-#: airtime_mvc/application/controllers/LocaleController.php:351
+#: airtime_mvc/application/controllers/LocaleController.php:354
msgid "hh:mm:ss.t"
msgstr "时:分:秒"
-#: airtime_mvc/application/controllers/LocaleController.php:352
+#: airtime_mvc/application/controllers/LocaleController.php:355
msgid "kHz"
msgstr "千赫兹"
-#: airtime_mvc/application/controllers/LocaleController.php:355
+#: airtime_mvc/application/controllers/LocaleController.php:358
msgid "Su"
msgstr "周天"
-#: airtime_mvc/application/controllers/LocaleController.php:356
+#: airtime_mvc/application/controllers/LocaleController.php:359
msgid "Mo"
msgstr "周一"
-#: airtime_mvc/application/controllers/LocaleController.php:357
+#: airtime_mvc/application/controllers/LocaleController.php:360
msgid "Tu"
msgstr "周二"
-#: airtime_mvc/application/controllers/LocaleController.php:358
+#: airtime_mvc/application/controllers/LocaleController.php:361
msgid "We"
msgstr "周三"
-#: airtime_mvc/application/controllers/LocaleController.php:359
+#: airtime_mvc/application/controllers/LocaleController.php:362
msgid "Th"
msgstr "周四"
-#: airtime_mvc/application/controllers/LocaleController.php:360
+#: airtime_mvc/application/controllers/LocaleController.php:363
msgid "Fr"
msgstr "周五"
-#: airtime_mvc/application/controllers/LocaleController.php:361
+#: airtime_mvc/application/controllers/LocaleController.php:364
msgid "Sa"
msgstr "周六"
-#: airtime_mvc/application/controllers/LocaleController.php:364
+#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3
+msgid "Close"
+msgstr "关闭"
+
+#: airtime_mvc/application/controllers/LocaleController.php:367
msgid "Hour"
msgstr "小时"
-#: airtime_mvc/application/controllers/LocaleController.php:365
+#: airtime_mvc/application/controllers/LocaleController.php:368
msgid "Minute"
msgstr "分钟"
-#: airtime_mvc/application/controllers/LocaleController.php:366
+#: airtime_mvc/application/controllers/LocaleController.php:369
msgid "Done"
msgstr "设定"
-#: airtime_mvc/application/controllers/LocaleController.php:369
+#: airtime_mvc/application/controllers/LocaleController.php:372
msgid "Select files"
msgstr "选择文件"
-#: airtime_mvc/application/controllers/LocaleController.php:370
-#: airtime_mvc/application/controllers/LocaleController.php:371
+#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:374
msgid "Add files to the upload queue and click the start button."
msgstr "添加需要上传的文件到传输队列中,然后点击开始上传。"
-#: airtime_mvc/application/controllers/LocaleController.php:372
-#: airtime_mvc/application/controllers/LocaleController.php:373
+#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:376
msgid "Status"
msgstr "系统状态"
-#: airtime_mvc/application/controllers/LocaleController.php:374
+#: airtime_mvc/application/controllers/LocaleController.php:377
msgid "Add Files"
msgstr "添加文件"
-#: airtime_mvc/application/controllers/LocaleController.php:375
+#: airtime_mvc/application/controllers/LocaleController.php:378
msgid "Stop Upload"
msgstr "停止上传"
-#: airtime_mvc/application/controllers/LocaleController.php:376
+#: airtime_mvc/application/controllers/LocaleController.php:379
msgid "Start upload"
msgstr "开始上传"
-#: airtime_mvc/application/controllers/LocaleController.php:377
+#: airtime_mvc/application/controllers/LocaleController.php:380
msgid "Add files"
msgstr "添加文件"
-#: airtime_mvc/application/controllers/LocaleController.php:378
+#: airtime_mvc/application/controllers/LocaleController.php:381
#, php-format
msgid "Uploaded %d/%d files"
msgstr "已经上传%d/%d个文件"
-#: airtime_mvc/application/controllers/LocaleController.php:379
+#: airtime_mvc/application/controllers/LocaleController.php:382
msgid "N/A"
msgstr "未知"
-#: airtime_mvc/application/controllers/LocaleController.php:380
+#: airtime_mvc/application/controllers/LocaleController.php:383
msgid "Drag files here."
msgstr "拖拽文件到此处。"
-#: airtime_mvc/application/controllers/LocaleController.php:381
+#: airtime_mvc/application/controllers/LocaleController.php:384
msgid "File extension error."
msgstr "文件后缀名出错。"
-#: airtime_mvc/application/controllers/LocaleController.php:382
+#: airtime_mvc/application/controllers/LocaleController.php:385
msgid "File size error."
msgstr "文件大小出错。"
-#: airtime_mvc/application/controllers/LocaleController.php:383
+#: airtime_mvc/application/controllers/LocaleController.php:386
msgid "File count error."
msgstr "发生文件统计错误。"
-#: airtime_mvc/application/controllers/LocaleController.php:384
+#: airtime_mvc/application/controllers/LocaleController.php:387
msgid "Init error."
msgstr "发生初始化错误。"
-#: airtime_mvc/application/controllers/LocaleController.php:385
+#: airtime_mvc/application/controllers/LocaleController.php:388
msgid "HTTP Error."
msgstr "发生HTTP类型的错误"
-#: airtime_mvc/application/controllers/LocaleController.php:386
+#: airtime_mvc/application/controllers/LocaleController.php:389
msgid "Security error."
msgstr "发生安全性错误。"
-#: airtime_mvc/application/controllers/LocaleController.php:387
+#: airtime_mvc/application/controllers/LocaleController.php:390
msgid "Generic error."
msgstr "发生通用类型的错误。"
-#: airtime_mvc/application/controllers/LocaleController.php:388
+#: airtime_mvc/application/controllers/LocaleController.php:391
msgid "IO error."
msgstr "输入输出错误。"
-#: airtime_mvc/application/controllers/LocaleController.php:389
+#: airtime_mvc/application/controllers/LocaleController.php:392
#, php-format
msgid "File: %s"
msgstr "文件:%s"
-#: airtime_mvc/application/controllers/LocaleController.php:391
+#: airtime_mvc/application/controllers/LocaleController.php:394
#, php-format
msgid "%d files queued"
msgstr "队列中有%d个文件"
-#: airtime_mvc/application/controllers/LocaleController.php:392
+#: airtime_mvc/application/controllers/LocaleController.php:395
msgid "File: %f, size: %s, max file size: %m"
msgstr "文件:%f,大小:%s,最大的文件大小:%m"
-#: airtime_mvc/application/controllers/LocaleController.php:393
+#: airtime_mvc/application/controllers/LocaleController.php:396
msgid "Upload URL might be wrong or doesn't exist"
msgstr "用于上传的地址有误或者不存在"
-#: airtime_mvc/application/controllers/LocaleController.php:394
+#: airtime_mvc/application/controllers/LocaleController.php:397
msgid "Error: File too large: "
msgstr "错误:文件过大:"
-#: airtime_mvc/application/controllers/LocaleController.php:395
+#: airtime_mvc/application/controllers/LocaleController.php:398
msgid "Error: Invalid file extension: "
msgstr "错误:无效的文件后缀名:"
-#: airtime_mvc/application/controllers/LocaleController.php:398
+#: airtime_mvc/application/controllers/LocaleController.php:400
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:27
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:58
+msgid "Set Default"
+msgstr "设为默认"
+
+#: airtime_mvc/application/controllers/LocaleController.php:401
msgid "Create Entry"
msgstr "创建项目"
-#: airtime_mvc/application/controllers/LocaleController.php:399
+#: airtime_mvc/application/controllers/LocaleController.php:402
msgid "Edit History Record"
msgstr "编辑历史记录"
-#: airtime_mvc/application/controllers/LocaleController.php:402
+#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53
+#: airtime_mvc/application/forms/EditHistoryItem.php:57
+msgid "No Show"
+msgstr "无节目"
+
+#: airtime_mvc/application/controllers/LocaleController.php:405
#, php-format
msgid "Copied %s row%s to the clipboard"
msgstr "复制%s行%s到剪贴板"
-#: airtime_mvc/application/controllers/LocaleController.php:403
+#: airtime_mvc/application/controllers/LocaleController.php:406
#, php-format
msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished."
msgstr "%s打印预览%s请使用浏览器的打印功能进行打印。按下Esc键可以退出当前状态。"
-#: airtime_mvc/application/controllers/LocaleController.php:404
+#: airtime_mvc/application/controllers/LocaleController.php:407
msgid "New Show"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:405
+#: airtime_mvc/application/controllers/LocaleController.php:408
msgid "New Log Entry"
msgstr ""
-#: airtime_mvc/application/controllers/ScheduleController.php:389
-#, php-format
-msgid "Rebroadcast of show %s from %s at %s"
-msgstr "节目%s是节目%s的重播,时间是%s"
-
-#: airtime_mvc/application/controllers/ScheduleController.php:712
-#: airtime_mvc/application/controllers/LibraryController.php:131
-msgid "Download"
-msgstr "下载"
-
-#: airtime_mvc/application/controllers/ErrorController.php:78
-msgid "Page not found."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:87
-msgid "The requested action is not supported."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:98
-msgid "You do not have permission to access this resource."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ErrorController.php:109
-msgid "An internal application error has occurred."
-msgstr ""
-
-#: airtime_mvc/application/controllers/ListenerstatController.php:51
-msgid "Please make sure admin user/password is correct on System->Streams page."
-msgstr "请检查系统->媒体流设置中,管理员用户/密码的设置是否正确。"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:53
-#, php-format
-msgid "You are viewing an older version of %s"
-msgstr "你所查看的%s已更改"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:140
-msgid "You cannot add tracks to dynamic blocks."
-msgstr "动态智能模块不能添加声音文件。"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:147
-#: airtime_mvc/application/controllers/LibraryController.php:31
-#, php-format
-msgid "%s not found"
-msgstr "%s不存在"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:161
-#, php-format
-msgid "You don't have permission to delete selected %s(s)."
-msgstr "你没有删除所选%s的权限。"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:168
-#: airtime_mvc/application/controllers/LibraryController.php:40
-msgid "Something went wrong."
-msgstr "未知错误。"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:174
-msgid "You can only add tracks to smart block."
-msgstr "智能模块只能添加媒体文件。"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:192
-msgid "Untitled Playlist"
-msgstr "未命名的播放列表"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:194
-msgid "Untitled Smart Block"
-msgstr "未命名的智能模块"
-
-#: airtime_mvc/application/controllers/PlaylistController.php:522
-msgid "Unknown Playlist"
-msgstr "位置播放列表"
-
-#: airtime_mvc/application/controllers/LoginController.php:43
-msgid "Please enter your username and password."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:93
-msgid "Wrong username or password provided. Please try again."
-msgstr "用户名或密码错误,请重试。"
-
-#: airtime_mvc/application/controllers/LoginController.php:167
-msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly."
-msgstr "邮件发送失败。请检查邮件服务器设置,并确定设置无误。"
-
-#: airtime_mvc/application/controllers/LoginController.php:173
-msgid "There was a problem with the username or email address you entered."
-msgstr ""
-
-#: airtime_mvc/application/controllers/DashboardController.php:35
-#: airtime_mvc/application/controllers/DashboardController.php:84
-msgid "You don't have permission to disconnect source."
-msgstr "你没有断开输入源的权限。"
-
-#: airtime_mvc/application/controllers/DashboardController.php:37
-#: airtime_mvc/application/controllers/DashboardController.php:86
-msgid "There is no source connected to this input."
-msgstr "没有连接上的输入源。"
-
-#: airtime_mvc/application/controllers/DashboardController.php:81
-msgid "You don't have permission to switch source."
-msgstr "你没有切换的权限。"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:72
-msgid "Preferences updated."
-msgstr "属性已更新。"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:115
-msgid "Support setting updated."
-msgstr "支持设定已更新。"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:123
-msgid "Support Feedback"
-msgstr "意见反馈"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:251
-msgid "Stream Setting Updated."
-msgstr "流设置已更新。"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:342
-msgid "path should be specified"
-msgstr "请指定路径"
-
-#: airtime_mvc/application/controllers/PreferenceController.php:437
-msgid "Problem with Liquidsoap..."
-msgstr "Liquidsoap出错..."
-
-#: airtime_mvc/application/controllers/PreferenceController.php:493
-msgid "Request method not accepted"
-msgstr ""
-
-#: airtime_mvc/application/controllers/UserController.php:86
-msgid "User added successfully!"
-msgstr "用户已添加成功!"
-
-#: airtime_mvc/application/controllers/UserController.php:88
-msgid "User updated successfully!"
-msgstr "用于已成功更新!"
-
-#: airtime_mvc/application/controllers/UserController.php:187
-msgid "Settings updated successfully!"
-msgstr "设置更新成功!"
-
-#: airtime_mvc/application/controllers/WebstreamController.php:28
-#: airtime_mvc/application/controllers/WebstreamController.php:32
-msgid "Untitled Webstream"
-msgstr "未命名的网络流媒体"
-
-#: airtime_mvc/application/controllers/WebstreamController.php:150
-msgid "Webstream saved."
-msgstr "网络流媒体已保存。"
-
-#: airtime_mvc/application/controllers/WebstreamController.php:158
-msgid "Invalid form values."
-msgstr "无效的表格内容。"
-
-#: airtime_mvc/application/controllers/LibraryController.php:95
-#: airtime_mvc/application/controllers/ShowbuilderController.php:136
-msgid "Preview"
-msgstr "预览"
-
-#: airtime_mvc/application/controllers/LibraryController.php:115
-#: airtime_mvc/application/controllers/LibraryController.php:177
-#: airtime_mvc/application/controllers/LibraryController.php:200
-msgid "Add to Playlist"
-msgstr "添加到播放列表"
-
-#: airtime_mvc/application/controllers/LibraryController.php:117
-msgid "Add to Smart Block"
-msgstr "添加到智能模块"
-
-#: airtime_mvc/application/controllers/LibraryController.php:147
-msgid "View track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:148
-msgid "Remove track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:154
-#: airtime_mvc/application/controllers/LibraryController.php:159
-msgid "Upload track"
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:169
-msgid "Duplicate Playlist"
-msgstr "复制播放列表"
-
-#: airtime_mvc/application/controllers/LibraryController.php:213
-msgid "No action available"
-msgstr "没有操作选择"
-
-#: airtime_mvc/application/controllers/LibraryController.php:233
-msgid "You don't have permission to delete selected items."
-msgstr "你没有删除选定项目的权限。"
-
-#: airtime_mvc/application/controllers/LibraryController.php:279
-msgid "Could not delete file because it is scheduled in the future."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:282
-msgid "Could not delete file(s)."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LibraryController.php:322
-#, php-format
-msgid "Copy of %s"
-msgstr "%s的副本"
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:28
-msgid ""
-"To configure and use the embeddable player you must:
\n"
-" 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n"
-" 2. Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
-#: airtime_mvc/application/controllers/EmbeddablewidgetsController.php:41
-msgid ""
-"To use the embeddable weekly schedule widget you must:
\n"
-" Enable the Public Airtime API under System -> Preferences"
-msgstr ""
-
#: airtime_mvc/application/controllers/ShowbuilderController.php:138
msgid "Select cursor"
msgstr "选择游标"
@@ -4038,39 +1803,78 @@ msgstr "删除游标"
msgid "show does not exist"
msgstr "节目不存在"
-#: airtime_mvc/application/controllers/ApiController.php:79
-msgid "You are not allowed to access this resource."
-msgstr "你没有访问该资源的权限"
-
-#: airtime_mvc/application/controllers/ApiController.php:244
-#: airtime_mvc/application/controllers/ApiController.php:317
-#: airtime_mvc/application/controllers/ApiController.php:392
-#: airtime_mvc/application/controllers/ApiController.php:435
-#: airtime_mvc/application/controllers/ApiController.php:474
-#: airtime_mvc/application/controllers/ApiController.php:507
-msgid "You are not allowed to access this resource. "
-msgstr "你没有访问该资源的权限"
-
-#: airtime_mvc/application/controllers/ApiController.php:698
-#: airtime_mvc/application/controllers/ApiController.php:718
-#: airtime_mvc/application/controllers/ApiController.php:730
+#: airtime_mvc/application/controllers/ScheduleController.php:389
#, php-format
-msgid "File does not exist in %s"
+msgid "Rebroadcast of show %s from %s at %s"
+msgstr "节目%s是节目%s的重播,时间是%s"
+
+#: airtime_mvc/application/common/UsabilityHints.php:55
+msgid "Upload some tracks below to add them to your library!"
msgstr ""
-#: airtime_mvc/application/controllers/ApiController.php:781
-msgid "Bad request. no 'mode' parameter passed."
-msgstr "请求错误。没有提供‘模式’参数。"
-
-#: airtime_mvc/application/controllers/ApiController.php:791
-msgid "Bad request. 'mode' parameter is invalid"
-msgstr "请求错误。提供的‘模式’参数无效。"
-
-#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#: airtime_mvc/application/common/UsabilityHints.php:57
#, php-format
-msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."
msgstr ""
+#: airtime_mvc/application/common/UsabilityHints.php:63
+msgid "Click the 'New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:65
+#, php-format
+msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:73
+msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:75
+#, php-format
+msgid ""
+"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n"
+" %sCreate an unlinked show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:80
+msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:82
+#, php-format
+msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:89
+msgid "Click on the show starting next and select 'Schedule Tracks'"
+msgstr ""
+
+#: airtime_mvc/application/common/UsabilityHints.php:91
+#, php-format
+msgid "It looks like the next show is empty. %sAdd tracks to your show now%s."
+msgstr ""
+
+#: airtime_mvc/application/common/DateHelper.php:213
+#, php-format
+msgid "The year %s must be within the range of 1753 - 9999"
+msgstr "1753 - 9999 是可以接受的年代值,而不是“%s”"
+
+#: airtime_mvc/application/common/DateHelper.php:216
+#, php-format
+msgid "%s-%s-%s is not a valid date"
+msgstr "%s-%s-%s采用了错误的日期格式"
+
+#: airtime_mvc/application/common/DateHelper.php:240
+#, php-format
+msgid "%s:%s:%s is not a valid time"
+msgstr "%s:%s:%s 采用了错误的时间格式"
+
+#: airtime_mvc/application/layouts/scripts/livestream.phtml:9
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2
+msgid "Live stream"
+msgstr "插播流"
+
#: airtime_mvc/application/layouts/scripts/layout.phtml:63
msgid "Smart Block"
msgstr ""
@@ -4083,6 +1887,17 @@ msgstr ""
msgid "Upload"
msgstr ""
+#: airtime_mvc/application/layouts/scripts/layout.phtml:76
+#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:33
+msgid "Dashboard"
+msgstr ""
+
+#: airtime_mvc/application/layouts/scripts/layout.phtml:84
+#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:25
+msgid "Webstreams"
+msgstr ""
+
#: airtime_mvc/application/layouts/scripts/layout.phtml:135
#: airtime_mvc/application/layouts/scripts/layout.phtml:161
msgid "Play"
@@ -4105,401 +1920,2128 @@ msgstr "设为切出时间"
msgid "Cursor"
msgstr "设置游标"
-#~ msgid "Show:"
-#~ msgstr "节目:"
+#: airtime_mvc/application/layouts/scripts/login.phtml:24
+#, php-format
+msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:34
+msgid "Drop files here or click to browse your computer."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:66
+msgid "Failed"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:67
+msgid "Pending"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:70
+msgid "Recent Uploads"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3
+msgid "Share"
+msgstr "共享"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64
+msgid "Select stream:"
+msgstr "选择流:"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60
+msgid "mute"
+msgstr "静音"
+
+#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63
+msgid "unmute"
+msgstr "取消静音"
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2
+msgid "About"
+msgstr "关于"
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:9
+#, php-format
+msgid "%1$s %2$s, the open radio software for scheduling and remote station management."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22
+#, php-format
+msgid "%1$s %2$s is distributed under the %3$s"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:2
+#: airtime_mvc/application/views/scripts/form/setup-lang-timezone.phtml:1
+#, php-format
+msgid "Welcome to %s!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3
+#, php-format
+msgid "Here's how you can get started using %s to automate your broadcasts: "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:6
+msgid "Upload audio tracks"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7
+msgid "Click the 'Upload' button in the left corner to upload tracks to your library."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8
+msgid "Schedule a show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9
+msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10
+msgid "Add tracks to your show"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:11
+msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:16
+msgid "Now you're good to go!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/dashboard/help.phtml:19
+#, php-format
+msgid "For more detailed help, read the %suser manual%s."
+msgstr "详细的指导,可以参考%s用户手册%s。"
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:5
+#: airtime_mvc/application/configs/navigation.php:40
+msgid "Weekly Schedule"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14
+#: airtime_mvc/application/forms/Player.php:77
+msgid "Preview:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/embeddablewidgets/player.phtml:6
+#: airtime_mvc/application/configs/navigation.php:34
+msgid "Player"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:97
+msgid "Playout History"
+msgstr "播出历史"
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8
+msgid "Log Sheet"
+msgstr "历史记录表单"
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:9
+msgid "File Summary"
+msgstr "文件播放记录"
+
+#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:11
+msgid "Show Summary"
+msgstr "节目播放记录"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:56
+msgid "Expand Static Block"
+msgstr "展开静态智能模块"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:61
+msgid "Expand Dynamic Block"
+msgstr "展开动态智能模块"
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:138
+msgid "Choose some search criteria above and click Generate to create this playlist."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:140
+msgid "A track list will be generated when you schedule this smart block into a show."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/update.phtml:143
+msgid "Drag tracks here from your library to add them to the playlist"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:10
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:10
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:8
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8
+msgid "Editing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:26
+msgid "Name:"
+msgstr "名字:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149
+#: airtime_mvc/application/forms/AddShowWhat.php:54
+msgid "Description:"
+msgstr "描述:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43
+#: airtime_mvc/application/forms/AddShowWhen.php:89
+msgid "Duration:"
+msgstr "时长:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:40
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:46
+msgid "Toggle Details"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+msgid "Shuffle playlist"
+msgstr "随机打乱播放列表"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:356
+msgid "Shuffle"
+msgstr "随机"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:48
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:56
+msgid "Playlist crossfade"
+msgstr "播放列表交错淡入淡出效果"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+msgid "Empty playlist content"
+msgstr "播放列表无内容"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:52
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Clear"
+msgstr "清除"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:60
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+msgid "Fade in: "
+msgstr "淡入:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:63
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "Fade out: "
+msgstr "淡出:"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:78
+msgid "Save playlist"
+msgstr "保存播放列表"
+
+#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:86
+msgid "No open playlist"
+msgstr "没有打开的播放列表"
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
+msgid "Show Waveform"
+msgstr "显示波形图"
+
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
+#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:68
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:71
+msgid "(ss.t)"
+msgstr "(秒.分秒)"
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:60
+msgid "Remove all content from this smart block"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:92
+msgid "No smart block currently open"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+msgid "Cue In: "
+msgstr "切入:"
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "(hh:mm:ss.t)"
+msgstr "(时:分:秒.分秒)"
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12
+msgid "Cue Out: "
+msgstr "切出:"
+
+#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19
+msgid "Original Length:"
+msgstr "原始长度:"
+
+#: airtime_mvc/application/views/scripts/preference/index.phtml:2
+#: airtime_mvc/application/configs/navigation.php:56
+msgid "General"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2
+msgid "Stream Settings"
+msgstr "流设定"
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:11
+msgid "Global"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88
+msgid "dB"
+msgstr "分贝"
+
+#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106
+msgid "Output Streams"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:3
+#: airtime_mvc/application/forms/Login.php:83
+msgid "Login"
+msgstr "登录"
+
+#: airtime_mvc/application/views/scripts/login/index.phtml:7
+#, php-format
+msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3
+msgid "Email Sent!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6
+msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:48
+msgid "Back"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3
+msgid "Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:3
+msgid "New password"
+msgstr "新密码"
+
+#: airtime_mvc/application/views/scripts/login/password-change.phtml:6
+msgid "Please enter and confirm your new password in the fields below."
+msgstr "请再次输入你的新密码。"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:3
+msgid "Manage Users"
+msgstr "用户管理"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:10
+msgid "New User"
+msgstr "新建用户"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:17
+msgid "id"
+msgstr "编号"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:18
+#: airtime_mvc/application/forms/PasswordRestore.php:25
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:164
+msgid "Username"
+msgstr "用户名"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:19
+msgid "First Name"
+msgstr "名"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:20
+msgid "Last Name"
+msgstr "姓"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:21
+msgid "User Type"
+msgstr "用户类型"
+
+#: airtime_mvc/application/views/scripts/user/add-user.phtml:30
+#, php-format
+msgid "Super Admin details can be changed in your Billing Settings."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7
+msgid "Find Shows"
+msgstr "查找节目"
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45
+msgid "Choose Show Instance"
+msgstr "选择节目项"
+
+#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56
+msgid "Find"
+msgstr "查找"
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1
+#: airtime_mvc/application/configs/navigation.php:61
+msgid "My Profile"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/edit-user.phtml:7
+#, php-format
+msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
+msgid "Repeat Days:"
+msgstr "重复天数:"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18
+#: airtime_mvc/application/forms/GeneralPreferences.php:53
+#: airtime_mvc/application/forms/AddShowStyle.php:64
+msgid "Remove"
+msgstr "移除"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75
+msgid "Add"
+msgstr "添加"
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:10
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:25
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:39
+msgid "Show Source"
+msgstr "节目定制的输入流"
+
+#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:12
+msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1
+msgid "Register Airtime"
+msgstr "注册Airtime"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5
+#, php-format
+msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29
+#, php-format
+msgid "Click the box below to promote your station on %s."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:41
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:55
+msgid "(Required)"
+msgstr "(必填)"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81
+msgid "(for verification purposes only, will not be published)"
+msgstr "(仅作为验证目的使用,不会用于发布)"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152
+#: airtime_mvc/application/forms/GeneralPreferences.php:43
+msgid "Note: Anything larger than 600x600 will be resized."
+msgstr "注意:大于600x600的图片将会被缩放"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166
+msgid "Show me what I am sending "
+msgstr "显示我所发送的信息"
+
+#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180
+msgid "Terms and Conditions"
+msgstr "使用条款"
+
+#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4
+msgid "Choose Days:"
+msgstr "选择天数:"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:66
+msgid "Search Criteria:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:68
+msgid "New Criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:77
+msgid "or"
+msgstr "或"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:78
+msgid "and"
+msgstr "和"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:99
+msgid "New Modifier"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:102
+msgid " to "
+msgstr "到"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:130
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:143
+msgid "files meet the criteria"
+msgstr "个文件符合条件"
+
+#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:137
+msgid "file meets the criteria"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:6
+#: airtime_mvc/application/views/scripts/form/daterange.phtml:7
+msgid "Filter History"
+msgstr "历史记录过滤"
+
+#: airtime_mvc/application/views/scripts/form/login.phtml:41
+msgid "Forgot your password?"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46
+msgid "(In order to promote your station, 'Send support feedback' must be enabled)."
+msgstr "(为了推广您的电台,请启用‘发送支持反馈’)"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4
+msgid "Stream "
+msgstr "流"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:84
+msgid "Additional Options"
+msgstr "附属选项"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:144
+msgid "The following info will be displayed to listeners in their media player:"
+msgstr "以下内容将会在听众的媒体播放器上显示:"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:177
+msgid "(Your radio station website)"
+msgstr "(你电台的网站)"
+
+#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:215
+msgid "Stream URL: "
+msgstr "流的链接地址:"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27
+msgid "Choose folder"
+msgstr "选择文件夹"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10
+msgid "Set"
+msgstr "设置"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19
+msgid "Current Import Folder:"
+msgstr "当前的导入文件夹:"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43
+#, php-format
+msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44
+msgid "Remove watched directory"
+msgstr "移除监控文件夹"
+
+#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49
+msgid "You are not watching any media folders."
+msgstr "你没有正在监控的文件夹。"
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:1
+msgid "Live Broadcasting"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:11
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:30
+msgid "Master Source"
+msgstr "主输入流"
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:13
+msgid "Use these settings in your broadcasting software to stream live at any time."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:27
+msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:6
+msgid "TuneIn Settings"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:11
+msgid "SoundCloud Settings"
+msgstr "SoundCloud设置"
+
+#: airtime_mvc/application/views/scripts/form/preferences.phtml:17
+msgid "Dangerous Options"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Add this show"
+msgstr "添加此节目"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:43
+msgid "Update show"
+msgstr "更新节目"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10
+msgid "What"
+msgstr "名称"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
+msgid "When"
+msgstr "时间"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:28
+msgid "Live Stream Input"
+msgstr "输入流设置"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:32
+msgid "Who"
+msgstr "管理和编辑"
+
+#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:36
+msgid "Style"
+msgstr "风格"
+
+#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:186
+msgid "Disk Space"
+msgstr "磁盘空间"
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:3
+msgid "File import in progress..."
+msgstr "导入文件进行中..."
+
+#: airtime_mvc/application/views/scripts/library/library.phtml:10
+#: airtime_mvc/application/views/scripts/widgets/lib-table.phtml:4
+msgid "Advanced Search Options"
+msgstr "高级查询选项"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9
+#: airtime_mvc/application/forms/EditAudioMD.php:24
+#: airtime_mvc/application/forms/Player.php:15
+msgid "Title:"
+msgstr "歌曲名:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148
+#: airtime_mvc/application/forms/EditAudioMD.php:34
+msgid "Creator:"
+msgstr "作者:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11
+#: airtime_mvc/application/forms/EditAudioMD.php:44
+msgid "Album:"
+msgstr "专辑名:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12
+msgid "Track:"
+msgstr "曲目编号:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147
+msgid "Length:"
+msgstr "长度:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14
+msgid "Sample Rate:"
+msgstr "样本率:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:74
+msgid "Bit Rate:"
+msgstr "比特率:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16
+#: airtime_mvc/application/forms/EditAudioMD.php:115
+msgid "Mood:"
+msgstr "情怀:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17
+#: airtime_mvc/application/forms/AddShowWhat.php:45
+#: airtime_mvc/application/forms/EditAudioMD.php:62
+msgid "Genre:"
+msgstr "风格:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18
+#: airtime_mvc/application/forms/EditAudioMD.php:72
+msgid "Year:"
+msgstr "年份:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19
+#: airtime_mvc/application/forms/EditAudioMD.php:85
+msgid "Label:"
+msgstr "标签:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20
+#: airtime_mvc/application/forms/EditAudioMD.php:125
+msgid "BPM:"
+msgstr "拍子(BPM):"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21
+#: airtime_mvc/application/forms/EditAudioMD.php:95
+msgid "Composer:"
+msgstr "编曲:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22
+#: airtime_mvc/application/forms/EditAudioMD.php:105
+msgid "Conductor:"
+msgstr "制作:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23
+#: airtime_mvc/application/forms/EditAudioMD.php:135
+msgid "Copyright:"
+msgstr "版权:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24
+msgid "Isrc Number:"
+msgstr "ISRC编号:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25
+#: airtime_mvc/application/forms/EditAudioMD.php:155
+msgid "Website:"
+msgstr "网站:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26
+#: airtime_mvc/application/forms/EditAudioMD.php:165
+#: airtime_mvc/application/forms/EditUser.php:119
+#: airtime_mvc/application/forms/Login.php:68
+msgid "Language:"
+msgstr "语言:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27
+msgid "File Path:"
+msgstr "文件路径:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45
+msgid "Web Stream"
+msgstr "网络流媒体"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46
+msgid "Dynamic Smart Block"
+msgstr "动态智能模块"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47
+msgid "Static Smart Block"
+msgstr "静态智能模块"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48
+msgid "Audio Track"
+msgstr "音频文件"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63
+msgid "Playlist Contents: "
+msgstr "播放列表内容:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65
+msgid "Static Smart Block Contents: "
+msgstr "静态智能模块条件:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104
+msgid "Dynamic Smart Block Criteria: "
+msgstr "动态智能模块条件:"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137
+msgid "Limit to "
+msgstr "限制到"
+
+#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150
+#: airtime_mvc/application/forms/AddShowWhat.php:36
+msgid "URL:"
+msgstr "链接地址:"
+
+#: airtime_mvc/application/views/scripts/library/edit-file-md.phtml:6
+msgid "Viewing "
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2
+msgid "Listeners"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:10
+msgid "Stream Data Collection Status"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3
+msgid "Your trial expires in"
+msgstr "你的试用天数还剩"
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15
+msgid "days"
+msgstr "天"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:4
+msgid "Previous:"
+msgstr "之前的:"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:11
+msgid "Next:"
+msgstr "之后的:"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:25
+msgid "Source Streams"
+msgstr "输入流"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:49
+msgid "ON AIR"
+msgstr "直播中"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:50
+msgid "Listen"
+msgstr "收听"
+
+#: airtime_mvc/application/views/scripts/partialviews/header.phtml:61
+msgid "Logout"
+msgstr "登出"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:3
+msgid "Playout History Templates"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:5
+msgid "Log Sheet Templates"
+msgstr "历史记录表单模板"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:6
+msgid "New Log Sheet Template"
+msgstr "新建历史记录模板"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:9
+msgid "No Log Sheet Templates"
+msgstr "无历史记录表单模板"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:36
+msgid "File Summary Templates"
+msgstr "文件播放记录模板列表"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:37
+msgid "New File Summary Template"
+msgstr "新建文件播放记录模板"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:40
+msgid "No File Summary Templates"
+msgstr "无文件播放记录模板"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2
+msgid "Creating File Summary Template"
+msgstr "创建文件播放记录模板"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4
+msgid "Creating Log Sheet Template"
+msgstr "创建历史记录表单模板"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:142
+msgid "Name"
+msgstr "名字"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46
+msgid "Add more elements"
+msgstr "增加更多元素"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67
+msgid "Add New Field"
+msgstr "添加新项目"
+
+#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83
+msgid "Set Default Template"
+msgstr "设为默认模板"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:148
+msgid "Description"
+msgstr "描述"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:30
+msgid "Stream URL:"
+msgstr "流的链接地址:"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:35
+msgid "Default Length:"
+msgstr "默认长度:"
+
+#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:53
+msgid "No webstream"
+msgstr "没有网络流媒体"
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:6
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:6
+#: airtime_mvc/application/views/scripts/error/error.phtml:6
+msgid "An error has occurred."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:11
+msgid "Access Denied!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:12
+msgid "You do not have permission to access this page!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-403.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:14
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:14
+#: airtime_mvc/application/views/scripts/error/error.phtml:14
+#: airtime_mvc/application/configs/navigation.php:143
+msgid "Help"
+msgstr "帮助"
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:11
+msgid "Oops!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-500.phtml:12
+msgid "Something went wrong!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:11
+msgid "Bad Request!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-400.phtml:12
+msgid "The requested action is not supported!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:11
+msgid "Page not found!"
+msgstr "页面不存在!"
+
+#: airtime_mvc/application/views/scripts/error/error-404.phtml:12
+msgid "We couldn't find the page you were looking for."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/error/error.phtml:12
+msgid "Looks like the page you were looking for doesn't exist!"
+msgstr "你所寻找的页面不存在!"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23
+msgid "previous"
+msgstr "往前"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28
+msgid "play"
+msgstr "播放"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32
+msgid "pause"
+msgstr "暂停"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37
+msgid "next"
+msgstr "往后"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42
+msgid "stop"
+msgstr "停止"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69
+msgid "max volume"
+msgstr "最大音量"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79
+msgid "Update Required"
+msgstr "需要更新升级"
+
+#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:80
+#, php-format
+msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s."
+msgstr "想要播放媒体,需要更新你的浏览器到最新的版本,或者更新你的%sFalsh插件%s。"
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:20
+msgid "Plan type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:32
+msgid "Billing cycle:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:40
+msgid "Payment method:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43
+msgid "PayPal"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:44
+msgid "Credit Card via 2Checkout"
+msgstr ""
+
+#: airtime_mvc/application/forms/DateRange.php:16
+#: airtime_mvc/application/forms/ShowBuilder.php:18
+msgid "Date Start:"
+msgstr "开始日期:"
+
+#: airtime_mvc/application/forms/DateRange.php:35
+#: airtime_mvc/application/forms/DateRange.php:63
+#: airtime_mvc/application/forms/ShowBuilder.php:37
+#: airtime_mvc/application/forms/ShowBuilder.php:65
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:102
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:121
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:136
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:158
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:168
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:177
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:186
+msgid "Invalid character entered"
+msgstr "输入的字符不合要求"
+
+#: airtime_mvc/application/forms/DateRange.php:44
+#: airtime_mvc/application/forms/ShowBuilder.php:46
+#: airtime_mvc/application/forms/AddShowRepeats.php:56
+msgid "Date End:"
+msgstr "结束日期:"
+
+#: airtime_mvc/application/forms/ShowBuilder.php:72
+#: airtime_mvc/application/forms/ShowBuilder.php:88
+msgid "Filter by Show"
+msgstr ""
+
+#: airtime_mvc/application/forms/ShowBuilder.php:80
+msgid "All My Shows:"
+msgstr "我的全部节目:"
+
+#: airtime_mvc/application/forms/AddShowWho.php:10
+msgid "Search Users:"
+msgstr "查找用户:"
+
+#: airtime_mvc/application/forms/AddShowWho.php:24
+msgid "DJs:"
+msgstr "选择节目编辑:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:30
+#: airtime_mvc/application/forms/GeneralPreferences.php:25
+#: airtime_mvc/application/forms/SupportSettings.php:18
+msgid "Station Name"
+msgstr "电台名称"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:39
+#: airtime_mvc/application/forms/SupportSettings.php:31
+msgid "Phone:"
+msgstr "电话:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:51
+#: airtime_mvc/application/forms/AddUser.php:67
+#: airtime_mvc/application/forms/EditUser.php:83
+#: airtime_mvc/application/forms/SupportSettings.php:43
+msgid "Email:"
+msgstr "电邮:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:62
+#: airtime_mvc/application/forms/SupportSettings.php:54
+msgid "Station Web Site:"
+msgstr "电台网址:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:73
+#: airtime_mvc/application/forms/SupportSettings.php:65
+msgid "Country:"
+msgstr "国家:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:84
+#: airtime_mvc/application/forms/SupportSettings.php:76
+msgid "City:"
+msgstr "城市:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:96
+#: airtime_mvc/application/forms/SupportSettings.php:88
+msgid "Station Description:"
+msgstr "电台描述:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:106
+#: airtime_mvc/application/forms/GeneralPreferences.php:42
+msgid "Station Logo:"
+msgstr "电台标志:"
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:126
+#: airtime_mvc/application/forms/SupportSettings.php:108
+#, php-format
+msgid "Promote my station on %s"
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:151
+#: airtime_mvc/application/forms/SupportSettings.php:120
+#, php-format
+msgid "By checking this box, I agree to %s's %sprivacy policy%s."
+msgstr ""
+
+#: airtime_mvc/application/forms/RegisterAirtime.php:169
+#: airtime_mvc/application/forms/SupportSettings.php:143
+msgid "You have to agree to privacy policy."
+msgstr "请先接受隐私策略"
+
+#: airtime_mvc/application/forms/AddShowRR.php:10
+msgid "Record from Line In?"
+msgstr "从线路输入录制?"
+
+#: airtime_mvc/application/forms/AddShowRR.php:16
+msgid "Rebroadcast?"
+msgstr "重播?"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8
+#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26
+msgid "Value is required and can't be empty"
+msgstr "不能为空"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19
+msgid "'%value%' is no valid email address in the basic format local-part@hostname"
+msgstr "'%value%' 不是合法的电邮地址,应该类似于 local-part@hostname"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33
+msgid "'%value%' does not fit the date format '%format%'"
+msgstr "'%value%' 不符合格式要求: '%format%'"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59
+msgid "'%value%' is less than %min% characters long"
+msgstr "'%value%' 小于最小长度要求 %min% "
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64
+msgid "'%value%' is more than %max% characters long"
+msgstr "'%value%' 大于最大长度要求 %max%"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76
+msgid "'%value%' is not between '%min%' and '%max%', inclusively"
+msgstr "'%value%' 应该介于 '%min%' 和 '%max%'之间"
+
+#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89
+msgid "Passwords do not match"
+msgstr "两次密码输入不匹配"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71
+msgid "Day must be specified"
+msgstr "请指定天"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76
+msgid "Time must be specified"
+msgstr "请指定时间"
+
+#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94
+#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103
+msgid "Must wait at least 1 hour to rebroadcast"
+msgstr "至少间隔一个小时"
+
+#: airtime_mvc/application/forms/PasswordRestore.php:14
+msgid "Email"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordRestore.php:36
+msgid "Reset password"
+msgstr "重置密码"
+
+#: airtime_mvc/application/forms/AddShowWhat.php:30
+msgid "Untitled Show"
+msgstr "未命名节目"
+
+#: airtime_mvc/application/forms/AddShowWhat.php:69
+msgid "Instance Description:"
+msgstr ""
+
+#: airtime_mvc/application/forms/DangerousPreferences.php:12
+msgid "Delete All Tracks in Library"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditAudioMD.php:145
+msgid "ISRC Number:"
+msgstr "ISRC编号:"
+
+#: airtime_mvc/application/forms/EditAudioMD.php:176
+msgid "OK"
+msgstr "确定"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:33
+msgid "Station Description"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:62
+msgid "Default Crossfade Duration (s):"
+msgstr "默认混合淡入淡出效果(秒):"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:68
+#: airtime_mvc/application/forms/GeneralPreferences.php:82
+#: airtime_mvc/application/forms/GeneralPreferences.php:96
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:34
+msgid "Please enter a time in seconds (eg. 0.5)"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:76
+msgid "Default Fade In (s):"
+msgstr "默认淡入效果(秒):"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:90
+msgid "Default Fade Out (s):"
+msgstr "默认淡出效果(秒):"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:102
+msgid "Public Airtime API"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:103
+msgid "Required for embeddable schedule widget."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:105
+msgid "Disabled"
+msgstr "禁用"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:106
+msgid "Enabled"
+msgstr "启用"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:109
+msgid ""
+"Enabling this feature will allow Airtime to provide schedule data\n"
+" to external widgets that can be embedded in your website."
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:120
+msgid "Default Language"
+msgstr ""
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:127
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23
+msgid "Station Timezone"
+msgstr "系统使用的时区"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:134
+msgid "Week Starts On"
+msgstr "一周开始于"
+
+#: airtime_mvc/application/forms/GeneralPreferences.php:150
+msgid "Display login button on your Radio Page?"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddUser.php:29
+#: airtime_mvc/application/forms/EditUser.php:37
+#: airtime_mvc/application/forms/Login.php:41
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42
+msgid "Username:"
+msgstr "用户名:"
+
+#: airtime_mvc/application/forms/AddUser.php:38
+#: airtime_mvc/application/forms/EditUser.php:48
+#: airtime_mvc/application/forms/Login.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58
+msgid "Password:"
+msgstr "密码:"
+
+#: airtime_mvc/application/forms/AddUser.php:46
+#: airtime_mvc/application/forms/EditUser.php:57
+msgid "Verify Password:"
+msgstr "再次输入密码:"
+
+#: airtime_mvc/application/forms/AddUser.php:55
+#: airtime_mvc/application/forms/EditUser.php:67
+msgid "Firstname:"
+msgstr "名:"
+
+#: airtime_mvc/application/forms/AddUser.php:61
+#: airtime_mvc/application/forms/EditUser.php:75
+msgid "Lastname:"
+msgstr "姓:"
+
+#: airtime_mvc/application/forms/AddUser.php:76
+#: airtime_mvc/application/forms/EditUser.php:94
+msgid "Mobile Phone:"
+msgstr "手机:"
+
+#: airtime_mvc/application/forms/AddUser.php:82
+#: airtime_mvc/application/forms/EditUser.php:102
+msgid "Skype:"
+msgstr "Skype帐号:"
+
+#: airtime_mvc/application/forms/AddUser.php:88
+#: airtime_mvc/application/forms/EditUser.php:110
+msgid "Jabber:"
+msgstr "Jabber帐号:"
+
+#: airtime_mvc/application/forms/AddUser.php:95
+msgid "User Type:"
+msgstr "用户类型:"
+
+#: airtime_mvc/application/forms/AddUser.php:120
+#: airtime_mvc/application/forms/EditUser.php:155
+msgid "Login name is not unique."
+msgstr "帐号重名。"
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:14
+msgid "Import Folder:"
+msgstr "导入文件夹:"
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:25
+msgid "Watched Folders:"
+msgstr "监控文件夹:"
+
+#: airtime_mvc/application/forms/WatchedDirPreferences.php:40
+msgid "Not a valid Directory"
+msgstr "无效的路径"
+
+#: airtime_mvc/application/forms/BillingClient.php:126
+msgid "What is the name of your favorite childhood friend?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:127
+msgid "What school did you attend for sixth grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:128
+msgid "In what city did you meet your spouse/significant other?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:129
+msgid "What street did you live on in third grade?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:130
+msgid "What is the first name of the boy or girl that you first kissed?"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:131
+msgid "In what city or town was your first job?"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:14
+msgid "Default License:"
+msgstr "默认版权策略:"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:17
+msgid "All rights are reserved"
+msgstr "版权所有"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:18
+msgid "The work is in the public domain"
+msgstr "公开"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:19
+msgid "Creative Commons Attribution"
+msgstr "知识共享署名"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:20
+msgid "Creative Commons Attribution Noncommercial"
+msgstr "知识共享署名-非商业应用"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:21
+msgid "Creative Commons Attribution No Derivative Works"
+msgstr "知识共享署名-不允许衍生"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:22
+msgid "Creative Commons Attribution Share Alike"
+msgstr "知识共享署名-相同方式共享"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:23
+msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
+msgstr "知识共享署名-非商业应用且不允许衍生"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:24
+msgid "Creative Commons Attribution Noncommercial Share Alike"
+msgstr "知识共享署名-非商业应用且相同方式共享"
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:31
+msgid "Default Sharing Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:34
+msgid "Public"
+msgstr ""
+
+#: airtime_mvc/application/forms/SoundCloudPreferences.php:35
+msgid "Private"
+msgstr ""
+
+#: airtime_mvc/application/forms/EditUser.php:129
+msgid "Interface Timezone:"
+msgstr "用户界面使用的时区:"
+
+#: airtime_mvc/application/forms/Player.php:14
+msgid "Now Playing"
+msgstr "直播室"
+
+#: airtime_mvc/application/forms/Player.php:25
+msgid "Select Stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:28
+msgid "Auto detect the most appropriate stream to use."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:29
+msgid "Select a stream:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:41
+msgid " - Mobile friendly"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:45
+msgid " - The player does not support Opus streams."
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:71
+msgid "Embeddable code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Player.php:72
+msgid "Copy this code and paste it into your website's HTML to embed the player in your site."
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:49
+#: airtime_mvc/application/models/Block.php:1351
+msgid "Select criteria"
+msgstr "选择属性"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:51
+#: airtime_mvc/application/models/Block.php:1353
+msgid "Bit Rate (Kbps)"
+msgstr "比特率(Kbps)"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:71
+#: airtime_mvc/application/models/Block.php:1374
+msgid "Sample Rate (kHz)"
+msgstr "样本率(KHz)"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:119
+msgid "hours"
+msgstr "小时"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:120
+msgid "minutes"
+msgstr "分钟"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:121
+#: airtime_mvc/application/models/Block.php:333
+msgid "items"
+msgstr "个数"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:130
+msgid "Randomly"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:131
+msgid "Newest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:132
+msgid "Oldest"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:179
+msgid "Type:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:182
+msgid "Static"
+msgstr "静态"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:183
+msgid "Dynamic"
+msgstr "动态"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:297
+msgid "Allow Repeated Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:306
+msgid "Sort Tracks:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:324
+msgid "Limit to:"
+msgstr ""
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:346
+msgid "Generate playlist content and save criteria"
+msgstr "保存条件设置并生成播放列表内容"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:348
+msgid "Generate"
+msgstr "开始生成"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:354
+msgid "Shuffle playlist content"
+msgstr "随机打乱歌曲次序"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:538
+msgid "Limit cannot be empty or smaller than 0"
+msgstr "限制的设置不能比0小"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:531
+msgid "Limit cannot be more than 24 hrs"
+msgstr "限制的设置不能大于24小时"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:541
+msgid "The value should be an integer"
+msgstr "值只能为整数"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:544
+msgid "500 is the max item limit value you can set"
+msgstr "最多只能允许500条内容"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:555
+msgid "You must select Criteria and Modifier"
+msgstr "条件和操作符不能为空"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:562
+msgid "'Length' should be in '00:00:00' format"
+msgstr "‘长度’格式应该为‘00:00:00’"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:567
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:580
+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:594
+msgid "The value has to be numeric"
+msgstr "应该为数字"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:599
+msgid "The value should be less then 2147483648"
+msgstr "不能大于2147483648"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:604
+#, php-format
+msgid "The value should be less than %s characters"
+msgstr "不能小于%s个字符"
+
+#: airtime_mvc/application/forms/SmartBlockCriteria.php:611
+msgid "Value cannot be empty"
+msgstr "不能为空"
+
+#: airtime_mvc/application/forms/StreamSetting.php:26
+msgid "Icecast Vorbis Metadata"
+msgstr "Icecast的Vorbis元数据"
+
+#: airtime_mvc/application/forms/StreamSetting.php:36
+msgid "Stream Label:"
+msgstr "流标签:"
+
+#: airtime_mvc/application/forms/StreamSetting.php:37
+msgid "Artist - Title"
+msgstr "歌手 - 歌名"
+
+#: airtime_mvc/application/forms/StreamSetting.php:38
+msgid "Show - Artist - Title"
+msgstr "节目 - 歌手 - 歌名"
+
+#: airtime_mvc/application/forms/StreamSetting.php:39
+msgid "Station name - Show name"
+msgstr "电台名 - 节目名"
+
+#: airtime_mvc/application/forms/StreamSetting.php:45
+msgid "Off Air Metadata"
+msgstr "非直播状态下的输出流元数据"
+
+#: airtime_mvc/application/forms/StreamSetting.php:51
+msgid "Enable Replay Gain"
+msgstr "启用回放增益"
+
+#: airtime_mvc/application/forms/StreamSetting.php:57
+msgid "Replay Gain Modifier"
+msgstr "回放增益调整"
+
+#: airtime_mvc/application/forms/StreamSetting.php:65
+msgid "Streaming Server:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Airtime Pro Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSetting.php:66
+msgid "Custom / 3rd Party Streaming"
+msgstr ""
+
+#: airtime_mvc/application/forms/PasswordChange.php:17
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:117
+msgid "Password"
+msgstr "密码"
-#~ msgid "enter a time in seconds 0{.0}"
-#~ msgstr "请输入秒数,格式为0{.0}"
+#: airtime_mvc/application/forms/PasswordChange.php:28
+msgid "Confirm new password"
+msgstr "确认新密码"
-#~ msgid "Allow Remote Websites To Access \"Schedule\" Info?%s (Enable this to make front-end widgets work.)"
-#~ msgstr "允许远程访问节目表信息?%s (此项启用后才能使用“小工具”,既widgets)"
+#: airtime_mvc/application/forms/PasswordChange.php:36
+msgid "Password confirmation does not match your password."
+msgstr "新密码不匹配"
-#~ msgid "Default Interface Language"
-#~ msgstr "界面的默认语言"
+#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18
+msgid "Station Language"
+msgstr ""
-#~ msgid "Get new password"
-#~ msgstr "获取新密码"
-
-#~ msgid "Set smart block type:"
-#~ msgstr "设置智能模块类型:"
-
-#~ msgid "Allow Repeat Tracks:"
-#~ msgstr "允许重复选择歌曲:"
-
-#~ msgid "Limit to"
-#~ msgstr "限制在"
-
-#~ msgid "Auto Switch Off"
-#~ msgstr "当输入流断开时自动关闭"
-
-#~ msgid "Auto Switch On"
-#~ msgstr "当输入流连接时自动打开"
-
-#~ msgid "Switch Transition Fade (s)"
-#~ msgstr "切换时的淡入淡出效果(秒)"
-
-#~ msgid "enter a time in seconds 00{.000000}"
-#~ msgstr "请输入秒数00{.000000}"
-
-#~ msgid "Master Username"
-#~ msgstr "主输入流的用户名"
-
-#~ msgid "Master Password"
-#~ msgstr "主输入流的密码"
-
-#~ msgid "Master Source Connection URL"
-#~ msgstr "主输入流的链接地址"
-
-#~ msgid "Show Source Connection URL"
-#~ msgstr "节目定制输入流的链接地址"
-
-#~ msgid "Master Source Port"
-#~ msgstr "主输入流的端口"
-
-#~ msgid "Master Source Mount Point"
-#~ msgstr "主输入流的加载点"
-
-#~ msgid "Show Source Port"
-#~ msgstr "节目定制输入流的端口"
-
-#~ msgid "Show Source Mount Point"
-#~ msgstr "节目定制输入流的加载点"
-
-#~ msgid "You cannot use same port as Master DJ port."
-#~ msgstr "端口设置不能重复"
-
-#~ msgid "Port %s is not available"
-#~ msgstr "%s端口已被占用"
-
-#~ msgid "E-mail"
-#~ msgstr "电邮地址"
-
-#~ msgid "Restore password"
-#~ msgstr "找回密码"
-
-#~ msgid "Hardware Audio Output"
-#~ msgstr "硬件声音输出"
-
-#~ msgid "Output Type"
-#~ msgstr "输出类型"
-
-#~ msgid "Date/Time Start:"
-#~ msgstr "开始日期/时间"
-
-#~ msgid "Date/Time End:"
-#~ msgstr "结束日期/时间"
-
-#~ msgid "Automatically Upload Recorded Shows"
-#~ msgstr "自动上传录制节目的内容"
-
-#~ msgid "Enable SoundCloud Upload"
-#~ msgstr "启用上传到SoundCloud功能"
-
-#~ msgid "Automatically Mark Files \"Downloadable\" on SoundCloud"
-#~ msgstr "自动把上传到SoundCloud的文件标识为“Downloadable”"
-
-#~ msgid "SoundCloud Email"
-#~ msgstr "SoundCloud邮件地址"
-
-#~ msgid "SoundCloud Password"
-#~ msgstr "SoundCloud密码"
-
-#~ msgid "SoundCloud Tags: (separate tags with spaces)"
-#~ msgstr "SoundCloud标签:(以空格分隔不同标签)"
-
-#~ msgid "Default Genre:"
-#~ msgstr "默认风格:"
-
-#~ msgid "Default Track Type:"
-#~ msgstr "默认声音文件类型:"
-
-#~ msgid "Original"
-#~ msgstr "原版"
-
-#~ msgid "Remix"
-#~ msgstr "重编版"
-
-#~ msgid "Live"
-#~ msgstr "实况"
-
-#~ msgid "Recording"
-#~ msgstr "录制"
-
-#~ msgid "Spoken"
-#~ msgstr "谈话"
-
-#~ msgid "Podcast"
-#~ msgstr "播客"
-
-#~ msgid "Demo"
-#~ msgstr "小样"
-
-#~ msgid "Work in progress"
-#~ msgstr "未完成"
-
-#~ msgid "Stem"
-#~ msgstr "主干"
-
-#~ msgid "Loop"
-#~ msgstr "循环"
-
-#~ msgid "Sound Effect"
-#~ msgstr "声效"
-
-#~ msgid "One Shot Sample"
-#~ msgstr "样本"
-
-#~ msgid "Other"
-#~ msgstr "其他"
-
-#~ msgid "Enable System Emails (Password Reset)"
-#~ msgstr "为密码重置启用邮件功能"
-
-#~ msgid "Reset Password 'From' Email"
-#~ msgstr "密码重置邮件发送于"
-
-#~ msgid "Configure Mail Server"
-#~ msgstr "邮件服务器"
-
-#~ msgid "Requires Authentication"
-#~ msgstr "需要身份验证"
-
-#~ msgid "Mail Server"
-#~ msgstr "邮件服务器地址"
-
-#~ msgid "Email Address"
-#~ msgstr "邮件地址"
-
-#~ msgid "Please enter your user name and password"
-#~ msgstr "请输入用户名和密码"
-
-#~ msgid "Given email not found."
-#~ msgstr "邮件地址没有找到。"
-
-#~ msgid "Page not found"
-#~ msgstr "页面不存在"
-
-#~ msgid "Application error"
-#~ msgstr "应用程序错误"
-
-#~ msgid "Playlist / Block"
-#~ msgstr "播放列表 / 智能模块"
-
-#~ msgid "If you change the username or password values for an enabled stream the playout engine will be rebooted and your listeners will hear silence for 5-10 seconds. Changing the following fields will NOT cause a reboot: Stream Label (Global Settings), and Switch Transition Fade(s), Master Username, and Master Password (Input Stream Settings). If Airtime is recording, and if the change causes a playout engine restart, the recording will be interrupted."
-#~ msgstr "如果你更改了一个已经启用了的输出流的用户名或者密码,那么内置的播放输出引擎模块将会重启,你的听众将会听到一段时间的空白,大概持续5到10秒。而改变如下的模块将不会导致该模块重启:流标签(全局设置里)和流切换淡入淡出效果(秒),主输入流用户名和密码(输入流设置)。如果Airtime正在录制过程中,而且改变设置导致引擎模块重启后,当前的录制进程将会被打断。"
-
-#~ msgid "today"
-#~ msgstr "今天"
-
-#~ msgid "day"
-#~ msgstr "日"
-
-#~ msgid "week"
-#~ msgstr "星期"
-
-#~ msgid "month"
-#~ msgstr "月"
-
-#~ msgid "Remove overbooked tracks"
-#~ msgstr "移除安排多余的内容"
-
-#~ msgid "Soundcloud"
-#~ msgstr "Soundcloud"
-
-#~ msgid "View on Soundcloud"
-#~ msgstr "在Soundcloud中查看"
-
-#~ msgid "Re-upload to SoundCloud"
-#~ msgstr "重新上传到SoundCloud"
-
-#~ msgid "Upload to SoundCloud"
-#~ msgstr "上传到SoundCloud"
-
-#~ msgid "Could not delete some scheduled files."
-#~ msgstr "部分已经安排的节目内容不能删除。"
-
-#~ msgid "Add Media"
-#~ msgstr "添加媒体"
-
-#~ msgid "Library"
-#~ msgstr "媒体库"
-
-#~ msgid "System"
-#~ msgstr "系统"
-
-#~ msgid "Preferences"
-#~ msgstr "系统属性"
-
-#~ msgid "Media Folders"
-#~ msgstr "存储路径"
-
-#~ msgid "History"
-#~ msgstr "历史记录"
-
-#~ msgid "Service"
-#~ msgstr "服务名称"
-
-#~ msgid "Uptime"
-#~ msgstr "在线时间"
-
-#~ msgid "CPU"
-#~ msgstr "处理器"
-
-#~ msgid "Memory"
-#~ msgstr "内存"
-
-#~ msgid "Email / Mail Server Settings"
-#~ msgstr "邮件服务器设置"
-
-#~ msgid "Connection URL: "
-#~ msgstr "链接地址:"
-
-#~ msgid "Input Stream Settings"
-#~ msgstr "输入流设置"
-
-#~ msgid "Master Source Connection URL:"
-#~ msgstr "主输入流的链接地址:"
-
-#~ msgid "Override"
-#~ msgstr "覆盖"
-
-#~ msgid "RESET"
-#~ msgstr "重置"
-
-#~ msgid "Show Source Connection URL:"
-#~ msgstr "节目定制输入流的链接地址:"
-
-#~ msgid "Filter By Show:"
-#~ msgstr "节目过滤器"
-
-#~ msgid "%s's Settings"
-#~ msgstr "%s设置"
-
-#~ msgid "Sourcefabric Privacy Policy"
-#~ msgstr "Sourcefabric隐私策略"
-
-#~ msgid "Smart Block Options"
-#~ msgstr "智能模块选项"
-
-#~ msgid "file meet the criteria"
-#~ msgstr "个文件符合条件"
-
-#~ msgid "New"
-#~ msgstr "新建"
-
-#~ msgid "New Playlist"
-#~ msgstr "新建播放列表"
-
-#~ msgid "New Smart Block"
-#~ msgstr "新建智能模块"
-
-#~ msgid "New Webstream"
-#~ msgstr "新建网络流媒体"
-
-#~ msgid "View / edit description"
-#~ msgstr "查看/编辑描述"
-
-#~ msgid "Global Settings"
-#~ msgstr "全局设定"
-
-#~ msgid "Output Stream Settings"
-#~ msgstr "输出流设定"
-
-#~ msgid "Listener Count Over Time"
-#~ msgstr "听众统计报告"
-
-#~ msgid "Begin by adding your files to the library using the 'Add Media' menu button. You can drag and drop your files to this window too."
-#~ msgstr "首先把你的媒体文件通过‘添加媒体’导入到媒体库中。你也可以简单的拖拽文件到本窗口"
-
-#~ msgid "Create a show by going to 'Calendar' in the menu bar, and then clicking the '+ Show' icon. This can be either a one-time or repeating show. Only admins and program managers can add shows."
-#~ msgstr "你可以创建一个节目,从菜单栏打开页面‘日程表’,点击按钮‘+ 节目’。这个节目可以是一次性的,也可以是系列性的。只有系统管理员"
-
-#~ msgid "Add media to the show by going to your show in the Schedule calendar, left-clicking on it and selecting 'Add / Remove Content'"
-#~ msgstr "然后给你的节目添加内容,在日程表页面中选中节目,左键单击,在出现的菜单上选择‘添加/删除内容’"
-
-#~ msgid "Select your media from the left pane and drag them to your show in the right pane."
-#~ msgstr "在页面左半部分选择媒体文件,然后拖拽到右半部分。"
-
-#~ msgid "Then you're good to go!"
-#~ msgstr "然后就大功告成啦!"
-
-#~ msgid "Please enter your account e-mail address. You will receive a link to create a new password via e-mail."
-#~ msgstr "请输入你帐号的邮件地址,然后你将收到一封邮件,其中有一个链接,用来创建你的新密码。"
-
-#~ msgid "Email sent"
-#~ msgstr "邮件已发送"
-
-#~ msgid "An email has been sent"
-#~ msgstr "邮件已经发出"
-
-#~ msgid "Back to login screen"
-#~ msgstr "返回登录页面"
-
-#~ msgid "Scheduled Play"
-#~ msgstr "预先安排的节目流"
-
-#~ msgid "Station time"
-#~ msgstr "电台当前时间"
-
-#~ msgid "Zend Framework Default Application"
-#~ msgstr "Zend框架默认程序"
-
-#~ msgid "Empty smart block"
-#~ msgstr "无内容的智能模块"
-
-#~ msgid "Empty playlist"
-#~ msgstr "无内容的播放列表"
-
-#~ msgid "Empty smart block content"
-#~ msgstr "智能模块无内容"
-
-#~ msgid "No open smart block"
-#~ msgstr "没有打开的智能模块"
-
-#~ msgid "Record & Rebroadcast"
-#~ msgstr "录制与重播"
-
-#~ msgid "Failed to create 'organize' directory."
-#~ msgstr "创建‘organize’目录失败"
-
-#~ msgid "The file was not uploaded, there is %s MB of disk space left and the file you are uploading has a size of %s MB."
-#~ msgstr "磁盘空间不足,文件上传失败,剩余空间只有 %s 兆,尝试上传 %s 兆的文件"
-
-#~ msgid "This file appears to be corrupted and will not be added to media library."
-#~ msgstr "媒体文件不符合媒体库要求或者已经损坏,该文件将不会上传到媒体库"
-
-#~ msgid "The file was not uploaded, this error can occur if the computer hard drive does not have enough disk space or the stor directory does not have correct write permissions."
-#~ msgstr "文件上传失败,可能的原因:磁盘空间不足目录权限设置错误"
-
-#~ msgid ""
-#~ "Hi %s, \n"
-#~ "\n"
-#~ "Click this link to reset your password: "
-#~ msgstr ""
-#~ "%s 你好, \n"
-#~ "\n"
-#~ " 请点击链接以重置你的密码: "
-
-#~ msgid "Show Content"
-#~ msgstr "显示内容"
-
-#~ msgid "Remove All Content"
-#~ msgstr "清空全部内容"
-
-#~ msgid "Cancel Current Show"
-#~ msgstr "取消当前节目"
-
-#~ msgid "Edit This Instance"
-#~ msgstr "编辑此节目"
-
-#~ msgid "Delete This Instance"
-#~ msgstr "删除当前节目"
-
-#~ msgid "Delete This Instance and All Following"
-#~ msgstr "删除当前以及随后的系列节目"
-
-#~ msgid "Please selection an option"
-#~ msgstr "请选择一项"
-
-#~ msgid "No Records"
-#~ msgstr "无记录"
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:52
+msgid "Enabled:"
+msgstr "启用:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:59
+msgid "Mobile:"
+msgstr ""
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:66
+msgid "Stream Type:"
+msgstr "流格式:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:82
+msgid "Service Type:"
+msgstr "服务类型:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:90
+msgid "Channels:"
+msgstr "声道:"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "1 - Mono"
+msgstr "1 - 单声道"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:91
+msgid "2 - Stereo"
+msgstr "2 - 立体声"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:98
+msgid "Server"
+msgstr "服务器"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:108
+msgid "Port"
+msgstr "端口号"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:112
+msgid "Only numbers are allowed."
+msgstr "只允许输入数字"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:133
+msgid "URL"
+msgstr "链接地址"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:154
+msgid "Mount Point"
+msgstr "加载点"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:174
+msgid "Admin User"
+msgstr "管理员用户名"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:183
+msgid "Admin Password"
+msgstr "管理员密码"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:211
+msgid "Server cannot be empty."
+msgstr "请填写“服务器”。"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:216
+msgid "Port cannot be empty."
+msgstr "请填写“端口”。"
+
+#: airtime_mvc/application/forms/StreamSettingSubForm.php:222
+msgid "Mount cannot be empty with Icecast server."
+msgstr "请填写“加载点”。"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:16
+msgid "'%value%' does not fit the time format 'HH:mm'"
+msgstr "'%value%' 不符合形如 '小时:分'的格式要求,例如,‘01:59’"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:22
+msgid "Start Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:37
+msgid "In the Future:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:64
+msgid "End Time:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowWhen.php:98
+msgid "Timezone:"
+msgstr "时区"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:107
+msgid "Repeats?"
+msgstr "是否设置为系列节目?"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:139
+msgid "Cannot create show in the past"
+msgstr "节目不能设置为过去的时间"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:147
+msgid "Cannot modify start date/time of the show that is already started"
+msgstr "节目已经启动,无法修改开始时间/日期"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:156
+#: airtime_mvc/application/models/Show.php:282
+msgid "End date/time cannot be in the past"
+msgstr "节目结束的时间或日期不能设置为过去的时间"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:164
+msgid "Cannot have duration < 0m"
+msgstr "节目时长不能小于0"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:168
+msgid "Cannot have duration 00h 00m"
+msgstr "节目时长不能为0"
+
+#: airtime_mvc/application/forms/AddShowWhen.php:175
+msgid "Cannot have duration greater than 24h"
+msgstr "节目时长不能超过24小时"
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:19
+msgid "Push metadata to your station on TuneIn?"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:24
+msgid "Station ID:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:30
+msgid "Partner Key:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:36
+msgid "Partner Id:"
+msgstr ""
+
+#: airtime_mvc/application/forms/TuneInPreferences.php:77
+#: airtime_mvc/application/forms/TuneInPreferences.php:86
+msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again."
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:10
+#, php-format
+msgid "Use %s Authentication:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:16
+msgid "Use Custom Authentication:"
+msgstr "使用自定义的用户认证:"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:25
+msgid "Custom Username"
+msgstr "自定义用户名"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:37
+msgid "Custom Password"
+msgstr "自定义密码"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:48
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:67
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:88
+msgid "Host:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:54
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:73
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:94
+msgid "Port:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:60
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:79
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:100
+msgid "Mount:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:77
+msgid "Username field cannot be empty."
+msgstr "请填写用户名"
+
+#: airtime_mvc/application/forms/AddShowLiveStream.php:82
+msgid "Password field cannot be empty."
+msgstr "请填写密码"
+
+#: airtime_mvc/application/forms/AddShowStyle.php:12
+msgid "Background Colour:"
+msgstr "背景色:"
+
+#: airtime_mvc/application/forms/AddShowStyle.php:31
+msgid "Text Colour:"
+msgstr "文字颜色:"
+
+#: airtime_mvc/application/forms/AddShowStyle.php:49
+msgid "Current Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:72
+msgid "Show Logo:"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowStyle.php:87
+msgid "Logo Preview:"
+msgstr ""
+
+#: airtime_mvc/application/forms/Login.php:102
+msgid "Type the characters you see in the picture below."
+msgstr "请输入图像里的字符。"
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19
+msgid "Auto Switch Off:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:25
+msgid "Auto Switch On:"
+msgstr ""
+
+#: airtime_mvc/application/forms/LiveStreamingPreferences.php:31
+msgid "Switch Transition Fade (s):"
+msgstr ""
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:10
+msgid "Link:"
+msgstr "绑定:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:16
+msgid "Repeat Type:"
+msgstr "类型:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:19
+msgid "weekly"
+msgstr "每周"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:20
+msgid "every 2 weeks"
+msgstr "每隔2周"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:21
+msgid "every 3 weeks"
+msgstr "每隔3周"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:22
+msgid "every 4 weeks"
+msgstr "每隔4周"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:23
+msgid "monthly"
+msgstr "每月"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:32
+msgid "Select Days:"
+msgstr "选择天数:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:47
+msgid "Repeat By:"
+msgstr "重复类型:"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the month"
+msgstr "按月的同一日期"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:50
+msgid "day of the week"
+msgstr "一个星期的同一日子"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:69
+msgid "No End?"
+msgstr "无休止?"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:106
+msgid "End date must be after start date"
+msgstr "结束日期应晚于开始日期"
+
+#: airtime_mvc/application/forms/AddShowRepeats.php:113
+msgid "Please select a repeat day"
+msgstr "请选择在哪一天重复"
+
+#: airtime_mvc/application/configs/navigation.php:12
+msgid "Radio Page"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:19
+msgid "Calendar"
+msgstr "节目日程"
+
+#: airtime_mvc/application/configs/navigation.php:26
+msgid "Widgets"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:48
+msgid "Settings"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:67
+msgid "Users"
+msgstr "用户管理"
+
+#: airtime_mvc/application/configs/navigation.php:74
+msgid "Streams"
+msgstr "媒体流设置"
+
+#: airtime_mvc/application/configs/navigation.php:82
+msgid "Analytics"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:90
+msgid "Listener Stats"
+msgstr "收听状态"
+
+#: airtime_mvc/application/configs/navigation.php:104
+msgid "History Templates"
+msgstr "历史记录模板"
+
+#: airtime_mvc/application/configs/navigation.php:113
+msgid "Billing"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:120
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:127
+msgid "Account Details"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:134
+msgid "View Invoices"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:150
+msgid "Getting Started"
+msgstr "基本用法"
+
+#: airtime_mvc/application/configs/navigation.php:157
+msgid "FAQ"
+msgstr ""
+
+#: airtime_mvc/application/configs/navigation.php:162
+msgid "User Manual"
+msgstr "用户手册"
+
+#: airtime_mvc/application/configs/navigation.php:167
+msgid "File a Support Ticket"
+msgstr ""
+
+#: airtime_mvc/application/models/Block.php:833
+#: airtime_mvc/application/models/Playlist.php:812
+msgid "Cue in and cue out are null."
+msgstr "切入点和切出点均为空"
+
+#: airtime_mvc/application/models/Block.php:868
+#: airtime_mvc/application/models/Block.php:924
+#: airtime_mvc/application/models/Playlist.php:851
+#: airtime_mvc/application/models/Playlist.php:895
+msgid "Can't set cue out to be greater than file length."
+msgstr "切出点不能超出文件原长度"
+
+#: airtime_mvc/application/models/Block.php:879
+#: airtime_mvc/application/models/Block.php:900
+#: airtime_mvc/application/models/Playlist.php:843
+#: airtime_mvc/application/models/Playlist.php:868
+msgid "Can't set cue in to be larger than cue out."
+msgstr "切入点不能晚于切出点"
+
+#: airtime_mvc/application/models/Block.php:935
+#: airtime_mvc/application/models/Playlist.php:887
+msgid "Can't set cue out to be smaller than cue in."
+msgstr "切出点不能早于切入点"
+
+#: airtime_mvc/application/models/Block.php:1366
+msgid "Upload Time"
+msgstr ""
+
+#: airtime_mvc/application/models/ShowBuilder.php:212
+#, php-format
+msgid "Rebroadcast of %s from %s"
+msgstr "%s是%s的重播"
+
+#: airtime_mvc/application/models/Preference.php:460
+#, php-format
+msgid "Powered by %s"
+msgstr ""
+
+#: airtime_mvc/application/models/Preference.php:588
+msgid "Select Country"
+msgstr "选择国家"
+
+#: airtime_mvc/application/models/MusicDir.php:160
+#, php-format
+msgid "%s is already watched."
+msgstr "%s 已经监控"
+
+#: airtime_mvc/application/models/MusicDir.php:164
+#, php-format
+msgid "%s contains nested watched directory: %s"
+msgstr "%s 所含的子文件夹 %s 已经被监控"
+
+#: airtime_mvc/application/models/MusicDir.php:168
+#, php-format
+msgid "%s is nested within existing watched directory: %s"
+msgstr "%s 无法监控,因为父文件夹 %s 已经监控"
+
+#: airtime_mvc/application/models/MusicDir.php:189
+#: airtime_mvc/application/models/MusicDir.php:370
+#, php-format
+msgid "%s is not a valid directory."
+msgstr "%s 不是文件夹。"
+
+#: airtime_mvc/application/models/MusicDir.php:232
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list"
+msgstr "%s 已经设置成媒体存储文件夹,或者监控文件夹。"
+
+#: airtime_mvc/application/models/MusicDir.php:388
+#, php-format
+msgid "%s is already set as the current storage dir or in the watched folders list."
+msgstr "%s 已经设置成媒体存储文件夹,或者监控文件夹。"
+
+#: airtime_mvc/application/models/MusicDir.php:431
+#, php-format
+msgid "%s doesn't exist in the watched list."
+msgstr "监控文件夹名单里不存在 %s "
+
+#: airtime_mvc/application/models/Auth.php:33
+#, php-format
+msgid ""
+"Hi %s, \n"
+"\n"
+"Please click this link to reset your password: "
+msgstr ""
+
+#: airtime_mvc/application/models/Auth.php:38
+#, php-format
+msgid "%s Password Reset"
+msgstr ""
+
+#: airtime_mvc/application/models/Show.php:184
+msgid "Shows can have a max length of 24 hours."
+msgstr "节目时长只能设置在24小时以内"
+
+#: airtime_mvc/application/models/Show.php:293
+msgid ""
+"Cannot schedule overlapping shows.\n"
+"Note: Resizing a repeating show affects all of its repeats."
+msgstr ""
+"节目时间设置于其他的节目有冲突。\n"
+"提示:修改系列节目中的一个,将影响整个节目系列"
+
+#: airtime_mvc/application/models/Scheduler.php:73
+msgid "Cannot move items out of linked shows"
+msgstr "不能从绑定的节目系列里移出项目"
+
+#: airtime_mvc/application/models/Scheduler.php:119
+msgid "The schedule you're viewing is out of date! (sched mismatch)"
+msgstr "当前节目内容表(内容部分)需要刷新"
+
+#: airtime_mvc/application/models/Scheduler.php:124
+msgid "The schedule you're viewing is out of date! (instance mismatch)"
+msgstr "当前节目内容表(节目已更改)需要刷新"
+
+#: airtime_mvc/application/models/Scheduler.php:132
+#: airtime_mvc/application/models/Scheduler.php:458
+#: airtime_mvc/application/models/Scheduler.php:490
+msgid "The schedule you're viewing is out of date!"
+msgstr "当前节目内容需要刷新!"
+
+#: airtime_mvc/application/models/Scheduler.php:142
+#, php-format
+msgid "You are not allowed to schedule show %s."
+msgstr "没有赋予修改节目 %s 的权限。"
+
+#: airtime_mvc/application/models/Scheduler.php:146
+msgid "You cannot add files to recording shows."
+msgstr "录音节目不能添加别的内容。"
+
+#: airtime_mvc/application/models/Scheduler.php:152
+#, php-format
+msgid "The show %s is over and cannot be scheduled."
+msgstr "节目%s已结束,不能在添加任何内容。"
+
+#: airtime_mvc/application/models/Scheduler.php:159
+#, php-format
+msgid "The show %s has been previously updated!"
+msgstr "节目%s已经更改,需要刷新后再尝试。"
+
+#: airtime_mvc/application/models/Scheduler.php:178
+msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
+msgstr "绑定的节目要么提前设置好,要么等待其中的任何一个节目结束后才能编辑内容"
+
+#: airtime_mvc/application/models/Scheduler.php:195
+msgid "Cannot schedule a playlist that contains missing files."
+msgstr ""
+
+#: airtime_mvc/application/models/Scheduler.php:216
+#: airtime_mvc/application/models/Scheduler.php:305
+msgid "A selected File does not exist!"
+msgstr "某个选中的文件不存在。"
+
+#: airtime_mvc/application/models/Schedule.php:206
+msgid "livestream"
+msgstr ""
+
+#: airtime_mvc/application/models/Webstream.php:166
+msgid "Length needs to be greater than 0 minutes"
+msgstr "节目时长必须大于0分钟"
+
+#: airtime_mvc/application/models/Webstream.php:171
+msgid "Length should be of form \"00h 00m\""
+msgstr "时间的格式应该是 \"00h 00m\""
+
+#: airtime_mvc/application/models/Webstream.php:184
+msgid "URL should be of form \"http://domain\""
+msgstr "地址的格式应该是 \"http://domain\""
+
+#: airtime_mvc/application/models/Webstream.php:187
+msgid "URL should be 512 characters or less"
+msgstr "地址的最大长度不能超过512字节"
+
+#: airtime_mvc/application/models/Webstream.php:193
+msgid "No MIME type found for webstream."
+msgstr "这个媒体流不存在MIME属性,无法添加"
+
+#: airtime_mvc/application/models/Webstream.php:209
+msgid "Webstream name cannot be empty"
+msgstr "媒体流的名字不能为空"
+
+#: airtime_mvc/application/models/Webstream.php:278
+msgid "Could not parse XSPF playlist"
+msgstr "发现XSPF格式的播放列表,但是格式错误"
+
+#: airtime_mvc/application/models/Webstream.php:298
+msgid "Could not parse PLS playlist"
+msgstr "发现PLS格式的播放列表,但是格式错误"
+
+#: airtime_mvc/application/models/Webstream.php:318
+msgid "Could not parse M3U playlist"
+msgstr "发现M3U格式的播放列表,但是格式错误"
+
+#: airtime_mvc/application/models/Webstream.php:332
+msgid "Invalid webstream - This appears to be a file download."
+msgstr "媒体流格式错误,当前“媒体流”只是一个可下载的文件"
+
+#: airtime_mvc/application/models/Webstream.php:336
+#, php-format
+msgid "Unrecognized stream type: %s"
+msgstr "未知的媒体流格式: %s"
+
+#: airtime_mvc/public/setup/rabbitmq-setup.php:78
+msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
+msgstr ""
+
+#~ msgid "My Account"
+#~ msgstr "我的账户"
diff --git a/airtime_mvc/locale/zh_CN/LC_MESSAGES/pro.po b/airtime_mvc/locale/zh_CN/LC_MESSAGES/pro.po
index 866ee0acb..f59b52c3d 100644
--- a/airtime_mvc/locale/zh_CN/LC_MESSAGES/pro.po
+++ b/airtime_mvc/locale/zh_CN/LC_MESSAGES/pro.po
@@ -1,3 +1,139 @@
+#: airtime_mvc/application/controllers/LoginController.php:170
+#, php-format
+msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
+#, php-format
+msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
+#, php-format
+msgid "If you are the primary owner of this station, please reset your password here."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
+msgid "Thank you!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
+msgid "Your station has been upgraded successfully."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
+msgid "Return to Airtime"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+#, php-format
+msgid "Purchase an %s plan!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
+msgid "My Account"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
+msgid "Account Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
+msgid "Upgrade today to get more listeners and storage space!"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
+msgid "View Plans"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:257
+msgid "Your Current Plan:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:291
+msgid "Please enter your payment details:"
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
+msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
+msgstr ""
+
+#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
+msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:17
+msgid "First Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:26
+msgid "Last Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:35
+msgid "Company Name:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:44
+msgid "Email Address:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:54
+msgid "Address 1:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:63
+msgid "Address 2:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:70
+msgid "City:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:80
+msgid "State/Region:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:89
+msgid "Zip Code / Postal Code:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:102
+msgid "Country:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:112
+msgid "Phone Number:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:121
+msgid "Please choose a security question:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:135
+msgid "Please enter an answer:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:152
+msgid "VAT/Tax ID (EU only)"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:162
+msgid "Subscribe to Sourcefabric newsletter"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:172
+msgid "Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:181
+msgid "Verify Password:"
+msgstr ""
+
+#: airtime_mvc/application/forms/BillingClient.php:193
+msgid "Save"
+msgstr ""
+
#: airtime_mvc/application/models/Auth.php:35
#, php-format
msgid ""
@@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
-msgid "Thank you!"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
-msgid "Your station has been upgraded successfully."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
-msgid "Return to Airtime"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
-#, php-format
-msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
-msgid "Thank you! Your plan has been updated and you will be invoiced during your next billing cycle."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
-msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
-msgstr ""
-
-#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
-#, php-format
-msgid "If you are the primary owner of this station, please reset your password here."
-msgstr ""
-
-#: airtime_mvc/application/controllers/LoginController.php:170
-#, php-format
-msgid "That username or email address could not be found. If you are the station owner, you should reset your here."
-msgstr ""
diff --git a/dev_tools/README_TRANSLATIONS b/dev_tools/README_TRANSLATIONS
new file mode 100644
index 000000000..d5ccfdce3
--- /dev/null
+++ b/dev_tools/README_TRANSLATIONS
@@ -0,0 +1,11 @@
+Last updated: September 4, 2015
+
+To update the Airtime translations:
+
+- Make sure you run bootstrap_development_environment.sh as root once to set up this magic git merge driver for PO files.
+- Run update_po_files.sh
+- Commit the updated files.
+- Push to GitHub.
+- Transifex will then pick up the updated files in about 24 hours, and they'll be available for translation there.
+- After translators have updated strings, they'll be automatically downloaded and committed to our git repo by
+ a script running here at Sourcefabric (contact Andrey).