diff --git a/airtime_mvc/application/models/RabbitMq.php b/airtime_mvc/application/models/RabbitMq.php index 682ff99b0..5daf227a2 100644 --- a/airtime_mvc/application/models/RabbitMq.php +++ b/airtime_mvc/application/models/RabbitMq.php @@ -150,44 +150,6 @@ class Application_Model_RabbitMq public static function SendMessageToHaproxyConfigDaemon($md){ - $config = parse_ini_file("/etc/airtime-saas/rabbitmq.ini", true); - $conn = new AMQPConnection($config["rabbitmq"]["host"], - $config["rabbitmq"]["port"], - $config["rabbitmq"]["user"], - $config["rabbitmq"]["password"], - $config["rabbitmq"]["vhost"]); - - $exchange = $config["rabbitmq"]["queue"]; - $queue = $config["rabbitmq"]["queue"]; - - $ch = $conn->channel(); - - - /* - name: $queue - passive: false - durable: true // the queue will survive server restarts - exclusive: false // the queue can be accessed in other channels - auto_delete: false //the queue won't be deleted once the channel is closed. - */ - $ch->queue_declare($queue, false, true, false, false); - - /* - name: $exchange - type: direct - passive: false - durable: true // the exchange will survive server restarts - auto_delete: false //the exchange won't be deleted once the channel is closed. - */ - - $ch->exchange_declare($exchange, 'direct', false, true, false); - $ch->queue_bind($queue, $exchange); - - $data = json_encode($md).PHP_EOL; - $msg = new AMQPMessage($data, array('content_type' => 'application/json')); - - $ch->basic_publish($msg, $exchange); - $ch->close(); - $conn->close(); + //XXX: This function has been deprecated and is no longer needed } } diff --git a/airtime_mvc/application/models/Webstream.php b/airtime_mvc/application/models/Webstream.php index 007e78938..87eee7797 100644 --- a/airtime_mvc/application/models/Webstream.php +++ b/airtime_mvc/application/models/Webstream.php @@ -93,6 +93,7 @@ class Application_Model_Webstream implements Application_Model_LibraryEditable $isAdminOrPM = $user->isUserType(array(UTYPE_ADMIN, UTYPE_PROGRAM_MANAGER)); if (!$isAdminOrPM) { + //Make sure the user has ownership of ALL the selected webstreams before $leftOver = self::streamsNotOwnedByUser($p_ids, $p_userId); if (count($leftOver) == 0) { CcWebstreamQuery::create()->findPKs($p_ids)->delete(); @@ -280,13 +281,22 @@ class Application_Model_Webstream implements Application_Model_LibraryEditable private static function getPlsUrl($url) { $content = self::getUrlData($url); - $ini = parse_ini_string($content, true); - if ($ini !== false && isset($ini["playlist"]) && isset($ini["playlist"]["File1"])) { - return $ini["playlist"]["File1"]; + $matches = array(); + $numStreams = 0; //Number of streams explicitly listed in the PLS. + + if (preg_match("/NumberOfEntries=([0-9]*)/", $content, $matches) !== FALSE) { + $numStreams = $matches[1]; } - throw new Exception(_("Could not parse PLS playlist")); + //Find all the stream URLs in the playlist + if (preg_match_all("/File[0-9]*=(.*)/", $content, $matches) !== FALSE) { + //This array contains all the streams! If we need fallback stream URLs in the future, + //they're already in this array... + return $matches[1][0]; + } else { + throw new Exception(_("Could not parse PLS playlist")); + } } private static function getM3uUrl($url) diff --git a/airtime_mvc/application/services/ShowService.php b/airtime_mvc/application/services/ShowService.php index ab4cb7ea2..683814377 100644 --- a/airtime_mvc/application/services/ShowService.php +++ b/airtime_mvc/application/services/ShowService.php @@ -256,6 +256,7 @@ class Application_Service_ShowService } $this->adjustSchedule($showData); + } $con->commit(); diff --git a/airtime_mvc/application/views/scripts/schedule/add-show-form.phtml b/airtime_mvc/application/views/scripts/schedule/add-show-form.phtml index 5a34e632f..2035168be 100644 --- a/airtime_mvc/application/views/scripts/schedule/add-show-form.phtml +++ b/airtime_mvc/application/views/scripts/schedule/add-show-form.phtml @@ -13,7 +13,16 @@

+ addNewShow) { + $this->when->getElement('add_show_timezone')->setOptions(array('disabled' => true)); + ?> + when->getElement('add_show_timezone')->getValue()?>> + when; ?> + repeats; ?>

diff --git a/airtime_mvc/locale/az/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/az/LC_MESSAGES/airtime.mo index e293c92a3..6a9fe9967 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/cs_CZ/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/cs_CZ/LC_MESSAGES/airtime.mo index 5d7bc5342..6f03a300d 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/de_AT/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.mo index 132c7efab..f787eac52 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/en_GB/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.mo index 1104aca05..301963d0e 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/hu_HU/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/hu_HU/LC_MESSAGES/airtime.mo index aa2396685..1d81207a8 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 5413355a8..e44998f99 100644 --- a/airtime_mvc/locale/hu_HU/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/hu_HU/LC_MESSAGES/airtime.po @@ -99,6 +99,8 @@ 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/livestream.phtml:9 #: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2 @@ -1311,19 +1313,17 @@ msgstr "Állomás Logó:" msgid "Send support feedback" msgstr "Támogatási Visszajelzés Küldése" -#: airtime_mvc/application/forms/SupportSettings.php:121 -#: airtime_mvc/application/forms/RegisterAirtime.php:126 #: airtime_mvc/application/forms/SupportSettings.php:122 +#: airtime_mvc/application/forms/RegisterAirtime.php:126 #, php-format msgid "Promote my station on %s" -msgstr "" +msgstr "Az állomásom közzététele a %s-on" -#: airtime_mvc/application/forms/SupportSettings.php:133 -#: airtime_mvc/application/forms/RegisterAirtime.php:151 #: airtime_mvc/application/forms/SupportSettings.php:150 +#: airtime_mvc/application/forms/RegisterAirtime.php:151 #, php-format msgid "By checking this box, I agree to %s's %sprivacy policy%s." -msgstr "" +msgstr "A mező bejelölésével, elfogadom a %s %sadatvédelmi irányelveit%s." #: airtime_mvc/application/forms/SupportSettings.php:156 #: airtime_mvc/application/forms/RegisterAirtime.php:169 @@ -1364,7 +1364,7 @@ msgstr "Újraközvetítés?" #: airtime_mvc/application/forms/AddShowLiveStream.php:10 #, php-format msgid "Use %s Authentication:" -msgstr "" +msgstr "%s Hitelesítés Használata:" #: airtime_mvc/application/forms/AddShowLiveStream.php:16 msgid "Use Custom Authentication:" @@ -3198,15 +3198,12 @@ msgstr "Az Ön számára nem érhető el az alábbi erőforrás." 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:848 -#: airtime_mvc/application/controllers/ApiController.php:868 -#: airtime_mvc/application/controllers/ApiController.php:880 #: airtime_mvc/application/controllers/ApiController.php:771 #: airtime_mvc/application/controllers/ApiController.php:791 #: airtime_mvc/application/controllers/ApiController.php:803 #, php-format msgid "File does not exist in %s" -msgstr "" +msgstr "A fájl nem elérhető itt: %s" #: airtime_mvc/application/controllers/ApiController.php:931 #: airtime_mvc/application/controllers/ApiController.php:854 @@ -3466,7 +3463,7 @@ msgstr "Memória" #: airtime_mvc/application/views/scripts/systemstatus/index.phtml:14 #, php-format msgid "%s Version" -msgstr "" +msgstr "%s Verzió" #: airtime_mvc/application/views/scripts/systemstatus/index.phtml:30 msgid "Disk Space" @@ -3548,12 +3545,16 @@ msgid "" "collected regularly in order to enhance your user experience.%2$sClick 'Yes, " "help %1$s' and we'll make sure the features you use are constantly improving." msgstr "" +"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. " #: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29 #: airtime_mvc/application/views/scripts/form/support-setting.phtml:29 #, php-format msgid "Click the box below to promote your station on %s." -msgstr "" +msgstr "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:67 #: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81 @@ -3604,6 +3605,8 @@ 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" @@ -3932,12 +3935,13 @@ msgstr "Hallgatói Statisztika" #: airtime_mvc/application/views/scripts/dashboard/help.phtml:3 #, php-format msgid "Welcome to %s!" -msgstr "" +msgstr "Üdvözöljük az %s-nál!" #: airtime_mvc/application/views/scripts/dashboard/help.phtml:4 #, php-format msgid "Here's how you can get started using %s to automate your broadcasts: " msgstr "" +"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:7 msgid "" @@ -3997,11 +4001,13 @@ 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 "" +msgstr "%1$s %2$s-ot %3$s mellett terjesztik" #: airtime_mvc/application/views/scripts/login/password-change.phtml:3 msgid "New password" @@ -4037,6 +4043,8 @@ 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/partialviews/header.phtml:3 msgid "Previous:" @@ -4421,6 +4429,7 @@ msgstr "" #: 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 @@ -4480,7 +4489,7 @@ msgstr "" #: airtime_mvc/application/models/Auth.php:36 #, php-format msgid "%s Password Reset" -msgstr "" +msgstr "%s Jelszó Visszaállítás" #: airtime_mvc/application/services/CalendarService.php:50 msgid "Record file doesn't exist" @@ -4679,11 +4688,16 @@ msgid "" "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." #: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9 #, php-format msgid "Purchase your copy of %s" -msgstr "" +msgstr "Vásárolja meg az Ön %s másolatát" #~ msgid "Promote my station on Sourcefabric.org" #~ msgstr "Az állomásom közzététele a Sourcefabric.org-on" diff --git a/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.mo index 48a0822fc..fcfd16e90 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/ka/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/ka/LC_MESSAGES/airtime.mo index f872aa823..9e882a833 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/pt_BR/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.mo index 04a01409e..965cf25b7 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/tr/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/tr/LC_MESSAGES/airtime.mo index f9b85210d..ba59d9ca3 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 d29d1dfd1..b161aa6c4 100644 --- a/airtime_mvc/locale/tr/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/tr/LC_MESSAGES/airtime.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: Airtime\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-13 13:55-0500\n" -"PO-Revision-Date: 2015-04-24 09:08+0000\n" +"PO-Revision-Date: 2015-04-25 00:16+0000\n" "Last-Translator: M. Ömer Gölgeli \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/airtime/language/tr/)\n" "MIME-Version: 1.0\n" @@ -1007,282 +1007,282 @@ msgstr "Otomatik Devreye Sok" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:33 msgid "Switch Transition Fade (s)" -msgstr "" +msgstr "Geçiş Transition Fade'i [Switch Transition Fade]" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:36 msgid "enter a time in seconds 00{.000000}" -msgstr "" +msgstr "saniye olarak bir değer giriniz 00{.000000}" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:45 msgid "Master Username" -msgstr "" +msgstr "Master Kullanıcı adı" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:62 msgid "Master Password" -msgstr "" +msgstr "Master Şifre" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:70 msgid "Master Source Connection URL" -msgstr "" +msgstr "Master Source Bağlantı URL" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:78 msgid "Show Source Connection URL" -msgstr "" +msgstr "Source Bağlantı URL'sini göster" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:87 msgid "Master Source Port" -msgstr "" +msgstr "Master Source Port'u" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:96 msgid "Master Source Mount Point" -msgstr "" +msgstr "Master Source Mount Adresi" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:106 msgid "Show Source Port" -msgstr "" +msgstr "Source Port'unu Göster" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:115 msgid "Show Source Mount Point" -msgstr "" +msgstr "Source Mount Adresini Göster" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:153 msgid "You cannot use same port as Master DJ port." -msgstr "" +msgstr "Master DJ Port'u ile aynı portu kullanamazsınız" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:164 #: airtime_mvc/application/forms/LiveStreamingPreferences.php:182 #, php-format msgid "Port %s is not available" -msgstr "" +msgstr "Port %s kullanılamaz" #: airtime_mvc/application/forms/SupportSettings.php:34 #: airtime_mvc/application/forms/RegisterAirtime.php:39 msgid "Phone:" -msgstr "" +msgstr "Telefon:" #: airtime_mvc/application/forms/SupportSettings.php:57 #: airtime_mvc/application/forms/RegisterAirtime.php:62 msgid "Station Web Site:" -msgstr "" +msgstr "Radyo Web Sitesi:" #: airtime_mvc/application/forms/SupportSettings.php:68 #: airtime_mvc/application/forms/RegisterAirtime.php:73 msgid "Country:" -msgstr "" +msgstr "Ülke:" #: airtime_mvc/application/forms/SupportSettings.php:79 #: airtime_mvc/application/forms/RegisterAirtime.php:84 msgid "City:" -msgstr "" +msgstr "Şehir:" #: airtime_mvc/application/forms/SupportSettings.php:91 #: airtime_mvc/application/forms/RegisterAirtime.php:96 msgid "Station Description:" -msgstr "" +msgstr "Radyo Tanımı:" #: airtime_mvc/application/forms/SupportSettings.php:101 #: airtime_mvc/application/forms/RegisterAirtime.php:106 msgid "Station Logo:" -msgstr "" +msgstr "Radyo Logosu:" #: airtime_mvc/application/forms/SupportSettings.php:112 #: airtime_mvc/application/forms/RegisterAirtime.php:116 #: airtime_mvc/application/controllers/LocaleController.php:330 msgid "Send support feedback" -msgstr "" +msgstr "Destek Geribildirimi gönder" #: airtime_mvc/application/forms/SupportSettings.php:122 #: airtime_mvc/application/forms/RegisterAirtime.php:126 #, php-format msgid "Promote my station on %s" -msgstr "" +msgstr "Radyomu %s'da tanıt" #: airtime_mvc/application/forms/SupportSettings.php:150 #: airtime_mvc/application/forms/RegisterAirtime.php:151 #, php-format msgid "By checking this box, I agree to %s's %sprivacy policy%s." -msgstr "" +msgstr "Bu kutuyu işaretleyerek %s'un %sgizlilik politikası%s'nı onaylıyorum" #: airtime_mvc/application/forms/SupportSettings.php:174 #: airtime_mvc/application/forms/RegisterAirtime.php:169 msgid "You have to agree to privacy policy." -msgstr "" +msgstr "Gizlilik politikasını kabul etmeniz gerekmektedir." #: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26 #: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 msgid "Value is required and can't be empty" -msgstr "" +msgstr "Değer gerekli ve boş bırakılamaz" #: airtime_mvc/application/forms/EditHistoryItem.php:32 #: airtime_mvc/application/services/HistoryService.php:1146 msgid "Start Time" -msgstr "" +msgstr "Başlangıç Saati" #: airtime_mvc/application/forms/EditHistoryItem.php:44 #: airtime_mvc/application/services/HistoryService.php:1147 msgid "End Time" -msgstr "" +msgstr "Bitiş Saati" #: airtime_mvc/application/forms/EditHistoryItem.php:57 #: airtime_mvc/application/controllers/LocaleController.php:389 #: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53 msgid "No Show" -msgstr "" +msgstr "Show Yok" #: airtime_mvc/application/forms/AddShowRR.php:10 msgid "Record from Line In?" -msgstr "" +msgstr "Line In'den Kaydet?" #: airtime_mvc/application/forms/AddShowRR.php:16 msgid "Rebroadcast?" -msgstr "" +msgstr "Tekrar yayınla?" #: airtime_mvc/application/forms/AddShowLiveStream.php:10 #, php-format msgid "Use %s Authentication:" -msgstr "" +msgstr "%s Kimlik Doğrulamasını Kullan" #: airtime_mvc/application/forms/AddShowLiveStream.php:16 msgid "Use Custom Authentication:" -msgstr "" +msgstr "Özel Kimlik Doğrulama Kullan" #: airtime_mvc/application/forms/AddShowLiveStream.php:26 msgid "Custom Username" -msgstr "" +msgstr "Özel Kullanıcı Adı" #: airtime_mvc/application/forms/AddShowLiveStream.php:39 msgid "Custom Password" -msgstr "" +msgstr "Özel Şifre" #: airtime_mvc/application/forms/AddShowLiveStream.php:63 msgid "Username field cannot be empty." -msgstr "" +msgstr "Kullanıcı adı kısmı boş bırakılamaz." #: airtime_mvc/application/forms/AddShowLiveStream.php:68 msgid "Password field cannot be empty." -msgstr "" +msgstr "Şifre kısmı boş bırakılamaz." #: airtime_mvc/application/forms/PasswordRestore.php:14 msgid "E-mail" -msgstr "" +msgstr "E-posta" #: airtime_mvc/application/forms/PasswordRestore.php:36 msgid "Restore password" -msgstr "" +msgstr "Şifreyi geri al" #: airtime_mvc/application/forms/StreamSetting.php:22 msgid "Hardware Audio Output" -msgstr "" +msgstr "Donanımsal Ses Çıkışı" #: airtime_mvc/application/forms/StreamSetting.php:33 msgid "Output Type" -msgstr "" +msgstr "Ses Çıkış Türü" #: airtime_mvc/application/forms/StreamSetting.php:44 msgid "Icecast Vorbis Metadata" -msgstr "" +msgstr "Icecast Vorbis Metadata" #: airtime_mvc/application/forms/StreamSetting.php:54 msgid "Stream Label:" -msgstr "" +msgstr "Yayın Etiketi:" #: airtime_mvc/application/forms/StreamSetting.php:55 msgid "Artist - Title" -msgstr "" +msgstr "Şarkıcı - Parça Adı" #: airtime_mvc/application/forms/StreamSetting.php:56 msgid "Show - Artist - Title" -msgstr "" +msgstr "Show - Şarkıcı - Parça Adı" #: airtime_mvc/application/forms/StreamSetting.php:57 msgid "Station name - Show name" -msgstr "" +msgstr "Radyo adı - Show adı" #: airtime_mvc/application/forms/StreamSetting.php:63 msgid "Off Air Metadata" -msgstr "" +msgstr "Yayın Dışında Gösterilecek Etiket" #: airtime_mvc/application/forms/StreamSetting.php:69 msgid "Enable Replay Gain" -msgstr "" +msgstr "ReplayGain'i aktif et" #: airtime_mvc/application/forms/StreamSetting.php:75 msgid "Replay Gain Modifier" -msgstr "" +msgstr "ReplayGain Değeri" #: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 msgid "" "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "" +msgstr "'%value%' kullanici@site.com yapısına uymayan geçersiz bir adres" #: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 msgid "'%value%' does not fit the date format '%format%'" -msgstr "" +msgstr "'%value%' değeri '%format%' zaman formatına uymuyor" #: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 msgid "'%value%' is less than %min% characters long" -msgstr "" +msgstr "'%value%' değeri olması gereken '%min%' karakterden daha az" #: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 msgid "'%value%' is more than %max% characters long" -msgstr "" +msgstr "'%value%' değeri olması gereken '%max%' karakterden daha fazla" #: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "" +msgstr "'%value%' değeri '%min%' ve '%max%' değerleri arasında değil" #: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 msgid "Passwords do not match" -msgstr "" +msgstr "Girdiğiniz şifreler örtüşmüyor." #: airtime_mvc/application/forms/AddShowWhen.php:16 msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "" +msgstr "'%value%' değeri 'HH:mm' saat formatına uymuyor" #: airtime_mvc/application/forms/AddShowWhen.php:22 msgid "Date/Time Start:" -msgstr "" +msgstr "Başlangıç Tarih/Saat'i:" #: airtime_mvc/application/forms/AddShowWhen.php:49 msgid "Date/Time End:" -msgstr "" +msgstr "Bitiş Tarih/Saat'i:" #: airtime_mvc/application/forms/AddShowWhen.php:74 msgid "Duration:" -msgstr "" +msgstr "Uzunluğu:" #: airtime_mvc/application/forms/AddShowWhen.php:83 msgid "Timezone:" -msgstr "" +msgstr "Zaman Dilimi:" #: airtime_mvc/application/forms/AddShowWhen.php:92 msgid "Repeats?" -msgstr "" +msgstr "Tekrar Ediyor mu?" #: airtime_mvc/application/forms/AddShowWhen.php:124 msgid "Cannot create show in the past" -msgstr "" +msgstr "Geçmiş tarihli bir show oluşturamazsınız" #: airtime_mvc/application/forms/AddShowWhen.php:132 msgid "Cannot modify start date/time of the show that is already started" -msgstr "" +msgstr "Başlamış olan bir yayının tarih/saat bilgilerini değiştiremezsiniz" #: airtime_mvc/application/forms/AddShowWhen.php:141 #: airtime_mvc/application/models/Show.php:278 msgid "End date/time cannot be in the past" -msgstr "" +msgstr "Bitiş tarihi geçmişte olamaz" #: airtime_mvc/application/forms/AddShowWhen.php:149 msgid "Cannot have duration < 0m" -msgstr "" +msgstr "Uzunluk < 0dk'dan kısa olamaz" #: airtime_mvc/application/forms/AddShowWhen.php:153 msgid "Cannot have duration 00h 00m" -msgstr "" +msgstr "00s 00dk Uzunluk olamaz" #: airtime_mvc/application/forms/AddShowWhen.php:160 msgid "Cannot have duration greater than 24h" -msgstr "" +msgstr "Yayın süresi 24 saati geçemez" #: airtime_mvc/application/forms/AddShowWhen.php:287 #: airtime_mvc/application/forms/AddShowWhen.php:301 @@ -1291,104 +1291,104 @@ msgstr "" #: airtime_mvc/application/forms/AddShowWhen.php:336 #: airtime_mvc/application/services/CalendarService.php:304 msgid "Cannot schedule overlapping shows" -msgstr "" +msgstr "Üst üste binen show'lar olamaz" #: airtime_mvc/application/forms/AddShowWhat.php:26 #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33 #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146 msgid "Name:" -msgstr "" +msgstr "İsim:" #: airtime_mvc/application/forms/AddShowWhat.php:30 msgid "Untitled Show" -msgstr "" +msgstr "İsimsiz Show" #: airtime_mvc/application/forms/AddShowWhat.php:36 #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150 msgid "URL:" -msgstr "" +msgstr "URL" #: airtime_mvc/application/forms/AddShowWhat.php:54 #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40 #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149 msgid "Description:" -msgstr "" +msgstr "Açıklama:" #: airtime_mvc/application/forms/SoundcloudPreferences.php:16 msgid "Automatically Upload Recorded Shows" -msgstr "" +msgstr "Kaydedilen Show'ları Otomatik olarak Karşıya Yükle" #: airtime_mvc/application/forms/SoundcloudPreferences.php:26 msgid "Enable SoundCloud Upload" -msgstr "" +msgstr "SoundCloud'a Yüklemeyi Aktifleştir" #: airtime_mvc/application/forms/SoundcloudPreferences.php:36 msgid "Automatically Mark Files \"Downloadable\" on SoundCloud" -msgstr "" +msgstr "SoundCloud'da dosyaları otomatik olarak \"İndirilebilir\" olarak işaretle" #: airtime_mvc/application/forms/SoundcloudPreferences.php:47 msgid "SoundCloud Email" -msgstr "" +msgstr "SoundCloud Email Adresi" #: airtime_mvc/application/forms/SoundcloudPreferences.php:67 msgid "SoundCloud Password" -msgstr "" +msgstr "SoundCloud Şifreniz" #: airtime_mvc/application/forms/SoundcloudPreferences.php:87 msgid "SoundCloud Tags: (separate tags with spaces)" -msgstr "" +msgstr "SoundCloud Etiketleri: (boşluklarla ayırınız)" #: airtime_mvc/application/forms/SoundcloudPreferences.php:99 msgid "Default Genre:" -msgstr "" +msgstr "Varsayılan Tür:" #: airtime_mvc/application/forms/SoundcloudPreferences.php:109 msgid "Default Track Type:" -msgstr "" +msgstr "Varsayılan Parça Türü:" #: airtime_mvc/application/forms/SoundcloudPreferences.php:113 msgid "Original" -msgstr "" +msgstr "Orjinal" #: airtime_mvc/application/forms/SoundcloudPreferences.php:114 msgid "Remix" -msgstr "" +msgstr "Remix" #: airtime_mvc/application/forms/SoundcloudPreferences.php:115 msgid "Live" -msgstr "" +msgstr "Canlı" #: airtime_mvc/application/forms/SoundcloudPreferences.php:116 msgid "Recording" -msgstr "" +msgstr "Kayıt" #: airtime_mvc/application/forms/SoundcloudPreferences.php:117 msgid "Spoken" -msgstr "" +msgstr "Sözlü" #: airtime_mvc/application/forms/SoundcloudPreferences.php:118 msgid "Podcast" -msgstr "" +msgstr "Podcast" #: airtime_mvc/application/forms/SoundcloudPreferences.php:119 msgid "Demo" -msgstr "" +msgstr "Demo" #: airtime_mvc/application/forms/SoundcloudPreferences.php:120 msgid "Work in progress" -msgstr "" +msgstr "Halen Devam Eden" #: airtime_mvc/application/forms/SoundcloudPreferences.php:121 msgid "Stem" -msgstr "" +msgstr "Stem" #: airtime_mvc/application/forms/SoundcloudPreferences.php:122 msgid "Loop" -msgstr "" +msgstr "Tekrar Et" #: airtime_mvc/application/forms/SoundcloudPreferences.php:123 msgid "Sound Effect" -msgstr "" +msgstr "Ses Efekti" #: airtime_mvc/application/forms/SoundcloudPreferences.php:124 msgid "One Shot Sample" @@ -1396,19 +1396,19 @@ msgstr "" #: airtime_mvc/application/forms/SoundcloudPreferences.php:125 msgid "Other" -msgstr "" +msgstr "Diğer" #: airtime_mvc/application/forms/SoundcloudPreferences.php:133 msgid "Default License:" -msgstr "" +msgstr "Varsayılan Lisans Türü:" #: airtime_mvc/application/forms/SoundcloudPreferences.php:137 msgid "The work is in the public domain" -msgstr "" +msgstr "Eser halka açık olarak kayıtlı" #: airtime_mvc/application/forms/SoundcloudPreferences.php:138 msgid "All rights are reserved" -msgstr "" +msgstr "Tüm Hakları Saklıdır" #: airtime_mvc/application/forms/SoundcloudPreferences.php:139 msgid "Creative Commons Attribution" @@ -1436,19 +1436,19 @@ msgstr "" #: airtime_mvc/application/forms/EditUser.php:125 msgid "Interface Timezone:" -msgstr "" +msgstr "Arayüz Zaman Dilimi" #: airtime_mvc/application/forms/EmailServerPreferences.php:17 msgid "Enable System Emails (Password Reset)" -msgstr "" +msgstr "Sistem Epostalarını Aktif Et (Şifre Sıfırlama)" #: airtime_mvc/application/forms/EmailServerPreferences.php:27 msgid "Reset Password 'From' Email" -msgstr "" +msgstr "Şifre Sıfırlama epostası 'Kimden' kısmı" #: airtime_mvc/application/forms/EmailServerPreferences.php:34 msgid "Configure Mail Server" -msgstr "" +msgstr "Posta Sunucusu Ayarları" #: airtime_mvc/application/forms/EmailServerPreferences.php:43 msgid "Requires Authentication" @@ -1538,7 +1538,7 @@ msgstr "" #: airtime_mvc/application/controllers/LocaleController.php:32 msgid "Live Stream" -msgstr "" +msgstr "Canlı yayın" #: airtime_mvc/application/controllers/LocaleController.php:33 msgid "Nothing Scheduled" @@ -1649,12 +1649,12 @@ msgstr "" #: airtime_mvc/application/controllers/LocaleController.php:89 msgid "Loading..." -msgstr "" +msgstr "Yükleniyor..." #: airtime_mvc/application/controllers/LocaleController.php:90 #: airtime_mvc/application/controllers/LocaleController.php:390 msgid "All" -msgstr "" +msgstr "Tümü" #: airtime_mvc/application/controllers/LocaleController.php:91 msgid "Files" @@ -2148,7 +2148,7 @@ msgstr "" #: airtime_mvc/application/controllers/LocaleController.php:255 msgid "Ok" -msgstr "" +msgstr "OK" #: airtime_mvc/application/controllers/LocaleController.php:256 msgid "Contents of Show" @@ -2395,11 +2395,11 @@ msgstr "" #: airtime_mvc/application/controllers/LocaleController.php:379 #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3 msgid "Close" -msgstr "" +msgstr "Kapat" #: airtime_mvc/application/controllers/LocaleController.php:353 msgid "Hour" -msgstr "" +msgstr "Cmt" #: airtime_mvc/application/controllers/LocaleController.php:354 msgid "Minute" @@ -2407,7 +2407,7 @@ msgstr "" #: airtime_mvc/application/controllers/LocaleController.php:355 msgid "Done" -msgstr "" +msgstr "OK" #: airtime_mvc/application/controllers/LocaleController.php:358 msgid "Select files" @@ -2625,7 +2625,7 @@ msgstr "" #: airtime_mvc/application/controllers/LibraryController.php:189 #: airtime_mvc/application/controllers/ShowbuilderController.php:194 msgid "Preview" -msgstr "" +msgstr "Ön izleme" #: airtime_mvc/application/controllers/LibraryController.php:210 #: airtime_mvc/application/controllers/LibraryController.php:234 @@ -2648,7 +2648,7 @@ msgstr "" #: airtime_mvc/application/services/CalendarService.php:200 #: airtime_mvc/application/services/CalendarService.php:205 msgid "Delete" -msgstr "" +msgstr "Sil" #: airtime_mvc/application/controllers/LibraryController.php:226 msgid "Duplicate Playlist" @@ -2658,7 +2658,7 @@ msgstr "" #: airtime_mvc/application/controllers/LibraryController.php:263 #: airtime_mvc/application/services/CalendarService.php:156 msgid "Edit" -msgstr "" +msgstr "Düzenle" #: airtime_mvc/application/controllers/LibraryController.php:276 msgid "Soundcloud" @@ -2776,7 +2776,7 @@ msgstr "" #: airtime_mvc/application/configs/navigation.php:92 msgid "History" -msgstr "" +msgstr "Geçmiş" #: airtime_mvc/application/configs/navigation.php:97 msgid "Playout History" @@ -2844,7 +2844,7 @@ msgstr "" #: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18 #: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18 msgid "Remove" -msgstr "" +msgstr "Kaldır" #: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41 #: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28 @@ -2873,7 +2873,7 @@ msgstr "" #: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:120 #: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:164 msgid "OK" -msgstr "" +msgstr "OK" #: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:120 #: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:164 @@ -2940,7 +2940,7 @@ msgstr "" #: airtime_mvc/application/views/scripts/form/login.phtml:36 #: airtime_mvc/application/views/scripts/login/password-restore.phtml:3 msgid "Reset password" -msgstr "" +msgstr "Parolayı değiştir" #: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9 #: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27 @@ -3177,7 +3177,7 @@ msgstr "" #: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23 msgid "previous" -msgstr "" +msgstr "önceki" #: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28 msgid "play" @@ -3189,11 +3189,11 @@ msgstr "" #: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37 msgid "next" -msgstr "" +msgstr "sonraki" #: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42 msgid "stop" -msgstr "" +msgstr "Durdur" #: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60 #: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90 @@ -3233,7 +3233,7 @@ msgstr "" #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24 msgid "Isrc Number:" -msgstr "" +msgstr "ISRC No:" #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27 msgid "File Path:" @@ -3321,7 +3321,7 @@ msgstr "" #: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3 msgid "Share" -msgstr "" +msgstr "Paylaş" #: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64 msgid "Select stream:" @@ -3435,11 +3435,11 @@ msgstr "" #: airtime_mvc/application/views/scripts/user/add-user.phtml:19 msgid "First Name" -msgstr "" +msgstr "İsim" #: airtime_mvc/application/views/scripts/user/add-user.phtml:20 msgid "Last Name" -msgstr "" +msgstr "Soyisim" #: airtime_mvc/application/views/scripts/user/add-user.phtml:21 msgid "User Type" @@ -3588,11 +3588,11 @@ msgstr "" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:29 msgid "Who" -msgstr "" +msgstr "DJ" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:33 msgid "Style" -msgstr "" +msgstr "Stil" #: airtime_mvc/application/models/ShowBuilder.php:212 #, php-format